-
Notifications
You must be signed in to change notification settings - Fork 199
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sort and indent packages/package groups in rpm-ostree status #3201
Sort and indent packages/package groups in rpm-ostree status #3201
Conversation
Hi @Mershl. Thanks for your PR. I'm waiting for a coreos member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
/ok-to-test |
Hi, thank you for the patch! Can you squash this into one commit, and follow this for commit message style: https://chris.beams.io/posts/git-commit/
I think the rationale there is it allows copy-pasting the output back into a bash command. Now, if removing it seems important, that seems like exactly the kind of thing that's best done as a separate commit. |
src/app/rpmostree-builtin-status.cxx
Outdated
@@ -864,10 +861,15 @@ print_one_deployment (RPMOSTreeSysroot *sysroot_proxy, | |||
g_string_append (str, pkgname); | |||
} | |||
g_string_append_printf (str, " %s", evr); | |||
|
|||
g_ptr_array_add (active_removals_grouped, g_strdup (str->str)); | |||
g_string_erase (str, 0, -1); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This call deletes all the data, right? So I'm a bit confused...why are we keeping around str
here at all?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Consistency with the current code base. Implementations around this allocate a buffer outside of the loop, then in the loop fill, use the buffer and erase it for the next loop. Proposal: Move autoptr of the buffer into the loop scope to make it's intention clear and avoid misuse from outer scope + rename str
to buf
(seen this in other places of the codebase). What do you think?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll try to clean up the string buffer handling a little bit with my next commit - the handling for ReplacedBasePackages is not "trivial". One has to see that the positive if branch ends with a truncate to size 0. I'm not 100% confident with the existing implementation of the loop containing let's just use str as a scratchpad to avoid excessive mallocs; the buf needs to be stretched anyway for the final output
. I'll leave it mostly untounched for now.
To combine these two things - the process of reviewing this PR involved digging up and looking at 4 year old changes. In the future, it might be someone besides you or me that needs to find this commit and understand more about why the changes were made. Now you did include a lot of good stuff in the PR description but I don't want to totally rely on Github being around forever. Perhaps just to start:
or so? |
68b4b7a
to
0617b57
Compare
Squashed commits. Up for discussion: Separate every RemovedBasePackages and ReplacedBasePackages package group with a newline? Unrelated to this PR's changes: https://github.com/coreos/rpm-ostree/blob/main/src/app/rpmostree-builtin-status.cxx#L871 |
0617b57
to
7346519
Compare
By using the existing print_packages() for RemovedBasePackages and ReplacedBasePackages multiple package groups are no longer started in the same line if the next package/package group would not fit into the same starting line. A quote parameter was introduced for print_packages() to allow the unquoted print of package groups (so far used in RemovedBasePackages and ReplacedBasePackages). Fix: print_packages() creates a packages_sorted array, but never actually sorts the package list. RemovedBasePackages and ReplacedBasePackages do no longer use the comma separator. Package groups are now either nice and short (in which case it's okay to print two in the same line), or new package groups start in a new line - which obsoletes the comma separator.
7346519
to
5f1db27
Compare
Hmm, instead of passing to |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm. I think on the other hand it wouldn't look as good to wrap at ->
in most cases. I can see that being necessary for small terminals and/or very long package names as an alternative strategy. This problem space isn't new of course, it's basically the same problem as hyphenation.
I think this PR is enough of an improvement to merge as is - we can always circle back and do more improvements later.
Thanks for your work on this!
Created this PR as a first step towards fixing #1613.
Fixed issues:
print_packages()
for RemovedBasePackages and ReplacedBasePackages multiple package groups are no longer started in the same line if the next package/package group would not fit into the same starting line.print_packages()
creates apackages_sorted
array, but never actually sorts the package list.Open points:
rpmostreecxx::maybe_shell_quote (pkg)
call inprint_packages()
as it introduced quotes for package groups (which have spaces in it). I've not found usecases where the call is necessary. This absolutly needs a review.print_packages()
would result in a nicely indented block (all lines starting behind the colon of the first column), but also hinder the layout on resize.initramfs::test::test_initramfs_overlay
currently fails. I'll look into that tomorrow.The following screenshots show two extreme cases with mesa and gnome-shell overrides where a single package group exceeds a single line. With that being said, it's much nicer than before, especially in the non-extreme cases and it formats nicely when the user grows the terminal horizontally.
rpm-ostree-2021.12-2.fc35.x86_64
rpm-ostree-main + sort_and_indent_rpmostree_status