-
Notifications
You must be signed in to change notification settings - Fork 488
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
add soar packages count #1531
base: dev
Are you sure you want to change the base?
add soar packages count #1531
Conversation
Thanks for your contribution. I'd like to merge it after your package manager getting more famous |
@CarterLi this pkg manager legit gonna be the way to install appimages (the rest is either dead or not as feature complete) |
Understood. |
Hi, @CarterLi |
09b51b2
to
9f888f4
Compare
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.
Copilot reviewed 4 out of 6 changed files in this pull request and generated 1 comment.
Files not reviewed (2)
- CMakeLists.txt: Language not supported
- doc/json_schema.json: Language not supported
@@ -682,4 +682,7 @@ void ffDetectPackagesImpl(FFPackagesResult* result, FFPackagesOptions* options) | |||
|
|||
if (!(options->disabled & FF_PACKAGES_FLAG_AM_BIT)) | |||
result->amUser = getAMUser(); | |||
|
|||
if (!(options->disabled & FF_PACKAGES_FLAG_SOAR_BIT)) | |||
result->soar += getSQLite3Int(&baseDir, ".local/share/soar/db/soar.db", "SELECT COUNT(DISTINCT CONCAT(pkg_id, pkg_name)) FROM packages WHERE is_installed = true", "soar"); |
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.
SQLite3 does not include a built-in CONCAT function by default. Consider using the concatenation operator (pkg_id || pkg_name) to combine the fields.
result->soar += getSQLite3Int(&baseDir, ".local/share/soar/db/soar.db", "SELECT COUNT(DISTINCT CONCAT(pkg_id, pkg_name)) FROM packages WHERE is_installed = true", "soar"); | |
result->soar += getSQLite3Int(&baseDir, ".local/share/soar/db/soar.db", "SELECT COUNT(DISTINCT pkg_id || pkg_name) FROM packages WHERE is_installed = true", "soar"); |
Copilot is powered by AI, so mistakes are possible. Review output carefully before use.
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.
Is it necessary to use DISTINCT CONCAT(pkg_id, pkg_name)
instead of just DISTINCT pkg_id
?
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.
The same pkg_id
can be associated with multiple packages, and similarly, the same pkg_name
can appear with different pkg_id
. So, the combination of pkg_id
and pkg_name
determines the unique package.
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.
What about CONCAT
and ||
?
CI failed. |
It seems that we've exceeded the maximum capacity of 32 flags within the bounds of Do you have any suggestions? |
It's ok to convert it to uint64_t |
Support for counting packages installed using soar package manager: https://github.com/pkgforge/soar