36de76c3aee931973a737de0edba5964f0eac16e
[collection4.git] / src / action_show_graph_json.c
1 /**
2  * collection4 - action_show_graph_json.c
3  * Copyright (C) 2010  Florian octo Forster
4  * 
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  * 
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  * 
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor,
18  * Boston, MA  02110-1301  USA
19  *
20  * Authors:
21  *   Florian octo Forster <ff at octo.it>
22  **/
23
24 #include <stdlib.h>
25 #include <stdio.h>
26 #include <string.h>
27 #include <errno.h>
28 #include <stdint.h>
29 #include <inttypes.h>
30 #include <assert.h>
31
32 #include "action_show_graph_json.h"
33 #include "common.h"
34 #include "graph.h"
35 #include "graph_ident.h"
36 #include "graph_instance.h"
37 #include "graph_list.h"
38 #include "utils_cgi.h"
39
40 #include <fcgiapp.h>
41 #include <fcgi_stdio.h>
42
43 static int write_buffer (char *buffer, size_t buffer_size) /* {{{ */
44 {
45   size_t status;
46
47   while (buffer_size > 0)
48   {
49     status = fwrite (buffer, buffer_size, /* nmemb = */ 1, stdout);
50     if (status == 0)
51       return (errno);
52
53     buffer += status;
54     buffer_size -= status;
55   }
56
57   return (0);
58 } /* }}} int write_buffer */
59
60 int action_show_graph_json (void) /* {{{ */
61 {
62   graph_config_t *cfg;
63
64   yajl_gen_config handler_config;
65   yajl_gen handler;
66
67   const unsigned char *buffer;
68   unsigned int buffer_length;
69
70   time_t now;
71   char time_buffer[128];
72   int status;
73
74   cfg = gl_graph_get_selected ();
75   if (cfg == NULL)
76     return (ENOMEM);
77
78   memset (&handler_config, 0, sizeof (handler_config));
79   handler_config.beautify = 1;
80   handler_config.indentString = "  ";
81
82   handler = yajl_gen_alloc (&handler_config,
83       /* alloc functions = */ NULL);
84   if (handler == NULL)
85   {
86     graph_destroy (cfg);
87     return (-1);
88   }
89
90   printf ("Content-Type: application/json\n");
91
92   now = time (NULL);
93   status = time_to_rfc1123 (now + 300, time_buffer, sizeof (time_buffer));
94   if (status == 0)
95     printf ("Expires: %s\n"
96         "Cache-Control: public\n",
97         time_buffer);
98   printf ("\n");
99
100   status = graph_to_json (cfg, handler);
101   if (status != 0)
102   {
103     graph_destroy (cfg);
104     yajl_gen_free (handler);
105     return (status);
106   }
107
108   buffer = NULL;
109   buffer_length = 0;
110   status = (int) yajl_gen_get_buf (handler, &buffer, &buffer_length);
111
112   write_buffer ((char *) buffer, (size_t) buffer_length);
113
114   graph_destroy (cfg);
115   yajl_gen_free (handler);
116   return (0);
117 } /* }}} int action_show_graph_json */
118
119 /* vim: set sw=2 sts=2 et fdm=marker : */