Backend now retrieves a request, not an Atom ID
[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 #include <string.h>
25
26 static GFile *
27 gio_req_to_file (AtomCtx *ctx, char *req)
28 {
29   gchar *root = atom_config_get_str (ctx, "gio", "root");
30   gchar *filename = g_build_filename (root, req, 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, char *req)
59 {
60   GFile *file;
61   AtomEntry *atom;
62   file = gio_req_to_file (ctx, req);
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, char ***reqs, AtomEntry ***entries,
70                        size_t *len)
71 {
72   GFile *dir;
73   GFileEnumerator *enumerator;
74   GFileInfo *info;
75   GFile *file;
76   AtomEntry *entry;
77   GError *error;
78   gchar *root;
79   gchar *name;
80   gchar *filename;
81   GPtrArray *array;
82   GPtrArray *filenames;
83   root = atom_config_get_str (ctx, "gio", "root");
84   dir = g_file_new_for_path (root);
85   error = NULL;
86   enumerator = g_file_enumerate_children (dir, G_FILE_ATTRIBUTE_STANDARD_NAME,
87                                           G_FILE_QUERY_INFO_NONE, NULL, &error);
88   if (enumerator == NULL)
89     {
90       AtomError *aerr = atom_error_new_from_gerror (error);
91       atom_error_set (ctx, aerr);
92       g_error_free (error);
93       return;
94     }
95   array = g_ptr_array_new ();
96   filenames = g_ptr_array_new ();
97   while ((info = g_file_enumerator_next_file (enumerator, NULL, NULL)) != NULL)
98     {
99       name = g_file_info_get_name (info);
100       filename = g_build_filename (root, name, NULL);
101       file = g_file_new_for_path (filename);
102       entry = gio_file_to_atom (ctx, file);
103       if (entry)
104         {
105           g_ptr_array_add (array, entry);
106           g_ptr_array_add (filenames, g_strdup (name));
107         }
108       else
109         {
110           atom_error_set (ctx, NULL);
111         }
112       g_object_unref (file);
113       g_free (filename);
114       g_object_unref (info);
115     }
116   g_object_unref (enumerator);
117   g_object_unref (dir);
118   g_free (root);
119   if (reqs)
120     *reqs = filenames->pdata;
121   if (entries)
122     *entries = array->pdata;
123   if (len)
124     *len = array->len;
125   g_ptr_array_free (array, FALSE);
126   g_ptr_array_free (filenames, FALSE);
127 }
128
129 AtomBackend *
130 gio_backend (void)
131 {
132   AtomBackend *backend;
133   backend = atom_backend_new ();
134   atom_backend_retrieve_entry_set (backend, gio_atom_retrieve_entry);
135   atom_backend_enumerate_entries_set (backend, gio_enumerate_entries);
136   return backend;
137 }