From: Sebastian Harl sh tokkee.org
[rrdtool.git] / src / rrd.h
1 /*****************************************************************************
2  * RRDtool 1.3rc7  Copyright by Tobi Oetiker, 1997-2008
3  *****************************************************************************
4  * rrdlib.h   Public header file for librrd
5  *****************************************************************************
6  * $Id$
7  * $Log$
8  * Revision 1.9  2005/02/13 16:13:33  oetiker
9  * let rrd_graph return the actual value range it picked ...
10  * -- Henrik Stoerner <henrik@hswn.dk>
11  *
12  * Revision 1.8  2004/05/26 22:11:12  oetiker
13  * reduce compiler warnings. Many small fixes. -- Mike Slifcak <slif@bellsouth.net>
14  *
15  * Revision 1.7  2003/11/12 22:14:26  oetiker
16  * allow to pass an open filehandle into rrd_graph as an extra argument
17  *
18  * Revision 1.6  2003/11/11 19:46:21  oetiker
19  * replaced time_value with rrd_time_value as MacOS X introduced a struct of that name in their standard headers
20  *
21  * Revision 1.5  2003/04/25 18:35:08  jake
22  * Alternate update interface, updatev. Returns info about CDPs written to disk as result of update. Output format is similar to rrd_info, a hash of key-values.
23  *
24  * Revision 1.4  2003/04/01 22:52:23  jake
25  * Fix Win32 build. VC++ 6.0 and 7.0 now use the thread-safe code.
26  *
27  * Revision 1.3  2003/02/13 07:05:27  oetiker
28  * Find attached the patch I promised to send to you. Please note that there
29  * are three new source files (src/rrd_is_thread_safe.h, src/rrd_thread_safe.c
30  * and src/rrd_not_thread_safe.c) and the introduction of librrd_th. This
31  * library is identical to librrd, but it contains support code for per-thread
32  * global variables currently used for error information only. This is similar
33  * to how errno per-thread variables are implemented.  librrd_th must be linked
34  * alongside of libpthred
35  *
36  * There is also a new file "THREADS", holding some documentation.
37  *
38  * -- Peter Stamfest <peter@stamfest.at>
39  *
40  * Revision 1.2  2002/05/07 21:58:32  oetiker
41  * new command rrdtool xport integrated
42  * --  Wolfgang Schrimm <Wolfgang.Schrimm@urz.uni-heidelberg.de>
43  *
44  * Revision 1.1.1.1  2001/02/25 22:25:05  oetiker
45  * checkin
46  *
47  *****************************************************************************/
48 #ifdef  __cplusplus
49 extern    "C" {
50 #endif
51
52 #ifndef _RRDLIB_H
53 #define _RRDLIB_H
54
55 #include <sys/types.h>  /* for off_t */
56 #include <unistd.h>     /* for off_t */
57 #include <time.h>
58 #include <stdio.h>      /* for FILE */
59
60
61 /* Formerly rrd_nan_inf.h */
62 #ifndef DNAN
63 # define DNAN rrd_set_to_DNAN()
64 #endif
65
66 #ifndef DINF
67 # define DINF rrd_set_to_DINF()
68 #endif
69     double    rrd_set_to_DNAN(
70     void);
71     double    rrd_set_to_DINF(
72     void);
73 /* end of rrd_nan_inf.h */
74
75 /* Transplanted from rrd_format.h */
76     typedef double rrd_value_t; /* the data storage type is
77                                  * double */
78 /* END rrd_format.h */
79
80 /* information about an rrd file */
81     typedef struct rrd_file_t {
82         int       fd;   /* file descriptor if this rrd file */
83         char     *file_start;   /* start address of an open rrd file */
84         off_t     header_len;   /* length of the header of this rrd file */
85         off_t     file_len; /* total size of the rrd file */
86         off_t     pos;  /* current pos in file */
87     } rrd_file_t;
88
89 /* rrd info interface */
90     typedef struct rrd_blob_t {
91         unsigned long size; /* size of the blob */
92         unsigned char *ptr; /* pointer */
93     } rrd_blob_t;
94
95     typedef enum rrd_info_type { RD_I_VAL = 0,
96         RD_I_CNT,
97         RD_I_STR,
98         RD_I_INT,
99         RD_I_BLO
100     } rrd_info_type_t;
101
102     typedef union rrd_infoval {
103         unsigned long u_cnt;
104         rrd_value_t u_val;
105         char     *u_str;
106         int       u_int;
107         rrd_blob_t u_blo;
108     } rrd_infoval_t;
109
110     typedef struct rrd_info_t {
111         char     *key;
112         rrd_info_type_t type;
113         rrd_infoval_t value;
114         struct rrd_info_t *next;
115     } rrd_info_t;
116
117
118 /* main function blocks */
119     int       rrd_create(
120     int,
121     char **);
122     rrd_info_t *rrd_info(
123     int,
124     char **);
125     rrd_info_t *rrd_info_push(
126     rrd_info_t *,
127     char *,
128     rrd_info_type_t,
129     rrd_infoval_t);
130     void      rrd_info_print(
131     rrd_info_t *data);
132     void      rrd_info_free(
133     rrd_info_t *);
134     int       rrd_update(
135     int,
136     char **);
137     rrd_info_t *rrd_update_v(
138     int,
139     char **);
140     int       rrd_graph(
141     int,
142     char **,
143     char ***,
144     int *,
145     int *,
146     FILE *,
147     double *,
148     double *);
149     rrd_info_t *rrd_graph_v(
150     int,
151     char **);
152
153     int       rrd_fetch(
154     int,
155     char **,
156     time_t *,
157     time_t *,
158     unsigned long *,
159     unsigned long *,
160     char ***,
161     rrd_value_t **);
162     int       rrd_restore(
163     int,
164     char **);
165     int       rrd_dump(
166     int,
167     char **);
168     int       rrd_tune(
169     int,
170     char **);
171     time_t    rrd_last(
172     int,
173     char **);
174     int       rrd_lastupdate(
175     int argc,
176     char **argv,
177     time_t *last_update,
178     unsigned long *ds_cnt,
179     char ***ds_namv,
180     char ***last_ds);
181     time_t    rrd_first(
182     int,
183     char **);
184     int       rrd_resize(
185     int,
186     char **);
187     char     *rrd_strversion(
188     void);
189     double    rrd_version(
190     void);
191     int       rrd_xport(
192     int,
193     char **,
194     int *,
195     time_t *,
196     time_t *,
197     unsigned long *,
198     unsigned long *,
199     char ***,
200     rrd_value_t **);
201
202 /* thread-safe (hopefully) */
203     int       rrd_create_r(
204     const char *filename,
205     unsigned long pdp_step,
206     time_t last_up,
207     int argc,
208     const char **argv);
209 /* NOTE: rrd_update_r are only thread-safe if no at-style time
210    specifications get used!!! */
211
212     int       rrd_update_r(
213     const char *filename,
214     const char *_template,
215     int argc,
216     const char **argv);
217     int       rrd_fetch_r(
218     const char *filename,
219     const char *cf,
220     time_t *start,
221     time_t *end,
222     unsigned long *step,
223     unsigned long *ds_cnt,
224     char ***ds_namv,
225     rrd_value_t **data);
226     int       rrd_dump_r(
227     const char *filename,
228     char *outname);
229     time_t    rrd_last_r(
230     const char *filename);
231     time_t    rrd_first_r(
232     const char *filename,
233     int rraindex);
234
235 /* Transplanted from rrd_parsetime.h */
236     typedef enum {
237         ABSOLUTE_TIME,
238         RELATIVE_TO_START_TIME,
239         RELATIVE_TO_END_TIME
240     } rrd_timetype_t;
241
242 #define TIME_OK NULL
243
244     typedef struct rrd_time_value {
245         rrd_timetype_t type;
246         long      offset;
247         struct tm tm;
248     } rrd_time_value_t;
249
250     char     *rrd_parsetime(
251     const char *spec,
252     rrd_time_value_t *ptv);
253 /* END rrd_parsetime.h */
254
255     typedef struct rrd_context {
256         char      lib_errstr[256];
257         char      rrd_error[4096];
258     } rrd_context_t;
259
260 /* returns the current per-thread rrd_context */
261     rrd_context_t *rrd_get_context(
262     void);
263
264
265     int       rrd_proc_start_end(
266     rrd_time_value_t *,
267     rrd_time_value_t *,
268     time_t *,
269     time_t *);
270
271 /* HELPER FUNCTIONS */
272     void      rrd_set_error(
273     char *,
274     ...);
275     void      rrd_clear_error(
276     void);
277     int       rrd_test_error(
278     void);
279     char     *rrd_get_error(
280     void);
281
282     /* rrd_strerror is thread safe, but still it uses a global buffer
283        (but one per thread), thus subsequent calls within a single
284        thread overwrite the same buffer */
285     const char *rrd_strerror(
286     int err);
287
288 /** MULTITHREADED HELPER FUNCTIONS */
289     rrd_context_t *rrd_new_context(
290     void);
291     void      rrd_free_context(
292     rrd_context_t *buf);
293
294 /* void   rrd_set_error_r  (rrd_context_t *, char *, ...); */
295 /* void   rrd_clear_error_r(rrd_context_t *); */
296 /* int    rrd_test_error_r (rrd_context_t *); */
297 /* char  *rrd_get_error_r  (rrd_context_t *); */
298
299 #endif                  /* _RRDLIB_H */
300
301 #ifdef  __cplusplus
302 }
303 #endif