1 /* This file is part of the Linux Trace Toolkit viewer
2 * Copyright (C) 2003-2004 Michel Dagenais
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;
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.
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,
22 #include <lttv/attribute.h>
23 #include <lttv/hook.h>
26 /* A traceset is a set of traces to be analyzed together. */
28 typedef struct _LttvTraceset LttvTraceset
;
30 typedef struct _LttvTrace LttvTrace
;
34 /* Tracesets may be added to, removed from and their content listed. */
36 LttvTraceset
*lttv_traceset_new();
38 char * lttv_traceset_name(LttvTraceset
* s
);
40 LttvTrace
*lttv_trace_new(LttTrace
*t
);
42 LttvTraceset
*lttv_traceset_copy(LttvTraceset
*s_orig
);
44 LttvTraceset
*lttv_traceset_load(const gchar
*filename
);
46 struct bt_context
*lttv_traceset_get_context(LttvTraceset
*s
);
49 gint
lttv_traceset_save(LttvTraceset
*s
);
51 void lttv_traceset_destroy(LttvTraceset
*s
);
53 void lttv_trace_destroy(LttvTrace
*t
);
55 void lttv_traceset_add(LttvTraceset
*s
, LttvTrace
*t
);
57 unsigned lttv_traceset_number(LttvTraceset
*s
);
59 LttvTrace
*lttv_traceset_get(LttvTraceset
*s
, unsigned i
);
61 void lttv_traceset_remove(LttvTraceset
*s
, unsigned i
);
63 /* An attributes table is attached to the set and to each trace in the set. */
65 LttvAttribute
*lttv_traceset_attribute(LttvTraceset
*s
);
67 LttvAttribute
*lttv_trace_attribute(LttvTrace
*t
);
69 LttTrace
*lttv_trace(LttvTrace
*t
);
71 guint
lttv_trace_get_ref_number(LttvTrace
* t
);
73 guint
lttv_trace_ref(LttvTrace
* t
);
75 guint
lttv_trace_unref(LttvTrace
* t
);