summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 208dd08)
raw | patch | inline | side by side (parent: 208dd08)
author | oetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa> | |
Tue, 11 Nov 2003 21:19:52 +0000 (21:19 +0000) | ||
committer | oetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa> | |
Tue, 11 Nov 2003 21:19:52 +0000 (21:19 +0000) |
-- Eldad Zack <eldad@stoneshaft.ath.cx>
git-svn-id: svn://svn.oetiker.ch/rrdtool/trunk@219 a5681a0c-68f1-0310-ab6d-d61299d08faa
git-svn-id: svn://svn.oetiker.ch/rrdtool/trunk@219 a5681a0c-68f1-0310-ab6d-d61299d08faa
program/doc/rrdrestore.pod | patch | blob | history | |
program/src/rrd_restore.c | patch | blob | history | |
program/src/rrd_tool.c | patch | blob | history |
index f20f7e1b1314d00fd29b09aa550031dc609a7ef8..ad7ba849650df478b9706fda858d5031666f2dcb 100644 (file)
Make sure the values in the RRAs do not exceed the limits defined for
the different datasources.
+=item B<--force-overwrite>|B<-f>
+
+Allows B<rrdtool> to overwrite the destination B<RRD>.
+
=back
=head1 AUTHOR
index f3764dac6ce21042dc38d55778586cbf09198f9d..864018fd76ff90130a155f766ec8587ee438fcad 100644 (file)
int eat_tag(char **, char *);
int read_tag(char **, char *, char *, void *);
int xml2rrd(char*, rrd_t*, char);
-int rrd_write(char *, rrd_t *);
+int rrd_write(char *, rrd_t *, char);
void parse_patch1028_RRA_params(char **buf, rrd_t *rrd, int rra_index);
void parse_patch1028_CDP_params(char **buf, rrd_t *rrd, int rra_index, int ds_index);
void parse_FAILURES_history(char **buf, rrd_t *rrd, int rra_index, int ds_index);
/* create and empty rrd file according to the specs given */
int
-rrd_write(char *file_name, rrd_t *rrd)
+rrd_write(char *file_name, rrd_t *rrd, char force_overwrite)
{
unsigned long i,ii,val_cnt;
FILE *rrd_file=NULL;
+ int fdflags;
+ int fd;
if (strcmp("-",file_name)==0){
rrd_file= stdout;
} else {
- int fd = open(file_name,O_RDWR|O_CREAT|O_EXCL,0666);
+ fdflags = O_WRONLY|O_CREAT;
+ if (force_overwrite == 0) {
+ fdflags |= O_EXCL;
+ }
+ fd = open(file_name,fdflags,0666);
if (fd == -1 || (rrd_file = fdopen(fd,"wb")) == NULL) {
rrd_set_error("creating '%s': %s",file_name,rrd_strerror(errno));
if (fd != -1)
rrd_t rrd;
char *buf;
char rc = 0;
+ char force_overwrite = 0;
/* init rrd clean */
rrd_init(&rrd);
if (argc<3) {
- rrd_set_error("usage rrdtool %s [--range-check/-r] file.xml file.rrd",argv[0]);
+ rrd_set_error("usage rrdtool %s [--range-check/-r] [--force-overwrite/-f] file.xml file.rrd",argv[0]);
return -1;
}
static struct option long_options[] =
{
{"range-check", required_argument, 0, 'r'},
+ {"force-overwrite", required_argument, 0, 'f'},
{0,0,0,0}
};
int option_index = 0;
int opt;
- opt = getopt_long(argc, argv, "r", long_options, &option_index);
+ opt = getopt_long(argc, argv, "r:f", long_options, &option_index);
if (opt == EOF)
break;
case 'r':
rc=1;
break;
+ case 'f':
+ force_overwrite=1;
+ break;
default:
rrd_set_error("usage rrdtool %s [--range-check|-r] file.xml file.rrd",argv[0]);
return -1;
return -1;
}
free(buf);
- if(rrd_write(argv[optind+1],&rrd)==-1){
+ if(rrd_write(argv[optind+1],&rrd,force_overwrite)==-1){
rrd_free(&rrd);
return -1;
};
diff --git a/program/src/rrd_tool.c b/program/src/rrd_tool.c
index 75b30033b708eea3f5af1d264648ac10e9ee65c1..cfd71a938c91da56eba77e06cf8adc8786247336 100644 (file)
--- a/program/src/rrd_tool.c
+++ b/program/src/rrd_tool.c
char help_restore[] =
"* restore - restore an RRD file from its XML form\n\n"
- "\trrdtool restore [--range-check|-r] filename.xml filename.rrd\n\n";
+ "\trrdtool restore [--range-check|-r] [--force-overwrite|-f] filename.xml filename.rrd\n\n";
char help_last[] =
"* last - show last update time for RRD\n\n"