![]() |
![]() |
![]() |
PackageKit Reference Manual | ![]() |
---|---|---|---|---|
Top | Description |
PkEnumMatch; enum PkRoleEnum; enum PkStatusEnum; enum PkExitEnum; enum PkNetworkEnum; enum PkFilterEnum; enum PkRestartEnum; enum PkMessageEnum; enum PkErrorCodeEnum; enum PkGroupEnum; enum PkUpdateStateEnum; enum PkInfoEnum; enum PkDistroUpgradeEnum; enum PkSigTypeEnum; enum PkProvidesEnum; enum PkLicenseEnum; guint pk_enum_find_value (const PkEnumMatch *table, const gchar *string); const gchar * pk_enum_find_string (const PkEnumMatch *table, guint value); PkSigTypeEnum pk_sig_type_enum_from_text (const gchar *sig_type); const gchar * pk_sig_type_enum_to_text (PkSigTypeEnum sig_type); PkInfoEnum pk_info_enum_from_text (const gchar *info); const gchar * pk_info_enum_to_text (PkInfoEnum info); PkUpdateStateEnum pk_update_state_enum_from_text (const gchar *update_state); const gchar * pk_update_state_enum_to_text (PkUpdateStateEnum update_state); PkExitEnum pk_exit_enum_from_text (const gchar *exit); const gchar * pk_exit_enum_to_text (PkExitEnum exit); PkNetworkEnum pk_network_enum_from_text (const gchar *network); const gchar * pk_network_enum_to_text (PkNetworkEnum network); PkStatusEnum pk_status_enum_from_text (const gchar *status); const gchar * pk_status_enum_to_text (PkStatusEnum status); PkRoleEnum pk_role_enum_from_text (const gchar *role); const gchar * pk_role_enum_to_text (PkRoleEnum role); PkErrorCodeEnum pk_error_enum_from_text (const gchar *code); const gchar * pk_error_enum_to_text (PkErrorCodeEnum code); PkRestartEnum pk_restart_enum_from_text (const gchar *restart); const gchar * pk_restart_enum_to_text (PkRestartEnum restart); PkMessageEnum pk_message_enum_from_text (const gchar *message); const gchar * pk_message_enum_to_text (PkMessageEnum message); PkGroupEnum pk_group_enum_from_text (const gchar *group); const gchar * pk_group_enum_to_text (PkGroupEnum group); PkFilterEnum pk_filter_enum_from_text (const gchar *filter); const gchar * pk_filter_enum_to_text (PkFilterEnum filter); PkProvidesEnum pk_provides_enum_from_text (const gchar *provides); const gchar * pk_provides_enum_to_text (PkProvidesEnum provides); PkLicenseEnum pk_license_enum_from_text (const gchar *license); const gchar * pk_license_enum_to_text (PkLicenseEnum license); PkDistroUpgradeEnum pk_distro_upgrade_enum_from_text (const gchar *upgrade); const gchar * pk_distro_upgrade_enum_to_text (PkDistroUpgradeEnum upgrade);
typedef struct { guint value; const gchar *string; } PkEnumMatch;
Matching an enumerated type to a string
typedef enum { PK_ROLE_ENUM_CANCEL, PK_ROLE_ENUM_GET_DEPENDS, PK_ROLE_ENUM_GET_DETAILS, PK_ROLE_ENUM_GET_FILES, PK_ROLE_ENUM_GET_PACKAGES, PK_ROLE_ENUM_GET_REPO_LIST, PK_ROLE_ENUM_GET_REQUIRES, PK_ROLE_ENUM_GET_UPDATE_DETAIL, PK_ROLE_ENUM_GET_UPDATES, PK_ROLE_ENUM_INSTALL_FILES, PK_ROLE_ENUM_INSTALL_PACKAGES, PK_ROLE_ENUM_INSTALL_SIGNATURE, PK_ROLE_ENUM_REFRESH_CACHE, PK_ROLE_ENUM_REMOVE_PACKAGES, PK_ROLE_ENUM_REPO_ENABLE, PK_ROLE_ENUM_REPO_SET_DATA, PK_ROLE_ENUM_RESOLVE, PK_ROLE_ENUM_ROLLBACK, PK_ROLE_ENUM_SEARCH_DETAILS, PK_ROLE_ENUM_SEARCH_FILE, PK_ROLE_ENUM_SEARCH_GROUP, PK_ROLE_ENUM_SEARCH_NAME, PK_ROLE_ENUM_UPDATE_PACKAGES, PK_ROLE_ENUM_UPDATE_SYSTEM, PK_ROLE_ENUM_WHAT_PROVIDES, PK_ROLE_ENUM_ACCEPT_EULA, PK_ROLE_ENUM_DOWNLOAD_PACKAGES, PK_ROLE_ENUM_GET_DISTRO_UPGRADES, PK_ROLE_ENUM_GET_CATEGORIES, PK_ROLE_ENUM_GET_OLD_TRANSACTIONS, PK_ROLE_ENUM_UNKNOWN } PkRoleEnum;
What we were asked to do, this never changes for the lifetime of the transaction. Icons that have to represent the whole "aim" of the transaction will use these constants
typedef enum { PK_STATUS_ENUM_WAIT, PK_STATUS_ENUM_SETUP, PK_STATUS_ENUM_RUNNING, PK_STATUS_ENUM_QUERY, PK_STATUS_ENUM_INFO, PK_STATUS_ENUM_REMOVE, PK_STATUS_ENUM_REFRESH_CACHE, PK_STATUS_ENUM_DOWNLOAD, PK_STATUS_ENUM_INSTALL, PK_STATUS_ENUM_UPDATE, PK_STATUS_ENUM_CLEANUP, PK_STATUS_ENUM_OBSOLETE, PK_STATUS_ENUM_DEP_RESOLVE, PK_STATUS_ENUM_SIG_CHECK, PK_STATUS_ENUM_ROLLBACK, PK_STATUS_ENUM_TEST_COMMIT, PK_STATUS_ENUM_COMMIT, PK_STATUS_ENUM_REQUEST, PK_STATUS_ENUM_FINISHED, PK_STATUS_ENUM_CANCEL, PK_STATUS_ENUM_DOWNLOAD_REPOSITORY, PK_STATUS_ENUM_DOWNLOAD_PACKAGELIST, PK_STATUS_ENUM_DOWNLOAD_FILELIST, PK_STATUS_ENUM_DOWNLOAD_CHANGELOG, PK_STATUS_ENUM_DOWNLOAD_GROUP, PK_STATUS_ENUM_DOWNLOAD_UPDATEINFO, PK_STATUS_ENUM_REPACKAGING, PK_STATUS_ENUM_LOADING_CACHE, PK_STATUS_ENUM_SCAN_APPLICATIONS, PK_STATUS_ENUM_GENERATE_PACKAGE_LIST, PK_STATUS_ENUM_WAITING_FOR_LOCK, PK_STATUS_ENUM_WAITING_FOR_AUTH, PK_STATUS_ENUM_UNKNOWN } PkStatusEnum;
What status we are now; this can change for each transaction giving a status of what sort of thing is happening Icons that change to represent the current status of the transaction will use these constants If you add to these, make sure you add filenames in gpk-watch.c also
A typical transaction will do: - schedule task WAIT - run task SETUP - wait for lock RUNNING
This means that backends should run pk_backend_set_status (backend, PK_STATUS_ENUM_RUNNING) when they are ready to start running the transaction and after a lock has been got.
typedef enum { PK_EXIT_ENUM_SUCCESS, PK_EXIT_ENUM_FAILED, PK_EXIT_ENUM_CANCELLED, PK_EXIT_ENUM_KEY_REQUIRED, PK_EXIT_ENUM_EULA_REQUIRED, PK_EXIT_ENUM_KILLED, /* when we forced the cancel, but had to SIGKILL */ PK_EXIT_ENUM_MEDIA_CHANGE_REQUIRED, PK_EXIT_ENUM_UNKNOWN } PkExitEnum;
How the backend exited
typedef enum { PK_NETWORK_ENUM_OFFLINE, PK_NETWORK_ENUM_ONLINE, PK_NETWORK_ENUM_WIRED, PK_NETWORK_ENUM_WIFI, PK_NETWORK_ENUM_MOBILE, PK_NETWORK_ENUM_UNKNOWN } PkNetworkEnum;
typedef enum { PK_FILTER_ENUM_NONE, PK_FILTER_ENUM_INSTALLED, PK_FILTER_ENUM_NOT_INSTALLED, PK_FILTER_ENUM_DEVELOPMENT, PK_FILTER_ENUM_NOT_DEVELOPMENT, PK_FILTER_ENUM_GUI, PK_FILTER_ENUM_NOT_GUI, PK_FILTER_ENUM_FREE, PK_FILTER_ENUM_NOT_FREE, PK_FILTER_ENUM_VISIBLE, PK_FILTER_ENUM_NOT_VISIBLE, PK_FILTER_ENUM_SUPPORTED, PK_FILTER_ENUM_NOT_SUPPORTED, PK_FILTER_ENUM_BASENAME, PK_FILTER_ENUM_NOT_BASENAME, PK_FILTER_ENUM_NEWEST, PK_FILTER_ENUM_NOT_NEWEST, PK_FILTER_ENUM_ARCH, PK_FILTER_ENUM_NOT_ARCH, PK_FILTER_ENUM_SOURCE, PK_FILTER_ENUM_NOT_SOURCE, PK_FILTER_ENUM_COLLECTIONS, PK_FILTER_ENUM_NOT_COLLECTIONS, PK_FILTER_ENUM_APPLICATION, PK_FILTER_ENUM_NOT_APPLICATION, PK_FILTER_ENUM_UNKNOWN } PkFilterEnum;
The filter types
typedef enum { PK_RESTART_ENUM_NONE, PK_RESTART_ENUM_APPLICATION, PK_RESTART_ENUM_SESSION, PK_RESTART_ENUM_SYSTEM, PK_RESTART_ENUM_UNKNOWN } PkRestartEnum;
What restart we need to after a transaction
typedef enum { PK_MESSAGE_ENUM_BROKEN_MIRROR, PK_MESSAGE_ENUM_CONNECTION_REFUSED, PK_MESSAGE_ENUM_PARAMETER_INVALID, PK_MESSAGE_ENUM_PRIORITY_INVALID, PK_MESSAGE_ENUM_BACKEND_ERROR, PK_MESSAGE_ENUM_DAEMON_ERROR, PK_MESSAGE_ENUM_CACHE_BEING_REBUILT, PK_MESSAGE_ENUM_UNTRUSTED_PACKAGE, PK_MESSAGE_ENUM_NEWER_PACKAGE_EXISTS, PK_MESSAGE_ENUM_COULD_NOT_FIND_PACKAGE, PK_MESSAGE_ENUM_CONFIG_FILES_CHANGED, PK_MESSAGE_ENUM_PACKAGE_ALREADY_INSTALLED, PK_MESSAGE_ENUM_UNKNOWN } PkMessageEnum;
What message type we need to show
typedef enum { PK_ERROR_ENUM_OOM, PK_ERROR_ENUM_NO_NETWORK, PK_ERROR_ENUM_NOT_SUPPORTED, PK_ERROR_ENUM_INTERNAL_ERROR, PK_ERROR_ENUM_GPG_FAILURE, PK_ERROR_ENUM_PACKAGE_ID_INVALID, PK_ERROR_ENUM_PACKAGE_NOT_INSTALLED, PK_ERROR_ENUM_PACKAGE_NOT_FOUND, PK_ERROR_ENUM_PACKAGE_ALREADY_INSTALLED, PK_ERROR_ENUM_PACKAGE_DOWNLOAD_FAILED, PK_ERROR_ENUM_GROUP_NOT_FOUND, PK_ERROR_ENUM_GROUP_LIST_INVALID, PK_ERROR_ENUM_DEP_RESOLUTION_FAILED, PK_ERROR_ENUM_FILTER_INVALID, PK_ERROR_ENUM_CREATE_THREAD_FAILED, PK_ERROR_ENUM_TRANSACTION_ERROR, PK_ERROR_ENUM_TRANSACTION_CANCELLED, PK_ERROR_ENUM_NO_CACHE, PK_ERROR_ENUM_REPO_NOT_FOUND, PK_ERROR_ENUM_CANNOT_REMOVE_SYSTEM_PACKAGE, PK_ERROR_ENUM_PROCESS_KILL, PK_ERROR_ENUM_FAILED_INITIALIZATION, PK_ERROR_ENUM_FAILED_FINALISE, PK_ERROR_ENUM_FAILED_CONFIG_PARSING, PK_ERROR_ENUM_CANNOT_CANCEL, PK_ERROR_ENUM_CANNOT_GET_LOCK, PK_ERROR_ENUM_NO_PACKAGES_TO_UPDATE, PK_ERROR_ENUM_CANNOT_WRITE_REPO_CONFIG, PK_ERROR_ENUM_LOCAL_INSTALL_FAILED, PK_ERROR_ENUM_BAD_GPG_SIGNATURE, PK_ERROR_ENUM_MISSING_GPG_SIGNATURE, PK_ERROR_ENUM_CANNOT_INSTALL_SOURCE_PACKAGE, PK_ERROR_ENUM_REPO_CONFIGURATION_ERROR, PK_ERROR_ENUM_NO_LICENSE_AGREEMENT, PK_ERROR_ENUM_FILE_CONFLICTS, PK_ERROR_ENUM_PACKAGE_CONFLICTS, PK_ERROR_ENUM_REPO_NOT_AVAILABLE, PK_ERROR_ENUM_INVALID_PACKAGE_FILE, PK_ERROR_ENUM_PACKAGE_INSTALL_BLOCKED, PK_ERROR_ENUM_PACKAGE_CORRUPT, PK_ERROR_ENUM_ALL_PACKAGES_ALREADY_INSTALLED, PK_ERROR_ENUM_FILE_NOT_FOUND, PK_ERROR_ENUM_NO_MORE_MIRRORS_TO_TRY, PK_ERROR_ENUM_NO_DISTRO_UPGRADE_DATA, PK_ERROR_ENUM_INCOMPATIBLE_ARCHITECTURE, PK_ERROR_ENUM_NO_SPACE_ON_DEVICE, PK_ERROR_ENUM_MEDIA_CHANGE_REQUIRED, PK_ERROR_ENUM_NOT_AUTHORIZED, PK_ERROR_ENUM_UPDATE_NOT_FOUND, PK_ERROR_ENUM_CANNOT_INSTALL_REPO_UNSIGNED, PK_ERROR_ENUM_CANNOT_UPDATE_REPO_UNSIGNED, PK_ERROR_ENUM_UNKNOWN } PkErrorCodeEnum;
The error type
typedef enum { PK_GROUP_ENUM_ACCESSIBILITY, PK_GROUP_ENUM_ACCESSORIES, PK_GROUP_ENUM_ADMIN_TOOLS, PK_GROUP_ENUM_COMMUNICATION, PK_GROUP_ENUM_DESKTOP_GNOME, PK_GROUP_ENUM_DESKTOP_KDE, PK_GROUP_ENUM_DESKTOP_OTHER, PK_GROUP_ENUM_DESKTOP_XFCE, PK_GROUP_ENUM_EDUCATION, PK_GROUP_ENUM_FONTS, PK_GROUP_ENUM_GAMES, PK_GROUP_ENUM_GRAPHICS, PK_GROUP_ENUM_INTERNET, PK_GROUP_ENUM_LEGACY, PK_GROUP_ENUM_LOCALIZATION, PK_GROUP_ENUM_MAPS, PK_GROUP_ENUM_MULTIMEDIA, PK_GROUP_ENUM_NETWORK, PK_GROUP_ENUM_OFFICE, PK_GROUP_ENUM_OTHER, PK_GROUP_ENUM_POWER_MANAGEMENT, PK_GROUP_ENUM_PROGRAMMING, PK_GROUP_ENUM_PUBLISHING, PK_GROUP_ENUM_REPOS, PK_GROUP_ENUM_SECURITY, PK_GROUP_ENUM_SERVERS, PK_GROUP_ENUM_SYSTEM, PK_GROUP_ENUM_VIRTUALIZATION, PK_GROUP_ENUM_SCIENCE, PK_GROUP_ENUM_DOCUMENTATION, PK_GROUP_ENUM_ELECTRONICS, PK_GROUP_ENUM_COLLECTIONS, PK_GROUP_ENUM_VENDOR, PK_GROUP_ENUM_NEWEST, PK_GROUP_ENUM_UNKNOWN } PkGroupEnum;
The group type
typedef enum { PK_UPDATE_STATE_ENUM_STABLE, PK_UPDATE_STATE_ENUM_UNSTABLE, PK_UPDATE_STATE_ENUM_TESTING, PK_UPDATE_STATE_ENUM_UNKNOWN } PkUpdateStateEnum;
What state the update is in
typedef enum { PK_INFO_ENUM_INSTALLED, PK_INFO_ENUM_AVAILABLE, PK_INFO_ENUM_LOW, PK_INFO_ENUM_ENHANCEMENT, PK_INFO_ENUM_NORMAL, PK_INFO_ENUM_BUGFIX, PK_INFO_ENUM_IMPORTANT, PK_INFO_ENUM_SECURITY, PK_INFO_ENUM_BLOCKED, PK_INFO_ENUM_DOWNLOADING, PK_INFO_ENUM_UPDATING, PK_INFO_ENUM_INSTALLING, PK_INFO_ENUM_REMOVING, PK_INFO_ENUM_CLEANUP, PK_INFO_ENUM_OBSOLETING, PK_INFO_ENUM_COLLECTION_INSTALLED, PK_INFO_ENUM_COLLECTION_AVAILABLE, PK_INFO_ENUM_FINISHED, PK_INFO_ENUM_UNKNOWN } PkInfoEnum;
The enumerated types used in Package()
- these have to refer to a specific
package action, rather than a general state
typedef enum { PK_DISTRO_UPGRADE_ENUM_STABLE, PK_DISTRO_UPGRADE_ENUM_UNSTABLE, PK_DISTRO_UPGRADE_ENUM_UNKNOWN } PkDistroUpgradeEnum;
The distro upgrade status
typedef enum { PK_SIGTYPE_ENUM_GPG, PK_SIGTYPE_ENUM_UNKNOWN } PkSigTypeEnum;
The signature type type
typedef enum { PK_PROVIDES_ENUM_ANY, PK_PROVIDES_ENUM_MODALIAS, PK_PROVIDES_ENUM_CODEC, PK_PROVIDES_ENUM_MIMETYPE, PK_PROVIDES_ENUM_FONT, PK_PROVIDES_ENUM_HARDWARE_DRIVER, PK_PROVIDES_ENUM_UNKNOWN } PkProvidesEnum;
The signature type type
typedef enum { PK_LICENSE_ENUM_GLIDE, PK_LICENSE_ENUM_AFL, PK_LICENSE_ENUM_AMPAS_BSD, PK_LICENSE_ENUM_AMAZON_DSL, PK_LICENSE_ENUM_ADOBE, PK_LICENSE_ENUM_AGPLV1, PK_LICENSE_ENUM_AGPLV3, PK_LICENSE_ENUM_ASL_1_DOT_0, PK_LICENSE_ENUM_ASL_1_DOT_1, PK_LICENSE_ENUM_ASL_2_DOT_0, PK_LICENSE_ENUM_APSL_2_DOT_0, PK_LICENSE_ENUM_ARTISTIC_CLARIFIED, PK_LICENSE_ENUM_ARTISTIC_2_DOT_0, PK_LICENSE_ENUM_ARL, PK_LICENSE_ENUM_BITTORRENT, PK_LICENSE_ENUM_BOOST, PK_LICENSE_ENUM_BSD_WITH_ADVERTISING, PK_LICENSE_ENUM_BSD, PK_LICENSE_ENUM_CECILL, PK_LICENSE_ENUM_CDDL, PK_LICENSE_ENUM_CPL, PK_LICENSE_ENUM_CONDOR, PK_LICENSE_ENUM_COPYRIGHT_ONLY, PK_LICENSE_ENUM_CRYPTIX, PK_LICENSE_ENUM_CRYSTAL_STACKER, PK_LICENSE_ENUM_DOC, PK_LICENSE_ENUM_WTFPL, PK_LICENSE_ENUM_EPL, PK_LICENSE_ENUM_ECOS, PK_LICENSE_ENUM_EFL_2_DOT_0, PK_LICENSE_ENUM_EU_DATAGRID, PK_LICENSE_ENUM_LGPLV2_WITH_EXCEPTIONS, PK_LICENSE_ENUM_FTL, PK_LICENSE_ENUM_GIFTWARE, PK_LICENSE_ENUM_GPLV2, PK_LICENSE_ENUM_GPLV2_WITH_EXCEPTIONS, PK_LICENSE_ENUM_GPLV2_PLUS_WITH_EXCEPTIONS, PK_LICENSE_ENUM_GPLV3, PK_LICENSE_ENUM_GPLV3_WITH_EXCEPTIONS, PK_LICENSE_ENUM_GPLV3_PLUS_WITH_EXCEPTIONS, PK_LICENSE_ENUM_LGPLV2, PK_LICENSE_ENUM_LGPLV3, PK_LICENSE_ENUM_GNUPLOT, PK_LICENSE_ENUM_IBM, PK_LICENSE_ENUM_IMATIX, PK_LICENSE_ENUM_IMAGEMAGICK, PK_LICENSE_ENUM_IMLIB2, PK_LICENSE_ENUM_IJG, PK_LICENSE_ENUM_INTEL_ACPI, PK_LICENSE_ENUM_INTERBASE, PK_LICENSE_ENUM_ISC, PK_LICENSE_ENUM_JABBER, PK_LICENSE_ENUM_JASPER, PK_LICENSE_ENUM_LPPL, PK_LICENSE_ENUM_LIBTIFF, PK_LICENSE_ENUM_LPL, PK_LICENSE_ENUM_MECAB_IPADIC, PK_LICENSE_ENUM_MIT, PK_LICENSE_ENUM_MIT_WITH_ADVERTISING, PK_LICENSE_ENUM_MPLV1_DOT_0, PK_LICENSE_ENUM_MPLV1_DOT_1, PK_LICENSE_ENUM_NCSA, PK_LICENSE_ENUM_NGPL, PK_LICENSE_ENUM_NOSL, PK_LICENSE_ENUM_NETCDF, PK_LICENSE_ENUM_NETSCAPE, PK_LICENSE_ENUM_NOKIA, PK_LICENSE_ENUM_OPENLDAP, PK_LICENSE_ENUM_OPENPBS, PK_LICENSE_ENUM_OSL_1_DOT_0, PK_LICENSE_ENUM_OSL_1_DOT_1, PK_LICENSE_ENUM_OSL_2_DOT_0, PK_LICENSE_ENUM_OSL_3_DOT_0, PK_LICENSE_ENUM_OPENSSL, PK_LICENSE_ENUM_OREILLY, PK_LICENSE_ENUM_PHORUM, PK_LICENSE_ENUM_PHP, PK_LICENSE_ENUM_PUBLIC_DOMAIN, PK_LICENSE_ENUM_PYTHON, PK_LICENSE_ENUM_QPL, PK_LICENSE_ENUM_RPSL, PK_LICENSE_ENUM_RUBY, PK_LICENSE_ENUM_SENDMAIL, PK_LICENSE_ENUM_SLEEPYCAT, PK_LICENSE_ENUM_SLIB, PK_LICENSE_ENUM_SISSL, PK_LICENSE_ENUM_SPL, PK_LICENSE_ENUM_TCL, PK_LICENSE_ENUM_UCD, PK_LICENSE_ENUM_VIM, PK_LICENSE_ENUM_VNLSL, PK_LICENSE_ENUM_VSL, PK_LICENSE_ENUM_W3C, PK_LICENSE_ENUM_WXWIDGETS, PK_LICENSE_ENUM_XINETD, PK_LICENSE_ENUM_ZEND, PK_LICENSE_ENUM_ZPLV1_DOT_0, PK_LICENSE_ENUM_ZPLV2_DOT_0, PK_LICENSE_ENUM_ZPLV2_DOT_1, PK_LICENSE_ENUM_ZLIB, PK_LICENSE_ENUM_ZLIB_WITH_ACK, PK_LICENSE_ENUM_CDL, PK_LICENSE_ENUM_FBSDDL, PK_LICENSE_ENUM_GFDL, PK_LICENSE_ENUM_IEEE, PK_LICENSE_ENUM_OFSFDL, PK_LICENSE_ENUM_OPEN_PUBLICATION, PK_LICENSE_ENUM_CC_BY, PK_LICENSE_ENUM_CC_BY_SA, PK_LICENSE_ENUM_CC_BY_ND, PK_LICENSE_ENUM_DSL, PK_LICENSE_ENUM_FREE_ART, PK_LICENSE_ENUM_OFL, PK_LICENSE_ENUM_UTOPIA, PK_LICENSE_ENUM_ARPHIC, PK_LICENSE_ENUM_BAEKMUK, PK_LICENSE_ENUM_BITSTREAM_VERA, PK_LICENSE_ENUM_LUCIDA, PK_LICENSE_ENUM_MPLUS, PK_LICENSE_ENUM_STIX, PK_LICENSE_ENUM_XANO, PK_LICENSE_ENUM_VOSTROM, PK_LICENSE_ENUM_XEROX, PK_LICENSE_ENUM_RICEBSD, PK_LICENSE_ENUM_QHULL, PK_LICENSE_ENUM_UNKNOWN } PkLicenseEnum;
guint pk_enum_find_value (const PkEnumMatch *table, const gchar *string);
Search for a string value in a table of constants.
|
A PkEnumMatch enum table of values |
|
the string constant to search for, e.g. "desktop-gnome" |
Returns : |
the enumerated constant value, e.g. PK_SIGTYPE_ENUM_GPG |
const gchar * pk_enum_find_string (const PkEnumMatch *table, guint value);
Search for a enum value in a table of constants.
|
A PkEnumMatch enum table of values |
|
the enumerated constant value, e.g. PK_SIGTYPE_ENUM_GPG |
Returns : |
the string constant, e.g. "desktop-gnome" |
PkSigTypeEnum pk_sig_type_enum_from_text (const gchar *sig_type);
Converts a text enumerated type to its unsigned integer representation
|
Text describing the enumerated type |
Returns : |
the enumerated constant value, e.g. PK_SIGTYPE_ENUM_GPG |
const gchar * pk_sig_type_enum_to_text (PkSigTypeEnum sig_type);
Converts a enumerated type to its text representation
|
The enumerated type value |
Returns : |
the enumerated constant value, e.g. "available" |
PkInfoEnum pk_info_enum_from_text (const gchar *info);
Converts a text enumerated type to its unsigned integer representation
|
Text describing the enumerated type |
Returns : |
the enumerated constant value, e.g. PK_SIGTYPE_ENUM_GPG |
const gchar * pk_info_enum_to_text (PkInfoEnum info);
Converts a enumerated type to its text representation
|
The enumerated type value |
Returns : |
the enumerated constant value, e.g. "available" |
PkUpdateStateEnum pk_update_state_enum_from_text (const gchar *update_state);
Converts a text enumerated type to its unsigned integer representation
|
Text describing the enumerated type |
Returns : |
the enumerated constant value, e.g. PK_UPDATE_STATE_ENUM_STABLE
|
const gchar * pk_update_state_enum_to_text (PkUpdateStateEnum update_state);
Converts a enumerated type to its text representation
|
The enumerated type value |
Returns : |
the enumerated constant value, e.g. "testing" |
PkExitEnum pk_exit_enum_from_text (const gchar *exit);
Converts a text enumerated type to its unsigned integer representation
|
Text describing the enumerated type |
Returns : |
the enumerated constant value, e.g. PK_SIGTYPE_ENUM_GPG |
const gchar * pk_exit_enum_to_text (PkExitEnum exit);
Converts a enumerated type to its text representation
|
The enumerated type value |
Returns : |
the enumerated constant value, e.g. "available" |
PkNetworkEnum pk_network_enum_from_text (const gchar *network);
Converts a text enumerated type to its unsigned integer representation
|
Text describing the enumerated type |
Returns : |
the enumerated constant value, e.g. PK_SIGTYPE_ENUM_GPG |
const gchar * pk_network_enum_to_text (PkNetworkEnum network);
Converts a enumerated type to its text representation
|
The enumerated type value |
Returns : |
the enumerated constant value, e.g. "available" |
PkStatusEnum pk_status_enum_from_text (const gchar *status);
Converts a text enumerated type to its unsigned integer representation
|
Text describing the enumerated type |
Returns : |
the enumerated constant value, e.g. PK_SIGTYPE_ENUM_GPG |
const gchar * pk_status_enum_to_text (PkStatusEnum status);
Converts a enumerated type to its text representation
|
The enumerated type value |
Returns : |
the enumerated constant value, e.g. "available" |
PkRoleEnum pk_role_enum_from_text (const gchar *role);
Converts a text enumerated type to its unsigned integer representation
|
Text describing the enumerated type |
Returns : |
the enumerated constant value, e.g. PK_SIGTYPE_ENUM_GPG |
const gchar * pk_role_enum_to_text (PkRoleEnum role);
Converts a enumerated type to its text representation
|
The enumerated type value |
Returns : |
the enumerated constant value, e.g. "available" |
PkErrorCodeEnum pk_error_enum_from_text (const gchar *code);
Converts a text enumerated type to its unsigned integer representation
|
Text describing the enumerated type |
Returns : |
the enumerated constant value, e.g. PK_SIGTYPE_ENUM_GPG |
const gchar * pk_error_enum_to_text (PkErrorCodeEnum code);
Converts a enumerated type to its text representation
|
The enumerated type value |
Returns : |
the enumerated constant value, e.g. "available" |
PkRestartEnum pk_restart_enum_from_text (const gchar *restart);
Converts a text enumerated type to its unsigned integer representation
|
Text describing the enumerated type |
Returns : |
the enumerated constant value, e.g. PK_SIGTYPE_ENUM_GPG |
const gchar * pk_restart_enum_to_text (PkRestartEnum restart);
Converts a enumerated type to its text representation
|
The enumerated type value |
Returns : |
the enumerated constant value, e.g. "available" |
PkMessageEnum pk_message_enum_from_text (const gchar *message);
Converts a text enumerated type to its unsigned integer representation
|
Text describing the enumerated type |
Returns : |
the enumerated constant value, e.g. PK_SIGTYPE_ENUM_GPG |
const gchar * pk_message_enum_to_text (PkMessageEnum message);
Converts a enumerated type to its text representation
|
The enumerated type value |
Returns : |
the enumerated constant value, e.g. "available" |
PkGroupEnum pk_group_enum_from_text (const gchar *group);
Converts a text enumerated type to its unsigned integer representation
|
Text describing the enumerated type |
Returns : |
the enumerated constant value, e.g. PK_SIGTYPE_ENUM_GPG |
const gchar * pk_group_enum_to_text (PkGroupEnum group);
Converts a enumerated type to its text representation
|
The enumerated type value |
Returns : |
the enumerated constant value, e.g. "available" |
PkFilterEnum pk_filter_enum_from_text (const gchar *filter);
Converts a text enumerated type to its unsigned integer representation
|
Text describing the enumerated type |
Returns : |
the enumerated constant value, e.g. PK_SIGTYPE_ENUM_GPG |
const gchar * pk_filter_enum_to_text (PkFilterEnum filter);
Converts a enumerated type to its text representation
|
The enumerated type value |
Returns : |
the enumerated constant value, e.g. "available" |
PkProvidesEnum pk_provides_enum_from_text (const gchar *provides);
Converts a text enumerated type to its unsigned integer representation
|
Text describing the enumerated type |
Returns : |
the enumerated constant value, e.g. PK_PROVIDES_ENUM_MODALIAS |
const gchar * pk_provides_enum_to_text (PkProvidesEnum provides);
Converts a enumerated type to its text representation
|
The enumerated type value |
Returns : |
the enumerated constant value, e.g. "codec" |
PkLicenseEnum pk_license_enum_from_text (const gchar *license);
Converts a text enumerated type to its unsigned integer representation
|
Text describing the enumerated type |
Returns : |
the enumerated constant value, e.g. PK_SIGTYPE_ENUM_GPG |
const gchar * pk_license_enum_to_text (PkLicenseEnum license);
Converts a enumerated type to its text representation
|
The enumerated type value |
Returns : |
the enumerated constant value, e.g. "available" |
PkDistroUpgradeEnum pk_distro_upgrade_enum_from_text (const gchar *upgrade);
Converts a text enumerated type to its unsigned integer representation
|
Text describing the enumerated type |
Returns : |
the enumerated constant value, e.g. PK_DISTRO_UPGRADE_ENUM_STABLE |
const gchar * pk_distro_upgrade_enum_to_text (PkDistroUpgradeEnum upgrade);
Converts a enumerated type to its text representation
|
The enumerated type value |
Returns : |
the enumerated constant value, e.g. "stable" |