File: pps-metadata.c

package info (click to toggle)
papers 49.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 21,044 kB
  • sloc: ansic: 37,728; sh: 197; xml: 127; makefile: 113
file content (350 lines) | stat: -rw-r--r-- 8,374 bytes parent folder | download | duplicates (3)
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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
/* pps-metadata.c
 *  this file is part of papers, a gnome document viewer
 *
 * Copyright (C) 2009 Carlos Garcia Campos  <carlosgc@gnome.org>
 *
 * Papers is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * Papers 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
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 */

#include <gio/gio.h>
#include <string.h>

#include "pps-file-helpers.h"
#include "pps-metadata.h"

struct _PpsMetadata {
	GObject base;

	GFile *file;
	GHashTable *items;
};

struct _PpsMetadataClass {
	GObjectClass base_class;
};

G_DEFINE_TYPE (PpsMetadata, pps_metadata, G_TYPE_OBJECT)

#define PPS_METADATA_NAMESPACE "metadata::papers"

static void
pps_metadata_finalize (GObject *object)
{
	PpsMetadata *metadata = PPS_METADATA (object);

	g_clear_pointer (&metadata->items, g_hash_table_destroy);
	g_clear_object (&metadata->file);

	G_OBJECT_CLASS (pps_metadata_parent_class)->finalize (object);
}

static void
pps_metadata_init (PpsMetadata *metadata)
{
	metadata->items = g_hash_table_new_full (g_str_hash,
	                                         g_str_equal,
	                                         g_free,
	                                         g_free);
}

static void
pps_metadata_class_init (PpsMetadataClass *klass)
{
	GObjectClass *gobject_class = G_OBJECT_CLASS (klass);

	gobject_class->finalize = pps_metadata_finalize;
}

static void
pps_metadata_load (PpsMetadata *metadata)
{
	GFileInfo *info;
	gchar **attrs;
	gint i;
	GError *error = NULL;

	info = g_file_query_info (metadata->file, "metadata::*", 0, NULL, &error);
	if (!info) {
		g_warning ("%s", error->message);
		g_error_free (error);

		return;
	}

	if (!g_file_info_has_namespace (info, "metadata")) {
		g_object_unref (info);

		return;
	}

	attrs = g_file_info_list_attributes (info, "metadata");
	for (i = 0; attrs[i]; i++) {
		GFileAttributeType type;
		gpointer value;
		const gchar *key;

		if (!g_str_has_prefix (attrs[i], PPS_METADATA_NAMESPACE))
			continue;

		if (!g_file_info_get_attribute_data (info, attrs[i],
		                                     &type, &value, NULL)) {
			continue;
		}

		key = attrs[i] + strlen (PPS_METADATA_NAMESPACE "::");

		if (type == G_FILE_ATTRIBUTE_TYPE_STRING) {
			g_hash_table_insert (metadata->items,
			                     g_strdup (key),
			                     g_strdup (value));
		}
	}
	g_strfreev (attrs);
	g_object_unref (info);
}

PpsMetadata *
pps_metadata_new (GFile *file)
{
	PpsMetadata *metadata;

	g_return_val_if_fail (G_IS_FILE (file), NULL);

	metadata = PPS_METADATA (g_object_new (PPS_TYPE_METADATA, NULL));
	if (!pps_file_is_temp (file)) {
		metadata->file = g_object_ref (file);
		pps_metadata_load (metadata);
	}

	return metadata;
}

gboolean
pps_metadata_is_empty (PpsMetadata *metadata)
{
	return g_hash_table_size (metadata->items) == 0;
}

/**
 * pps_metadata_get_string:
 * @metadata: a #PpsMetadata
 * @key: The keyword of the metadata
 * @value: (out) (transfer none):  The value of the returned metadata
 *
 * Returns: %TRUE on success, or %FALSE on failure.
 */
gboolean
pps_metadata_get_string (PpsMetadata *metadata,
                         const gchar *key,
                         const gchar **value)
{
	gchar *v;

	v = g_hash_table_lookup (metadata->items, key);
	if (!v)
		return FALSE;

	*value = v;
	return TRUE;
}

static void
metadata_set_callback (GObject *file,
                       GAsyncResult *result,
                       PpsMetadata *metadata)
{
	GError *error = NULL;

	if (!g_file_set_attributes_finish (G_FILE (file), result, NULL, &error)) {
		g_warning ("%s", error->message);
		g_error_free (error);
	}
}

