Started a file backend and first prototype 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, "root");
26   gchar *path = iri_get_path (iri);
27   return g_build_filename (root, path, NULL);
28 }
29
30 Atom * giochannel_atom_retrieve_resource (AtomCtx *ctx, IRI *iri)
31 {
32   gchar *filename;
33   GIOChannel *channel;
34   GError *error = NULL;
35   gchar *data;
36   gsize len;
37   Atom *atom;
38   filename = giochannel_iri_to_filename (ctx, iri);
39   channel = g_io_channel_new_file ((const gchar *) filename, "r", &error);
40   g_free (filename);
41   if (channel == NULL)
42     {
43       atom_error_set (ctx, error);
44       return NULL;
45     }
46   error = NULL;
47   if (g_io_channel_read_to_end (channel, &data, &len, &error) !=
48       G_IO_STATUS_NORMAL)
49     {
50       atom_error_set (ctx, error);
51       return NULL;
52     }
53   atom = atom_new_data_len (data, len);
54   g_free (data);
55   return atom;
56 }