Merge branch 'master' into entry
[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 #include <glib.h>
22
23 struct _atom_backend
24 {
25   Atom * (*retrieve_resource) (AtomCtx *, IRI *);
26 };
27
28 AtomBackend *
29 atom_backend_new ()
30 {
31   AtomBackend *backend;
32   backend = g_slice_new (AtomBackend);
33   backend->retrieve_resource = NULL;
34   return backend;
35 }
36
37 void
38 atom_backend_delete (AtomBackend *backend)
39 {
40   g_slice_free (AtomBackend, backend);
41 }
42
43 void
44 atom_backend_retrieve_resource_set (AtomBackend *backend,
45                                     Atom *retrieve_resource (AtomCtx *,
46                                                              IRI *))
47 {
48   backend->retrieve_resource = retrieve_resource;
49 }
50
51 Atom *
52 atom_retrieve_resource (AtomCtx *ctx, IRI *iri)
53 {
54   AtomBackend *backend;
55   backend = atom_backend (ctx);
56   if (backend && backend->retrieve_resource)
57     return backend->retrieve_resource (ctx, iri);
58   return NULL;
59 }