本文整理汇总了C++中AptIntf::searchPackageFiles方法的典型用法代码示例。如果您正苦于以下问题:C++ AptIntf::searchPackageFiles方法的具体用法?C++ AptIntf::searchPackageFiles怎么用?C++ AptIntf::searchPackageFiles使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类AptIntf
的用法示例。
在下文中一共展示了AptIntf::searchPackageFiles方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: pk_backend_search_files_thread
static void pk_backend_search_files_thread(PkBackendJob *job, GVariant *params, gpointer user_data)
{
gchar **search;
PkBitfield filters;
AptIntf *apt = static_cast<AptIntf*>(pk_backend_job_get_user_data(job));
g_variant_get(params, "(t^a&s)",
&filters,
&search);
pk_backend_job_set_allow_cancel(job, true);
// as we can only search for installed files lets avoid the opposite
if (!pk_bitfield_contain(filters, PK_FILTER_ENUM_NOT_INSTALLED)) {
if (!apt->init()) {
g_debug("Failed to create apt cache");
return;
}
pk_backend_job_set_status(job, PK_STATUS_ENUM_QUERY);
PkgList output;
output = apt->searchPackageFiles(search);
// It's faster to emit the packages here rather than in the matching part
apt->emitPackages(output, filters);
}
}