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