d71eb2965711aafa6444974b6a531b7cdb80c7f6
[cascardo/atompub.git] / src / backend.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 <atompub/atom.h>
21
22 #include <glib.h>
23
24 #include <string.h>
25
26 struct _atom_backend
27 {
28   AtomEntry * (*retrieve_entry) (AtomCtx *, AtomID *);
29   void (*enumerate_entries) (AtomCtx *, AtomEntry ***, size_t *);
30   int  (*is_feed) (AtomCtx *, AtomID *);
31 };
32
33 AtomBackend *
34 atom_backend_new ()
35 {
36   AtomBackend *backend;
37   backend = g_slice_new (AtomBackend);
38   backend->retrieve_entry = NULL;
39   backend->enumerate_entries = NULL;
40   return backend;
41 }
42
43 void
44 atom_backend_delete (AtomBackend *backend)
45 {
46   g_slice_free (AtomBackend, backend);
47 }
48
49 void
50 atom_backend_retrieve_entry_set (AtomBackend *backend,
51                                  AtomEntry *retrieve_entry (AtomCtx *,
52                                                             AtomID *))
53 {
54   backend->retrieve_entry = retrieve_entry;
55 }
56
57 void
58 atom_backend_enumerate_entries_set (AtomBackend *backend,
59                                     void enumerate_entries (AtomCtx *,
60                                                             AtomEntry ***, size_t*))
61 {
62   backend->enumerate_entries = enumerate_entries;
63 }
64
65 void
66 atom_backend_is_feed_set (AtomBackend *backend,
67                           int is_feed (AtomCtx *, AtomID *))
68 {
69   backend->is_feed = is_feed;
70 }
71
72 AtomEntry *
73 atom_retrieve_entry (AtomCtx *ctx, AtomID *id)
74 {
75   AtomBackend *backend;
76   backend = atom_backend (ctx);
77   if (backend && backend->retrieve_entry)
78     return backend->retrieve_entry (ctx, id);
79   return NULL;
80 }
81
82 void
83 atom_backend_enumerate_entries (AtomCtx *ctx, AtomEntry *** entries, size_t *len)
84 {
85   AtomBackend *backend;
86   backend = atom_backend (ctx);
87   if (backend && backend->enumerate_entries)
88     {
89       backend->enumerate_entries (ctx, entries, len);
90       return;
91     }
92   if (entries)
93     *entries = NULL;
94   if (len)
95     *len = 0;
96 }
97
98 int
99 atom_is_feed (AtomCtx *ctx, AtomID *id)
100 {
101   AtomBackend *backend;
102   AtomError *aerr;
103   backend = atom_backend (ctx);
104   if (backend && backend->is_feed)
105     {
106       return backend->is_feed (ctx, id);
107     }
108   /* Frontend may make the decision of whether the requested resource is
109    * a feed or not. If it is not able to do so and backend isn't either,
110    * it is an error.
111    */
112   aerr = atom_error_new ();
113   atom_error_code_set (aerr, 404);
114   atom_error_message_set (aerr, "Not Found");
115   atom_error_set (ctx, aerr);
116   return 0;
117 }
118
119 AtomFeed *
120 atom_retrieve_feed (AtomCtx *ctx)
121 {
122   AtomFeed *feed;
123   AtomEntry **entries;
124   size_t len;
125   atom_backend_enumerate_entries (ctx, &entries, &len);
126   if (atom_error_get (ctx) != NULL)
127     return NULL;
128   feed = atom_feed_new ();
129   atom_feed_entry_append_array (feed, entries, len);
130   return feed;
131 }
132
133 AtomResource *
134 atom_retrieve_resource (AtomCtx *ctx, AtomID *id)
135 {
136   AtomResource *res;
137   res = NULL;
138   if (atom_is_feed (ctx, id))
139     {
140       AtomFeed *feed;
141       feed = atom_retrieve_feed (ctx);
142       if (feed == NULL)
143         return NULL;
144       res = atom_resource_new_from_feed (feed);
145       atom_feed_delete (feed);
146     }
147   else if (atom_error_get (ctx) != NULL)
148     {
149       AtomEntry *entry;
150       entry = atom_retrieve_entry (ctx, id);
151       if (entry == NULL)
152         return NULL;
153       res = atom_resource_new_from_entry (entry);
154       atom_entry_delete (entry);
155     }
156   return res;
157 }