traceset position save fix
[lttv.git] / ltt / branches / poly / lttv / modules / gui / controlflow / processlist.h
CommitLineData
ce0214a6 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
f0d936c0 21#ifndef _PROCESS_LIST_H
22#define _PROCESS_LIST_H
23
fa2c4dbe 24#include <gtk/gtk.h>
25#include <lttv/state.h>
26#include <ltt/ltt.h>
d66666fe 27
28#include "drawitem.h"
fa2c4dbe 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
a56a1ba4 37 * note : the sync with drawing is left to the caller.
fa2c4dbe 38 * provides helper function to convert a process unique identifier to
a56a1ba4 39 * pixels (in height).
5f16133f 40 *
fa2c4dbe 41 */
42
7c0125e0 43
44/* Enumeration of the columns */
45enum
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
5f16133f 58typedef struct _ProcessInfo {
a56a1ba4 59
60 guint pid;
40debf7b 61 guint cpu;
e92eabaf 62 guint ppid;
a56a1ba4 63 LttTime birth;
d0cd7f09 64 guint trace_num;
5f16133f 65
4e86ae2e 66 // gint height_cache;
ad96f4a0 67
5f16133f 68} ProcessInfo;
69
80a52ff8 70typedef struct _HashedProcessData {
1c736ed5 71
72 GdkPixmap *pixmap; // Pixmap slice containing drawing buffer for the PID
73 gint height; // height of the pixmap
ad96f4a0 74 GtkTreeIter y_iter; // Access quickly to y pos.
b9a010a2 75 // DrawContext *draw_context;
76 /* Information on current drawing */
23093869 77 struct {
78 guint over;
e72908ed 79 gboolean over_used; /* inform the user that information is incomplete */
80 gboolean over_marked; /* inform the user that information is incomplete */
23093869 81 guint middle;
e72908ed 82 gboolean middle_used; /* inform the user that information is incomplete */
83 gboolean middle_marked;/* inform the user that information is incomplete */
23093869 84 guint under;
e72908ed 85 gboolean under_used; /* inform the user that information is incomplete */
86 gboolean under_marked; /* inform the user that information is incomplete */
23093869 87 } x; /* last x position saved by after state update */
b9a010a2 88
b2743953 89 LttTime next_good_time; /* precalculate the next time where the next
90 pixel is.*/
5f16133f 91
80a52ff8 92} HashedProcessData;
a56a1ba4 93
5f16133f 94struct _ProcessList {
a56a1ba4 95
f5d980bf 96 GtkWidget *process_list_widget;
97 GtkListStore *list_store;
b9a010a2 98 GtkWidget *button; /* one button of the tree view */
866fefbd 99 GtkCellRenderer *renderer;
5f16133f 100
a56a1ba4 101 /* A hash table by PID to speed up process position find in the list */
14963be0 102 GHashTable *process_hash;
a56a1ba4 103
ba90bc77 104 guint number_of_process;
866fefbd 105 gint cell_height;
4e86ae2e 106
40debf7b 107 /* Current process, one per cpu */
108 HashedProcessData **current_hash_data;
4e86ae2e 109
1c736ed5 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
5f16133f 114};
115
116
f0d936c0 117typedef struct _ProcessList ProcessList;
118
1c736ed5 119
120#ifndef TYPE_DRAWING_T_DEFINED
121#define TYPE_DRAWING_T_DEFINED
122typedef struct _Drawing_t Drawing_t;
123#endif //TYPE_DRAWING_T_DEFINED
124
4c69e0cc 125ProcessList *processlist_construct(void);
ba90bc77 126void processlist_destroy(ProcessList *process_list);
127GtkWidget *processlist_get_widget(ProcessList *process_list);
f0d936c0 128
b9a010a2 129void processlist_clear(ProcessList *process_list);
130
fa2c4dbe 131// out : success (0) and height
a95bc95a 132/* CPU num is only used for PID 0 */
1c736ed5 133int processlist_add(ProcessList *process_list, Drawing_t * drawing,
134 guint pid, guint cpu, guint ppid,
e92eabaf 135 LttTime *birth, guint trace_num, const gchar *name, guint *height,
4e86ae2e 136 ProcessInfo **process_info,
d0cd7f09 137 HashedProcessData **hashed_process_data);
fa2c4dbe 138// out : success (0) and height
a95bc95a 139int processlist_remove(ProcessList *process_list, guint pid, guint cpu,
140 LttTime *birth, guint trace_num);
fa2c4dbe 141
7c0125e0 142
143/* Synchronize the list at the left and the drawing */
144void update_index_to_pixmap(ProcessList *process_list);
145
1c736ed5 146/* Update the width of each pixmap buffer for each process */
147void update_pixmap_size(ProcessList *process_list, guint width);
148
149
150/* Put src and/or dest to NULL to copy from/to the each PID specific pixmap */
151void copy_pixmap_region(ProcessList *process_list, GdkDrawable *dest,
152 GdkGC *gc, GdkDrawable *src,
153 gint xsrc, gint ysrc,
154 gint xdest, gint ydest, gint width, gint height);
155
156/* If height is -1, the height of each pixmap is used */
157void rectangle_pixmap(ProcessList *process_list, GdkGC *gc,
158 gboolean filled, gint x, gint y, gint width, gint height);
159
160/* Renders each pixmaps into on big drawable */
161void copy_pixmap_to_screen(ProcessList *process_list,
162 GdkDrawable *dest,
163 GdkGC *gc,
164 gint x, gint y,
165 gint width, gint height);
fa2c4dbe 166
e465474e 167
168
169
04cd9a1e 170static inline guint processlist_get_height(ProcessList *process_list)
6550d711 171{
866fefbd 172 return process_list->cell_height * process_list->number_of_process ;
6550d711 173}
174
175
04cd9a1e 176static inline HashedProcessData *processlist_get_process_data(
6550d711 177 ProcessList *process_list,
178 guint pid, guint cpu, LttTime *birth, guint trace_num)
179{
180 ProcessInfo process_info;
6550d711 181
182 process_info.pid = pid;
183 if(pid == 0)
184 process_info.cpu = cpu;
185 else
186 process_info.cpu = 0;
187 process_info.birth = *birth;
188 process_info.trace_num = trace_num;
189
190 return (HashedProcessData*)g_hash_table_lookup(
191 process_list->process_hash,
192 &process_info);
193}
194
195
04cd9a1e 196static inline gint processlist_get_pixels_from_data( ProcessList *process_list,
14963be0 197 HashedProcessData *hashed_process_data,
a56a1ba4 198 guint *y,
6550d711 199 guint *height)
200{
201 gint *path_indices;
202 GtkTreePath *tree_path;
203
204 tree_path = gtk_tree_model_get_path((GtkTreeModel*)process_list->list_store,
205 &hashed_process_data->y_iter);
206 path_indices = gtk_tree_path_get_indices (tree_path);
207
208 *height = get_cell_height(process_list,
209 (GtkTreeView*)process_list->process_list_widget);
210 *y = *height * path_indices[0];
211 gtk_tree_path_free(tree_path);
212
213 return 0;
214
215}
216
1c736ed5 217static inline guint processlist_get_index_from_data(ProcessList *process_list,
218 HashedProcessData *hashed_process_data)
219{
220 gint *path_indices;
221 GtkTreePath *tree_path;
222 guint ret;
223
224 tree_path = gtk_tree_model_get_path((GtkTreeModel*)process_list->list_store,
225 &hashed_process_data->y_iter);
226 path_indices = gtk_tree_path_get_indices (tree_path);
227
228 ret = path_indices[0];
229
230 gtk_tree_path_free(tree_path);
231
232 return ret;
233}
234
6550d711 235
8b90e648 236
f0d936c0 237#endif // _PROCESS_LIST_H
This page took 0.044515 seconds and 4 git commands to generate.