Support namespace in the config interface.
[cascardo/atompub.git] / backend / files / giochannel.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 <atompub/atom.h>
22
23 gchar *giochannel_iri_to_filename (AtomCtx *ctx, IRI *iri)
24 {
25   gchar *root = atom_config_get_str (ctx, "giochannel", "root");
26   gchar *path = iri_get_path (iri);
27   gchar *filename = g_build_filename (root, path, NULL);
28   g_free (root);
29   g_free (path);
30   return filename;
31 }
32
33 Atom * giochannel_atom_retrieve_resource (AtomCtx *ctx, IRI *iri)
34 {
35   gchar *filename;
36   GIOChannel *channel;
37   GError *error = NULL;
38   gchar *data;
39   gsize len;
40   Atom *atom;
41   filename = giochannel_iri_to_filename (ctx, iri);
42   channel = g_io_channel_new_file ((const gchar *) filename, "r", &error);
43   g_free (filename);
44   if (channel == NULL)
45     {
46       atom_error_set (ctx, error);
47       return NULL;
48     }
49   error = NULL;
50   if (g_io_channel_read_to_end (channel, &data, &len, &error) !=
51       G_IO_STATUS_NORMAL)
52     {
53       g_io_channel_unref (channel);
54       atom_error_set (ctx, error);
55       return NULL;
56     }
57   g_io_channel_unref (channel);
58   atom = atom_new_data_len (data, len);
59   g_free (data);
60   return atom;
61 }