This file is indexed.

/usr/include/AppStream/as-component.h is in libappstream-dev 0.7.3-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*-
 *
 * Copyright (C) 2012-2014 Matthias Klumpp <matthias@tenstral.net>
 *
 * Licensed under the GNU Lesser General Public License Version 2.1
 *
 * This library 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 library 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 library.  If not, see <http://www.gnu.org/licenses/>.
 */

#if !defined (__APPSTREAM_H) && !defined (AS_COMPILATION)
#error "Only <appstream.h> can be included directly."
#endif

#ifndef __AS_COMPONENT_H
#define __AS_COMPONENT_H

#include <glib-object.h>
#include "as-screenshot.h"
#include "as-provides.h"
#include "as-release.h"
#include "as-enums.h"

#define AS_TYPE_COMPONENT_KIND (as_component_kind_get_type ())

#define AS_TYPE_COMPONENT (as_component_get_type ())
#define AS_COMPONENT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), AS_TYPE_COMPONENT, AsComponent))
#define AS_COMPONENT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), AS_TYPE_COMPONENT, AsComponentClass))
#define AS_IS_COMPONENT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), AS_TYPE_COMPONENT))
#define AS_IS_COMPONENT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), AS_TYPE_COMPONENT))
#define AS_COMPONENT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), AS_TYPE_COMPONENT, AsComponentClass))

G_BEGIN_DECLS

typedef struct _AsComponent AsComponent;
typedef struct _AsComponentClass AsComponentClass;
typedef struct _AsComponentPrivate AsComponentPrivate;

struct _AsComponent
{
	GObject parent_instance;
	AsComponentPrivate * priv;
};

struct _AsComponentClass
{
	GObjectClass parent_class;
	/*< private >*/
	void (*_as_reserved1)	(void);
	void (*_as_reserved2)	(void);
	void (*_as_reserved3)	(void);
	void (*_as_reserved4)	(void);
	void (*_as_reserved5)	(void);
	void (*_as_reserved6)	(void);
	void (*_as_reserved7)	(void);
	void (*_as_reserved8)	(void);
};

/**
 * AsComponentKind:
 * @AS_COMPONENT_KIND_UNKNOWN:		Type invalid or not known
 * @AS_COMPONENT_KIND_GENERIC:		A generic (= without specialized type) component
 * @AS_COMPONENT_KIND_DESKTOP_APP:	An application with a .desktop-file
 * @AS_COMPONENT_KIND_FONT:			A font
 * @AS_COMPONENT_KIND_CODEC:		A multimedia codec
 * @AS_COMPONENT_KIND_INPUTMETHOD:	An input-method provider
 * @AS_COMPONENT_KIND_ADDON:		An extension of existing software, which does not run standalone
 *
 * The URL type.
 **/
typedef enum  {
	AS_COMPONENT_KIND_UNKNOWN = 0,
	AS_COMPONENT_KIND_GENERIC = 1 << 0,
	AS_COMPONENT_KIND_DESKTOP_APP = 1 << 1,
	AS_COMPONENT_KIND_FONT = 1 << 2,
	AS_COMPONENT_KIND_CODEC = 1 << 3,
	AS_COMPONENT_KIND_INPUTMETHOD = 1 << 4,
	AS_COMPONENT_KIND_ADDON = 1 << 5,
	AS_COMPONENT_KIND_LAST = 7
} AsComponentKind;

GType				as_component_kind_get_type (void) G_GNUC_CONST;
const gchar*		as_component_kind_to_string (AsComponentKind kind);
AsComponentKind		as_component_kind_from_string (const gchar *kind_str);

GType				as_component_get_type (void) G_GNUC_CONST;
AsComponent*		as_component_new (void);
AsComponent*		as_component_construct (GType object_type);
gboolean			as_component_is_valid (AsComponent* cpt);
gchar* 				as_component_to_string (AsComponent* cpt);

