1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
*
* Copyright (C) 2012-2024 Matthias Klumpp <matthias@tenstral.net>
*
* Licensed under the GNU Lesser General Public License Version 2.1
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 2.1 of the license, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __ASCLI_ACTIONS_MDATA_H
#define __ASCLI_ACTIONS_MDATA_H
#include <glib-object.h>
#include <appstream.h>
G_BEGIN_DECLS
int ascli_what_provides (const gchar *cachepath,
const gchar *kind_str,
const gchar *item,
gboolean detailed);
int ascli_search_component (const gchar *cachepath,
const gchar *search_term,
gboolean detailed,
gboolean no_cache);
int ascli_get_component (const gchar *cachepath,
const gchar *identifier,
gboolean detailed,
gboolean no_cache);
int ascli_list_categories (const gchar *cachepath,
gchar **categories,
gboolean detailed,
gboolean no_cache);
int ascli_refresh_cache (const gchar *cachepath,
const gchar *datapath,
const gchar *const *sources_str,
gboolean forced);
int ascli_dump_component (const gchar *cachepath,
const gchar *identifier,
AsFormatKind mformat,
gboolean no_cache);
int ascli_put_metainfo (const gchar *fname, const gchar *origin, gboolean for_user);
int ascli_convert_data (const gchar *in_fname, const gchar *out_fname, AsFormatKind mformat);
int ascli_create_metainfo_template (const gchar *out_fname,
const gchar *cpt_kind_str,
const gchar *desktop_file);
gint ascli_check_is_satisfied (const gchar *fname_or_cid,
const gchar *cachepath,
gboolean no_cache);
gint ascli_check_syscompat (const gchar *fname_or_cid,
const gchar *cachepath,
gboolean no_cache,
gboolean show_details);
G_END_DECLS
#endif /* __ASCLI_ACTIONS_MDATA_H */
|