Stefan Hajnoczi | 26f7227 | 2010-05-22 19:24:51 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Simple trace backend |
| 3 | * |
| 4 | * Copyright IBM, Corp. 2010 |
| 5 | * |
| 6 | * This work is licensed under the terms of the GNU GPL, version 2. See |
| 7 | * the COPYING file in the top-level directory. |
| 8 | * |
| 9 | */ |
| 10 | |
Lluís | edb47ec | 2011-08-31 20:30:57 +0200 | [diff] [blame] | 11 | #ifndef TRACE_SIMPLE_H |
| 12 | #define TRACE_SIMPLE_H |
Stefan Hajnoczi | 26f7227 | 2010-05-22 19:24:51 +0100 | [diff] [blame] | 13 | |
| 14 | #include <stdint.h> |
Prerna Saxena | 22890ab | 2010-06-24 17:04:53 +0530 | [diff] [blame] | 15 | #include <stdbool.h> |
| 16 | #include <stdio.h> |
Stefan Hajnoczi | 26f7227 | 2010-05-22 19:24:51 +0100 | [diff] [blame] | 17 | |
Lluís Vilanova | 60481e2 | 2013-03-05 14:47:55 +0100 | [diff] [blame] | 18 | #include "trace/generated-events.h" |
Stefan Hajnoczi | 26f7227 | 2010-05-22 19:24:51 +0100 | [diff] [blame] | 19 | |
Prerna Saxena | 22890ab | 2010-06-24 17:04:53 +0530 | [diff] [blame] | 20 | |
Stefan Weil | 0b2c508 | 2010-11-15 21:17:06 +0100 | [diff] [blame] | 21 | void st_print_trace_file_status(FILE *stream, fprintf_function stream_printf); |
Stefan Hajnoczi | c5ceb52 | 2010-07-13 09:26:33 +0100 | [diff] [blame] | 22 | void st_set_trace_file_enabled(bool enable); |
| 23 | bool st_set_trace_file(const char *file); |
| 24 | void st_flush_trace_buffer(void); |
Stefan Hajnoczi | 26f7227 | 2010-05-22 19:24:51 +0100 | [diff] [blame] | 25 | |
Harsh Prateek Bora | 62bab73 | 2012-07-18 15:15:59 +0530 | [diff] [blame] | 26 | typedef struct { |
| 27 | unsigned int tbuf_idx; |
Harsh Prateek Bora | 62bab73 | 2012-07-18 15:15:59 +0530 | [diff] [blame] | 28 | unsigned int rec_off; |
| 29 | } TraceBufferRecord; |
| 30 | |
| 31 | /* Note for hackers: Make sure MAX_TRACE_LEN < sizeof(uint32_t) */ |
| 32 | #define MAX_TRACE_STRLEN 512 |
| 33 | /** |
| 34 | * Initialize a trace record and claim space for it in the buffer |
| 35 | * |
| 36 | * @arglen number of bytes required for arguments |
| 37 | */ |
| 38 | int trace_record_start(TraceBufferRecord *rec, TraceEventID id, size_t arglen); |
| 39 | |
| 40 | /** |
| 41 | * Append a 64-bit argument to a trace record |
| 42 | */ |
| 43 | void trace_record_write_u64(TraceBufferRecord *rec, uint64_t val); |
| 44 | |
| 45 | /** |
| 46 | * Append a string argument to a trace record |
| 47 | */ |
| 48 | void trace_record_write_str(TraceBufferRecord *rec, const char *s, uint32_t slen); |
| 49 | |
| 50 | /** |
| 51 | * Mark a trace record completed |
| 52 | * |
| 53 | * Don't append any more arguments to the trace record after calling this. |
| 54 | */ |
| 55 | void trace_record_finish(TraceBufferRecord *rec); |
| 56 | |
Lluís | edb47ec | 2011-08-31 20:30:57 +0200 | [diff] [blame] | 57 | #endif /* TRACE_SIMPLE_H */ |