correct bug : need EXIT and ZOMBIE states : one for exit event, the other for schedul...
[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;
a95bc95a 47 GQuark cpu; /* only for PID 0 */
e92eabaf 48 guint ppid;
a56a1ba4 49 LttTime birth;
d0cd7f09 50 guint trace_num;
5f16133f 51
52} ProcessInfo;
53
80a52ff8 54typedef struct _HashedProcessData {
a56a1ba4 55
f5d980bf 56 GtkTreeRowReference *row_ref;
b9a010a2 57 // DrawContext *draw_context;
58 /* Information on current drawing */
23093869 59 struct {
60 guint over;
61 guint middle;
62 guint under;
63 } x; /* last x position saved by after state update */
b9a010a2 64
65 // FIXME : add info on last event ?
5f16133f 66
80a52ff8 67} HashedProcessData;
a56a1ba4 68
5f16133f 69struct _ProcessList {
a56a1ba4 70
f5d980bf 71 GtkWidget *process_list_widget;
72 GtkListStore *list_store;
b9a010a2 73 GtkWidget *button; /* one button of the tree view */
5f16133f 74
a56a1ba4 75 /* A hash table by PID to speed up process position find in the list */
14963be0 76 GHashTable *process_hash;
a56a1ba4 77
ba90bc77 78 guint number_of_process;
5f16133f 79};
80
81
f0d936c0 82typedef struct _ProcessList ProcessList;
83
4c69e0cc 84ProcessList *processlist_construct(void);
ba90bc77 85void processlist_destroy(ProcessList *process_list);
86GtkWidget *processlist_get_widget(ProcessList *process_list);
f0d936c0 87
b9a010a2 88void processlist_clear(ProcessList *process_list);
89
fa2c4dbe 90// out : success (0) and height
a95bc95a 91/* CPU num is only used for PID 0 */
92int processlist_add(ProcessList *process_list, guint pid, guint cpu, guint ppid,
e92eabaf 93 LttTime *birth, guint trace_num, const gchar *name, guint *height,
d0cd7f09 94 HashedProcessData **hashed_process_data);
fa2c4dbe 95// out : success (0) and height
a95bc95a 96int processlist_remove(ProcessList *process_list, guint pid, guint cpu,
97 LttTime *birth, guint trace_num);
fa2c4dbe 98
ba90bc77 99guint processlist_get_height(ProcessList *process_list);
fa2c4dbe 100
101// Returns 0 on success
ba90bc77 102gint processlist_get_process_pixels(ProcessList *process_list,
a95bc95a 103 guint pid, guint cpu, LttTime *birth, guint trace_num,
a56a1ba4 104 guint *y, guint *height,
14963be0 105 HashedProcessData **hashed_process_data);
a56a1ba4 106
ba90bc77 107gint processlist_get_pixels_from_data( ProcessList *process_list,
a56a1ba4 108 ProcessInfo *process_info,
14963be0 109 HashedProcessData *hashed_process_data,
a56a1ba4 110 guint *y,
111 guint *height);
8b90e648 112
f0d936c0 113#endif // _PROCESS_LIST_H
This page took 0.033104 seconds and 4 git commands to generate.