Given a GFile, return an Atom, so we can use it for enumeration
[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 Atom *
38 gio_file_to_atom (AtomCtx *ctx, GFile *file)
39 {
40   GError *error = NULL;
41   gchar *data;
42   gsize len;
43   Atom *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       g_object_unref (file);
49       atom_error_set (ctx, aerr);
50       g_error_free (error);
51       return NULL;
52     }
53   g_object_unref (file);
54   atom = atom_entry_new_data_len (data, len);
55   g_free (data);
56   return atom;
57 }
58
59 static Atom *
60 gio_atom_retrieve_resource (AtomCtx *ctx, IRI *iri)
61 {
62   GFile *file;
63   file = gio_iri_to_file (ctx, iri);
64   return gio_file_to_atom (ctx, file);
65 }
66
67 AtomBackend *
68 gio_backend (void)
69 {
70   AtomBackend *backend;
71   backend = atom_backend_new ();
72   atom_backend_retrieve_resource_set (backend, gio_atom_retrieve_resource);
73   return backend;
74 }