X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=lttv%2Flttv%2Ftraceset-process.c;h=02b014180b6b7521039aa3fc31fc3de3f1f2c501;hb=c73ce169d9ddd488b2dbee4d6062b75814e379e0;hp=8ce68981882dd0d76c5a441ab9a845aa9043bbbc;hpb=9a366873e0ed6ecc7f23e2d3a959ecddd4f2f91d;p=lttv.git diff --git a/lttv/lttv/traceset-process.c b/lttv/lttv/traceset-process.c index 8ce68981..02b01418 100644 --- a/lttv/lttv/traceset-process.c +++ b/lttv/lttv/traceset-process.c @@ -79,7 +79,7 @@ guint lttv_process_traceset_middle(LttvTraceset *traceset, break; } - currentPos = lttv_traceset_create_position(traceset); + currentPos = lttv_traceset_create_current_position(traceset); if(lttv_traceset_position_compare(currentPos,end_position ) == 0){ lttv_traceset_destroy_position(currentPos); break; @@ -214,7 +214,6 @@ guint lttv_process_traceset_seek_n_forward(LttvTraceset *traceset, LttvFilter *filter3, gpointer data) { - struct bt_ctf_event *bt_event; unsigned count = 0; while(count < n) { if(bt_iter_next(bt_ctf_get_iter(traceset->iter)) < 0) { @@ -239,16 +238,21 @@ guint lttv_process_traceset_seek_n_backward(LttvTraceset *ts, guint i, count, ret; gint extraEvent = 0; guint64 initialTimeStamp, previousTimeStamp; - LttvTracesetPosition *initialPos, *previousPos, *currentPos; - + LttvTracesetPosition *initialPos, *previousPos, *currentPos, beginPos; + struct bt_iter_pos pos; + beginPos.bt_pos = &pos; + beginPos.iter = ts->iter; + beginPos.bt_pos->type = BT_SEEK_BEGIN; + beginPos.timestamp = G_MAXUINT64; + beginPos.cpu_id = INT_MAX; /*Save initial position of the traceset*/ - initialPos = lttv_traceset_create_position (ts); + initialPos = lttv_traceset_create_current_position (ts); /*Get the timespan of the initial position*/ initialTimeStamp = lttv_traceset_position_get_timestamp(initialPos); /* * Create a position before the initial timestamp according - * to the ratio of nanosecond/nanosecond hopefully before the + * to the ratio of nanosecond/event hopefully before the * the desired seek position */ while(1){ @@ -259,25 +263,32 @@ guint lttv_process_traceset_seek_n_backward(LttvTraceset *ts, break; currentPos = lttv_traceset_create_time_position(ts,ltt_time_from_uint64(previousTimeStamp)); + /*Corner case: When we are near the beginning of the trace and the previousTimeStamp is before + * the beginning of the trace. We have to seek to the first event. + */ + if((lttv_traceset_position_compare(currentPos,&beginPos ) == 0)){ + lttv_traceset_seek_to_position(&beginPos); + break; + } /*move traceset position */ - lttv_traceset_seek_to_position(previousPos); + lttv_state_traceset_seek_position(ts, previousPos); /* iterate to the initial position counting the number of event*/ count = 0; do { if((ret = lttv_traceset_position_compare(currentPos,initialPos)) == 1){ bt_iter_next(bt_ctf_get_iter(ts->iter)); lttv_traceset_destroy_position(currentPos); - currentPos = lttv_traceset_create_position(ts); + currentPos = lttv_traceset_create_current_position(ts); count++; } }while(ret != 0); - lttv_traceset_destroy_position(currentPos); + /*substract the desired number of event to the count*/ extraEvent = count - n; - if(extraEvent >= 0){ + if (extraEvent >= 0) { //if the extraEvent is over 0 go back to previousPos and //move forward the value of extraEvent times - lttv_traceset_seek_to_position(previousPos); + lttv_state_traceset_seek_position(ts, previousPos); for(i = 0 ; i < extraEvent ; i++){ if(bt_iter_next(bt_ctf_get_iter(ts->iter)) < 0){ @@ -288,9 +299,11 @@ guint lttv_process_traceset_seek_n_backward(LttvTraceset *ts, } break; /* we successfully seeked backward */ } - else{ /* if the extraEvent is below 0 create a position before and start over*/ - ratio = ratio * 16; + else{ + /* if the extraEvent is below 0 create a position before and start over*/ + ratio = ratio * 16; } + lttv_traceset_destroy_position(currentPos); } return 0; }