Functions to create new backend and usage of it in existing backends
[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
24 static GFile *
25 gio_iri_to_file (AtomCtx *ctx, IRI *iri)
26 {
27   gchar *root = atom_config_get_str (ctx, "gio", "root");
28   gchar *path = iri_get_path (iri);
29   gchar *filename = g_build_filename (root, path, NULL);
30   GFile *file = g_file_new_for_path (filename);
31   g_free (root);
32   g_free (filename);
33   return file;
34 }
35
36 static Atom *
37 gio_atom_retrieve_resource (AtomCtx *ctx, IRI *iri)
38 {
39   GFile *file;
40   GError *error = NULL;
41   gchar *data;
42   gsize len;
43   Atom *atom;
44   file = gio_iri_to_file (ctx, iri);
45   error = NULL;
46   if (!g_file_load_contents (file, NULL, &data, &len, NULL, &error))
47     {
48       g_object_unref (file);
49       atom_error_set (ctx, error);
50       return NULL;
51     }
52   g_object_unref (file);
53   atom = atom_new_data_len (data, len);
54   g_free (data);
55   return atom;
56 }
57
58 AtomBackend *
59 gio_backend (void)
60 {
61   AtomBackend *backend;
62   backend = atom_backend_new ();
63   atom_backend_retrieve_resource_set (backend, gio_atom_retrieve_resource);
64   return backend;
65 }