e8a4bb783f53045e2de8bf6fe7340319deb30a34
[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 static gchar *
24 giochannel_iri_to_filename (AtomCtx *ctx, IRI *iri)
25 {
26   gchar *root = atom_config_get_str (ctx, "giochannel", "root");
27   gchar *path = iri_get_path (iri);
28   gchar *filename = g_build_filename (root, path, NULL);
29   g_free (root);
30   return filename;
31 }
32
33 static Atom *
34 giochannel_atom_retrieve_resource (AtomCtx *ctx, IRI *iri)
35 {
36   gchar *filename;
37   GIOChannel *channel;
38   GError *error = NULL;
39   gchar *data;
40   gsize len;
41   Atom *atom;
42   filename = giochannel_iri_to_filename (ctx, iri);
43   channel = g_io_channel_new_file ((const gchar *) filename, "r", &error);
44   g_free (filename);
45   if (channel == NULL)
46     {
47       atom_error_set (ctx, error);
48       return NULL;
49     }
50   error = NULL;
51   if (g_io_channel_read_to_end (channel, &data, &len, &error) !=
52       G_IO_STATUS_NORMAL)
53     {
54       g_io_channel_unref (channel);
55       atom_error_set (ctx, error);
56       return NULL;
57     }
58   g_io_channel_unref (channel);
59   atom = atom_new_data_len (data, len);
60   g_free (data);
61   return atom;
62 }
63
64 AtomBackend *
65 giochannel_backend (void)
66 {
67   AtomBackend *backend;
68   backend = atom_backend_new ();
69   atom_backend_retrieve_resource_set (backend,
70                                       giochannel_atom_retrieve_resource);
71   return backend;
72 }