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 | |
f0d936c0 |
20 | #ifndef _DRAWING_H |
21 | #define _DRAWING_H |
22 | |
558aa013 |
23 | #include <glib.h> |
76a67e8a |
24 | #include <gdk/gdk.h> |
25 | #include <gtk/gtk.h> |
fa2c4dbe |
26 | #include <ltt/ltt.h> |
ca0f8a8e |
27 | #include <lttv/tracecontext.h> |
28 | #include <lttv/state.h> |
29 | #include <lttvwindow/lttvwindow.h> |
d66666fe |
30 | #include "cfv.h" |
31 | #include "drawitem.h" |
f0d936c0 |
32 | |
432a7065 |
33 | |
a56a1ba4 |
34 | #define SAFETY 50 // safety pixels at right and bottom of pixmap buffer |
432a7065 |
35 | |
9a1ec01b |
36 | typedef enum _draw_color { |
37 | COL_BLACK, |
38 | COL_WHITE, |
39 | COL_RUN_USER_MODE,/* green */ |
40 | COL_RUN_SYSCALL, /* pale blue */ |
41 | COL_RUN_TRAP, /* yellow */ |
faf074a3 |
42 | COL_RUN_IRQ, /* orange */ |
43 | COL_RUN_SOFT_IRQ, /* red */ |
9a1ec01b |
44 | COL_WAIT, /* dark red */ |
45 | COL_WAIT_CPU, /* dark yellow */ |
46 | COL_ZOMBIE, /* dark purple */ |
47 | COL_WAIT_FORK, /* dark green */ |
48 | COL_EXIT, /* "less dark" magenta */ |
49 | COL_MODE_UNKNOWN, /* white */ |
50 | COL_UNNAMED, /* white */ |
51 | NUM_COLORS } draw_color; |
e800cf84 |
52 | |
53 | extern GdkColor drawing_colors[NUM_COLORS]; |
54 | |
fa2c4dbe |
55 | /* This part of the viewer does : |
76a67e8a |
56 | * Draw horizontal lines, getting graphic context as arg. |
fa2c4dbe |
57 | * Copy region of the screen into another. |
76a67e8a |
58 | * Modify the boundaries to reflect a scale change. (resize) |
847b479d |
59 | * Refresh the physical screen with the pixmap |
189a5d08 |
60 | * A helper function is provided here to convert from time to process |
fa2c4dbe |
61 | * identifier to pixels and the contrary (will be useful for mouse selection). |
5f16133f |
62 | * Insert an empty square in the drawing, moving the bottom part. |
63 | * |
189a5d08 |
64 | * Note: The last point is exactly why it would not be so easy to add the |
65 | * vertical line functionnality as in the original version of LTT. In order |
66 | * to do so, we should keep all processes in the list for the duration of |
67 | * all the trace instead of dynamically adding and removing them when we |
68 | * scroll. Another possibility is to redraw all the visible area when a new |
69 | * process is added to the list. The second solution seems more appropriate |
70 | * to me. |
71 | * |
72 | * |
5f16133f |
73 | * The pixmap used has the width of the physical window, but the height |
74 | * of the shown processes. |
fa2c4dbe |
75 | */ |
f0d936c0 |
76 | |
e8d11122 |
77 | #ifndef TYPE_DRAWING_T_DEFINED |
78 | #define TYPE_DRAWING_T_DEFINED |
f0d936c0 |
79 | typedef struct _Drawing_t Drawing_t; |
e8d11122 |
80 | #endif //TYPE_DRAWING_T_DEFINED |
81 | |
82 | #ifndef TYPE_CONTROLFLOWDATA_DEFINED |
83 | #define TYPE_CONTROLFLOWDATA_DEFINED |
84 | typedef struct _ControlFlowData ControlFlowData; |
85 | #endif //TYPE_CONTROLFLOWDATA_DEFINED |
f0d936c0 |
86 | |
f7afe191 |
87 | struct _Drawing_t { |
3cb8b205 |
88 | GtkWidget *vbox; |
14963be0 |
89 | GtkWidget *drawing_area; |
51705146 |
90 | //GtkWidget *scrolled_window; |
91 | GtkWidget *hbox; |
92 | GtkWidget *viewport; |
93 | GtkWidget *scrollbar; |
94 | |
95 | GtkWidget *ruler_hbox; |
3cb8b205 |
96 | GtkWidget *ruler; |
51705146 |
97 | GtkWidget *padding; |
1c736ed5 |
98 | //GdkPixmap *pixmap; |
68997a22 |
99 | ControlFlowData *control_flow_data; |
a56a1ba4 |
100 | |
101 | PangoLayout *pango_layout; |
102 | |
a43d67ba |
103 | gint height, width, depth; |
0af21a59 |
104 | /* height and width of allocated buffer pixmap */ |
105 | gint alloc_height, alloc_width; |
a56a1ba4 |
106 | |
ca0f8a8e |
107 | /* X coordinate of damaged region */ |
a2b3ec75 |
108 | gint damage_begin, damage_end; /* damaged region to be exposed, |
109 | updated per chunk */ |
110 | LttTime last_start; |
ca0f8a8e |
111 | GdkGC *dotted_gc; |
51705146 |
112 | GdkGC *gc; |
6cec4cd2 |
113 | GdkGC *ruler_gc_butt; |
114 | GdkGC *ruler_gc_round; |
dbd243b1 |
115 | |
116 | /* Position of the horizontal selector, -1 for none */ |
117 | gint horizontal_sel; |
f7afe191 |
118 | }; |
119 | |
68997a22 |
120 | Drawing_t *drawing_construct(ControlFlowData *control_flow_data); |
501d5405 |
121 | void drawing_destroy(Drawing_t *drawing); |
f0d936c0 |
122 | |
501d5405 |
123 | GtkWidget *drawing_get_widget(Drawing_t *drawing); |
3cb8b205 |
124 | GtkWidget *drawing_get_drawing_area(Drawing_t *drawing); |
125 | |
2eef04b5 |
126 | |
127 | void drawing_data_request(Drawing_t *drawing, |
2eef04b5 |
128 | gint x, gint y, |
129 | gint width, |
130 | gint height); |
131 | |
501d5405 |
132 | void drawing_draw_line( Drawing_t *drawing, |
b6db18f8 |
133 | GdkPixmap *pixmap, |
a56a1ba4 |
134 | guint x1, guint y1, |
135 | guint x2, guint y2, |
136 | GdkGC *GC); |
76a67e8a |
137 | |
501d5405 |
138 | //void drawing_copy( Drawing_t *drawing, |
a56a1ba4 |
139 | // guint xsrc, guint ysrc, |
140 | // guint xdest, guint ydest, |
141 | // guint width, guint height); |
f0d936c0 |
142 | |
b9a010a2 |
143 | /* Clear the drawing : make it 1xwidth. */ |
144 | void drawing_clear(Drawing_t *drawing); |
145 | |
5f16133f |
146 | /* Insert a square corresponding to a new process in the list */ |
501d5405 |
147 | void drawing_insert_square(Drawing_t *drawing, |
a56a1ba4 |
148 | guint y, |
149 | guint height); |
5f16133f |
150 | |
151 | /* Remove a square corresponding to a removed process in the list */ |
501d5405 |
152 | void drawing_remove_square(Drawing_t *drawing, |
a56a1ba4 |
153 | guint y, |
154 | guint height); |
5f16133f |
155 | |
3cb8b205 |
156 | void drawing_update_ruler(Drawing_t *drawing, TimeWindow *time_window); |
157 | |
b9a010a2 |
158 | void drawing_request_expose(EventsRequest *events_request, |
159 | LttvTracesetState *tss, |
160 | LttTime end_time); |
161 | |
162 | void drawing_data_request_begin(EventsRequest *events_request, |
163 | LttvTracesetState *tss); |
164 | void drawing_chunk_begin(EventsRequest *events_request, LttvTracesetState *tss); |
a43d67ba |
165 | |
dbd243b1 |
166 | |
167 | |
168 | void |
169 | tree_row_activated(GtkTreeModel *treemodel, |
170 | GtkTreePath *arg1, |
171 | GtkTreeViewColumn *arg2, |
172 | gpointer user_data); |
173 | |
6550d711 |
174 | |
175 | /* convert_pixels_to_time |
176 | * |
177 | * Convert from window pixel and time interval to an absolute time. |
178 | */ |
04cd9a1e |
179 | static inline void convert_pixels_to_time( |
6550d711 |
180 | gint width, |
181 | guint x, |
182 | TimeWindow time_window, |
183 | LttTime *time) |
184 | { |
185 | double time_d; |
186 | |
187 | time_d = time_window.time_width_double; |
188 | time_d = time_d / (double)width * (double)x; |
189 | *time = ltt_time_from_double(time_d); |
190 | *time = ltt_time_add(time_window.start_time, *time); |
191 | } |
192 | |
193 | |
04cd9a1e |
194 | static inline void convert_time_to_pixels( |
6550d711 |
195 | TimeWindow time_window, |
196 | LttTime time, |
197 | int width, |
198 | guint *x) |
199 | { |
200 | double time_d; |
201 | #ifdef EXTRA_CHECK |
202 | g_assert(ltt_time_compare(window_time_begin, time) <= 0 && |
203 | ltt_time_compare(window_time_end, time) >= 0); |
204 | #endif //EXTRA_CHECK |
205 | |
206 | time = ltt_time_sub(time, time_window.start_time); |
207 | |
208 | time_d = ltt_time_to_double(time); |
209 | |
210 | if(time_window.time_width_double == 0.0) { |
211 | g_assert(time_d == 0.0); |
212 | *x = 0; |
213 | } else { |
214 | *x = (guint)(time_d / time_window.time_width_double * (double)width); |
215 | } |
216 | |
217 | } |
218 | |
219 | |
220 | |
f0d936c0 |
221 | #endif // _DRAWING_H |