Backend now retrieves a request, not an Atom ID
[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 #include <atompub/atom-glib.h>
23
24 static gchar *
25 giochannel_req_to_filename (AtomCtx *ctx, char *req)
26 {
27   gchar *root = atom_config_get_str (ctx, "giochannel", "root");
28   gchar *filename = g_build_filename (root, req, NULL);
29   g_free (root);
30   return filename;
31 }
32
33 static AtomEntry *
34 giochannel_atom_retrieve_entry (AtomCtx *ctx, char *req)
35 {
36   gchar *filename;
37   GIOChannel *channel;
38   GError *error = NULL;
39   gchar *data;
40   gsize len;
41   AtomEntry *atom;
42   filename = giochannel_req_to_filename (ctx, req);
43   channel = g_io_channel_new_file ((const gchar *) filename, "r", &error);
44   g_free (filename);
45   if (channel == NULL)
46     {
47       AtomError *aerr = atom_error_new_from_gerror (error);
48       atom_error_set (ctx, aerr);
49       g_error_free (error);
50       return NULL;
51     }
52   error = NULL;
53   if (g_io_channel_read_to_end (channel, &data, &len, &error) !=
54       G_IO_STATUS_NORMAL)
55     {
56       AtomError *aerr = atom_error_new_from_gerror (error);
57       g_io_channel_unref (channel);
58       atom_error_set (ctx, aerr);
59       g_error_free (error);
60       return NULL;
61     }
62   g_io_channel_unref (channel);
63   atom = atom_entry_new_data_len (data, len);
64   g_free (data);
65   return atom;
66 }
67
68 AtomBackend *
69 giochannel_backend (void)
70 {
71   AtomBackend *backend;
72   backend = atom_backend_new ();
73   atom_backend_retrieve_entry_set (backend,
74                                    giochannel_atom_retrieve_entry);
75   return backend;
76 }