Does not release path got from IRI.
[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   return filename;
30 }
31
32 Atom * giochannel_atom_retrieve_resource (AtomCtx *ctx, IRI *iri)
33 {
34   gchar *filename;
35   GIOChannel *channel;
36   GError *error = NULL;
37   gchar *data;
38   gsize len;
39   Atom *atom;
40   filename = giochannel_iri_to_filename (ctx, iri);
41   channel = g_io_channel_new_file ((const gchar *) filename, "r", &error);
42   g_free (filename);
43   if (channel == NULL)
44     {
45       atom_error_set (ctx, error);
46       return NULL;
47     }
48   error = NULL;
49   if (g_io_channel_read_to_end (channel, &data, &len, &error) !=
50       G_IO_STATUS_NORMAL)
51     {
52       g_io_channel_unref (channel);
53       atom_error_set (ctx, error);
54       return NULL;
55     }
56   g_io_channel_unref (channel);
57   atom = atom_new_data_len (data, len);
58   g_free (data);
59   return atom;
60 }