7661ae1396f2921ec2803ac4a9f6c664be886b45
[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_id_to_filename (AtomCtx *ctx, AtomID *id)
26 {
27   gchar *root = atom_config_get_str (ctx, "giochannel", "root");
28   gchar *path = atom_id_string (id);
29   gchar *filename = g_build_filename (root, path, NULL);
30   g_free (root);
31   return filename;
32 }
33
34 static AtomEntry *
35 giochannel_atom_retrieve_entry (AtomCtx *ctx, AtomID *id)
36 {
37   gchar *filename;
38   GIOChannel *channel;
39   GError *error = NULL;
40   gchar *data;
41   gsize len;
42   AtomEntry *atom;
43   filename = giochannel_id_to_filename (ctx, id);
44   channel = g_io_channel_new_file ((const gchar *) filename, "r", &error);
45   g_free (filename);
46   if (channel == NULL)
47     {
48       AtomError *aerr = atom_error_new_from_gerror (error);
49       atom_error_set (ctx, aerr);
50       g_error_free (error);
51       return NULL;
52     }
53   error = NULL;
54   if (g_io_channel_read_to_end (channel, &data, &len, &error) !=
55       G_IO_STATUS_NORMAL)
56     {
57       AtomError *aerr = atom_error_new_from_gerror (error);
58       g_io_channel_unref (channel);
59       atom_error_set (ctx, aerr);
60       g_error_free (error);
61       return NULL;
62     }
63   g_io_channel_unref (channel);
64   atom = atom_entry_new_data_len (data, len);
65   g_free (data);
66   return atom;
67 }
68
69 AtomBackend *
70 giochannel_backend (void)
71 {
72   AtomBackend *backend;
73   backend = atom_backend_new ();
74   atom_backend_retrieve_entry_set (backend,
75                                    giochannel_atom_retrieve_entry);
76   return backend;
77 }