make inline correct
[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 *
41 * //FIXME : connect the scrolled window adjustment with the list.
fa2c4dbe 42 */
43
5f16133f 44typedef struct _ProcessInfo {
a56a1ba4 45
46 guint pid;
40debf7b 47 guint cpu;
e92eabaf 48 guint ppid;
a56a1ba4 49 LttTime birth;
d0cd7f09 50 guint trace_num;
5f16133f 51
4e86ae2e 52 // gint height_cache;
ad96f4a0 53
5f16133f 54} ProcessInfo;
55
80a52ff8 56typedef struct _HashedProcessData {
a56a1ba4 57
ad96f4a0 58 GtkTreeIter y_iter; // Access quickly to y pos.
b9a010a2 59 // DrawContext *draw_context;
60 /* Information on current drawing */
23093869 61 struct {
62 guint over;
e72908ed 63 gboolean over_used; /* inform the user that information is incomplete */
64 gboolean over_marked; /* inform the user that information is incomplete */
23093869 65 guint middle;
e72908ed 66 gboolean middle_used; /* inform the user that information is incomplete */
67 gboolean middle_marked;/* inform the user that information is incomplete */
23093869 68 guint under;
e72908ed 69 gboolean under_used; /* inform the user that information is incomplete */
70 gboolean under_marked; /* inform the user that information is incomplete */
23093869 71 } x; /* last x position saved by after state update */
b9a010a2 72
b2743953 73 LttTime next_good_time; /* precalculate the next time where the next
74 pixel is.*/
b9a010a2 75 // FIXME : add info on last event ?
5f16133f 76
80a52ff8 77} HashedProcessData;
a56a1ba4 78
5f16133f 79struct _ProcessList {
a56a1ba4 80
f5d980bf 81 GtkWidget *process_list_widget;
82 GtkListStore *list_store;
b9a010a2 83 GtkWidget *button; /* one button of the tree view */
5f16133f 84
a56a1ba4 85 /* A hash table by PID to speed up process position find in the list */
14963be0 86 GHashTable *process_hash;
a56a1ba4 87
ba90bc77 88 guint number_of_process;
ad96f4a0 89 gint cell_height_cache;
4e86ae2e 90
40debf7b 91 /* Current process, one per cpu */
92 HashedProcessData **current_hash_data;
4e86ae2e 93
5f16133f 94};
95
96
f0d936c0 97typedef struct _ProcessList ProcessList;
98
4c69e0cc 99ProcessList *processlist_construct(void);
ba90bc77 100void processlist_destroy(ProcessList *process_list);
101GtkWidget *processlist_get_widget(ProcessList *process_list);
f0d936c0 102
b9a010a2 103void processlist_clear(ProcessList *process_list);
104
fa2c4dbe 105// out : success (0) and height
a95bc95a 106/* CPU num is only used for PID 0 */
107int processlist_add(ProcessList *process_list, guint pid, guint cpu, guint ppid,
e92eabaf 108 LttTime *birth, guint trace_num, const gchar *name, guint *height,
4e86ae2e 109 ProcessInfo **process_info,
d0cd7f09 110 HashedProcessData **hashed_process_data);
fa2c4dbe 111// out : success (0) and height
a95bc95a 112int processlist_remove(ProcessList *process_list, guint pid, guint cpu,
113 LttTime *birth, guint trace_num);
fa2c4dbe 114
fa2c4dbe 115
6550d711 116inline guint processlist_get_height(ProcessList *process_list)
117{
118 return get_cell_height(process_list,
119 (GtkTreeView*)process_list->process_list_widget)
120 * process_list->number_of_process ;
121}
122
123
124inline HashedProcessData *processlist_get_process_data(
125 ProcessList *process_list,
126 guint pid, guint cpu, LttTime *birth, guint trace_num)
127{
128 ProcessInfo process_info;
129 gint *path_indices;
130 GtkTreePath *tree_path;
131
132 process_info.pid = pid;
133 if(pid == 0)
134 process_info.cpu = cpu;
135 else
136 process_info.cpu = 0;
137 process_info.birth = *birth;
138 process_info.trace_num = trace_num;
139
140 return (HashedProcessData*)g_hash_table_lookup(
141 process_list->process_hash,
142 &process_info);
143}
144
145
146inline gint processlist_get_pixels_from_data( ProcessList *process_list,
14963be0 147 HashedProcessData *hashed_process_data,
a56a1ba4 148 guint *y,
6550d711 149 guint *height)
150{
151 gint *path_indices;
152 GtkTreePath *tree_path;
153
154 tree_path = gtk_tree_model_get_path((GtkTreeModel*)process_list->list_store,
155 &hashed_process_data->y_iter);
156 path_indices = gtk_tree_path_get_indices (tree_path);
157
158 *height = get_cell_height(process_list,
159 (GtkTreeView*)process_list->process_list_widget);
160 *y = *height * path_indices[0];
161 gtk_tree_path_free(tree_path);
162
163 return 0;
164
165}
166
167
8b90e648 168
f0d936c0 169#endif // _PROCESS_LIST_H
This page took 0.037331 seconds and 4 git commands to generate.