From: oetiker Date: Wed, 3 Dec 2008 11:08:48 +0000 (+0000) Subject: When fetching data from 'past' an rra, rrd_fetch was seeking past the rrd X-Git-Url: https://git.octo.it/?p=rrdtool.git;a=commitdiff_plain;h=77ebb82c2fb1ff5a595df699f9410b1f522d62d9 When fetching data from 'past' an rra, rrd_fetch was seeking past the rrd file. This did cause seek errors in some setups. Fixed. Thanks to Daniel Pocock for finding the problem. git-svn-id: svn://svn.oetiker.ch/rrdtool/trunk/program@1689 a5681a0c-68f1-0310-ab6d-d61299d08faa --- diff --git a/src/rrd_fetch.c b/src/rrd_fetch.c index abfe66c..33465b3 100644 --- a/src/rrd_fetch.c +++ b/src/rrd_fetch.c @@ -56,7 +56,7 @@ #include "rrd_client.h" #include "rrd_is_thread_safe.h" -/*#define DEBUG*/ +/* #define DEBUG */ int rrd_fetch( int argc, @@ -383,24 +383,25 @@ int rrd_fetch_fn( "rra_start %lu, rra_end %lu, start_off %li, end_off %li\n", rra_start_time, rra_end_time, start_offset, end_offset); #endif - - /* fill the gap at the start if needs be */ - - if (start_offset <= 0) - rra_pointer = rrd.rra_ptr[chosen_rra].cur_row + 1; - else - rra_pointer = rrd.rra_ptr[chosen_rra].cur_row + 1 + start_offset; - - if (rrd_seek(rrd_file, (rra_base + (rra_pointer * (*ds_cnt) + /* only seek if the start time is before the end time */ + if (*start <= rra_end_time && *end >= rra_start_time - step ){ + if (start_offset <= 0) + rra_pointer = rrd.rra_ptr[chosen_rra].cur_row + 1; + else + rra_pointer = rrd.rra_ptr[chosen_rra].cur_row + 1 + start_offset; + + if (rrd_seek(rrd_file, (rra_base + (rra_pointer * (*ds_cnt) * sizeof(rrd_value_t))), SEEK_SET) != 0) { - rrd_set_error("seek error in RRA"); - goto err_free_data; - } + rrd_set_error("seek error in RRA"); + goto err_free_data; + } #ifdef DEBUG - fprintf(stderr, "First Seek: rra_base %lu rra_pointer %lu\n", - rra_base, rra_pointer); + fprintf(stderr, "First Seek: rra_base %lu rra_pointer %lu\n", + rra_base, rra_pointer); #endif + } + /* step trough the array */ for (i = start_offset;