Create frontend structure with map_entries function
[cascardo/atompub.git] / atom / frontend.c
1 /*
2  *  Copyright (C) 2008  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_frontend
27 {
28   void (*map_entries) (AtomCtx *, char **, AtomEntry **, size_t);
29 };
30
31 AtomFrontend *
32 atom_frontend_new ()
33 {
34   AtomFrontend *frontend;
35   frontend = g_slice_new (AtomFrontend);
36   frontend->map_entries = NULL;
37   return frontend;
38 }
39
40 void
41 atom_frontend_delete (AtomFrontend *frontend)
42 {
43   g_slice_free (AtomFrontend, frontend);
44 }
45
46 void
47 atom_frontend_map_entries_set (AtomFrontend *frontend,
48                                void map_entries (AtomCtx *,
49                                                  char **,
50                                                  AtomEntry **,
51                                                  size_t))
52 {
53   frontend->map_entries = map_entries;
54 }
55
56 void
57 atom_frontend_map_entries (AtomCtx *ctx, char ** reqs,
58                            AtomEntry ** entries, size_t len)
59 {
60   AtomFrontend *frontend;
61   frontend = atom_frontend (ctx);
62   if (frontend && frontend->map_entries)
63     {
64       frontend->map_entries (ctx, reqs, entries, len);
65     }
66 }