When enumerating entries, return the requests backend understands
[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 *, char ***, 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                                                             char ***,
61                                                             AtomEntry ***,
62                                                             size_t *))
63 {
64   backend->enumerate_entries = enumerate_entries;
65 }
66
67 void
68 atom_backend_is_feed_set (AtomBackend *backend,
69                           int is_feed (AtomCtx *, AtomID *))
70 {
71   backend->is_feed = is_feed;
72 }
73
74 AtomEntry *
75 atom_retrieve_entry (AtomCtx *ctx, AtomID *id)
76 {
77   AtomBackend *backend;
78   backend = atom_backend (ctx);
79   if (backend && backend->retrieve_entry)
80     return backend->retrieve_entry (ctx, id);
81   return NULL;
82 }
83
84 void
85 atom_backend_enumerate_entries (AtomCtx *ctx, char *** reqs,
86                                 AtomEntry *** entries, size_t *len)
87 {
88   AtomBackend *backend;
89   backend = atom_backend (ctx);
90   if (backend && backend->enumerate_entries)
91     {
92       backend->enumerate_entries (ctx, reqs, entries, len);
93       return;
94     }
95   if (reqs)
96     *reqs = NULL;
97   if (entries)
98     *entries = NULL;
99   if (len)
100     *len = 0;
101 }
102
103 int
104 atom_is_feed (AtomCtx *ctx, AtomID *id)
105 {
106   AtomBackend *backend;
107   AtomError *aerr;
108   backend = atom_backend (ctx);
109   if (backend && backend->is_feed)
110     {
111       return backend->is_feed (ctx, id);
112     }
113   /* Frontend may make the decision of whether the requested resource is
114    * a feed or not. If it is not able to do so and backend isn't either,
115    * it is an error.
116    */
117   aerr = atom_error_new ();
118   atom_error_code_set (aerr, 404);
119   atom_error_message_set (aerr, "Not Found");
120   atom_error_set (ctx, aerr);
121   return 0;
122 }
123
124 AtomFeed *
125 atom_retrieve_feed (AtomCtx *ctx)
126 {
127   AtomFeed *feed;
128   AtomEntry **entries;
129   size_t len;
130   atom_backend_enumerate_entries (ctx, NULL, &entries, &len);
131   if (atom_error_get (ctx) != NULL)
132     return NULL;
133   feed = atom_feed_new ();
134   atom_feed_entry_append_array (feed, entries, len);
135   return feed;
136 }
137
138 AtomResource *
139 atom_retrieve_resource (AtomCtx *ctx, AtomID *id)
140 {
141   AtomResource *res;
142   res = NULL;
143   if (atom_is_feed (ctx, id))
144     {
145       AtomFeed *feed;
146       feed = atom_retrieve_feed (ctx);
147       if (feed == NULL)
148         return NULL;
149       res = atom_resource_new_from_feed (feed);
150       atom_feed_delete (feed);
151     }
152   else if (atom_error_get (ctx) == NULL)
153     {
154       AtomEntry *entry;
155       entry = atom_retrieve_entry (ctx, id);
156       if (entry == NULL)
157         return NULL;
158       res = atom_resource_new_from_entry (entry);
159       atom_entry_delete (entry);
160     }
161   return res;
162 }