1 /*****************************************************************************
2 * RRDtool 1.4.3 Copyright by Tobi Oetiker, 1997-2010
3 *****************************************************************************
4 * rrdlib.h Public header file for librrd
5 *****************************************************************************
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>
12 * Revision 1.8 2004/05/26 22:11:12 oetiker
13 * reduce compiler warnings. Many small fixes. -- Mike Slifcak <slif@bellsouth.net>
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
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
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.
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.
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
36 * There is also a new file "THREADS", holding some documentation.
38 * -- Peter Stamfest <peter@stamfest.at>
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>
44 * Revision 1.1.1.1 2001/02/25 22:25:05 oetiker
47 *****************************************************************************/
55 #include <sys/types.h> /* for off_t */
58 #include <unistd.h> /* for off_t */
60 typedef size_t ssize_t;
65 #include <stdio.h> /* for FILE */
68 /* Formerly rrd_nan_inf.h */
70 # define DNAN rrd_set_to_DNAN()
74 # define DINF rrd_set_to_DINF()
76 double rrd_set_to_DNAN(
78 double rrd_set_to_DINF(
80 /* end of rrd_nan_inf.h */
82 /* Transplanted from rrd_format.h */
83 typedef double rrd_value_t; /* the data storage type is
85 /* END rrd_format.h */
87 /* information about an rrd file */
88 typedef struct rrd_file_t {
89 size_t header_len; /* length of the header of this rrd file */
90 size_t file_len; /* total size of the rrd file */
91 size_t pos; /* current pos in file */
95 /* information used for the conventional file access methods */
96 typedef struct rrd_simple_file_t {
97 int fd; /* file descriptor of this rrd file */
99 char *file_start; /* start address of an open rrd file */
105 /* rrd info interface */
106 typedef struct rrd_blob_t {
107 unsigned long size; /* size of the blob */
108 unsigned char *ptr; /* pointer */
111 typedef enum rrd_info_type { RD_I_VAL = 0,
118 typedef union rrd_infoval {
126 typedef struct rrd_info_t {
128 rrd_info_type_t type;
130 struct rrd_info_t *next;
133 typedef size_t (* rrd_output_callback_t)(
138 /* main function blocks */
142 rrd_info_t *rrd_info(
145 rrd_info_t *rrd_info_push(
157 rrd_info_t *rrd_update_v(
169 rrd_info_t *rrd_graph_v(
194 int rrd_lastupdate(int argc, char **argv);
201 char *rrd_strversion(
215 int rrd_flushcached (int argc, char **argv);
220 /* thread-safe (hopefully) */
222 const char *filename,
223 unsigned long pdp_step,
227 rrd_info_t *rrd_info_r(
229 /* NOTE: rrd_update_r and rrd_update_v_r are only thread-safe if no at-style
230 time specifications get used!!! */
233 const char *filename,
234 const char *_template,
238 const char *filename,
239 const char *_template,
242 rrd_info_t * pcdp_summary);
244 const char *filename,
249 unsigned long *ds_cnt,
253 const char *filename,
255 time_t rrd_last_r (const char *filename);
256 int rrd_lastupdate_r (const char *filename,
257 time_t *ret_last_update,
258 unsigned long *ret_ds_count,
259 char ***ret_ds_names,
260 char ***ret_last_ds);
262 const char *filename,
266 const char *filename,
268 rrd_output_callback_t cb,
271 /* Transplanted from rrd_parsetime.h */
274 RELATIVE_TO_START_TIME,
280 typedef struct rrd_time_value {
288 rrd_time_value_t * ptv);
289 /* END rrd_parsetime.h */
291 typedef struct rrd_context {
292 char lib_errstr[256];
293 char rrd_error[4096];
296 /* returns the current per-thread rrd_context */
297 rrd_context_t *rrd_get_context(void);
300 /* this was added by the win32 porters Christof.Wegmann@exitgames.com */
301 rrd_context_t *rrd_force_new_context(void);
304 int rrd_proc_start_end(
310 /* HELPER FUNCTIONS */
314 void rrd_clear_error(
321 /* rrd_strerror is thread safe, but still it uses a global buffer
322 (but one per thread), thus subsequent calls within a single
323 thread overwrite the same buffer */
324 const char *rrd_strerror(
327 /** MULTITHREADED HELPER FUNCTIONS */
328 rrd_context_t *rrd_new_context(
330 void rrd_free_context(
331 rrd_context_t * buf);
333 /* void rrd_set_error_r (rrd_context_t *, char *, ...); */
334 /* void rrd_clear_error_r(rrd_context_t *); */
335 /* int rrd_test_error_r (rrd_context_t *); */
336 /* char *rrd_get_error_r (rrd_context_t *); */
338 /** UTILITY FUNCTIONS */
340 long rrd_random(void);
342 int rrd_add_ptr_chunk(void ***dest, size_t *dest_size, void *src,
343 size_t *alloc, size_t chunk);
344 int rrd_add_ptr(void ***dest, size_t *dest_size, void *src);
345 int rrd_add_strdup(char ***dest, size_t *dest_size, char *src);
346 int rrd_add_strdup_chunk(char ***dest, size_t *dest_size, char *src,
347 size_t *alloc, size_t chunk);
348 void rrd_free_ptrs(void ***src, size_t *cnt);
350 int rrd_mkdir_p(const char *pathname, mode_t mode);
353 * The following functions are _internal_ functions needed to read the raw RRD
354 * files. Since they are _internal_ they may change with the file format and
355 * will be replaced with a more general interface in RRDTool 1.4. Don't use
356 * these functions unless you have good reasons to do so. If you do use these
357 * functions you will have to adapt your code for RRDTool 1.4!
359 * To enable the deprecated functions define `RRD_EXPORT_DEPRECATED' before
360 * including <rrd_test.h>. You have been warned! If you come back to the
361 * RRDTool mailing list and whine about your broken application, you will get
362 * hit with something smelly!
364 #if defined(_RRD_TOOL_H) || defined(RRD_EXPORT_DEPRECATED)
366 # if defined(_RRD_TOOL_H)
367 # include "rrd_format.h"
369 # include <rrd_format.h>
372 #if defined(__GNUC__) && defined (RRD_EXPORT_DEPRECATED)
373 # define RRD_DEPRECATED __attribute__((deprecated))
375 # define RRD_DEPRECATED /**/
384 rrd_file_t *rrd_open(
385 const char *const file_name,
391 rrd_file_t *rrd_file,
395 rrd_file_t *rrd_file)
398 rrd_file_t *rrd_file,
403 rrd_file_t *rrd_file,
408 rrd_file_t *rrd_file)
411 rrd_file_t *rrd_file,
416 rrd_file_t *rrd_file)
422 rrd_file_t *rrd_file,
424 unsigned long rra_row,
427 unsigned long rrd_select_initial_row(
428 rrd_file_t *rrd_file,
433 #endif /* defined(_RRD_TOOL_H) || defined(RRD_EXPORT_DEPRECATED) */
435 #endif /* _RRDLIB_H */