Use g_info and g_debug properly.
[lttv.git] / ltt / branches / poly / include / lttv / state.h
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 STATE_H
20 #define STATE_H
21
22 #include <glib.h>
23 #include <lttv/processTrace.h>
24
25 /* The operating system state, kept during the trace analysis,
26 contains a subset of the real operating system state,
27 sufficient for the analysis, and possibly organized quite differently.
28
29 The state information is added to LttvTracesetContext, LttvTraceContext
30 and LttvTracefileContext objects, used by processTrace, through
31 subtyping. The context objects already reflect the multiple tracefiles
32 (one per cpu) per trace and multiple traces per trace set. The state
33 objects defined here simply add fields to the relevant context objects.
34
35 There is no traceset specific state yet. It may eventually contains such
36 things as clock differences over time.
37
38 The trace state currently consists in a process table.
39
40 The tracefile level state relates to the associated cpu. It contains the
41 position of the current event in the tracefile (since the state depends on
42 which events have been processed) and a pointer to the current process,
43 in the process table, being run on that cpu.
44
45 For each process in the process table, various informations such as exec
46 file name, pid, ppid and creation time are stored. Each process state also
47 contains an execution mode stack (e.g. irq within system call, called
48 from user mode). */
49
50 typedef struct _LttvTracesetState LttvTracesetState;
51 typedef struct _LttvTracesetStateClass LttvTracesetStateClass;
52
53 typedef struct _LttvTraceState LttvTraceState;
54 typedef struct _LttvTraceStateClass LttvTraceStateClass;
55
56 typedef struct _LttvTracefileState LttvTracefileState;
57 typedef struct _LttvTracefileStateClass LttvTracefileStateClass;
58
59 void lttv_state_add_event_hooks(LttvTracesetState *self);
60
61 void lttv_state_remove_event_hooks(LttvTracesetState *self);
62
63 void lttv_state_save_add_event_hooks(LttvTracesetState *self);
64
65 void lttv_state_save_remove_event_hooks(LttvTracesetState *self);
66
67 void lttv_state_traceset_seek_time_closest(LttvTracesetState *self, LttTime t);
68
69 /* The LttvProcessState structure defines the current state for each process.
70 A process can make system calls (in some rare cases nested) and receive
71 interrupts/faults. For instance, a process may issue a system call,
72 generate a page fault while reading an argument from user space, and
73 get caught by an interrupt. To represent these nested states, an
74 execution mode stack is maintained. The stack bottom is normal user mode
75 and the top of stack is the current execution mode.
76
77 The execution mode stack tells about the process status, execution mode and
78 submode (interrupt, system call or IRQ number). All these could be
79 defined as enumerations but may need extensions (e.g. new process state).
80 GQuark are thus used. They are as easy to manipulate as integers but have
81 a string associated, just like enumerations.
82
83 The execution mode is one of "user mode", "kernel thread", "system call",
84 "interrupt request", "fault". */
85
86 typedef GQuark LttvExecutionMode;
87
88 extern LttvExecutionMode
89 LTTV_STATE_USER_MODE,
90 LTTV_STATE_SYSCALL,
91 LTTV_STATE_TRAP,
92 LTTV_STATE_IRQ,
93 LTTV_STATE_MODE_UNKNOWN;
94
95
96 /* The submode number depends on the execution mode. For user mode or kernel
97 thread, which are the normal mode (execution mode stack bottom),
98 it is set to "none". For interrupt requests, faults and system calls,
99 it is set respectively to the interrupt name (e.g. "timer"), fault name
100 (e.g. "page fault"), and system call name (e.g. "select"). */
101
102 typedef GQuark LttvExecutionSubmode;
103
104 extern LttvExecutionSubmode
105 LTTV_STATE_SUBMODE_NONE,
106 LTTV_STATE_SUBMODE_UNKNOWN;
107
108 /* The process status is one of "running", "wait-cpu" (runnable), or "wait-*"
109 where "*" describes the resource waited for (e.g. timer, process,
110 disk...). */
111
112 typedef GQuark LttvProcessStatus;
113
114 extern LttvProcessStatus
115 LTTV_STATE_UNNAMED,
116 LTTV_STATE_WAIT_FORK,
117 LTTV_STATE_WAIT_CPU,
118 LTTV_STATE_EXIT,
119 LTTV_STATE_WAIT,
120 LTTV_STATE_RUN;
121
122
123 typedef struct _LttvExecutionState {
124 LttvExecutionMode t;
125 LttvExecutionSubmode n;
126 LttTime entry;
127 LttTime change;
128 LttvProcessStatus s;
129 } LttvExecutionState;
130
131
132 typedef struct _LttvProcessState {
133 guint pid;
134 guint ppid;
135 LttTime creation_time;
136 LttTime insertion_time;
137 GQuark name;
138 GQuark pid_time;
139 GArray *execution_stack; /* Array of LttvExecutionState */
140 LttvExecutionState *state; /* Top of interrupt stack */
141 GQuark last_cpu; /* Last CPU where process was scheduled */
142 /* opened file descriptors, address map?... */
143 } LttvProcessState;
144
145
146 LttvProcessState *
147 lttv_state_find_process(LttvTracefileState *tfs, guint pid);
148
149 LttvProcessState *
150 lttv_state_find_process_from_trace(LttvTraceState *ts, GQuark cpu, guint pid);
151
152 LttvProcessState *
153 lttv_state_find_process_or_create(LttvTracefileState *tfs, guint pid);
154
155 LttvProcessState *
156 lttv_state_create_process(LttvTracefileState *tfs, LttvProcessState *parent,
157 guint pid);
158
159
160 /* The LttvTracesetState, LttvTraceState and LttvTracefileState types
161 inherit from the corresponding Context objects defined in processTrace. */
162
163 #define LTTV_TRACESET_STATE_TYPE (lttv_traceset_state_get_type ())
164 #define LTTV_TRACESET_STATE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), LTTV_TRACESET_STATE_TYPE, LttvTracesetState))
165 #define LTTV_TRACESET_STATE_CLASS(vtable) (G_TYPE_CHECK_CLASS_CAST ((vtable), LTTV_TRACESET_STATE_TYPE, LttvTracesetStateClass))
166 #define LTTV_IS_TRACESET_STATE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), LTTV_TRACESET_STATE_TYPE))
167 #define LTTV_IS_TRACESET_STATE_CLASS(vtable) (G_TYPE_CHECK_CLASS_TYPE ((vtable), LTTV_TRACESET_STATE_TYPE))
168 #define LTTV_TRACESET_STATE_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), LTTV_TRACESET_STATE_TYPE, LttvTracesetStateClass))
169
170 struct _LttvTracesetState {
171 LttvTracesetContext parent;
172 };
173
174 struct _LttvTracesetStateClass {
175 LttvTracesetContextClass parent;
176 };
177
178 GType lttv_traceset_state_get_type (void);
179
180
181 #define LTTV_TRACE_STATE_TYPE (lttv_trace_state_get_type ())
182 #define LTTV_TRACE_STATE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), LTTV_TRACE_STATE_TYPE, LttvTraceState))
183 #define LTTV_TRACE_STATE_CLASS(vtable) (G_TYPE_CHECK_CLASS_CAST ((vtable), LTTV_TRACE_STATE_TYPE, LttvTraceStateClass))
184 #define LTTV_IS_TRACE_STATE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), LTTV_TRACE_STATE_TYPE))
185 #define LTTV_IS_TRACE_STATE_CLASS(vtable) (G_TYPE_CHECK_CLASS_TYPE ((vtable), LTTV_TRACE_STATE_TYPE))
186 #define LTTV_TRACE_STATE_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), LTTV_TRACE_STATE_TYPE, LttvTraceStateClass))
187
188 struct _LttvTraceState {
189 LttvTraceContext parent;
190
191 GHashTable *processes; /* LttvProcessState objects indexed by pid */
192 guint nb_event, save_interval;
193 /* Block/char devices, locks, memory pages... */
194 GQuark *eventtype_names;
195 GQuark *syscall_names;
196 GQuark *trap_names;
197 GQuark *irq_names;
198 LttTime *max_time_state_recomputed_in_seek;
199 };
200
201 struct _LttvTraceStateClass {
202 LttvTraceContextClass parent;
203
204 void (*state_save) (LttvTraceState *self, LttvAttribute *container);
205 void (*state_restore) (LttvTraceState *self, LttvAttribute *container);
206 void (*state_saved_free) (LttvTraceState *self, LttvAttribute *container);
207 };
208
209 GType lttv_trace_state_get_type (void);
210
211 void lttv_state_save(LttvTraceState *self, LttvAttribute *container);
212
213 void lttv_state_restore(LttvTraceState *self, LttvAttribute *container);
214
215 void lttv_state_saved_state_free(LttvTraceState *self,
216 LttvAttribute *container);
217
218
219 #define LTTV_TRACEFILE_STATE_TYPE (lttv_tracefile_state_get_type ())
220 #define LTTV_TRACEFILE_STATE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), LTTV_TRACEFILE_STATE_TYPE, LttvTracefileState))
221 #define LTTV_TRACEFILE_STATE_CLASS(vtable) (G_TYPE_CHECK_CLASS_CAST ((vtable), LTTV_TRACEFILE_STATE_TYPE, LttvTracefileStateClass))
222 #define LTTV_IS_TRACEFILE_STATE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), LTTV_TRACEFILE_STATE_TYPE))
223 #define LTTV_IS_TRACEFILE_STATE_CLASS(vtable) (G_TYPE_CHECK_CLASS_TYPE ((vtable), LTTV_TRACEFILE_STATE_TYPE))
224 #define LTTV_TRACEFILE_STATE_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), LTTV_TRACEFILE_STATE_TYPE, LttvTracefileStateClass))
225
226 struct _LttvTracefileState {
227 LttvTracefileContext parent;
228
229 LttvProcessState *process;
230 GQuark cpu_name;
231 guint saved_position;
232 };
233
234 struct _LttvTracefileStateClass {
235 LttvTracefileContextClass parent;
236 };
237
238 GType lttv_tracefile_state_get_type (void);
239
240
241 #endif // STATE_H
This page took 0.043739 seconds and 4 git commands to generate.