a47a35247fcb100c5f181ecae26f5a236da0974a
[cascardo/atompub.git] / src / main.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 <glib-object.h>
21
22 #include <atompub/atom.h>
23
24 #include <stdlib.h>
25
26 extern void cgi_serve_request (AtomCtx *ctx);
27 extern AtomBackend * gio_backend (void);
28 extern AtomFrontend * cgi_frontend (void);
29
30 int
31 main (int argc, char **argv)
32 {
33   AtomCtx *ctx;
34   IRI *iri;
35   AtomError *error;
36   g_type_init ();
37   ctx = atom_ctx_new ();
38   atom_config_init (ctx);
39   atom_backend_set (ctx, gio_backend ());
40   atom_frontend_set (ctx, cgi_frontend ());
41   if ((error = atom_error_get (ctx)) != NULL)
42     {
43       atom_handle_error (ctx);
44       exit (0);
45     }
46   atom_backend_enumerate_entries (ctx, NULL, NULL, NULL);
47   atom_serve_request (ctx);
48   atom_ctx_delete (ctx);
49   return 0;
50 }