thread brand
[lttv.git] / ltt / branches / poly / lttv / modules / gui / controlflow / processlist.h
1 /* This file is part of the Linux Trace Toolkit viewer
2 * Copyright (C) 2003-2004 Mathieu Desnoyers
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
20
21 #ifndef _PROCESS_LIST_H
22 #define _PROCESS_LIST_H
23
24 #include <gtk/gtk.h>
25 #include <gdk/gdk.h>
26 #include <lttv/state.h>
27 #include <ltt/ltt.h>
28
29 #include "drawitem.h"
30
31 /* The process list
32 *
33 * Tasks :
34 * Create a process list
35 * contains the data for the process list
36 * tells the height of the process list widget
37 * provides methods to add/remove process from the list
38 * note : the sync with drawing is left to the caller.
39 * provides helper function to convert a process unique identifier to
40 * pixels (in height).
41 *
42 */
43
44
45 /* Enumeration of the columns */
46 enum
47 {
48 PROCESS_COLUMN,
49 BRAND_COLUMN,
50 PID_COLUMN,
51 PPID_COLUMN,
52 CPU_COLUMN,
53 BIRTH_S_COLUMN,
54 BIRTH_NS_COLUMN,
55 TRACE_COLUMN,
56 N_COLUMNS
57 };
58
59
60 typedef struct _ProcessInfo {
61
62 guint pid;
63 guint cpu;
64 guint ppid;
65 LttTime birth;
66 guint trace_num;
67
68 // gint height_cache;
69
70 } ProcessInfo;
71
72 typedef struct _HashedProcessData {
73
74 GdkPixmap *pixmap; // Pixmap slice containing drawing buffer for the PID
75 gint height; // height of the pixmap
76 GtkTreeIter y_iter; // Access quickly to y pos.
77 // DrawContext *draw_context;
78 /* Information on current drawing */
79 struct {
80 guint over;
81 gboolean over_used; /* inform the user that information is incomplete */
82 gboolean over_marked; /* inform the user that information is incomplete */
83 guint middle;
84 gboolean middle_used; /* inform the user that information is incomplete */
85 gboolean middle_marked;/* inform the user that information is incomplete */
86 guint under;
87 gboolean under_used; /* inform the user that information is incomplete */
88 gboolean under_marked; /* inform the user that information is incomplete */
89 } x; /* last x position saved by after state update */
90
91 LttTime next_good_time; /* precalculate the next time where the next
92 pixel is.*/
93
94 } HashedProcessData;
95
96 struct _ProcessList {
97
98 GtkWidget *process_list_widget;
99 GtkListStore *list_store;
100 GtkWidget *button; /* one button of the tree view */
101 GtkCellRenderer *renderer;
102
103 /* A hash table by PID to speed up process position find in the list */
104 GHashTable *process_hash;
105
106 guint number_of_process;
107 gint cell_height;
108
109 /* Current process, one per cpu */
110 HashedProcessData **current_hash_data;
111
112 /* Array containing index -> pixmap correspondance. Must be updated
113 * every time the process list is reordered, process added or removed */
114 GPtrArray * index_to_pixmap;
115
116 };
117
118
119 typedef struct _ProcessList ProcessList;
120
121
122 #ifndef TYPE_DRAWING_T_DEFINED
123 #define TYPE_DRAWING_T_DEFINED
124 typedef struct _Drawing_t Drawing_t;
125 #endif //TYPE_DRAWING_T_DEFINED
126
127 ProcessList *processlist_construct(void);
128 void processlist_destroy(ProcessList *process_list);
129 GtkWidget *processlist_get_widget(ProcessList *process_list);
130
131 void processlist_clear(ProcessList *process_list);
132
133 // out : success (0) and height
134 /* CPU num is only used for PID 0 */
135 int processlist_add(ProcessList *process_list, Drawing_t * drawing,
136 guint pid, guint cpu, guint ppid,
137 LttTime *birth, guint trace_num, GQuark name, GQuark brand, guint *height,
138 ProcessInfo **process_info,
139 HashedProcessData **hashed_process_data);
140 // out : success (0) and height
141 int processlist_remove(ProcessList *process_list, guint pid, guint cpu,
142 LttTime *birth, guint trace_num);
143
144 /* Set the name of a process */
145 void processlist_set_name(ProcessList *process_list,
146 GQuark name,
147 HashedProcessData *hashed_process_data);
148
149 void processlist_set_brand(ProcessList *process_list,
150 GQuark brand,
151 HashedProcessData *hashed_process_data);
152
153 /* Set the ppid of a process */
154 void processlist_set_ppid(ProcessList *process_list,
155 guint ppid,
156 HashedProcessData *hashed_process_data);
157
158
159 /* Synchronize the list at the left and the drawing */
160 void update_index_to_pixmap(ProcessList *process_list);
161
162 /* Update the width of each pixmap buffer for each process */
163 void update_pixmap_size(ProcessList *process_list, guint width);
164
165
166 /* Put src and/or dest to NULL to copy from/to the each PID specific pixmap */
167 void copy_pixmap_region(ProcessList *process_list, GdkDrawable *dest,
168 GdkGC *gc, GdkDrawable *src,
169 gint xsrc, gint ysrc,
170 gint xdest, gint ydest, gint width, gint height);
171
172 /* If height is -1, the height of each pixmap is used */
173 void rectangle_pixmap(ProcessList *process_list, GdkGC *gc,
174 gboolean filled, gint x, gint y, gint width, gint height);
175
176 /* Renders each pixmaps into on big drawable */
177 void copy_pixmap_to_screen(ProcessList *process_list,
178 GdkDrawable *dest,
179 GdkGC *gc,
180 gint x, gint y,
181 gint width, gint height);
182
183
184 static inline gint get_cell_height(GtkTreeView *TreeView)
185 {
186 gint height;
187 GtkTreeViewColumn *column = gtk_tree_view_get_column(TreeView, 0);
188
189 gtk_tree_view_column_cell_get_size(column, NULL, NULL, NULL, NULL, &height);
190
191 gint vertical_separator;
192 gtk_widget_style_get (GTK_WIDGET (TreeView),
193 "vertical-separator", &vertical_separator,
194 NULL);
195 height += vertical_separator;
196
197 return height;
198 }
199
200 static inline guint processlist_get_height(ProcessList *process_list)
201 {
202 return process_list->cell_height * process_list->number_of_process ;
203 }
204
205
206 static inline HashedProcessData *processlist_get_process_data(
207 ProcessList *process_list,
208 guint pid, guint cpu, LttTime *birth, guint trace_num)
209 {
210 ProcessInfo process_info;
211
212 process_info.pid = pid;
213 if(pid == 0)
214 process_info.cpu = cpu;
215 else
216 process_info.cpu = ANY_CPU;
217 process_info.birth = *birth;
218 process_info.trace_num = trace_num;
219
220 return (HashedProcessData*)g_hash_table_lookup(
221 process_list->process_hash,
222 &process_info);
223 }
224
225
226 static inline gint processlist_get_pixels_from_data( ProcessList *process_list,
227 HashedProcessData *hashed_process_data,
228 guint *y,
229 guint *height)
230 {
231 gint *path_indices;
232 GtkTreePath *tree_path;
233
234 tree_path = gtk_tree_model_get_path((GtkTreeModel*)process_list->list_store,
235 &hashed_process_data->y_iter);
236 path_indices = gtk_tree_path_get_indices (tree_path);
237
238 *height = get_cell_height((GtkTreeView*)process_list->process_list_widget);
239 *y = *height * path_indices[0];
240 gtk_tree_path_free(tree_path);
241
242 return 0;
243
244 }
245
246 static inline guint processlist_get_index_from_data(ProcessList *process_list,
247 HashedProcessData *hashed_process_data)
248 {
249 gint *path_indices;
250 GtkTreePath *tree_path;
251 guint ret;
252
253 tree_path = gtk_tree_model_get_path((GtkTreeModel*)process_list->list_store,
254 &hashed_process_data->y_iter);
255 path_indices = gtk_tree_path_get_indices (tree_path);
256
257 ret = path_indices[0];
258
259 gtk_tree_path_free(tree_path);
260
261 return ret;
262 }
263
264
265
266 #endif // _PROCESS_LIST_H
This page took 0.034583 seconds and 4 git commands to generate.