04ff695ebeca71c6e1b3904b6f4a40dab75c4023
[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 struct _atom_backend
23 {
24   Atom * (*retrieve_resource) (AtomCtx *, IRI *);
25 };
26
27 AtomBackend *
28 atom_backend_new ()
29 {
30   AtomBackend *backend;
31   backend = g_slice_new (AtomBackend);
32   backend->retrieve_resource = NULL;
33   return backend;
34 }
35
36 void
37 atom_backend_retrieve_resource_set (AtomBackend *backend,
38                                     Atom *retrieve_resource (AtomCtx *,
39                                                              IRI *))
40 {
41   backend->retrieve_resource = retrieve_resource;
42 }
43
44 Atom *
45 atom_retrieve_resource (AtomCtx *ctx, IRI *iri)
46 {
47   AtomBackend *backend;
48   backend = atom_backend (ctx);
49   if (backend && backend->retrieve_resource)
50     return backend->retrieve_resource (ctx, iri);
51   return NULL;
52 }