AsComponentKind		as_component_get_kind (AsComponent* cpt);
void				as_component_set_kind (AsComponent* cpt,
										   AsComponentKind value);

const gchar*		as_component_get_id (AsComponent* cpt);
void				as_component_set_id (AsComponent* cpt,
											const gchar* value);

gchar**				as_component_get_pkgnames (AsComponent* cpt);
void				as_component_set_pkgnames (AsComponent* cpt,
												gchar** value);

const gchar*		as_component_get_name (AsComponent* cpt);
void				as_component_set_name (AsComponent* cpt,
											const gchar* value);
const gchar* 		as_component_get_name_original (AsComponent* cpt);
void				as_component_set_name_original (AsComponent* cpt,
													const gchar* value);

const gchar*		as_component_get_summary (AsComponent* cpt);
void				as_component_set_summary (AsComponent* cpt,
													const gchar* value);

const gchar*		as_component_get_description (AsComponent* cpt);
void				as_component_set_description (AsComponent* cpt,
													const gchar* value);

const gchar* 		as_component_get_project_license (AsComponent* cpt);
void				as_component_set_project_license (AsComponent* cpt,
													const gchar* value);

const gchar* 		as_component_get_project_group (AsComponent* cpt);
void				as_component_set_project_group (AsComponent* cpt,
													const gchar* value);

const gchar*		as_component_get_developer_name (AsComponent* cpt);
void				as_component_set_developer_name (AsComponent* cpt,
													const gchar* value);

gchar**				as_component_get_compulsory_for_desktops (AsComponent* cpt);
void				as_component_set_compulsory_for_desktops (AsComponent* cpt,
																gchar** value);
gboolean			as_component_is_compulsory_for_desktop (AsComponent* cpt,
																const gchar* desktop);

gchar**				as_component_get_categories (AsComponent* cpt);
void				as_component_set_categories (AsComponent* cpt,
												 gchar** value);
void				as_component_set_categories_from_str (AsComponent* cpt,
												const gchar* categories_str);
gboolean			as_component_has_category (AsComponent *cpt,
												const gchar *category);

GPtrArray*			as_component_get_screenshots (AsComponent* cpt);
void				as_component_add_screenshot (AsComponent* cpt,
												AsScreenshot* sshot);

gchar**				as_component_get_keywords (AsComponent* cpt);
void				as_component_set_keywords (AsComponent* cpt,
												gchar** value);

const gchar*		as_component_get_icon (AsComponent* cpt);
void				as_component_set_icon (AsComponent* cpt,
											const gchar* value);
const gchar*		as_component_get_icon_url (AsComponent* cpt);
void				as_component_set_icon_url (AsComponent* cpt,
											const gchar* value);

GPtrArray*			as_component_get_provided_items (AsComponent* cpt);
void				as_component_add_provided_item (AsComponent *cpt,
										AsProvidesKind kind,
										const gchar *value,
										const gchar *data);
gboolean			as_component_provides_item (AsComponent *cpt,
										AsProvidesKind kind,
										const gchar *value);

GHashTable*			as_component_get_urls (AsComponent *cpt);
const gchar*		as_component_get_url (AsComponent *cpt,
										  AsUrlKind url_kind);
void				as_component_add_url (AsComponent *cpt,
										AsUrlKind url_kind,
										const gchar *url);

GPtrArray*			as_component_get_releases (AsComponent* cpt);
void				as_component_add_release (AsComponent* cpt,
												AsRelease* release);

GPtrArray*			as_component_get_extends (AsComponent *cpt);
void				as_component_add_extends (AsComponent* cpt,
												const gchar* cpt_id);

void				as_component_add_language (AsComponent *cpt,
												const gchar *locale,
												gint percentage);
gint				as_component_get_language (AsComponent *cpt,
											   const gchar *locale);
GList*				as_component_get_languages (AsComponent *cpt);

gchar*				as_component_to_xml (AsComponent *cpt);

G_END_DECLS

#endif /* __AS_COMPONENT_H */