Skip to content
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

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open

Conversation

QaidVoid
Copy link

Support for counting packages installed using soar package manager: https://github.com/pkgforge/soar

@CarterLi
Copy link
Member

CarterLi commented Feb 7, 2025

Thanks for your contribution. I'd like to merge it after your package manager getting more famous

@Twig6943
Copy link

@CarterLi this pkg manager legit gonna be the way to install appimages (the rest is either dead or not as feature complete)

Azathothas added a commit to pkgforge/soarpkgs that referenced this pull request Feb 10, 2025
@Azathothas
Copy link

Thanks for your contribution. I'd like to merge it after your package manager getting more famous

Understood.
In the meantime, we will build the forked version for our users

@Azathothas
Copy link

Hi, @CarterLi
What's the criteria for accepting this PR?
Currently, we have ~ 270 stars: https://github.com/pkgforge/soar/stargazers
How many more are needed, as it is a pain for our Users to have to use forked fastfetch instead of official

@QaidVoid QaidVoid force-pushed the soar branch 2 times, most recently from 09b51b2 to 9f888f4 Compare April 5, 2025 10:19
@CarterLi CarterLi requested a review from Copilot April 5, 2025 11:29
Copy link

@Copilot Copilot AI left a 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");
Copy link
Preview

Copilot AI Apr 5, 2025

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.

Suggested change
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.

Copy link
Member

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?

Copy link
Author

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.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What about CONCAT and ||?

@CarterLi
Copy link
Member

CarterLi commented Apr 5, 2025

CI failed.

@QaidVoid
Copy link
Author

QaidVoid commented Apr 5, 2025

It seems that we've exceeded the maximum capacity of 32 flags within the bounds of uint32_t. Changing the assertion to compare against sizeof(uint64_t) works, but to properly support additional flags, the entire enum must be converted to use uint64_t. However, I'm not sure if it has any compatibility issues on 32-bit architecture.

Do you have any suggestions?

@CarterLi
Copy link
Member

CarterLi commented Apr 5, 2025

It's ok to convert it to uint64_t

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants