X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Frrd_open.c;h=b85ceefae6e98e1f0bf3c0b4cce583c6923a2311;hb=298b318acaf1147474ab9e97cac37c3608660efd;hp=36bc87585dec88facb3b123a0331774bcc6f8de4;hpb=5837606887a6d81e8b1f7588525cb1c8783fb62b;p=rrdtool.git diff --git a/src/rrd_open.c b/src/rrd_open.c index 36bc875..b85ceef 100644 --- a/src/rrd_open.c +++ b/src/rrd_open.c @@ -1,12 +1,42 @@ /***************************************************************************** - * RRDtool 1.0.33 Copyright Tobias Oetiker, 1997 - 2000 + * RRDtool 1.1.x Copyright Tobias Oetiker, 1997 - 2002 ***************************************************************************** * rrd_open.c Open an RRD File ***************************************************************************** * $Id$ * $Log$ - * Revision 1.1 2001/02/25 22:25:05 oetiker - * Initial revision + * Revision 1.6 2003/02/13 07:05:27 oetiker + * Find attached the patch I promised to send to you. Please note that there + * are three new source files (src/rrd_is_thread_safe.h, src/rrd_thread_safe.c + * and src/rrd_not_thread_safe.c) and the introduction of librrd_th. This + * library is identical to librrd, but it contains support code for per-thread + * global variables currently used for error information only. This is similar + * to how errno per-thread variables are implemented. librrd_th must be linked + * alongside of libpthred + * + * There is also a new file "THREADS", holding some documentation. + * + * -- Peter Stamfest + * + * Revision 1.5 2002/06/20 00:21:03 jake + * More Win32 build changes; thanks to Kerry Calvert. + * + * Revision 1.4 2002/02/01 20:34:49 oetiker + * fixed version number and date/time + * + * Revision 1.3 2001/03/04 13:01:55 oetiker + * Aberrant Behavior Detection support. A brief overview added to rrdtool.pod. + * Major updates to rrd_update.c, rrd_create.c. Minor update to other core files. + * This is backwards compatible! But new files using the Aberrant stuff are not readable + * by old rrdtool versions. See http://cricket.sourceforge.net/aberrant/rrd_hw.htm + * -- Jake Brutlag + * + * Revision 1.2 2001/03/04 10:29:20 oetiker + * fixed filedescriptor leak + * -- Mike Franusich + * + * Revision 1.1.1.1 2001/02/25 22:25:05 oetiker + * checkin * *****************************************************************************/ @@ -38,13 +68,23 @@ rrd_open(char *file_name, FILE **in_file, rrd_t *rrd, int rdwr) } if (((*in_file) = fopen(file_name,mode)) == NULL ){ - rrd_set_error("opening '%s': %s",file_name, strerror(errno)); + rrd_set_error("opening '%s': %s",file_name, rrd_strerror(errno)); return (-1); } +/* + if (rdwr == RRD_READWRITE) + { + if (setvbuf((*in_file),NULL,_IONBF,2)) { + rrd_set_error("failed to disable the stream buffer\n"); + return (-1); + } + } +*/ #define MYFREAD(MYVAR,MYVART,MYCNT) \ if ((MYVAR = malloc(sizeof(MYVART) * MYCNT)) == NULL) {\ rrd_set_error("" #MYVAR " malloc"); \ + fclose(*in_file); \ return (-1); } \ fread(MYVAR,sizeof(MYVART),MYCNT, *in_file); @@ -55,17 +95,20 @@ rrd_open(char *file_name, FILE **in_file, rrd_t *rrd, int rdwr) if (strncmp(rrd->stat_head->cookie,RRD_COOKIE,4) != 0){ rrd_set_error("'%s' is not an RRD file",file_name); free(rrd->stat_head); + fclose(*in_file); return(-1);} - if (strncmp(rrd->stat_head->version,RRD_VERSION,5) != 0){ - rrd_set_error("cant handle RRD file version %s", + if (atoi(rrd->stat_head->version) > atoi(RRD_VERSION)){ + rrd_set_error("can't handle RRD file version %s", rrd->stat_head->version); free(rrd->stat_head); + fclose(*in_file); return(-1);} if (rrd->stat_head->float_cookie != FLOAT_COOKIE){ rrd_set_error("This RRD was created on other architecture"); free(rrd->stat_head); + fclose(*in_file); return(-1);} MYFREAD(rrd->ds_def, ds_def_t, rrd->stat_head->ds_cnt) @@ -94,14 +137,22 @@ void rrd_init(rrd_t *rrd) void rrd_free(rrd_t *rrd) { - free(rrd->stat_head); - free(rrd->ds_def); - free(rrd->rra_def); - free(rrd->live_head); - free(rrd->rra_ptr); - free(rrd->pdp_prep); - free(rrd->cdp_prep); - free(rrd->rrd_value); + if (rrd->stat_head) free(rrd->stat_head); + if (rrd->ds_def) free(rrd->ds_def); + if (rrd->rra_def) free(rrd->rra_def); + if (rrd->live_head) free(rrd->live_head); + if (rrd->rra_ptr) free(rrd->rra_ptr); + if (rrd->pdp_prep) free(rrd->pdp_prep); + if (rrd->cdp_prep) free(rrd->cdp_prep); + if (rrd->rrd_value) free(rrd->rrd_value); +} + +/* routine used by external libraries to free memory allocated by + * rrd library */ +void rrd_freemem(void *mem) +{ + + if (mem) free(mem); } int readfile(char *file_name, char **buffer, int skipfirst){ @@ -111,7 +162,7 @@ int readfile(char *file_name, char **buffer, int skipfirst){ if ((strcmp("-",file_name) == 0)) { input = stdin; } else { if ((input = fopen(file_name,"rb")) == NULL ){ - rrd_set_error("opening '%s': %s",file_name,strerror(errno)); + rrd_set_error("opening '%s': %s",file_name,rrd_strerror(errno)); return (-1); } }