summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Use '#pragma once' to avoid a lot of boilerplatewip/hughsie/pragma-onceRichard Hughes2019-02-0965-316/+114
|
* Use the SPDX-License-Identifier in all source filesRichard Hughes2019-02-09127-1887/+127
|
* Do not overwrite the project group using heuristics if already setRichard Hughes2019-02-061-8/+14
| | | | Fixes https://github.com/hughsie/appstream-glib/issues/236
* Recognise uncompressed Arch packagesRichard Hughes2019-02-061-1/+2
| | | | Fixes https://github.com/hughsie/appstream-glib/issues/264
* Do not install the libappstream-builder shared libraryRichard Hughes2019-02-063-78/+2
| | | | Nothing uses it, and it's not API or ABI stable.
* Use rpmvercmp instead of internal vercmp when built with rpm supportKalev Lember2019-02-062-0/+12
| | | | | | | | This should help make sure that the version comparison algorithm matches exactly with Fedora's when built on Fedora and supports caret, tilde, and plus characters that all have special semantics in Fedora packages. https://github.com/hughsie/appstream-glib/issues/270
* utils: trivial: Split out an internal functionKalev Lember2019-02-061-33/+40
|
* libappstream-glib/meson.build: pass -DAS_COMPILATION to gir compilermaxice82019-02-041-0/+3
| | | | | | | | | | | This fixes cross building of gir using Yocto Project/Buildroot method. This is also done on: atk with -DATK_COMPILATION, gdk-pixbuf with -DGDK_PIXBUF_COMPILATION, libgusb with -DGUSB_COMPILATION.
* Add support for CONTACT URLsRobert Ancell2019-01-312-0/+6
|
* tests: Add test for OARS → CSM mappingsPhilip Withnall2019-01-231-0/+36
| | | | | | Signed-off-by: Philip Withnall <withnall@endlessm.com> https://github.com/hughsie/appstream-glib/issues/280
* as-content-rating: Add a helper function to get OARS IDsPhilip Withnall2019-01-232-0/+25
| | | | | | | | | This just exposes the list of valid OARS IDs, so callers don’t have to keep a copy themselves. Signed-off-by: Philip Withnall <withnall@endlessm.com> https://github.com/hughsie/appstream-glib/issues/280
* as-content-rating: Move OARS → CSM mappings into static spacePhilip Withnall2019-01-231-51/+51
| | | | | | | | | | This means they can be reused in another upcoming function. This introduces no functional changes. Signed-off-by: Philip Withnall <withnall@endlessm.com> https://github.com/hughsie/appstream-glib/issues/280
* as-content-rating: Make as_content_rating_attribute_to_csm_age() publicPhilip Withnall2019-01-232-6/+9
| | | | | | | | This will allow it to be tested in a unit test. Signed-off-by: Philip Withnall <withnall@endlessm.com> https://github.com/hughsie/appstream-glib/issues/280
* as-content-rating: Restructure OARS → CSM mapping tablePhilip Withnall2019-01-231-123/+68
| | | | | | | | | | Make it more compact in lines of code and in memory. This introduces no functional changes (all the mappings should be the same), but it should make it harder to make typos when editing the table in future. Signed-off-by: Philip Withnall <withnall@endlessm.com> https://github.com/hughsie/appstream-glib/issues/280
* as-content-rating: Add missing OARS → CSM mappingsPhilip Withnall2019-01-231-0/+11
| | | | | | | | | | | | | | | | These mappings were missing from the table, which could result in as_content_rating_id_value_to_csm_age() returning 0 for some #AsContentRatingValues even though it would return >0 for a less-intense #AsContentRatingValue for the same ID. Fix that by adding additional mappings. There’s no child psychology knowledge behind the choices: they’re simply copies of the next age for the same ID, chosen to avoid exposing young children to content which the mappings didn’t already explicitly expose them to. Signed-off-by: Philip Withnall <withnall@endlessm.com> https://github.com/hughsie/appstream-glib/issues/280
* as-content-rating: Fix a typo in an OARS → CSM mappingPhilip Withnall2019-01-231-1/+1
| | | | | | | | | | | | | While I cannot be 100% sure, this looks like a typo because: • There is already a social-chat/moderate mapping higher up in the table. • social-chat is not an OARS v1.1 addition. • It’s right below a money-purchasing/mild mapping, and there is no money-purchasing/moderate mapping. Signed-off-by: Philip Withnall <withnall@endlessm.com> https://github.com/hughsie/appstream-glib/issues/280
* as-content-rating: Add missing OARS → CSM mappings to fix round tripsPhilip Withnall2019-01-231-0/+2
| | | | | | | | | | | | | | | Currently, it’s not possible to do a round trip from a CSM age to a set of OARS ratings and back to a CSM age without the age changing; this is because there are no mappings for ages 16 and 17. Fix that by adding them. There is no child psychology knowledge behind the choices of ages here: they were chosen purely to fit in with the existing ratings and to fix round trips. Signed-off-by: Philip Withnall <withnall@endlessm.com> https://github.com/hughsie/appstream-glib/issues/280
* Add support for SOURCE URLsRichard Hughes2019-01-222-0/+6
| | | | These could be specified per-release or per-component as required.
* Add support for per-release URLsRichard Hughes2019-01-225-1/+92
|
* CI: Update Fedora from 25 to 29, and Debian from Stretch to BusterKalev Lember2019-01-093-8/+7
| | | | | | This gets us new meson for https://github.com/hughsie/appstream-glib/pull/281, and also makes it possible to enable -Ddep11=true for Debian as it's no longer blocked by too old meson in Stretch.
* app: Add locking to unique id buildingKalev Lember2019-01-041-0/+7
| | | | | | | | | | This fixes crashes in gnome-software when concurrently calling as_app_get_unique_id() from multiple threads. https://bugzilla.redhat.com/show_bug.cgi?id=1655775 https://bugzilla.redhat.com/show_bug.cgi?id=1643702 https://bugzilla.redhat.com/show_bug.cgi?id=1640446 https://bugzilla.redhat.com/show_bug.cgi?id=1530719
* Use as_utils_vercmp_full internallyKalev Lember2019-01-045-11/+11
| | | | | | | | | This fixes, among other things, appdata validation when the version goes from 9.5 to 10, or 0.9 to 1. This partially fixes https://github.com/hughsie/appstream-glib/issues/270 We're still failing to correctly compare "Build 9.5" to "Build 10".
* Add tests for as_util_vercmp_full()Kalev Lember2019-01-041-0/+8
| | | | https://github.com/hughsie/appstream-glib/issues/270
* store: Fix threading related crashes when creating the search cacheKalev Lember2018-12-271-2/+2
| | | | | | | | | | | | | Keep a ref on the AsApp in the worker thread to make sure it doesn't get destroyed in another thread while being processed. https://bugzilla.redhat.com/show_bug.cgi?id=1662130 https://bugzilla.redhat.com/show_bug.cgi?id=1661701 https://bugzilla.redhat.com/show_bug.cgi?id=1661382 https://bugzilla.redhat.com/show_bug.cgi?id=1658140 https://bugzilla.redhat.com/show_bug.cgi?id=1644026 https://bugzilla.redhat.com/show_bug.cgi?id=1639558 https://bugzilla.redhat.com/show_bug.cgi?id=1570096
* trivial: Add AS_CHECKSUM_TARGET_DEVICERichard Hughes2018-12-202-0/+6
|
* Merge pull request #276 from hughsie/wip/kalev/as-store-lockingKalev Lember2018-12-143-44/+229
|\ | | | | Various locking and thread safety fixes for AsStore
| * store: trivial: Fix a typo in commentwip/kalev/as-store-lockingKalev Lember2018-12-141-1/+1
| |
| * store: trivial: Fix a possibly memory leak in as_store_validateKalev Lember2018-12-141-2/+2
| | | | | | | | | | When returning early we were leaking GPtrArray *probs which never got freed. Change it to use g_autoptr to avoid that.
| * store: Add internal lockingKalev Lember2018-12-141-36/+155
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This adds fine-grained locking around priv->array and various priv-stored hash table use. There are more thread safe issues in AsStore, but this should take care of those that cause frequent gnome-software crashes in F29. This may regress the perfomance a bit because it changes a few places to keep a deep copy to simplify locking, but I haven't observed any visible performance regressions in gnome-software. Also, gnome-software is in the process of switching to libxmlb anyway so it shouldn't matter a whole lot in the long run. This patch takes care to make sure that locking is fine grained enough so that we can be sure it doesn't lead into deadlocks, and also makes sure that we never invoke any callbacks (signals) while locked to prevent deadlocks when a client app calls back into AsStore code.
| * store: Return deep copy in as_store_get_apps_by_metadataKalev Lember2018-12-142-2/+2
| | | | | | | | | | | | | | | | | | | | This is strictly not necessary for making gnome-software's AsStore use thread safe as gnome-software doesn't actually use this function, but let's fix it anyway while I'm at it. This also updates tests that test the performance of the function as the deep copying makes it noticably slower (but that's fine because nothing actually uses it and it's still reasonably fast).
| * store: Add thread safe dup() functions for multithreaded clientsKalev Lember2018-12-143-3/+69
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | gnome-software spawns a new worker thread for each of its plugin operations and occasionally this leads to issues where one thread is reading from AsStore, and another one is changing it. There's also file monitor callbacks in AsStore that run in a yet another thread and can update internal data structures as well. This leads to a situation where functions returning pointers to internal data structures can't guarantee the data structure lifetime because another thread might be changing it in the background. To fix this, this commit adds new as_store_dup_apps() and as_store_dup_apps_by_id_merge() functions that return a deep copy of the internal structure, and updates existing "transfer container" as_store_get_apps_by_id() to return a deep copy, instead just returning a reffed container.
* | trivial: Do not let libsoup explode in a ball of flames for file:// mirror URLsRichard Hughes2018-12-121-0/+7
|/
* build: Remove unnecessary gtk dependency for builderMart Raudsepp2018-12-051-1/+0
| | | | | | | | | Builder checks for gtk+, but the result isn't used anywhere, thus introducing an unnecessary gtk+ dependency. -Dbuilder=true -Dfonts=true would still depend on gdk, but a -Dbuilder=true -Dfonts=false build doesn't anymore. Closes: #274
* trivial: Allow using metainfo.xml files with appdata-to-newsRichard Hughes2018-11-271-1/+2
|
* Add as_release_set_install_duration()Richard Hughes2018-11-273-1/+50
|
* trivial: post release version bumpRichard Hughes2018-11-272-5/+5
|
* trivial: Update self test after app ID tokenizing changesKalev Lember2018-11-271-3/+3
|
* app: Tokenize the ID when adding search tokensKalev Lember2018-11-271-0/+4
| | | | | This allows the search to match on e.g. "eog" for an app that has the ID of "org.gnome.org".
* as-store: Guarantee to return G_IO_ERROR_NOT_FOUND when loading failsPhilip Withnall2018-11-011-1/+7
| | | | | | | | | | | | Previously, as_store_from_file() would either return G_IO_ERROR_NOT_FOUND or AS_STORE_ERROR_FAILED if the given file did not exist, depending on its file extension. That is not particularly helpful for callers. Instead, guarantee to always return G_IO_ERROR_NOT_FOUND if the file was not found. Signed-off-by: Philip Withnall <withnall@endlessm.com>
* Merge pull request #269 from pwithnall/content-rating-idsPhilip Withnall2018-11-013-0/+58
|\ | | | | as-content-rating: Add as_content_rating_get_rating_ids()
| * as-content-rating: Add as_content_rating_get_rating_ids()Philip Withnall2018-11-013-0/+58
|/ | | | | | | | | | This allows the set of rating IDs in the AsContentRating to be returned, allowing the caller to iterate over them to check their values, rather than having to hard-code their own list of OARS rating IDs. Includes a basic test. Signed-off-by: Philip Withnall <withnall@endlessm.com>
* as-content-rating: fix 'mey' typoWill Thompson2018-10-241-3/+3
| | | | Also tweak a few bits of punctuation I noticed at the same time.
* trivial: Fix the Since: tag for as_utils_vercmp_fullKalev Lember2018-10-241-1/+1
|
* trivial: Add missing prototype for as_utils_vercmp_fullKalev Lember2018-10-241-0/+3
|
* Add as_utils_vercmp_full() for gnome-softwareRichard Hughes2018-10-242-9/+47
| | | | Sometimes we don't want to do the firmware-style heuristics.
* Release version 0.7.14appstream_glib_0_7_14Richard Hughes2018-10-161-0/+11
|
* Set the AppStream ID from the X-Flatpak desktop keyRichard Hughes2018-10-151-0/+5
| | | | This allows us to drop some hacky code in GNOME Software.
* trivial: Compile the DEP-11 stuff in the RPM spec file exampleRichard Hughes2018-10-151-1/+1
|
* Add as_app_to_xml()Richard Hughes2018-10-092-13/+30
| | | | This allows us to load in a file and export it as AppData XML.
* Add as_content_rating_add_attribute()Richard Hughes2018-10-042-1/+30
| | | | This allows us to contruct a AsContentRating without using XML.