Ignore if an entry cannot be read when enumerating files
[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_id_to_file (AtomCtx *ctx, AtomID *id)
28 {
29   gchar *root = atom_config_get_str (ctx, "gio", "root");
30   gchar *path = atom_id_string (id);
31   gchar *filename = g_build_filename (root, path, NULL);
32   GFile *file = g_file_new_for_path (filename);
33   g_free (root);
34   g_free (filename);
35   return file;
36 }
37
38 static AtomEntry *
39 gio_file_to_atom (AtomCtx *ctx, GFile *file)
40 {
41   GError *error = NULL;
42   gchar *data;
43   gsize len;
44   AtomEntry *atom;
45   error = NULL;
46   if (!g_file_load_contents (file, NULL, &data, &len, NULL, &error))
47     {
48       AtomError *aerr = atom_error_new_from_gerror (error);
49       atom_error_set (ctx, aerr);
50       g_error_free (error);
51       return NULL;
52     }
53   atom = atom_entry_new_data_len (data, len);
54   g_free (data);
55   return atom;
56 }
57
58 static AtomEntry *
59 gio_atom_retrieve_entry (AtomCtx *ctx, AtomID *id)
60 {
61   GFile *file;
62   AtomEntry *atom;
63   file = gio_id_to_file (ctx, id);
64   atom = gio_file_to_atom (ctx, file);
65   g_object_unref (file);
66   return atom;
67 }
68
69 static void
70 gio_enumerate_entries (AtomCtx *ctx, AtomEntry ***entries, 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   root = atom_config_get_str (ctx, "gio", "root");
83   dir = g_file_new_for_path (root);
84   error = NULL;
85   enumerator = g_file_enumerate_children (dir, G_FILE_ATTRIBUTE_STANDARD_NAME,
86                                           G_FILE_QUERY_INFO_NONE, NULL, &error);
87   if (enumerator == NULL)
88     {
89       AtomError *aerr = atom_error_new_from_gerror (error);
90       atom_error_set (ctx, aerr);
91       g_error_free (error);
92       return;
93     }
94   array = g_ptr_array_new ();
95   while ((info = g_file_enumerator_next_file (enumerator, NULL, NULL)) != NULL)
96     {
97       name = g_file_info_get_name (info);
98       filename = g_build_filename (root, name, NULL);
99       g_object_unref (info);
100       file = g_file_new_for_path (filename);
101       entry = gio_file_to_atom (ctx, file);
102       if (entry)
103         {
104           g_ptr_array_add (array, entry);
105         }
106       else
107         {
108           atom_error_set (ctx, NULL);
109         }
110       g_object_unref (file);
111       g_free (filename);
112     }
113   g_object_unref (enumerator);
114   g_object_unref (dir);
115   g_free (root);
116   if (entries)
117     *entries = array->pdata;
118   if (len)
119     *len = array->len;
120   g_ptr_array_free (array, FALSE);
121 }
122
123 static int
124 gio_atom_is_feed (AtomCtx *ctx, AtomID *id)
125 {
126   return (!strcmp (atom_id_string (id), "/"));
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   atom_backend_is_feed_set (backend, gio_atom_is_feed);
137   return backend;
138 }