Traverse a path recursively to add all traces within
[lttv.git] / lttv / lttv / traceset.h
... / ...
CommitLineData
1/* This file is part of the Linux Trace Toolkit viewer
2 * Copyright (C) 2003-2004 Michel Dagenais
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License Version 2 as
6 * published by the Free Software Foundation;
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
16 * MA 02111-1307, USA.
17 */
18
19#ifndef TRACESET_H
20#define TRACESET_H
21
22#include <lttv/attribute.h>
23#include <lttv/hook.h>
24#include <lttv/event.h>
25#include <ltt/ltt.h>
26#include <lttv/trace.h>
27/* A traceset is a set of traces to be analyzed together. */
28
29typedef struct _LttvTraceset LttvTraceset;
30
31typedef struct _LttvTracesetPosition LttvTracesetPosition;
32
33struct bt_context;
34
35
36//TODO ybrosseau 2012-05-15 put these struct in the .c to make them opaque
37struct _LttvTraceset {
38 char * filename;
39 GPtrArray *traces; /* Array of pointers to LttvTrace */
40 struct bt_context *context;
41 LttvAttribute *a;
42 LttvHooks *event_hooks;
43 struct bt_ctf_iter *iter;
44 LttvTraceState *tmpState;
45
46};
47
48struct _LttvTrace {
49 // Trace id for babeltrace
50 LttvTraceset *traceset; /* container traceset */
51 gint id;
52 LttvAttribute *a;
53 guint ref_count;
54 LttvTraceState *state;
55};
56
57/* In babeltrace, the position concept is an iterator. */
58struct _LttvTracesetPosition {
59 struct bt_ctf_iter *iter;
60};
61
62/* Tracesets may be added to, removed from and their content listed. */
63
64LttvTraceset *lttv_traceset_new(void);
65
66char * lttv_traceset_name(LttvTraceset * s);
67
68#ifdef BABEL_CLEANUP
69LttvTrace *lttv_trace_new(LttTrace *t);
70#endif
71
72LttvTraceset *lttv_traceset_copy(LttvTraceset *s_orig);
73
74LttvTraceset *lttv_traceset_load(const gchar *filename);
75
76struct bt_context *lttv_traceset_get_context(LttvTraceset *s);
77
78
79
80gint lttv_traceset_save(LttvTraceset *s);
81
82void lttv_traceset_destroy(LttvTraceset *s);
83
84
85void lttv_traceset_add(LttvTraceset *s, LttvTrace *t);
86
87/*
88 * lttv_trace_create : Add all traces recursively to a traceset from a path
89 *
90 * ts is the traceset in which will be contained the traces
91 *
92 * trace_path is the path where to find a set of trace.
93 * Traverse the path recursively to add all traces within.
94 *
95 * return 0 on success or a negative integer on failure
96 */
97int lttv_traceset_add_path(LttvTraceset *ts, char *path);
98
99unsigned lttv_traceset_number(LttvTraceset *s);
100
101LttvTrace *lttv_traceset_get(LttvTraceset *s, unsigned i);
102
103void lttv_traceset_remove(LttvTraceset *s, unsigned i);
104
105/* An attributes table is attached to the set and to each trace in the set. */
106
107LttvAttribute *lttv_traceset_attribute(LttvTraceset *s);
108
109
110#ifdef BABEL_CLEANUP
111LttTrace *lttv_trace(LttvTrace *t);
112#endif
113
114/* Take a position snapshot */
115LttvTracesetPosition *lttv_traceset_create_position(LttvTraceset *traceset);
116
117/* Destroy position snapshot */
118void lttv_traceset_destroy_position(LttvTracesetPosition *traceset_pos);
119
120void lttv_traceset_seek_to_position(LttvTracesetPosition *traceset_pos);
121
122guint lttv_traceset_get_cpuid_from_event(LttvEvent *event);
123
124const char *lttv_traceset_get_name_from_event(LttvEvent *event);
125
126#endif // TRACESET_H
This page took 0.0314 seconds and 4 git commands to generate.