Renamed retrieve_resource to retrieve_entry
[cascardo/atompub.git] / backend / gio / gio.c
1 /*
2  *  Copyright (C) 2007  Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
3  *
4  *  This program is free software; you can redistribute it and/or modify
5  *  it under the terms of the GNU General Public License as published by
6  *  the Free Software Foundation; either version 2 of the License, or
7  *  (at your option) any later version.
8  *
9  *  This program is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU General Public License for more details.
13  *
14  *  You should have received a copy of the GNU General Public License along
15  *  with this program; if not, write to the Free Software Foundation, Inc.,
16  *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  */
18
19
20 #include <glib.h>
21 #include <gio/gio.h>
22 #include <atompub/atom.h>
23 #include <atompub/atom-glib.h>
24
25 static GFile *
26 gio_iri_to_file (AtomCtx *ctx, IRI *iri)
27 {
28   gchar *root = atom_config_get_str (ctx, "gio", "root");
29   gchar *path = iri_get_path (iri);
30   gchar *filename = g_build_filename (root, path, NULL);
31   GFile *file = g_file_new_for_path (filename);
32   g_free (root);
33   g_free (filename);
34   return file;
35 }
36
37 static AtomEntry *
38 gio_file_to_atom (AtomCtx *ctx, GFile *file)
39 {
40   GError *error = NULL;
41   gchar *data;
42   gsize len;
43   AtomEntry *atom;
44   error = NULL;
45   if (!g_file_load_contents (file, NULL, &data, &len, NULL, &error))
46     {
47       AtomError *aerr = atom_error_new_from_gerror (error);
48       atom_error_set (ctx, aerr);
49       g_error_free (error);
50       return NULL;
51     }
52   atom = atom_entry_new_data_len (data, len);
53   g_free (data);
54   return atom;
55 }
56
57 static AtomEntry *
58 gio_atom_retrieve_entry (AtomCtx *ctx, IRI *iri)
59 {
60   GFile *file;
61   AtomEntry *atom;
62   file = gio_iri_to_file (ctx, iri);
63   atom = gio_file_to_atom (ctx, file);
64   g_object_unref (file);
65   return atom;
66 }
67
68 static void
69 gio_enumerate_entries (AtomCtx *ctx, AtomEntry ***entries, size_t *len)
70 {
71   GFile *dir;
72   GFileEnumerator *enumerator;
73   GFileInfo *info;
74   GFile *file;
75   gchar *root;
76   gchar *name;
77   gchar *filename;
78   GPtrArray *array;
79   root = atom_config_get_str (ctx, "gio", "root");
80   dir = g_file_new_for_path (root);
81   enumerator = g_file_enumerate_children (dir, G_FILE_ATTRIBUTE_STANDARD_NAME,
82                                           G_FILE_QUERY_INFO_NONE, NULL, NULL);
83   array = g_ptr_array_new ();
84   while ((info = g_file_enumerator_next_file (enumerator, NULL, NULL)) != NULL)
85     {
86       name = g_file_info_get_name (info);
87       filename = g_build_filename (root, name, NULL);
88       g_object_unref (info);
89       file = g_file_new_for_path (filename);
90       g_ptr_array_add (array, gio_file_to_atom (ctx, file));
91       g_object_unref (file);
92       g_free (filename);
93     }
94   g_object_unref (enumerator);
95   g_object_unref (dir);
96   g_free (root);
97   if (entries)
98     *entries = array->pdata;
99   if (len)
100     *len = array->len;
101   g_ptr_array_free (array, FALSE);
102 }
103
104 AtomBackend *
105 gio_backend (void)
106 {
107   AtomBackend *backend;
108   backend = atom_backend_new ();
109   atom_backend_retrieve_entry_set (backend, gio_atom_retrieve_entry);
110   atom_backend_enumerate_entries_set (backend, gio_enumerate_entries);
111   return backend;
112 }