Fix tar.gz build by removing legacy include to ltt directory
[lttv.git] / 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>
e6542e85 25#include <gdk/gdk.h>
fa2c4dbe 26#include <lttv/state.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,
7b5f6cf1 48 BRAND_COLUMN,
7c0125e0 49 PID_COLUMN,
fcc08e1e 50 TGID_COLUMN,
7c0125e0 51 PPID_COLUMN,
52 CPU_COLUMN,
53 BIRTH_S_COLUMN,
54 BIRTH_NS_COLUMN,
55 TRACE_COLUMN,
56 N_COLUMNS
57};
58
59
5f16133f 60typedef struct _ProcessInfo {
a56a1ba4 61
62 guint pid;
fcc08e1e 63 guint tgid;
40debf7b 64 guint cpu;
e92eabaf 65 guint ppid;
a56a1ba4 66 LttTime birth;
d0cd7f09 67 guint trace_num;
5f16133f 68
4e86ae2e 69 // gint height_cache;
ad96f4a0 70
5f16133f 71} ProcessInfo;
72
80a52ff8 73typedef struct _HashedProcessData {
1c736ed5 74
75 GdkPixmap *pixmap; // Pixmap slice containing drawing buffer for the PID
76 gint height; // height of the pixmap
ad96f4a0 77 GtkTreeIter y_iter; // Access quickly to y pos.
b9a010a2 78 // DrawContext *draw_context;
79 /* Information on current drawing */
23093869 80 struct {
81 guint over;
e72908ed 82 gboolean over_used; /* inform the user that information is incomplete */
83 gboolean over_marked; /* inform the user that information is incomplete */
23093869 84 guint middle;
e72908ed 85 gboolean middle_used; /* inform the user that information is incomplete */
86 gboolean middle_marked;/* inform the user that information is incomplete */
23093869 87 guint under;
e72908ed 88 gboolean under_used; /* inform the user that information is incomplete */
89 gboolean under_marked; /* inform the user that information is incomplete */
23093869 90 } x; /* last x position saved by after state update */
b9a010a2 91
b2743953 92 LttTime next_good_time; /* precalculate the next time where the next
93 pixel is.*/
5f16133f 94
80a52ff8 95} HashedProcessData;
a56a1ba4 96
5f16133f 97struct _ProcessList {
a56a1ba4 98
f5d980bf 99 GtkWidget *process_list_widget;
100 GtkListStore *list_store;
b9a010a2 101 GtkWidget *button; /* one button of the tree view */
866fefbd 102 GtkCellRenderer *renderer;
5f16133f 103
a56a1ba4 104 /* A hash table by PID to speed up process position find in the list */
14963be0 105 GHashTable *process_hash;
a56a1ba4 106
ba90bc77 107 guint number_of_process;
866fefbd 108 gint cell_height;
4e86ae2e 109
0f090e21 110 /* Current process pointer, one per cpu, one per trace */
111 HashedProcessData ***current_hash_data;
4e86ae2e 112
1c736ed5 113 /* Array containing index -> pixmap correspondance. Must be updated
114 * every time the process list is reordered, process added or removed */
115 GPtrArray * index_to_pixmap;
116
5f16133f 117};
118
119
f0d936c0 120typedef struct _ProcessList ProcessList;
121
1c736ed5 122
123#ifndef TYPE_DRAWING_T_DEFINED
124#define TYPE_DRAWING_T_DEFINED
125typedef struct _Drawing_t Drawing_t;
126#endif //TYPE_DRAWING_T_DEFINED
127
4c69e0cc 128ProcessList *processlist_construct(void);
ba90bc77 129void processlist_destroy(ProcessList *process_list);
130GtkWidget *processlist_get_widget(ProcessList *process_list);
f0d936c0 131
b9a010a2 132void processlist_clear(ProcessList *process_list);
133
fa2c4dbe 134// out : success (0) and height
a95bc95a 135/* CPU num is only used for PID 0 */
1c736ed5 136int processlist_add(ProcessList *process_list, Drawing_t * drawing,
fcc08e1e 137 guint pid, guint tgid, guint cpu, guint ppid,
7b5f6cf1 138 LttTime *birth, guint trace_num, GQuark name, GQuark brand, guint *height,
4e86ae2e 139 ProcessInfo **process_info,
d0cd7f09 140 HashedProcessData **hashed_process_data);
fa2c4dbe 141// out : success (0) and height
a95bc95a 142int processlist_remove(ProcessList *process_list, guint pid, guint cpu,
143 LttTime *birth, guint trace_num);
fa2c4dbe 144
f4b88a7d 145/* Set the name of a process */
146void processlist_set_name(ProcessList *process_list,
147 GQuark name,
148 HashedProcessData *hashed_process_data);
149
7b5f6cf1 150void processlist_set_brand(ProcessList *process_list,
151 GQuark brand,
152 HashedProcessData *hashed_process_data);
153
1fc7847f 154/* Set the ppid of a process */
fcc08e1e 155void processlist_set_tgid(ProcessList *process_list,
156 guint tgid,
157 HashedProcessData *hashed_process_data);
1fc7847f 158void processlist_set_ppid(ProcessList *process_list,
159 guint ppid,
160 HashedProcessData *hashed_process_data);
161
7c0125e0 162
163/* Synchronize the list at the left and the drawing */
164void update_index_to_pixmap(ProcessList *process_list);
165
1c736ed5 166/* Update the width of each pixmap buffer for each process */
167void update_pixmap_size(ProcessList *process_list, guint width);
168
169
170/* Put src and/or dest to NULL to copy from/to the each PID specific pixmap */
171void copy_pixmap_region(ProcessList *process_list, GdkDrawable *dest,
172 GdkGC *gc, GdkDrawable *src,
173 gint xsrc, gint ysrc,
174 gint xdest, gint ydest, gint width, gint height);
175
176/* If height is -1, the height of each pixmap is used */
177void rectangle_pixmap(ProcessList *process_list, GdkGC *gc,
178 gboolean filled, gint x, gint y, gint width, gint height);
179
180/* Renders each pixmaps into on big drawable */
181void copy_pixmap_to_screen(ProcessList *process_list,
182 GdkDrawable *dest,
183 GdkGC *gc,
184 gint x, gint y,
185 gint width, gint height);
fa2c4dbe 186
e465474e 187
6871f7d1 188static inline gint get_cell_height(GtkTreeView *TreeView)
e6542e85 189{
190 gint height;
191 GtkTreeViewColumn *column = gtk_tree_view_get_column(TreeView, 0);
192
193 gtk_tree_view_column_cell_get_size(column, NULL, NULL, NULL, NULL, &height);
6871f7d1 194
195 gint vertical_separator;
196 gtk_widget_style_get (GTK_WIDGET (TreeView),
197 "vertical-separator", &vertical_separator,
198 NULL);
6871f7d1 199 height += vertical_separator;
7a336641 200
e6542e85 201 return height;
202}
e465474e 203
04cd9a1e 204static inline guint processlist_get_height(ProcessList *process_list)
6550d711 205{
866fefbd 206 return process_list->cell_height * process_list->number_of_process ;
6550d711 207}
208
209
04cd9a1e 210static inline HashedProcessData *processlist_get_process_data(
6550d711 211 ProcessList *process_list,
212 guint pid, guint cpu, LttTime *birth, guint trace_num)
213{
214 ProcessInfo process_info;
6550d711 215
216 process_info.pid = pid;
217 if(pid == 0)
218 process_info.cpu = cpu;
219 else
800aa029 220 process_info.cpu = ANY_CPU;
6550d711 221 process_info.birth = *birth;
222 process_info.trace_num = trace_num;
223
224 return (HashedProcessData*)g_hash_table_lookup(
225 process_list->process_hash,
226 &process_info);
227}
228
229
04cd9a1e 230static inline gint processlist_get_pixels_from_data( ProcessList *process_list,
14963be0 231 HashedProcessData *hashed_process_data,
a56a1ba4 232 guint *y,
6550d711 233 guint *height)
234{
235 gint *path_indices;
236 GtkTreePath *tree_path;
237
238 tree_path = gtk_tree_model_get_path((GtkTreeModel*)process_list->list_store,
239 &hashed_process_data->y_iter);
240 path_indices = gtk_tree_path_get_indices (tree_path);
241
6871f7d1 242 *height = get_cell_height((GtkTreeView*)process_list->process_list_widget);
6550d711 243 *y = *height * path_indices[0];
244 gtk_tree_path_free(tree_path);
245
246 return 0;
247
248}
249
1c736ed5 250static inline guint processlist_get_index_from_data(ProcessList *process_list,
251 HashedProcessData *hashed_process_data)
252{
253 gint *path_indices;
254 GtkTreePath *tree_path;
255 guint ret;
256
257 tree_path = gtk_tree_model_get_path((GtkTreeModel*)process_list->list_store,
258 &hashed_process_data->y_iter);
259 path_indices = gtk_tree_path_get_indices (tree_path);
260
261 ret = path_indices[0];
262
263 gtk_tree_path_free(tree_path);
264
265 return ret;
266}
267
6550d711 268
8b90e648 269
f0d936c0 270#endif // _PROCESS_LIST_H
This page took 0.085148 seconds and 4 git commands to generate.