5ac4550a8077ee45d2adf136df12fce644fc1c9a
[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 GFile *gio_iri_to_file (AtomCtx *ctx, IRI *iri)
25 {
26   gchar *root = atom_config_get_str (ctx, "gio", "root");
27   gchar *path = iri_get_path (iri);
28   gchar *filename = g_build_filename (root, path, NULL);
29   GFile *file = g_file_new_for_path (filename);
30   g_free (root);
31   g_free (filename);
32   return file;
33 }
34
35 Atom * gio_atom_retrieve_resource (AtomCtx *ctx, IRI *iri)
36 {
37   GFile *file;
38   GError *error = NULL;
39   gchar *data;
40   gsize len;
41   Atom *atom;
42   file = gio_iri_to_file (ctx, iri);
43   error = NULL;
44   if (!g_file_load_contents (file, NULL, &data, &len, NULL, &error))
45     {
46       g_object_unref (file);
47       atom_error_set (ctx, error);
48       return NULL;
49     }
50   g_object_unref (channel);
51   atom = atom_new_data_len (data, len);
52   g_free (data);
53   return atom;
54 }