gboolean
pps_metadata_set_string (PpsMetadata *metadata,
                         const gchar *key,
                         const gchar *value)
{
	GFileInfo *info;
	gchar *gio_key;

	g_hash_table_insert (metadata->items, g_strdup (key), g_strdup (value));
	if (!metadata->file)
		return TRUE;

	info = g_file_info_new ();

	gio_key = g_strconcat (PPS_METADATA_NAMESPACE "::", key, NULL);
	if (value) {
		g_file_info_set_attribute_string (info, gio_key, value);
	} else {
		g_file_info_set_attribute (info, gio_key,
		                           G_FILE_ATTRIBUTE_TYPE_INVALID,
		                           NULL);
	}
	g_free (gio_key);

	g_file_set_attributes_async (metadata->file,
	                             info,
	                             0,
	                             G_PRIORITY_DEFAULT,
	                             NULL,
	                             (GAsyncReadyCallback) metadata_set_callback,
	                             metadata);
	g_object_unref (info);

	return TRUE;
}

/**
 * pps_metadata_get_int:
 * @metadata: a #PpsMetadata
 * @key: The keyword of the metadata
 * @value: (out):  The value of the returned metadata
 *
 * Returns: %TRUE on success, or %FALSE on failure.
 */
gboolean
pps_metadata_get_int (PpsMetadata *metadata,
                      const gchar *key,
                      gint *value)
{
	const gchar *string_value;
	gchar *endptr;
	gint int_value;

	if (!pps_metadata_get_string (metadata, key, &string_value))
		return FALSE;

	int_value = g_ascii_strtoull (string_value, &endptr, 0);
	if (int_value == 0 && string_value == endptr)
		return FALSE;

	*value = int_value;
	return TRUE;
}

gboolean
pps_metadata_set_int (PpsMetadata *metadata,
                      const gchar *key,
                      gint value)
{
	gchar string_value[32];

	g_snprintf (string_value, sizeof (string_value), "%d", value);

	return pps_metadata_set_string (metadata, key, string_value);
}

/**
 * pps_metadata_get_double:
 * @metadata: a #PpsMetadata
 * @key: The keyword of the metadata
 * @value: (out):  The value of the returned metadata
 *
 * Returns: %TRUE on success, or %FALSE on failure.
 */
gboolean
pps_metadata_get_double (PpsMetadata *metadata,
                         const gchar *key,
                         gdouble *value)
{
	const gchar *string_value;
	gchar *endptr;
	gdouble double_value;

	if (!pps_metadata_get_string (metadata, key, &string_value))
		return FALSE;

	double_value = g_ascii_strtod (string_value, &endptr);
	if (double_value == 0. && string_value == endptr)
		return FALSE;

	*value = double_value;
	return TRUE;
}

gboolean
pps_metadata_set_double (PpsMetadata *metadata,
                         const gchar *key,
                         gdouble value)
{
	gchar string_value[G_ASCII_DTOSTR_BUF_SIZE];

	g_ascii_dtostr (string_value, G_ASCII_DTOSTR_BUF_SIZE, value);

	return pps_metadata_set_string (metadata, key, string_value);
}

/**
 * pps_metadata_get_boolean:
 * @metadata: a #PpsMetadata
 * @key: The keyword of the metadata
 * @value: (out):  The value of the returned metadata
 *
 * Returns: %TRUE on success, or %FALSE on failure.
 */
gboolean
pps_metadata_get_boolean (PpsMetadata *metadata,
                          const gchar *key,
                          gboolean *value)
{
	gint int_value;

	if (!pps_metadata_get_int (metadata, key, &int_value))
		return FALSE;

	*value = int_value;
	return TRUE;
}

gboolean
pps_metadata_set_boolean (PpsMetadata *metadata,
                          const gchar *key,
                          gboolean value)
{
	return pps_metadata_set_string (metadata, key, value ? "1" : "0");
}

gboolean
pps_metadata_has_key (PpsMetadata *metadata,
                      const gchar *key)
{
	return g_hash_table_lookup (metadata->items, key) != NULL;
}

gboolean
pps_metadata_is_file_supported (GFile *file)
{
	GFileAttributeInfoList *namespaces;
	gint i;
	gboolean retval = FALSE;

	namespaces = g_file_query_writable_namespaces (file, NULL, NULL);
	if (!namespaces)
		return retval;

	for (i = 0; i < namespaces->n_infos; i++) {
		if (strcmp (namespaces->infos[i].name, "metadata") == 0) {
			retval = TRUE;
			break;
		}
	}

	g_file_attribute_info_list_unref (namespaces);

	return retval;
}