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