diff --git a/src/emu/CMakeLists.txt b/src/emu/CMakeLists.txt index 5f15815..279de7f 100644 --- a/src/emu/CMakeLists.txt +++ b/src/emu/CMakeLists.txt @@ -56,8 +56,8 @@ add_library(emu STATIC add_executable(ovniemu ovniemu.c) target_link_libraries(ovniemu emu parson-static ovni-static) -#add_executable(ovnidump ovnidump.c) -#target_link_libraries(ovnidump emu trace) +add_executable(ovnidump ovnidump.c) +target_link_libraries(ovnidump emu parson-static ovni-static) # #add_executable(ovnisort ovnisort.c) #target_link_libraries(ovnisort emu trace) diff --git a/src/emu/ovnidump.c b/src/emu/ovnidump.c index 74d202c..80cf05f 100644 --- a/src/emu/ovnidump.c +++ b/src/emu/ovnidump.c @@ -1,124 +1,54 @@ -/* Copyright (c) 2021 Barcelona Supercomputing Center (BSC) +/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ #define _GNU_SOURCE -#include -#include -#include -#include -#include -#include -#include -#include -#include #include -#include "emu.h" -#include "ovni.h" +#include "player.h" #include "trace.h" -int filter_tid = -1; char *tracedir; static void -emit(struct ovni_stream *stream, struct ovni_ev *ev) +emit(struct player *player) { - uint64_t clock = ovni_ev_get_clock(ev); + static int64_t c = 0; - printf("%s.%d.%d %ld %c%c%c", - stream->loom->hostname, - stream->proc->pid, - stream->thread->tid, - clock, - ev->header.model, - ev->header.category, - ev->header.value); + struct emu_ev *ev = player_ev(player); + struct stream *stream = player_stream(player); - int payloadsize = ovni_payload_size(ev); - if (payloadsize > 0) { + /* Use raw clock in the ovni event */ + int64_t rel = ev->rclock - c; + c = ev->rclock; + + printf("%s %10ld %+10ld %c%c%c", + stream->relpath, + c, + rel, + ev->m, + ev->c, + ev->v); + + if (ev->has_payload) { printf(" "); - for (int i = 0; i < payloadsize; i++) - printf(":%02x", ev->payload.u8[i]); + for (size_t i = 0; i < ev->payload_size; i++) + printf(":%02x", ev->payload->u8[i]); } + printf("\n"); - - stream->lastclock = clock; -} - - -static void -dump_events(struct ovni_trace *trace) -{ - /* Load events */ - for (size_t i = 0; i < trace->nstreams; i++) { - struct ovni_stream *stream = &trace->stream[i]; - - /* It can be inactive if it has been disabled by the - * thread TID filter */ - if (stream->active) - ovni_load_next_event(stream); - } - - uint64_t lastclock = 0; - - while (1) { - ssize_t f = -1; - uint64_t minclock = 0; - struct ovni_stream *stream = NULL; - - /* Select next event based on the clock */ - for (size_t i = 0; i < trace->nstreams; i++) { - stream = &trace->stream[i]; - - if (!stream->active) - continue; - - struct ovni_ev *ev = stream->cur_ev; - if (f < 0 || ovni_ev_get_clock(ev) < minclock) { - f = i; - minclock = ovni_ev_get_clock(ev); - } - } - - // fprintf(stderr, "f=%d minclock=%u\n", f, minclock); - - if (f < 0) - break; - - stream = &trace->stream[f]; - - if (lastclock > ovni_ev_get_clock(stream->cur_ev)) { - fprintf(stdout, "warning: backwards jump in time %lu -> %lu\n", - lastclock, ovni_ev_get_clock(stream->cur_ev)); - } - - /* Emit current event */ - emit(stream, stream->cur_ev); - - lastclock = ovni_ev_get_clock(stream->cur_ev); - - /* Read the next one */ - ovni_load_next_event(stream); - - /* Unset the index */ - f = -1; - minclock = 0; - } } static void usage(void) { - err("Usage: ovnidump [-t TID] tracedir\n"); - err("\n"); - err("Dumps the events of the trace to the standard output.\n"); - err("\n"); - err("Options:\n"); - err(" -t TID Only events from the given TID are shown\n"); - err("\n"); - err(" tracedir The trace directory generated by ovni.\n"); - err("\n"); + rerr("Usage: ovnidump DIR\n"); + rerr("\n"); + rerr("Dumps the events of the trace to the standard output.\n"); + rerr("\n"); + rerr(" DIR Directory containing ovni traces (%s) or single stream.\n", + OVNI_STREAM_EXT); + rerr("\n"); exit(EXIT_FAILURE); } @@ -128,18 +58,16 @@ parse_args(int argc, char *argv[]) { int opt; - while ((opt = getopt(argc, argv, "t:")) != -1) { + while ((opt = getopt(argc, argv, "h")) != -1) { switch (opt) { - case 't': - filter_tid = atoi(optarg); - break; + case 'h': default: /* '?' */ usage(); } } if (optind >= argc) { - err("missing tracedir\n"); + err("bad usage: missing directory\n"); usage(); } @@ -149,30 +77,47 @@ parse_args(int argc, char *argv[]) int main(int argc, char *argv[]) { + progname_set("ovnidump"); + parse_args(argc, argv); - struct ovni_trace *trace = calloc(1, sizeof(struct ovni_trace)); + struct trace *trace = calloc(1, sizeof(struct trace)); - if (ovni_load_trace(trace, tracedir)) + if (trace == NULL) { + err("calloc failed:"); return 1; - - if (ovni_load_streams(trace)) - return 1; - - if (filter_tid != -1) { - for (size_t i = 0; i < trace->nstreams; i++) { - struct ovni_stream *stream; - stream = &trace->stream[i]; - if (stream->tid != filter_tid) - stream->active = 0; - } } - dump_events(trace); + if (trace_load(trace, tracedir) != 0) { + err("failed to load trace: %s", tracedir); + return 1; + } - ovni_free_streams(trace); + struct player *player = calloc(1, sizeof(struct player)); + if (player == NULL) { + err("calloc failed:"); + return 1; + } + + if (player_init(player, trace) != 0) { + err("player_init failed"); + return 1; + } + + int ret; + + while ((ret = player_step(player)) == 0) { + emit(player); + } + + /* Error happened */ + if (ret < 0) { + err("player_step failed"); + return 1; + } free(trace); + free(player); return 0; }