blob: 859d178e1313a1b5f4d874ed5c1e65562d40a95e [file] [log] [blame]
Stephen M. Cameronff1f3282012-02-24 08:17:30 +01001/*
2 * gfio - gui front end for fio - the flexible io tester
3 *
4 * Copyright (C) 2012 Stephen M. Cameron <stephenmcameron@gmail.com>
Jens Axboec0187f32012-03-06 15:39:15 +01005 * Copyright (C) 2012 Jens Axboe <axboe@kernel.dk>
Stephen M. Cameronff1f3282012-02-24 08:17:30 +01006 *
7 * The license below covers all files distributed with fio unless otherwise
8 * noted in the file itself.
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 *
23 */
Stephen M. Cameron8232e282012-02-24 08:17:31 +010024#include <locale.h>
Stephen M. Cameron60f6b332012-02-24 08:17:32 +010025#include <malloc.h>
Stephen M. Cameron8232e282012-02-24 08:17:31 +010026
Stephen M. Cameron5b7573a2012-02-24 08:17:31 +010027#include <glib.h>
Jens Axboe2fd3bb02012-03-07 08:07:39 +010028#include <cairo.h>
Stephen M. Cameronff1f3282012-02-24 08:17:30 +010029#include <gtk/gtk.h>
30
Stephen M. Cameron8232e282012-02-24 08:17:31 +010031#include "fio.h"
Jens Axboe2fd3bb02012-03-07 08:07:39 +010032#include "graph.h"
Stephen M. Cameron8232e282012-02-24 08:17:31 +010033
Jens Axboe63a130b2012-03-06 20:08:59 +010034static int gfio_server_running;
Jens Axboef3e84402012-03-07 13:14:32 +010035static const char *gfio_graph_font;
Jens Axboe63a130b2012-03-06 20:08:59 +010036
Jens Axboe3e47bd22012-02-29 13:45:02 +010037static void gfio_update_thread_status(char *status_message, double perc);
38
Stephen M. Cameronf3074002012-02-24 08:17:30 +010039#define ARRAYSIZE(x) (sizeof((x)) / (sizeof((x)[0])))
40
41typedef void (*clickfunction)(GtkWidget *widget, gpointer data);
42
Jens Axboe3e47bd22012-02-29 13:45:02 +010043static void connect_clicked(GtkWidget *widget, gpointer data);
Stephen M. Cameronf3074002012-02-24 08:17:30 +010044static void start_job_clicked(GtkWidget *widget, gpointer data);
45
46static struct button_spec {
47 const char *buttontext;
48 clickfunction f;
49 const char *tooltiptext;
Jens Axboe3e47bd22012-02-29 13:45:02 +010050 const int start_insensitive;
Stephen M. Cameronf3074002012-02-24 08:17:30 +010051} buttonspeclist[] = {
Jens Axboe3e47bd22012-02-29 13:45:02 +010052#define CONNECT_BUTTON 0
53#define START_JOB_BUTTON 1
54 { "Connect", connect_clicked, "Connect to host", 0 },
Stephen M. Cameronf3074002012-02-24 08:17:30 +010055 { "Start Job",
56 start_job_clicked,
Jens Axboe3e47bd22012-02-29 13:45:02 +010057 "Send current fio job to fio server to be executed", 1 },
Stephen M. Cameronf3074002012-02-24 08:17:30 +010058};
59
Jens Axboe843ad232012-02-29 11:44:53 +010060struct probe_widget {
61 GtkWidget *hostname;
62 GtkWidget *os;
63 GtkWidget *arch;
64 GtkWidget *fio_ver;
65};
66
Jens Axboe3e47bd22012-02-29 13:45:02 +010067struct eta_widget {
Jens Axboe807f9972012-03-02 10:25:24 +010068 GtkWidget *name;
69 GtkWidget *iotype;
70 GtkWidget *ioengine;
71 GtkWidget *iodepth;
Jens Axboe3e47bd22012-02-29 13:45:02 +010072 GtkWidget *jobs;
73 GtkWidget *files;
74 GtkWidget *read_bw;
75 GtkWidget *read_iops;
76 GtkWidget *cr_bw;
77 GtkWidget *cr_iops;
78 GtkWidget *write_bw;
79 GtkWidget *write_iops;
80 GtkWidget *cw_bw;
81 GtkWidget *cw_iops;
82};
83
Stephen M. Cameronff1f3282012-02-24 08:17:30 +010084struct gui {
85 GtkWidget *window;
Stephen M. Cameron5b7573a2012-02-24 08:17:31 +010086 GtkWidget *vbox;
Stephen M. Cameronc36f98d2012-02-24 08:17:32 +010087 GtkWidget *topvbox;
88 GtkWidget *topalign;
89 GtkWidget *bottomalign;
Stephen M. Cameron04cc6b72012-02-24 08:17:31 +010090 GtkWidget *thread_status_pb;
Stephen M. Cameronf3074002012-02-24 08:17:30 +010091 GtkWidget *buttonbox;
92 GtkWidget *button[ARRAYSIZE(buttonspeclist)];
Stephen M. Cameron736f2df2012-02-24 08:17:32 +010093 GtkWidget *scrolled_window;
Jens Axboe2fd3bb02012-03-07 08:07:39 +010094#define DRAWING_AREA_XDIM 1000
95#define DRAWING_AREA_YDIM 400
96 GtkWidget *drawing_area;
Stephen M. Cameron3ea48b82012-03-07 19:40:58 +010097 int drawing_area_xdim;
98 int drawing_area_ydim;
Jens Axboe0420ba62012-02-29 11:16:52 +010099 GtkWidget *error_info_bar;
100 GtkWidget *error_label;
Jens Axboef9d40b42012-03-06 09:52:49 +0100101 GtkWidget *results_notebook;
102 GtkWidget *results_window;
Jens Axboe9b260bd2012-03-06 11:02:52 +0100103 GtkListStore *log_model;
104 GtkWidget *log_tree;
Jens Axboe4cbe7212012-03-06 13:36:17 +0100105 GtkWidget *log_view;
Stephen M. Cameron736f2df2012-02-24 08:17:32 +0100106 GtkTextBuffer *text;
Jens Axboe843ad232012-02-29 11:44:53 +0100107 struct probe_widget probe;
Jens Axboe3e47bd22012-02-29 13:45:02 +0100108 struct eta_widget eta;
Jens Axboe3ec62ec2012-03-01 12:01:29 +0100109 int connected;
Stephen M. Cameron25927252012-02-24 08:17:31 +0100110 pthread_t t;
Jens Axboe63a130b2012-03-06 20:08:59 +0100111 pthread_t server_t;
Jens Axboe0420ba62012-02-29 11:16:52 +0100112
Jens Axboe2fd3bb02012-03-07 08:07:39 +0100113 struct graph *iops_graph;
114 struct graph *bandwidth_graph;
Jens Axboe3ec62ec2012-03-01 12:01:29 +0100115 struct fio_client *client;
Jens Axboe0420ba62012-02-29 11:16:52 +0100116 int nr_job_files;
117 char **job_files;
Stephen M. Cameron5b7573a2012-02-24 08:17:31 +0100118} ui;
Stephen M. Cameronff1f3282012-02-24 08:17:30 +0100119
Jens Axboee0681f32012-03-06 12:14:42 +0100120struct gfio_client {
121 struct gui *ui;
122 GtkWidget *results_widget;
123 GtkWidget *disk_util_frame;
124};
125
Jens Axboe2fd3bb02012-03-07 08:07:39 +0100126static void setup_iops_graph(struct gui *ui)
127{
128 if (ui->iops_graph)
129 graph_free(ui->iops_graph);
Jens Axboe87d5f272012-03-07 12:31:40 +0100130 ui->iops_graph = graph_new(DRAWING_AREA_XDIM / 2.0,
Jens Axboef3e84402012-03-07 13:14:32 +0100131 DRAWING_AREA_YDIM, gfio_graph_font);
Jens Axboe2fd3bb02012-03-07 08:07:39 +0100132 graph_title(ui->iops_graph, "IOPS");
Stephen M. Cameronb04ad8d2012-03-07 14:49:37 +0100133 graph_x_title(ui->iops_graph, "Time (secs)");
Jens Axboe2fd3bb02012-03-07 08:07:39 +0100134 graph_add_label(ui->iops_graph, "Read IOPS");
135 graph_add_label(ui->iops_graph, "Write IOPS");
Jens Axboe9f4883a2012-03-07 16:22:50 +0100136 graph_set_color(ui->iops_graph, "Read IOPS", 0.13, 0.54, 0.13);
137 graph_set_color(ui->iops_graph, "Write IOPS", 1.0, 0.0, 0.0);
Stephen M. Cameronfe8afdd2012-03-07 19:34:19 +0100138 line_graph_set_data_count_limit(ui->iops_graph, 100);
Jens Axboe2fd3bb02012-03-07 08:07:39 +0100139}
140
141static void setup_bandwidth_graph(struct gui *ui)
142{
143 if (ui->bandwidth_graph)
144 graph_free(ui->bandwidth_graph);
Jens Axboe87d5f272012-03-07 12:31:40 +0100145 ui->bandwidth_graph = graph_new(DRAWING_AREA_XDIM / 2.0,
Jens Axboef3e84402012-03-07 13:14:32 +0100146 DRAWING_AREA_YDIM, gfio_graph_font);
Jens Axboe2fd3bb02012-03-07 08:07:39 +0100147 graph_title(ui->bandwidth_graph, "Bandwidth");
Stephen M. Cameronb04ad8d2012-03-07 14:49:37 +0100148 graph_x_title(ui->bandwidth_graph, "Time (secs)");
Jens Axboe2fd3bb02012-03-07 08:07:39 +0100149 graph_add_label(ui->bandwidth_graph, "Read Bandwidth");
150 graph_add_label(ui->bandwidth_graph, "Write Bandwidth");
Jens Axboe9f4883a2012-03-07 16:22:50 +0100151 graph_set_color(ui->bandwidth_graph, "Read Bandwidth", 0.13, 0.54, 0.13);
152 graph_set_color(ui->bandwidth_graph, "Write Bandwidth", 1.0, 0.0, 0.0);
Stephen M. Cameronfe8afdd2012-03-07 19:34:19 +0100153 line_graph_set_data_count_limit(ui->bandwidth_graph, 100);
Jens Axboe2fd3bb02012-03-07 08:07:39 +0100154}
155
Jens Axboe8663ea62012-03-02 14:04:30 +0100156static void clear_ui_info(struct gui *ui)
157{
158 gtk_label_set_text(GTK_LABEL(ui->probe.hostname), "");
159 gtk_label_set_text(GTK_LABEL(ui->probe.os), "");
160 gtk_label_set_text(GTK_LABEL(ui->probe.arch), "");
161 gtk_label_set_text(GTK_LABEL(ui->probe.fio_ver), "");
Jens Axboeca850992012-03-05 20:04:43 +0100162 gtk_entry_set_text(GTK_ENTRY(ui->eta.name), "");
163 gtk_entry_set_text(GTK_ENTRY(ui->eta.iotype), "");
164 gtk_entry_set_text(GTK_ENTRY(ui->eta.ioengine), "");
165 gtk_entry_set_text(GTK_ENTRY(ui->eta.iodepth), "");
166 gtk_entry_set_text(GTK_ENTRY(ui->eta.jobs), "");
167 gtk_entry_set_text(GTK_ENTRY(ui->eta.files), "");
168 gtk_entry_set_text(GTK_ENTRY(ui->eta.read_bw), "");
169 gtk_entry_set_text(GTK_ENTRY(ui->eta.read_iops), "");
170 gtk_entry_set_text(GTK_ENTRY(ui->eta.write_bw), "");
171 gtk_entry_set_text(GTK_ENTRY(ui->eta.write_iops), "");
Jens Axboe8663ea62012-03-02 14:04:30 +0100172}
173
Jens Axboe3650a3c2012-03-05 14:09:03 +0100174static GtkWidget *new_info_entry_in_frame(GtkWidget *box, const char *label)
175{
176 GtkWidget *entry, *frame;
177
178 frame = gtk_frame_new(label);
179 entry = gtk_entry_new();
Jens Axboe1c1e4a52012-03-05 14:37:38 +0100180 gtk_entry_set_editable(GTK_ENTRY(entry), 0);
Jens Axboe3650a3c2012-03-05 14:09:03 +0100181 gtk_box_pack_start(GTK_BOX(box), frame, TRUE, TRUE, 3);
182 gtk_container_add(GTK_CONTAINER(frame), entry);
183
184 return entry;
185}
186
187static GtkWidget *new_info_label_in_frame(GtkWidget *box, const char *label)
188{
189 GtkWidget *label_widget;
190 GtkWidget *frame;
191
192 frame = gtk_frame_new(label);
193 label_widget = gtk_label_new(NULL);
194 gtk_box_pack_start(GTK_BOX(box), frame, TRUE, TRUE, 3);
195 gtk_container_add(GTK_CONTAINER(frame), label_widget);
196
197 return label_widget;
198}
199
200static GtkWidget *create_spinbutton(GtkWidget *hbox, double min, double max, double defval)
201{
202 GtkWidget *button, *box;
203
204 box = gtk_hbox_new(FALSE, 3);
205 gtk_container_add(GTK_CONTAINER(hbox), box);
206
207 button = gtk_spin_button_new_with_range(min, max, 1.0);
208 gtk_box_pack_start(GTK_BOX(box), button, TRUE, TRUE, 0);
209
210 gtk_spin_button_set_update_policy(GTK_SPIN_BUTTON(button), GTK_UPDATE_IF_VALID);
211 gtk_spin_button_set_value(GTK_SPIN_BUTTON(button), defval);
212
213 return button;
214}
215
Jens Axboe3ec62ec2012-03-01 12:01:29 +0100216static void gfio_set_connected(struct gui *ui, int connected)
217{
218 if (connected) {
219 gtk_widget_set_sensitive(ui->button[START_JOB_BUTTON], 1);
220 ui->connected = 1;
221 gtk_button_set_label(GTK_BUTTON(ui->button[CONNECT_BUTTON]), "Disconnect");
Jens Axboe88f6e7a2012-03-06 12:55:29 +0100222 gtk_widget_set_sensitive(ui->button[CONNECT_BUTTON], 1);
Jens Axboe3ec62ec2012-03-01 12:01:29 +0100223 } else {
224 ui->connected = 0;
225 gtk_button_set_label(GTK_BUTTON(ui->button[CONNECT_BUTTON]), "Connect");
226 gtk_widget_set_sensitive(ui->button[START_JOB_BUTTON], 0);
Jens Axboe63a130b2012-03-06 20:08:59 +0100227 gtk_widget_set_sensitive(ui->button[CONNECT_BUTTON], 1);
Jens Axboe3ec62ec2012-03-01 12:01:29 +0100228 }
229}
230
Jens Axboe3650a3c2012-03-05 14:09:03 +0100231static void label_set_int_value(GtkWidget *entry, unsigned int val)
232{
233 char tmp[80];
234
235 sprintf(tmp, "%u", val);
236 gtk_label_set_text(GTK_LABEL(entry), tmp);
237}
238
239static void entry_set_int_value(GtkWidget *entry, unsigned int val)
240{
241 char tmp[80];
242
243 sprintf(tmp, "%u", val);
244 gtk_entry_set_text(GTK_ENTRY(entry), tmp);
245}
246
Jens Axboea2697902012-03-05 16:43:49 +0100247#define ALIGN_LEFT 1
248#define ALIGN_RIGHT 2
249#define INVISIBLE 4
250#define UNSORTABLE 8
251
252GtkTreeViewColumn *tree_view_column(GtkWidget *tree_view, int index, const char *title, unsigned int flags)
253{
254 GtkCellRenderer *renderer;
255 GtkTreeViewColumn *col;
256 double xalign = 0.0; /* left as default */
257 PangoAlignment align;
258 gboolean visible;
259
260 align = (flags & ALIGN_LEFT) ? PANGO_ALIGN_LEFT :
261 (flags & ALIGN_RIGHT) ? PANGO_ALIGN_RIGHT :
262 PANGO_ALIGN_CENTER;
263 visible = !(flags & INVISIBLE);
264
265 renderer = gtk_cell_renderer_text_new();
266 col = gtk_tree_view_column_new();
267
268 gtk_tree_view_column_set_title(col, title);
269 if (!(flags & UNSORTABLE))
270 gtk_tree_view_column_set_sort_column_id(col, index);
271 gtk_tree_view_column_set_resizable(col, TRUE);
272 gtk_tree_view_column_pack_start(col, renderer, TRUE);
273 gtk_tree_view_column_add_attribute(col, renderer, "text", index);
274 gtk_object_set(GTK_OBJECT(renderer), "alignment", align, NULL);
275 switch (align) {
276 case PANGO_ALIGN_LEFT:
277 xalign = 0.0;
278 break;
279 case PANGO_ALIGN_CENTER:
280 xalign = 0.5;
281 break;
282 case PANGO_ALIGN_RIGHT:
283 xalign = 1.0;
284 break;
285 }
286 gtk_cell_renderer_set_alignment(GTK_CELL_RENDERER(renderer), xalign, 0.5);
287 gtk_tree_view_column_set_visible(col, visible);
288 gtk_tree_view_append_column(GTK_TREE_VIEW(tree_view), col);
289 return col;
290}
291
Jens Axboe9b260bd2012-03-06 11:02:52 +0100292static void gfio_ui_setup_log(struct gui *ui)
293{
294 GtkTreeSelection *selection;
295 GtkListStore *model;
296 GtkWidget *tree_view;
297
298 model = gtk_list_store_new(4, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_INT, G_TYPE_STRING);
299
300 tree_view = gtk_tree_view_new_with_model(GTK_TREE_MODEL(model));
301 gtk_widget_set_can_focus(tree_view, FALSE);
302
303 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(tree_view));
304 gtk_tree_selection_set_mode(GTK_TREE_SELECTION(selection), GTK_SELECTION_BROWSE);
Jens Axboe661f7412012-03-06 13:55:45 +0100305 g_object_set(G_OBJECT(tree_view), "headers-visible", TRUE,
306 "enable-grid-lines", GTK_TREE_VIEW_GRID_LINES_BOTH, NULL);
Jens Axboe9b260bd2012-03-06 11:02:52 +0100307
308 tree_view_column(tree_view, 0, "Time", ALIGN_RIGHT | UNSORTABLE);
309 tree_view_column(tree_view, 1, "Host", ALIGN_RIGHT | UNSORTABLE);
310 tree_view_column(tree_view, 2, "Level", ALIGN_RIGHT | UNSORTABLE);
Jens Axboef095d562012-03-06 13:49:12 +0100311 tree_view_column(tree_view, 3, "Text", ALIGN_LEFT | UNSORTABLE);
Jens Axboe9b260bd2012-03-06 11:02:52 +0100312
313 ui->log_model = model;
314 ui->log_tree = tree_view;
315}
316
Jens Axboea2697902012-03-05 16:43:49 +0100317static GtkWidget *gfio_output_clat_percentiles(unsigned int *ovals,
318 fio_fp64_t *plist,
319 unsigned int len,
320 const char *base,
321 unsigned int scale)
322{
323 GType types[FIO_IO_U_LIST_MAX_LEN];
324 GtkWidget *tree_view;
325 GtkTreeSelection *selection;
326 GtkListStore *model;
327 GtkTreeIter iter;
328 int i;
329
330 for (i = 0; i < len; i++)
331 types[i] = G_TYPE_INT;
332
333 model = gtk_list_store_newv(len, types);
334
335 tree_view = gtk_tree_view_new_with_model(GTK_TREE_MODEL(model));
336 gtk_widget_set_can_focus(tree_view, FALSE);
337
Jens Axboe661f7412012-03-06 13:55:45 +0100338 g_object_set(G_OBJECT(tree_view), "headers-visible", TRUE,
339 "enable-grid-lines", GTK_TREE_VIEW_GRID_LINES_BOTH, NULL);
340
Jens Axboea2697902012-03-05 16:43:49 +0100341 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(tree_view));
342 gtk_tree_selection_set_mode(GTK_TREE_SELECTION(selection), GTK_SELECTION_BROWSE);
343
344 for (i = 0; i < len; i++) {
345 char fbuf[8];
346
347 sprintf(fbuf, "%2.2f%%", plist[i].u.f);
348 tree_view_column(tree_view, i, fbuf, ALIGN_RIGHT | UNSORTABLE);
349 }
350
351 gtk_list_store_append(model, &iter);
352
Jens Axboee0681f32012-03-06 12:14:42 +0100353 for (i = 0; i < len; i++) {
354 if (scale)
355 ovals[i] = (ovals[i] + 999) / 1000;
Jens Axboea2697902012-03-05 16:43:49 +0100356 gtk_list_store_set(model, &iter, i, ovals[i], -1);
Jens Axboee0681f32012-03-06 12:14:42 +0100357 }
Jens Axboea2697902012-03-05 16:43:49 +0100358
359 return tree_view;
360}
361
362static void gfio_show_clat_percentiles(GtkWidget *vbox, struct thread_stat *ts,
363 int ddir)
364{
365 unsigned int *io_u_plat = ts->io_u_plat[ddir];
366 unsigned long nr = ts->clat_stat[ddir].samples;
367 fio_fp64_t *plist = ts->percentile_list;
368 unsigned int *ovals, len, minv, maxv, scale_down;
369 const char *base;
370 GtkWidget *tree_view, *frame, *hbox;
371 char tmp[64];
372
373 len = calc_clat_percentiles(io_u_plat, nr, plist, &ovals, &maxv, &minv);
374 if (!len)
375 goto out;
376
377 /*
378 * We default to usecs, but if the value range is such that we
379 * should scale down to msecs, do that.
380 */
381 if (minv > 2000 && maxv > 99999) {
382 scale_down = 1;
383 base = "msec";
384 } else {
385 scale_down = 0;
386 base = "usec";
387 }
388
389 tree_view = gfio_output_clat_percentiles(ovals, plist, len, base, scale_down);
390
391 sprintf(tmp, "Completion percentiles (%s)", base);
392 frame = gtk_frame_new(tmp);
393 gtk_box_pack_start(GTK_BOX(vbox), frame, FALSE, FALSE, 5);
394
395 hbox = gtk_hbox_new(FALSE, 3);
396 gtk_container_add(GTK_CONTAINER(frame), hbox);
397
398 gtk_box_pack_start(GTK_BOX(hbox), tree_view, TRUE, FALSE, 3);
399out:
400 if (ovals)
401 free(ovals);
402}
403
Jens Axboe3650a3c2012-03-05 14:09:03 +0100404static void gfio_show_lat(GtkWidget *vbox, const char *name, unsigned long min,
405 unsigned long max, double mean, double dev)
406{
407 const char *base = "(usec)";
Jens Axboe1c1e4a52012-03-05 14:37:38 +0100408 GtkWidget *hbox, *label, *frame;
Jens Axboe3650a3c2012-03-05 14:09:03 +0100409 char *minp, *maxp;
410 char tmp[64];
411
412 if (!usec_to_msec(&min, &max, &mean, &dev))
413 base = "(msec)";
414
415 minp = num2str(min, 6, 1, 0);
416 maxp = num2str(max, 6, 1, 0);
417
Jens Axboe3650a3c2012-03-05 14:09:03 +0100418 sprintf(tmp, "%s %s", name, base);
419 frame = gtk_frame_new(tmp);
420 gtk_box_pack_start(GTK_BOX(vbox), frame, FALSE, FALSE, 5);
421
Jens Axboe3650a3c2012-03-05 14:09:03 +0100422 hbox = gtk_hbox_new(FALSE, 3);
Jens Axboe1c1e4a52012-03-05 14:37:38 +0100423 gtk_container_add(GTK_CONTAINER(frame), hbox);
Jens Axboe3650a3c2012-03-05 14:09:03 +0100424
425 label = new_info_label_in_frame(hbox, "Minimum");
426 gtk_label_set_text(GTK_LABEL(label), minp);
427 label = new_info_label_in_frame(hbox, "Maximum");
428 gtk_label_set_text(GTK_LABEL(label), maxp);
429 label = new_info_label_in_frame(hbox, "Average");
430 sprintf(tmp, "%5.02f", mean);
431 gtk_label_set_text(GTK_LABEL(label), tmp);
432 label = new_info_label_in_frame(hbox, "Standard deviation");
433 sprintf(tmp, "%5.02f", dev);
434 gtk_label_set_text(GTK_LABEL(label), tmp);
435
436 free(minp);
437 free(maxp);
438
439}
440
Jens Axboeca850992012-03-05 20:04:43 +0100441#define GFIO_CLAT 1
442#define GFIO_SLAT 2
443#define GFIO_LAT 4
444
Jens Axboe3650a3c2012-03-05 14:09:03 +0100445static void gfio_show_ddir_status(GtkWidget *mbox, struct group_run_stats *rs,
446 struct thread_stat *ts, int ddir)
447{
448 const char *ddir_label[2] = { "Read", "Write" };
Jens Axboe0b761302012-03-05 20:44:11 +0100449 GtkWidget *frame, *label, *box, *vbox, *main_vbox;
Jens Axboee0681f32012-03-06 12:14:42 +0100450 unsigned long min[3], max[3], runt;
Jens Axboe3650a3c2012-03-05 14:09:03 +0100451 unsigned long long bw, iops;
Jens Axboeca850992012-03-05 20:04:43 +0100452 unsigned int flags = 0;
Jens Axboee0681f32012-03-06 12:14:42 +0100453 double mean[3], dev[3];
Jens Axboe3650a3c2012-03-05 14:09:03 +0100454 char *io_p, *bw_p, *iops_p;
455 int i2p;
456
457 if (!ts->runtime[ddir])
458 return;
459
460 i2p = is_power_of_2(rs->kb_base);
461 runt = ts->runtime[ddir];
462
463 bw = (1000 * ts->io_bytes[ddir]) / runt;
464 io_p = num2str(ts->io_bytes[ddir], 6, 1, i2p);
465 bw_p = num2str(bw, 6, 1, i2p);
466
467 iops = (1000 * (uint64_t)ts->total_io_u[ddir]) / runt;
468 iops_p = num2str(iops, 6, 1, 0);
469
470 box = gtk_hbox_new(FALSE, 3);
471 gtk_box_pack_start(GTK_BOX(mbox), box, TRUE, FALSE, 3);
472
473 frame = gtk_frame_new(ddir_label[ddir]);
474 gtk_box_pack_start(GTK_BOX(box), frame, FALSE, FALSE, 5);
475
Jens Axboe0b761302012-03-05 20:44:11 +0100476 main_vbox = gtk_vbox_new(FALSE, 3);
477 gtk_container_add(GTK_CONTAINER(frame), main_vbox);
Jens Axboe3650a3c2012-03-05 14:09:03 +0100478
479 box = gtk_hbox_new(FALSE, 3);
Jens Axboe0b761302012-03-05 20:44:11 +0100480 gtk_box_pack_start(GTK_BOX(main_vbox), box, TRUE, FALSE, 3);
Jens Axboe3650a3c2012-03-05 14:09:03 +0100481
482 label = new_info_label_in_frame(box, "IO");
483 gtk_label_set_text(GTK_LABEL(label), io_p);
484 label = new_info_label_in_frame(box, "Bandwidth");
485 gtk_label_set_text(GTK_LABEL(label), bw_p);
486 label = new_info_label_in_frame(box, "IOPS");
487 gtk_label_set_text(GTK_LABEL(label), iops_p);
488 label = new_info_label_in_frame(box, "Runtime (msec)");
489 label_set_int_value(label, ts->runtime[ddir]);
490
Jens Axboee0681f32012-03-06 12:14:42 +0100491 if (calc_lat(&ts->bw_stat[ddir], &min[0], &max[0], &mean[0], &dev[0])) {
Jens Axboeca850992012-03-05 20:04:43 +0100492 double p_of_agg = 100.0;
493 const char *bw_str = "KB";
494 char tmp[32];
495
496 if (rs->agg[ddir]) {
Jens Axboee0681f32012-03-06 12:14:42 +0100497 p_of_agg = mean[0] * 100 / (double) rs->agg[ddir];
Jens Axboeca850992012-03-05 20:04:43 +0100498 if (p_of_agg > 100.0)
499 p_of_agg = 100.0;
500 }
501
Jens Axboee0681f32012-03-06 12:14:42 +0100502 if (mean[0] > 999999.9) {
503 min[0] /= 1000.0;
504 max[0] /= 1000.0;
505 mean[0] /= 1000.0;
506 dev[0] /= 1000.0;
Jens Axboeca850992012-03-05 20:04:43 +0100507 bw_str = "MB";
508 }
509
Jens Axboe0b761302012-03-05 20:44:11 +0100510 sprintf(tmp, "Bandwidth (%s)", bw_str);
511 frame = gtk_frame_new(tmp);
512 gtk_box_pack_start(GTK_BOX(main_vbox), frame, FALSE, FALSE, 5);
Jens Axboeca850992012-03-05 20:04:43 +0100513
Jens Axboe0b761302012-03-05 20:44:11 +0100514 box = gtk_hbox_new(FALSE, 3);
515 gtk_container_add(GTK_CONTAINER(frame), box);
Jens Axboeca850992012-03-05 20:04:43 +0100516
Jens Axboe0b761302012-03-05 20:44:11 +0100517 label = new_info_label_in_frame(box, "Minimum");
Jens Axboee0681f32012-03-06 12:14:42 +0100518 label_set_int_value(label, min[0]);
Jens Axboe0b761302012-03-05 20:44:11 +0100519 label = new_info_label_in_frame(box, "Maximum");
Jens Axboee0681f32012-03-06 12:14:42 +0100520 label_set_int_value(label, max[0]);
Jens Axboe0b761302012-03-05 20:44:11 +0100521 label = new_info_label_in_frame(box, "Percentage of jobs");
Jens Axboeca850992012-03-05 20:04:43 +0100522 sprintf(tmp, "%3.2f%%", p_of_agg);
523 gtk_label_set_text(GTK_LABEL(label), tmp);
Jens Axboe0b761302012-03-05 20:44:11 +0100524 label = new_info_label_in_frame(box, "Average");
Jens Axboee0681f32012-03-06 12:14:42 +0100525 sprintf(tmp, "%5.02f", mean[0]);
Jens Axboeca850992012-03-05 20:04:43 +0100526 gtk_label_set_text(GTK_LABEL(label), tmp);
Jens Axboe0b761302012-03-05 20:44:11 +0100527 label = new_info_label_in_frame(box, "Standard deviation");
Jens Axboee0681f32012-03-06 12:14:42 +0100528 sprintf(tmp, "%5.02f", dev[0]);
Jens Axboeca850992012-03-05 20:04:43 +0100529 gtk_label_set_text(GTK_LABEL(label), tmp);
530 }
531
Jens Axboee0681f32012-03-06 12:14:42 +0100532 if (calc_lat(&ts->slat_stat[ddir], &min[0], &max[0], &mean[0], &dev[0]))
Jens Axboe2b089892012-03-06 08:09:17 +0100533 flags |= GFIO_SLAT;
Jens Axboee0681f32012-03-06 12:14:42 +0100534 if (calc_lat(&ts->clat_stat[ddir], &min[1], &max[1], &mean[1], &dev[1]))
Jens Axboe2b089892012-03-06 08:09:17 +0100535 flags |= GFIO_CLAT;
Jens Axboee0681f32012-03-06 12:14:42 +0100536 if (calc_lat(&ts->lat_stat[ddir], &min[2], &max[2], &mean[2], &dev[2]))
Jens Axboe2b089892012-03-06 08:09:17 +0100537 flags |= GFIO_LAT;
538
539 if (flags) {
540 frame = gtk_frame_new("Latency");
541 gtk_box_pack_start(GTK_BOX(main_vbox), frame, FALSE, FALSE, 5);
542
543 vbox = gtk_vbox_new(FALSE, 3);
544 gtk_container_add(GTK_CONTAINER(frame), vbox);
545
546 if (flags & GFIO_SLAT)
Jens Axboee0681f32012-03-06 12:14:42 +0100547 gfio_show_lat(vbox, "Submission latency", min[0], max[0], mean[0], dev[0]);
Jens Axboe2b089892012-03-06 08:09:17 +0100548 if (flags & GFIO_CLAT)
Jens Axboee0681f32012-03-06 12:14:42 +0100549 gfio_show_lat(vbox, "Completion latency", min[1], max[1], mean[1], dev[1]);
Jens Axboe2b089892012-03-06 08:09:17 +0100550 if (flags & GFIO_LAT)
Jens Axboee0681f32012-03-06 12:14:42 +0100551 gfio_show_lat(vbox, "Total latency", min[2], max[2], mean[2], dev[2]);
Jens Axboe2b089892012-03-06 08:09:17 +0100552 }
553
554 if (ts->clat_percentiles)
555 gfio_show_clat_percentiles(main_vbox, ts, ddir);
556
557
Jens Axboe3650a3c2012-03-05 14:09:03 +0100558 free(io_p);
559 free(bw_p);
560 free(iops_p);
561}
562
Jens Axboee5bd1342012-03-05 21:38:12 +0100563static GtkWidget *gfio_output_lat_buckets(double *lat, unsigned int num,
564 const char **labels)
565{
566 GtkWidget *tree_view;
567 GtkTreeSelection *selection;
568 GtkListStore *model;
569 GtkTreeIter iter;
570 GType *types;
571 int i, skipped;
572
573 /*
574 * Check if all are empty, in which case don't bother
575 */
576 for (i = 0, skipped = 0; i < num; i++)
577 if (lat[i] <= 0.0)
578 skipped++;
579
580 if (skipped == num)
581 return NULL;
582
583 types = malloc(num * sizeof(GType));
584
585 for (i = 0; i < num; i++)
586 types[i] = G_TYPE_STRING;
587
588 model = gtk_list_store_newv(num, types);
589 free(types);
590 types = NULL;
591
592 tree_view = gtk_tree_view_new_with_model(GTK_TREE_MODEL(model));
593 gtk_widget_set_can_focus(tree_view, FALSE);
594
Jens Axboe661f7412012-03-06 13:55:45 +0100595 g_object_set(G_OBJECT(tree_view), "headers-visible", TRUE,
596 "enable-grid-lines", GTK_TREE_VIEW_GRID_LINES_BOTH, NULL);
597
Jens Axboee5bd1342012-03-05 21:38:12 +0100598 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(tree_view));
599 gtk_tree_selection_set_mode(GTK_TREE_SELECTION(selection), GTK_SELECTION_BROWSE);
600
601 for (i = 0; i < num; i++)
602 tree_view_column(tree_view, i, labels[i], ALIGN_RIGHT | UNSORTABLE);
603
604 gtk_list_store_append(model, &iter);
605
606 for (i = 0; i < num; i++) {
607 char fbuf[32];
608
609 if (lat[i] <= 0.0)
610 sprintf(fbuf, "0.00");
611 else
612 sprintf(fbuf, "%3.2f%%", lat[i]);
613
614 gtk_list_store_set(model, &iter, i, fbuf, -1);
615 }
616
617 return tree_view;
618}
619
620static void gfio_show_latency_buckets(GtkWidget *vbox, struct thread_stat *ts)
621{
622 GtkWidget *box, *frame, *tree_view;
623 double io_u_lat_u[FIO_IO_U_LAT_U_NR];
624 double io_u_lat_m[FIO_IO_U_LAT_M_NR];
625 const char *uranges[] = { "2", "4", "10", "20", "50", "100",
626 "250", "500", "750", "1000", };
627 const char *mranges[] = { "2", "4", "10", "20", "50", "100",
628 "250", "500", "750", "1000", "2000",
629 ">= 2000", };
630
631 stat_calc_lat_u(ts, io_u_lat_u);
632 stat_calc_lat_m(ts, io_u_lat_m);
633
634 tree_view = gfio_output_lat_buckets(io_u_lat_u, FIO_IO_U_LAT_U_NR, uranges);
635 if (tree_view) {
636 frame = gtk_frame_new("Latency buckets (usec)");
637 gtk_box_pack_start(GTK_BOX(vbox), frame, FALSE, FALSE, 5);
638
639 box = gtk_hbox_new(FALSE, 3);
640 gtk_container_add(GTK_CONTAINER(frame), box);
641 gtk_box_pack_start(GTK_BOX(box), tree_view, TRUE, FALSE, 3);
642 }
643
644 tree_view = gfio_output_lat_buckets(io_u_lat_m, FIO_IO_U_LAT_M_NR, mranges);
645 if (tree_view) {
646 frame = gtk_frame_new("Latency buckets (msec)");
647 gtk_box_pack_start(GTK_BOX(vbox), frame, FALSE, FALSE, 5);
648
649 box = gtk_hbox_new(FALSE, 3);
650 gtk_container_add(GTK_CONTAINER(frame), box);
651 gtk_box_pack_start(GTK_BOX(box), tree_view, TRUE, FALSE, 3);
652 }
653}
654
Jens Axboe2e331012012-03-05 22:07:54 +0100655static void gfio_show_cpu_usage(GtkWidget *vbox, struct thread_stat *ts)
656{
657 GtkWidget *box, *frame, *entry;
658 double usr_cpu, sys_cpu;
659 unsigned long runtime;
660 char tmp[32];
661
662 runtime = ts->total_run_time;
663 if (runtime) {
664 double runt = (double) runtime;
665
666 usr_cpu = (double) ts->usr_time * 100 / runt;
667 sys_cpu = (double) ts->sys_time * 100 / runt;
668 } else {
669 usr_cpu = 0;
670 sys_cpu = 0;
671 }
672
673 frame = gtk_frame_new("OS resources");
674 gtk_box_pack_start(GTK_BOX(vbox), frame, FALSE, FALSE, 5);
675
676 box = gtk_hbox_new(FALSE, 3);
677 gtk_container_add(GTK_CONTAINER(frame), box);
678
679 entry = new_info_entry_in_frame(box, "User CPU");
680 sprintf(tmp, "%3.2f%%", usr_cpu);
681 gtk_entry_set_text(GTK_ENTRY(entry), tmp);
682 entry = new_info_entry_in_frame(box, "System CPU");
683 sprintf(tmp, "%3.2f%%", sys_cpu);
684 gtk_entry_set_text(GTK_ENTRY(entry), tmp);
685 entry = new_info_entry_in_frame(box, "Context switches");
686 entry_set_int_value(entry, ts->ctx);
687 entry = new_info_entry_in_frame(box, "Major faults");
688 entry_set_int_value(entry, ts->majf);
689 entry = new_info_entry_in_frame(box, "Minor faults");
690 entry_set_int_value(entry, ts->minf);
691}
Jens Axboe19998db2012-03-06 09:17:59 +0100692static void gfio_add_sc_depths_tree(GtkListStore *model,
693 struct thread_stat *ts, unsigned int len,
694 int submit)
695{
696 double io_u_dist[FIO_IO_U_MAP_NR];
697 GtkTreeIter iter;
698 /* Bits 0, and 3-8 */
699 const int add_mask = 0x1f9;
700 int i, j;
701
702 if (submit)
703 stat_calc_dist(ts->io_u_submit, ts->total_submit, io_u_dist);
704 else
705 stat_calc_dist(ts->io_u_complete, ts->total_complete, io_u_dist);
706
707 gtk_list_store_append(model, &iter);
708
709 gtk_list_store_set(model, &iter, 0, submit ? "Submit" : "Complete", -1);
710
711 for (i = 1, j = 0; i < len; i++) {
712 char fbuf[32];
713
714 if (!(add_mask & (1UL << (i - 1))))
715 sprintf(fbuf, "0.0%%");
716 else {
717 sprintf(fbuf, "%3.1f%%", io_u_dist[j]);
718 j++;
719 }
720
721 gtk_list_store_set(model, &iter, i, fbuf, -1);
722 }
723
724}
725
726static void gfio_add_total_depths_tree(GtkListStore *model,
727 struct thread_stat *ts, unsigned int len)
728{
729 double io_u_dist[FIO_IO_U_MAP_NR];
730 GtkTreeIter iter;
731 /* Bits 1-6, and 8 */
732 const int add_mask = 0x17e;
733 int i, j;
734
735 stat_calc_dist(ts->io_u_map, ts_total_io_u(ts), io_u_dist);
736
737 gtk_list_store_append(model, &iter);
738
739 gtk_list_store_set(model, &iter, 0, "Total", -1);
740
741 for (i = 1, j = 0; i < len; i++) {
742 char fbuf[32];
743
744 if (!(add_mask & (1UL << (i - 1))))
745 sprintf(fbuf, "0.0%%");
746 else {
747 sprintf(fbuf, "%3.1f%%", io_u_dist[j]);
748 j++;
749 }
750
751 gtk_list_store_set(model, &iter, i, fbuf, -1);
752 }
753
754}
Jens Axboe2e331012012-03-05 22:07:54 +0100755
756static void gfio_show_io_depths(GtkWidget *vbox, struct thread_stat *ts)
757{
Jens Axboe2e331012012-03-05 22:07:54 +0100758 GtkWidget *frame, *box, *tree_view;
759 GtkTreeSelection *selection;
760 GtkListStore *model;
Jens Axboe2e331012012-03-05 22:07:54 +0100761 GType types[FIO_IO_U_MAP_NR + 1];
762 int i;
Jens Axboe19998db2012-03-06 09:17:59 +0100763#define NR_LABELS 10
764 const char *labels[NR_LABELS] = { "Depth", "0", "1", "2", "4", "8", "16", "32", "64", ">= 64" };
Jens Axboe2e331012012-03-05 22:07:54 +0100765
766 frame = gtk_frame_new("IO depths");
767 gtk_box_pack_start(GTK_BOX(vbox), frame, FALSE, FALSE, 5);
768
769 box = gtk_hbox_new(FALSE, 3);
770 gtk_container_add(GTK_CONTAINER(frame), box);
771
Jens Axboe19998db2012-03-06 09:17:59 +0100772 for (i = 0; i < NR_LABELS; i++)
Jens Axboe2e331012012-03-05 22:07:54 +0100773 types[i] = G_TYPE_STRING;
774
Jens Axboe19998db2012-03-06 09:17:59 +0100775 model = gtk_list_store_newv(NR_LABELS, types);
Jens Axboe2e331012012-03-05 22:07:54 +0100776
777 tree_view = gtk_tree_view_new_with_model(GTK_TREE_MODEL(model));
778 gtk_widget_set_can_focus(tree_view, FALSE);
779
Jens Axboe661f7412012-03-06 13:55:45 +0100780 g_object_set(G_OBJECT(tree_view), "headers-visible", TRUE,
781 "enable-grid-lines", GTK_TREE_VIEW_GRID_LINES_BOTH, NULL);
782
Jens Axboe2e331012012-03-05 22:07:54 +0100783 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(tree_view));
784 gtk_tree_selection_set_mode(GTK_TREE_SELECTION(selection), GTK_SELECTION_BROWSE);
785
Jens Axboe19998db2012-03-06 09:17:59 +0100786 for (i = 0; i < NR_LABELS; i++)
Jens Axboe2e331012012-03-05 22:07:54 +0100787 tree_view_column(tree_view, i, labels[i], ALIGN_RIGHT | UNSORTABLE);
788
Jens Axboe19998db2012-03-06 09:17:59 +0100789 gfio_add_total_depths_tree(model, ts, NR_LABELS);
790 gfio_add_sc_depths_tree(model, ts, NR_LABELS, 1);
791 gfio_add_sc_depths_tree(model, ts, NR_LABELS, 0);
Jens Axboe2e331012012-03-05 22:07:54 +0100792
793 gtk_box_pack_start(GTK_BOX(box), tree_view, TRUE, FALSE, 3);
794}
795
Jens Axboef9d40b42012-03-06 09:52:49 +0100796static gboolean results_window_delete(GtkWidget *w, gpointer data)
797{
798 struct gui *ui = (struct gui *) data;
799
800 gtk_widget_destroy(w);
801 ui->results_window = NULL;
802 ui->results_notebook = NULL;
803 return TRUE;
804}
805
806static GtkWidget *get_results_window(struct gui *ui)
807{
808 GtkWidget *win, *notebook;
809
810 if (ui->results_window)
811 return ui->results_notebook;
812
813 win = gtk_window_new(GTK_WINDOW_TOPLEVEL);
814 gtk_window_set_title(GTK_WINDOW(win), "Results");
815 g_signal_connect(win, "delete-event", G_CALLBACK(results_window_delete), ui);
816 g_signal_connect(win, "destroy", G_CALLBACK(results_window_delete), ui);
817
818 notebook = gtk_notebook_new();
819 gtk_container_add(GTK_CONTAINER(win), notebook);
820
821 ui->results_window = win;
822 ui->results_notebook = notebook;
823 return ui->results_notebook;
824}
825
Jens Axboe3650a3c2012-03-05 14:09:03 +0100826static void gfio_display_ts(struct fio_client *client, struct thread_stat *ts,
827 struct group_run_stats *rs)
828{
Jens Axboef9d40b42012-03-06 09:52:49 +0100829 GtkWidget *res_win, *box, *vbox, *entry;
Jens Axboee0681f32012-03-06 12:14:42 +0100830 struct gfio_client *gc = client->client_data;
Jens Axboe3650a3c2012-03-05 14:09:03 +0100831
832 gdk_threads_enter();
833
Jens Axboee0681f32012-03-06 12:14:42 +0100834 res_win = get_results_window(gc->ui);
Jens Axboe3650a3c2012-03-05 14:09:03 +0100835
836 vbox = gtk_vbox_new(FALSE, 3);
Jens Axboe3650a3c2012-03-05 14:09:03 +0100837
838 box = gtk_hbox_new(TRUE, 3);
839 gtk_box_pack_start(GTK_BOX(vbox), box, FALSE, FALSE, 5);
840
Jens Axboef9d40b42012-03-06 09:52:49 +0100841 gtk_notebook_append_page(GTK_NOTEBOOK(res_win), vbox, gtk_label_new(ts->name));
842
Jens Axboee0681f32012-03-06 12:14:42 +0100843 gc->results_widget = vbox;
844
Jens Axboe3650a3c2012-03-05 14:09:03 +0100845 entry = new_info_entry_in_frame(box, "Name");
846 gtk_entry_set_text(GTK_ENTRY(entry), ts->name);
847 if (strlen(ts->description)) {
848 entry = new_info_entry_in_frame(box, "Description");
849 gtk_entry_set_text(GTK_ENTRY(entry), ts->description);
850 }
851 entry = new_info_entry_in_frame(box, "Group ID");
852 entry_set_int_value(entry, ts->groupid);
853 entry = new_info_entry_in_frame(box, "Jobs");
854 entry_set_int_value(entry, ts->members);
855 entry = new_info_entry_in_frame(box, "Error");
856 entry_set_int_value(entry, ts->error);
857 entry = new_info_entry_in_frame(box, "PID");
858 entry_set_int_value(entry, ts->pid);
859
860 if (ts->io_bytes[DDIR_READ])
861 gfio_show_ddir_status(vbox, rs, ts, DDIR_READ);
862 if (ts->io_bytes[DDIR_WRITE])
863 gfio_show_ddir_status(vbox, rs, ts, DDIR_WRITE);
864
Jens Axboee5bd1342012-03-05 21:38:12 +0100865 gfio_show_latency_buckets(vbox, ts);
Jens Axboe2e331012012-03-05 22:07:54 +0100866 gfio_show_cpu_usage(vbox, ts);
867 gfio_show_io_depths(vbox, ts);
Jens Axboee5bd1342012-03-05 21:38:12 +0100868
Jens Axboee0681f32012-03-06 12:14:42 +0100869 gtk_widget_show_all(gc->ui->results_window);
Jens Axboe3650a3c2012-03-05 14:09:03 +0100870 gdk_threads_leave();
871}
872
Jens Axboe084d1c62012-03-03 20:28:07 +0100873static void gfio_text_op(struct fio_client *client, struct fio_net_cmd *cmd)
Stephen M. Camerona1820202012-02-24 08:17:31 +0100874{
Jens Axboe9b260bd2012-03-06 11:02:52 +0100875 struct cmd_text_pdu *p = (struct cmd_text_pdu *) cmd->payload;
Jens Axboee0681f32012-03-06 12:14:42 +0100876 struct gfio_client *gc = client->client_data;
Jens Axboe9b260bd2012-03-06 11:02:52 +0100877 GtkTreeIter iter;
878 struct tm *tm;
879 time_t sec;
880 char tmp[64], timebuf[80];
Stephen M. Cameron736f2df2012-02-24 08:17:32 +0100881
Jens Axboe9b260bd2012-03-06 11:02:52 +0100882 sec = p->log_sec;
883 tm = localtime(&sec);
884 strftime(tmp, sizeof(tmp), "%Y-%m-%d %H:%M:%S", tm);
885 sprintf(timebuf, "%s.%03ld", tmp, p->log_usec / 1000);
886
Stephen M. Cameron736f2df2012-02-24 08:17:32 +0100887 gdk_threads_enter();
Jens Axboe9b260bd2012-03-06 11:02:52 +0100888
Jens Axboee0681f32012-03-06 12:14:42 +0100889 gtk_list_store_append(gc->ui->log_model, &iter);
890 gtk_list_store_set(gc->ui->log_model, &iter, 0, timebuf, -1);
891 gtk_list_store_set(gc->ui->log_model, &iter, 1, client->hostname, -1);
892 gtk_list_store_set(gc->ui->log_model, &iter, 2, p->level, -1);
893 gtk_list_store_set(gc->ui->log_model, &iter, 3, p->buf, -1);
Jens Axboe9b260bd2012-03-06 11:02:52 +0100894
Stephen M. Cameron736f2df2012-02-24 08:17:32 +0100895 gdk_threads_leave();
Stephen M. Camerona1820202012-02-24 08:17:31 +0100896}
897
898static void gfio_disk_util_op(struct fio_client *client, struct fio_net_cmd *cmd)
899{
Jens Axboee0681f32012-03-06 12:14:42 +0100900 struct cmd_du_pdu *p = (struct cmd_du_pdu *) cmd->payload;
901 struct gfio_client *gc = client->client_data;
902 GtkWidget *box, *frame, *entry, *vbox;
903
Jens Axboe0050e5f2012-03-06 09:23:27 +0100904 gdk_threads_enter();
Jens Axboee0681f32012-03-06 12:14:42 +0100905
Jens Axboe45dcb2e2012-03-07 16:16:50 +0100906 if (!gc->results_widget)
Jens Axboee0681f32012-03-06 12:14:42 +0100907 goto out;
Jens Axboee0681f32012-03-06 12:14:42 +0100908
909 if (!gc->disk_util_frame) {
910 gc->disk_util_frame = gtk_frame_new("Disk utilization");
911 gtk_box_pack_start(GTK_BOX(gc->results_widget), gc->disk_util_frame, FALSE, FALSE, 5);
912 }
913
914 vbox = gtk_vbox_new(FALSE, 3);
915 gtk_container_add(GTK_CONTAINER(gc->disk_util_frame), vbox);
916
917 frame = gtk_frame_new((char *) p->dus.name);
918 gtk_box_pack_start(GTK_BOX(vbox), frame, FALSE, FALSE, 2);
919
920 box = gtk_vbox_new(FALSE, 3);
921 gtk_container_add(GTK_CONTAINER(frame), box);
922
923 frame = gtk_frame_new("Read");
924 gtk_box_pack_start(GTK_BOX(box), frame, FALSE, FALSE, 2);
925 vbox = gtk_hbox_new(TRUE, 3);
926 gtk_container_add(GTK_CONTAINER(frame), vbox);
927 entry = new_info_entry_in_frame(vbox, "IOs");
928 entry_set_int_value(entry, p->dus.ios[0]);
929 entry = new_info_entry_in_frame(vbox, "Merges");
930 entry_set_int_value(entry, p->dus.merges[0]);
931 entry = new_info_entry_in_frame(vbox, "Sectors");
932 entry_set_int_value(entry, p->dus.sectors[0]);
933 entry = new_info_entry_in_frame(vbox, "Ticks");
934 entry_set_int_value(entry, p->dus.ticks[0]);
935
936 frame = gtk_frame_new("Write");
937 gtk_box_pack_start(GTK_BOX(box), frame, FALSE, FALSE, 2);
938 vbox = gtk_hbox_new(TRUE, 3);
939 gtk_container_add(GTK_CONTAINER(frame), vbox);
940 entry = new_info_entry_in_frame(vbox, "IOs");
941 entry_set_int_value(entry, p->dus.ios[1]);
942 entry = new_info_entry_in_frame(vbox, "Merges");
943 entry_set_int_value(entry, p->dus.merges[1]);
944 entry = new_info_entry_in_frame(vbox, "Sectors");
945 entry_set_int_value(entry, p->dus.sectors[1]);
946 entry = new_info_entry_in_frame(vbox, "Ticks");
947 entry_set_int_value(entry, p->dus.ticks[1]);
948
949 frame = gtk_frame_new("Shared");
950 gtk_box_pack_start(GTK_BOX(box), frame, FALSE, FALSE, 2);
951 vbox = gtk_hbox_new(TRUE, 3);
952 gtk_container_add(GTK_CONTAINER(frame), vbox);
953 entry = new_info_entry_in_frame(vbox, "IO ticks");
954 entry_set_int_value(entry, p->dus.io_ticks);
955 entry = new_info_entry_in_frame(vbox, "Time in queue");
956 entry_set_int_value(entry, p->dus.time_in_queue);
957
958 gtk_widget_show_all(gc->results_widget);
959out:
Jens Axboe0050e5f2012-03-06 09:23:27 +0100960 gdk_threads_leave();
Stephen M. Camerona1820202012-02-24 08:17:31 +0100961}
962
Jens Axboe3650a3c2012-03-05 14:09:03 +0100963extern int sum_stat_clients;
964extern struct thread_stat client_ts;
965extern struct group_run_stats client_gs;
966
967static int sum_stat_nr;
968
Jens Axboe89e5fad2012-03-05 09:21:12 +0100969static void gfio_thread_status_op(struct fio_client *client,
970 struct fio_net_cmd *cmd)
Stephen M. Camerona1820202012-02-24 08:17:31 +0100971{
Jens Axboe3650a3c2012-03-05 14:09:03 +0100972 struct cmd_ts_pdu *p = (struct cmd_ts_pdu *) cmd->payload;
973
974 gfio_display_ts(client, &p->ts, &p->rs);
975
976 if (sum_stat_clients == 1)
977 return;
978
979 sum_thread_stats(&client_ts, &p->ts, sum_stat_nr);
980 sum_group_stats(&client_gs, &p->rs);
981
982 client_ts.members++;
983 client_ts.groupid = p->ts.groupid;
984
985 if (++sum_stat_nr == sum_stat_clients) {
986 strcpy(client_ts.name, "All clients");
987 gfio_display_ts(client, &client_ts, &client_gs);
988 }
Stephen M. Camerona1820202012-02-24 08:17:31 +0100989}
990
Jens Axboe89e5fad2012-03-05 09:21:12 +0100991static void gfio_group_stats_op(struct fio_client *client,
992 struct fio_net_cmd *cmd)
Stephen M. Camerona1820202012-02-24 08:17:31 +0100993{
Jens Axboe0050e5f2012-03-06 09:23:27 +0100994 gdk_threads_enter();
Stephen M. Camerona1820202012-02-24 08:17:31 +0100995 printf("gfio_group_stats_op called\n");
Jens Axboe89e5fad2012-03-05 09:21:12 +0100996 fio_client_ops.group_stats(client, cmd);
Jens Axboe0050e5f2012-03-06 09:23:27 +0100997 gdk_threads_leave();
Stephen M. Camerona1820202012-02-24 08:17:31 +0100998}
999
Stephen M. Cameron3ea48b82012-03-07 19:40:58 +01001000static gint on_config_drawing_area(GtkWidget *w, GdkEventConfigure *event)
1001{
1002 ui.drawing_area_xdim = w->allocation.width;
1003 ui.drawing_area_ydim = w->allocation.height;
1004 return TRUE;
1005}
1006
Jens Axboe2fd3bb02012-03-07 08:07:39 +01001007static int on_expose_drawing_area(GtkWidget *w, GdkEvent *event, gpointer p)
1008{
1009 struct gui *ui = (struct gui *) p;
1010 cairo_t *cr;
1011
Stephen M. Cameron3ea48b82012-03-07 19:40:58 +01001012 graph_set_size(ui->iops_graph, ui->drawing_area_xdim / 2.0,
1013 ui->drawing_area_ydim);
1014 graph_set_size(ui->bandwidth_graph, ui->drawing_area_xdim / 2.0,
1015 ui->drawing_area_ydim);
Jens Axboe2fd3bb02012-03-07 08:07:39 +01001016 cr = gdk_cairo_create(w->window);
1017
1018 cairo_set_source_rgb(cr, 0, 0, 0);
1019
1020 cairo_save(cr);
1021 cairo_translate(cr, 0, 0);
1022 line_graph_draw(ui->bandwidth_graph, cr);
1023 cairo_stroke(cr);
1024 cairo_restore(cr);
1025
1026 cairo_save(cr);
Stephen M. Cameron3ea48b82012-03-07 19:40:58 +01001027 cairo_translate(cr, ui->drawing_area_xdim / 2.0, 0);
Jens Axboe2fd3bb02012-03-07 08:07:39 +01001028 line_graph_draw(ui->iops_graph, cr);
1029 cairo_stroke(cr);
1030 cairo_restore(cr);
1031 cairo_destroy(cr);
1032
1033 return FALSE;
1034}
1035
Jens Axboe3e47bd22012-02-29 13:45:02 +01001036static void gfio_update_eta(struct jobs_eta *je)
1037{
1038 static int eta_good;
1039 char eta_str[128];
1040 char output[256];
1041 char tmp[32];
1042 double perc = 0.0;
1043 int i2p = 0;
1044
Jens Axboe0050e5f2012-03-06 09:23:27 +01001045 gdk_threads_enter();
1046
Jens Axboe3e47bd22012-02-29 13:45:02 +01001047 eta_str[0] = '\0';
1048 output[0] = '\0';
1049
1050 if (je->eta_sec != INT_MAX && je->elapsed_sec) {
1051 perc = (double) je->elapsed_sec / (double) (je->elapsed_sec + je->eta_sec);
1052 eta_to_str(eta_str, je->eta_sec);
1053 }
1054
1055 sprintf(tmp, "%u", je->nr_running);
Jens Axboeca850992012-03-05 20:04:43 +01001056 gtk_entry_set_text(GTK_ENTRY(ui.eta.jobs), tmp);
Jens Axboe3e47bd22012-02-29 13:45:02 +01001057 sprintf(tmp, "%u", je->files_open);
Jens Axboeca850992012-03-05 20:04:43 +01001058 gtk_entry_set_text(GTK_ENTRY(ui.eta.files), tmp);
Jens Axboe3e47bd22012-02-29 13:45:02 +01001059
1060#if 0
1061 if (je->m_rate[0] || je->m_rate[1] || je->t_rate[0] || je->t_rate[1]) {
1062 if (je->m_rate || je->t_rate) {
1063 char *tr, *mr;
1064
1065 mr = num2str(je->m_rate, 4, 0, i2p);
1066 tr = num2str(je->t_rate, 4, 0, i2p);
Jens Axboeca850992012-03-05 20:04:43 +01001067 gtk_entry_set_text(GTK_ENTRY(ui.eta);
Jens Axboe3e47bd22012-02-29 13:45:02 +01001068 p += sprintf(p, ", CR=%s/%s KB/s", tr, mr);
1069 free(tr);
1070 free(mr);
1071 } else if (je->m_iops || je->t_iops)
1072 p += sprintf(p, ", CR=%d/%d IOPS", je->t_iops, je->m_iops);
Jens Axboeebbd89c2012-03-02 11:21:13 +01001073
Jens Axboeca850992012-03-05 20:04:43 +01001074 gtk_entry_set_text(GTK_ENTRY(ui.eta.cr_bw), "---");
1075 gtk_entry_set_text(GTK_ENTRY(ui.eta.cr_iops), "---");
1076 gtk_entry_set_text(GTK_ENTRY(ui.eta.cw_bw), "---");
1077 gtk_entry_set_text(GTK_ENTRY(ui.eta.cw_iops), "---");
Jens Axboe3e47bd22012-02-29 13:45:02 +01001078#endif
1079
1080 if (je->eta_sec != INT_MAX && je->nr_running) {
1081 char *iops_str[2];
1082 char *rate_str[2];
1083
1084 if ((!je->eta_sec && !eta_good) || je->nr_ramp == je->nr_running)
1085 strcpy(output, "-.-% done");
1086 else {
1087 eta_good = 1;
1088 perc *= 100.0;
1089 sprintf(output, "%3.1f%% done", perc);
1090 }
1091
1092 rate_str[0] = num2str(je->rate[0], 5, 10, i2p);
1093 rate_str[1] = num2str(je->rate[1], 5, 10, i2p);
1094
1095 iops_str[0] = num2str(je->iops[0], 4, 1, 0);
1096 iops_str[1] = num2str(je->iops[1], 4, 1, 0);
1097
Jens Axboeca850992012-03-05 20:04:43 +01001098 gtk_entry_set_text(GTK_ENTRY(ui.eta.read_bw), rate_str[0]);
1099 gtk_entry_set_text(GTK_ENTRY(ui.eta.read_iops), iops_str[0]);
1100 gtk_entry_set_text(GTK_ENTRY(ui.eta.write_bw), rate_str[1]);
1101 gtk_entry_set_text(GTK_ENTRY(ui.eta.write_iops), iops_str[1]);
Jens Axboe3e47bd22012-02-29 13:45:02 +01001102
Jens Axboe2fd3bb02012-03-07 08:07:39 +01001103 graph_add_xy_data(ui.iops_graph, "Read IOPS", je->elapsed_sec, je->iops[0]);
1104 graph_add_xy_data(ui.iops_graph, "Write IOPS", je->elapsed_sec, je->iops[1]);
1105 graph_add_xy_data(ui.bandwidth_graph, "Read Bandwidth", je->elapsed_sec, je->rate[0]);
1106 graph_add_xy_data(ui.bandwidth_graph, "Write Bandwidth", je->elapsed_sec, je->rate[1]);
1107
Jens Axboe3e47bd22012-02-29 13:45:02 +01001108 free(rate_str[0]);
1109 free(rate_str[1]);
1110 free(iops_str[0]);
1111 free(iops_str[1]);
1112 }
1113
1114 if (eta_str[0]) {
1115 char *dst = output + strlen(output);
1116
1117 sprintf(dst, " - %s", eta_str);
1118 }
1119
1120 gfio_update_thread_status(output, perc);
Jens Axboe0050e5f2012-03-06 09:23:27 +01001121 gdk_threads_leave();
Jens Axboe3e47bd22012-02-29 13:45:02 +01001122}
1123
Stephen M. Camerona1820202012-02-24 08:17:31 +01001124static void gfio_probe_op(struct fio_client *client, struct fio_net_cmd *cmd)
1125{
Jens Axboe843ad232012-02-29 11:44:53 +01001126 struct cmd_probe_pdu *probe = (struct cmd_probe_pdu *) cmd->payload;
Jens Axboe88f6e7a2012-03-06 12:55:29 +01001127 struct gfio_client *gc = client->client_data;
1128 struct gui *ui = gc->ui;
Jens Axboe843ad232012-02-29 11:44:53 +01001129 const char *os, *arch;
1130 char buf[64];
1131
1132 os = fio_get_os_string(probe->os);
1133 if (!os)
1134 os = "unknown";
1135
1136 arch = fio_get_arch_string(probe->arch);
1137 if (!arch)
1138 os = "unknown";
1139
1140 if (!client->name)
1141 client->name = strdup((char *) probe->hostname);
1142
Jens Axboe0050e5f2012-03-06 09:23:27 +01001143 gdk_threads_enter();
1144
Jens Axboe88f6e7a2012-03-06 12:55:29 +01001145 gtk_label_set_text(GTK_LABEL(ui->probe.hostname), (char *) probe->hostname);
1146 gtk_label_set_text(GTK_LABEL(ui->probe.os), os);
1147 gtk_label_set_text(GTK_LABEL(ui->probe.arch), arch);
Jens Axboe843ad232012-02-29 11:44:53 +01001148 sprintf(buf, "%u.%u.%u", probe->fio_major, probe->fio_minor, probe->fio_patch);
Jens Axboe88f6e7a2012-03-06 12:55:29 +01001149 gtk_label_set_text(GTK_LABEL(ui->probe.fio_ver), buf);
1150
1151 gfio_set_connected(ui, 1);
Jens Axboe0050e5f2012-03-06 09:23:27 +01001152
1153 gdk_threads_leave();
Stephen M. Camerona1820202012-02-24 08:17:31 +01001154}
1155
Stephen M. Cameron04cc6b72012-02-24 08:17:31 +01001156static void gfio_update_thread_status(char *status_message, double perc)
Stephen M. Cameron5b7573a2012-02-24 08:17:31 +01001157{
1158 static char message[100];
1159 const char *m = message;
1160
1161 strncpy(message, status_message, sizeof(message) - 1);
Stephen M. Cameron04cc6b72012-02-24 08:17:31 +01001162 gtk_progress_bar_set_text(
1163 GTK_PROGRESS_BAR(ui.thread_status_pb), m);
1164 gtk_progress_bar_set_fraction(
1165 GTK_PROGRESS_BAR(ui.thread_status_pb), perc / 100.0);
Stephen M. Cameron5b7573a2012-02-24 08:17:31 +01001166 gtk_widget_queue_draw(ui.window);
Stephen M. Cameron5b7573a2012-02-24 08:17:31 +01001167}
1168
Jens Axboe3ec62ec2012-03-01 12:01:29 +01001169static void gfio_quit_op(struct fio_client *client)
1170{
Jens Axboee0681f32012-03-06 12:14:42 +01001171 struct gfio_client *gc = client->client_data;
Jens Axboe3ec62ec2012-03-01 12:01:29 +01001172
Jens Axboe0050e5f2012-03-06 09:23:27 +01001173 gdk_threads_enter();
Jens Axboee0681f32012-03-06 12:14:42 +01001174 gfio_set_connected(gc->ui, 0);
Jens Axboe0050e5f2012-03-06 09:23:27 +01001175 gdk_threads_leave();
Jens Axboe3ec62ec2012-03-01 12:01:29 +01001176}
1177
Jens Axboe807f9972012-03-02 10:25:24 +01001178static void gfio_add_job_op(struct fio_client *client, struct fio_net_cmd *cmd)
1179{
1180 struct cmd_add_job_pdu *p = (struct cmd_add_job_pdu *) cmd->payload;
Jens Axboee0681f32012-03-06 12:14:42 +01001181 struct gfio_client *gc = client->client_data;
1182 struct gui *ui = gc->ui;
Jens Axboe807f9972012-03-02 10:25:24 +01001183 char tmp[8];
1184 int i;
1185
1186 p->iodepth = le32_to_cpu(p->iodepth);
1187 p->rw = le32_to_cpu(p->rw);
1188
1189 for (i = 0; i < 2; i++) {
1190 p->min_bs[i] = le32_to_cpu(p->min_bs[i]);
1191 p->max_bs[i] = le32_to_cpu(p->max_bs[i]);
1192 }
1193
1194 p->numjobs = le32_to_cpu(p->numjobs);
1195 p->group_reporting = le32_to_cpu(p->group_reporting);
1196
Jens Axboe0050e5f2012-03-06 09:23:27 +01001197 gdk_threads_enter();
1198
Jens Axboeca850992012-03-05 20:04:43 +01001199 gtk_entry_set_text(GTK_ENTRY(ui->eta.name), (gchar *) p->jobname);
1200 gtk_entry_set_text(GTK_ENTRY(ui->eta.iotype), ddir_str(p->rw));
1201 gtk_entry_set_text(GTK_ENTRY(ui->eta.ioengine), (gchar *) p->ioengine);
Jens Axboe807f9972012-03-02 10:25:24 +01001202
1203 sprintf(tmp, "%u", p->iodepth);
Jens Axboeca850992012-03-05 20:04:43 +01001204 gtk_entry_set_text(GTK_ENTRY(ui->eta.iodepth), tmp);
Jens Axboe0050e5f2012-03-06 09:23:27 +01001205
1206 gdk_threads_leave();
Jens Axboe807f9972012-03-02 10:25:24 +01001207}
1208
Jens Axboeed727a42012-03-02 12:14:40 +01001209static void gfio_client_timed_out(struct fio_client *client)
1210{
Jens Axboee0681f32012-03-06 12:14:42 +01001211 struct gfio_client *gc = client->client_data;
Jens Axboeed727a42012-03-02 12:14:40 +01001212 GtkWidget *dialog, *label, *content;
1213 char buf[256];
1214
1215 gdk_threads_enter();
1216
Jens Axboee0681f32012-03-06 12:14:42 +01001217 gfio_set_connected(gc->ui, 0);
1218 clear_ui_info(gc->ui);
Jens Axboeed727a42012-03-02 12:14:40 +01001219
1220 sprintf(buf, "Client %s: timeout talking to server.\n", client->hostname);
1221
1222 dialog = gtk_dialog_new_with_buttons("Timed out!",
Jens Axboee0681f32012-03-06 12:14:42 +01001223 GTK_WINDOW(gc->ui->window),
Jens Axboeed727a42012-03-02 12:14:40 +01001224 GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT,
1225 GTK_STOCK_OK, GTK_RESPONSE_OK, NULL);
1226
1227 content = gtk_dialog_get_content_area(GTK_DIALOG(dialog));
1228 label = gtk_label_new((const gchar *) buf);
1229 gtk_container_add(GTK_CONTAINER(content), label);
1230 gtk_widget_show_all(dialog);
1231 gtk_dialog_set_default_response(GTK_DIALOG(dialog), GTK_RESPONSE_ACCEPT);
1232
1233 gtk_dialog_run(GTK_DIALOG(dialog));
1234 gtk_widget_destroy(dialog);
1235
1236 gdk_threads_leave();
1237}
1238
Stephen M. Camerona1820202012-02-24 08:17:31 +01001239struct client_ops gfio_client_ops = {
Jens Axboe0420ba62012-02-29 11:16:52 +01001240 .text_op = gfio_text_op,
1241 .disk_util = gfio_disk_util_op,
1242 .thread_status = gfio_thread_status_op,
1243 .group_stats = gfio_group_stats_op,
Jens Axboea5276612012-03-04 15:15:08 +01001244 .eta = gfio_update_eta,
Jens Axboe0420ba62012-02-29 11:16:52 +01001245 .probe = gfio_probe_op,
Jens Axboe3ec62ec2012-03-01 12:01:29 +01001246 .quit = gfio_quit_op,
Jens Axboe807f9972012-03-02 10:25:24 +01001247 .add_job = gfio_add_job_op,
Jens Axboeed727a42012-03-02 12:14:40 +01001248 .timed_out = gfio_client_timed_out,
Jens Axboe3ec62ec2012-03-01 12:01:29 +01001249 .stay_connected = 1,
Stephen M. Camerona1820202012-02-24 08:17:31 +01001250};
1251
Stephen M. Cameronff1f3282012-02-24 08:17:30 +01001252static void quit_clicked(__attribute__((unused)) GtkWidget *widget,
1253 __attribute__((unused)) gpointer data)
1254{
1255 gtk_main_quit();
1256}
1257
Stephen M. Cameron25927252012-02-24 08:17:31 +01001258static void *job_thread(void *arg)
Stephen M. Cameronf3074002012-02-24 08:17:30 +01001259{
Stephen M. Cameron25927252012-02-24 08:17:31 +01001260 fio_handle_clients(&gfio_client_ops);
Stephen M. Cameron25927252012-02-24 08:17:31 +01001261 return NULL;
1262}
1263
Jens Axboe0420ba62012-02-29 11:16:52 +01001264static int send_job_files(struct gui *ui)
Stephen M. Cameron60f6b332012-02-24 08:17:32 +01001265{
Jens Axboe441013b2012-03-01 08:01:52 +01001266 int i, ret = 0;
Stephen M. Cameron60f6b332012-02-24 08:17:32 +01001267
Jens Axboe0420ba62012-02-29 11:16:52 +01001268 for (i = 0; i < ui->nr_job_files; i++) {
1269 ret = fio_clients_send_ini(ui->job_files[i]);
Jens Axboe441013b2012-03-01 08:01:52 +01001270 if (ret)
1271 break;
1272
Jens Axboe0420ba62012-02-29 11:16:52 +01001273 free(ui->job_files[i]);
1274 ui->job_files[i] = NULL;
Jens Axboe441013b2012-03-01 08:01:52 +01001275 }
1276 while (i < ui->nr_job_files) {
1277 free(ui->job_files[i]);
1278 ui->job_files[i] = NULL;
1279 i++;
Jens Axboe0420ba62012-02-29 11:16:52 +01001280 }
1281
Jens Axboe441013b2012-03-01 08:01:52 +01001282 return ret;
Stephen M. Cameron60f6b332012-02-24 08:17:32 +01001283}
1284
Jens Axboe3ec62ec2012-03-01 12:01:29 +01001285static void start_job_thread(struct gui *ui)
Stephen M. Cameron25927252012-02-24 08:17:31 +01001286{
Jens Axboe0420ba62012-02-29 11:16:52 +01001287 if (send_job_files(ui)) {
Stephen M. Cameron60f6b332012-02-24 08:17:32 +01001288 printf("Yeah, I didn't really like those options too much.\n");
Stephen M. Cameron60f6b332012-02-24 08:17:32 +01001289 gtk_widget_set_sensitive(ui->button[START_JOB_BUTTON], 1);
1290 return;
1291 }
Stephen M. Cameron25927252012-02-24 08:17:31 +01001292}
1293
Jens Axboe63a130b2012-03-06 20:08:59 +01001294static void *server_thread(void *arg)
1295{
1296 is_backend = 1;
1297 gfio_server_running = 1;
1298 fio_start_server(NULL);
1299 gfio_server_running = 0;
1300 return NULL;
1301}
1302
1303static void gfio_start_server(struct gui *ui)
1304{
1305 if (!gfio_server_running) {
1306 gfio_server_running = 1;
1307 pthread_create(&ui->server_t, NULL, server_thread, NULL);
Jens Axboee34f6ad2012-03-06 20:47:15 +01001308 pthread_detach(ui->server_t);
Jens Axboe63a130b2012-03-06 20:08:59 +01001309 }
1310}
1311
Stephen M. Cameron25927252012-02-24 08:17:31 +01001312static void start_job_clicked(__attribute__((unused)) GtkWidget *widget,
1313 gpointer data)
1314{
1315 struct gui *ui = data;
1316
Stephen M. Cameron25927252012-02-24 08:17:31 +01001317 gtk_widget_set_sensitive(ui->button[START_JOB_BUTTON], 0);
Jens Axboe3ec62ec2012-03-01 12:01:29 +01001318 start_job_thread(ui);
Stephen M. Cameronf3074002012-02-24 08:17:30 +01001319}
1320
Jens Axboedf06f222012-03-02 13:32:04 +01001321static void file_open(GtkWidget *w, gpointer data);
1322
1323static void connect_clicked(GtkWidget *widget, gpointer data)
Jens Axboe3e47bd22012-02-29 13:45:02 +01001324{
Jens Axboe3ec62ec2012-03-01 12:01:29 +01001325 struct gui *ui = data;
1326
1327 if (!ui->connected) {
Jens Axboedf06f222012-03-02 13:32:04 +01001328 if (!ui->nr_job_files)
1329 file_open(widget, data);
Jens Axboe8663ea62012-03-02 14:04:30 +01001330 gtk_progress_bar_set_text(GTK_PROGRESS_BAR(ui->thread_status_pb), "No jobs running");
Jens Axboee34f6ad2012-03-06 20:47:15 +01001331 gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(ui->thread_status_pb), 0.0);
Jens Axboe69406b92012-03-06 14:00:42 +01001332 if (!fio_clients_connect()) {
1333 pthread_create(&ui->t, NULL, job_thread, NULL);
1334 gtk_widget_set_sensitive(ui->button[CONNECT_BUTTON], 0);
1335 }
Jens Axboedf06f222012-03-02 13:32:04 +01001336 } else {
1337 fio_clients_terminate();
Jens Axboe3ec62ec2012-03-01 12:01:29 +01001338 gfio_set_connected(ui, 0);
Jens Axboe88432652012-03-02 19:09:31 +01001339 clear_ui_info(ui);
Jens Axboedf06f222012-03-02 13:32:04 +01001340 }
Jens Axboe3e47bd22012-02-29 13:45:02 +01001341}
1342
Stephen M. Cameronf3074002012-02-24 08:17:30 +01001343static void add_button(struct gui *ui, int i, GtkWidget *buttonbox,
1344 struct button_spec *buttonspec)
1345{
1346 ui->button[i] = gtk_button_new_with_label(buttonspec->buttontext);
1347 g_signal_connect(ui->button[i], "clicked", G_CALLBACK (buttonspec->f), ui);
Jens Axboe3ec62ec2012-03-01 12:01:29 +01001348 gtk_box_pack_start(GTK_BOX (ui->buttonbox), ui->button[i], FALSE, FALSE, 3);
Stephen M. Cameronf3074002012-02-24 08:17:30 +01001349 gtk_widget_set_tooltip_text(ui->button[i], buttonspeclist[i].tooltiptext);
Jens Axboe3e47bd22012-02-29 13:45:02 +01001350 gtk_widget_set_sensitive(ui->button[i], !buttonspec->start_insensitive);
Stephen M. Cameronf3074002012-02-24 08:17:30 +01001351}
1352
1353static void add_buttons(struct gui *ui,
1354 struct button_spec *buttonlist,
1355 int nbuttons)
1356{
1357 int i;
1358
Stephen M. Cameronf3074002012-02-24 08:17:30 +01001359 for (i = 0; i < nbuttons; i++)
1360 add_button(ui, i, ui->buttonbox, &buttonlist[i]);
1361}
1362
Jens Axboe0420ba62012-02-29 11:16:52 +01001363static void on_info_bar_response(GtkWidget *widget, gint response,
1364 gpointer data)
1365{
1366 if (response == GTK_RESPONSE_OK) {
1367 gtk_widget_destroy(widget);
1368 ui.error_info_bar = NULL;
1369 }
1370}
1371
Jens Axboedf06f222012-03-02 13:32:04 +01001372void report_error(GError *error)
Jens Axboe0420ba62012-02-29 11:16:52 +01001373{
1374 if (ui.error_info_bar == NULL) {
1375 ui.error_info_bar = gtk_info_bar_new_with_buttons(GTK_STOCK_OK,
1376 GTK_RESPONSE_OK,
1377 NULL);
1378 g_signal_connect(ui.error_info_bar, "response", G_CALLBACK(on_info_bar_response), NULL);
1379 gtk_info_bar_set_message_type(GTK_INFO_BAR(ui.error_info_bar),
1380 GTK_MESSAGE_ERROR);
1381
1382 ui.error_label = gtk_label_new(error->message);
1383 GtkWidget *container = gtk_info_bar_get_content_area(GTK_INFO_BAR(ui.error_info_bar));
1384 gtk_container_add(GTK_CONTAINER(container), ui.error_label);
1385
1386 gtk_box_pack_start(GTK_BOX(ui.vbox), ui.error_info_bar, FALSE, FALSE, 0);
1387 gtk_widget_show_all(ui.vbox);
1388 } else {
1389 char buffer[256];
1390 snprintf(buffer, sizeof(buffer), "Failed to open file.");
1391 gtk_label_set(GTK_LABEL(ui.error_label), buffer);
1392 }
1393}
1394
Jens Axboe62bc9372012-03-07 11:45:07 +01001395struct connection_widgets
1396{
1397 GtkWidget *hentry;
1398 GtkWidget *combo;
1399 GtkWidget *button;
1400};
1401
1402static void hostname_cb(GtkEntry *entry, gpointer data)
1403{
1404 struct connection_widgets *cw = data;
1405 int uses_net = 0, is_localhost = 0;
1406 const gchar *text;
1407 gchar *ctext;
1408
1409 /*
1410 * Check whether to display the 'auto start backend' box
1411 * or not. Show it if we are a localhost and using network,
1412 * or using a socket.
1413 */
1414 ctext = gtk_combo_box_get_active_text(GTK_COMBO_BOX(cw->combo));
1415 if (!ctext || !strncmp(ctext, "IPv4", 4) || !strncmp(ctext, "IPv6", 4))
1416 uses_net = 1;
1417 g_free(ctext);
1418
1419 if (uses_net) {
1420 text = gtk_entry_get_text(GTK_ENTRY(cw->hentry));
1421 if (!strcmp(text, "127.0.0.1") || !strcmp(text, "localhost") ||
1422 !strcmp(text, "::1") || !strcmp(text, "ip6-localhost") ||
1423 !strcmp(text, "ip6-loopback"))
1424 is_localhost = 1;
1425 }
1426
1427 if (!uses_net || is_localhost) {
1428 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(cw->button), 1);
1429 gtk_widget_set_sensitive(cw->button, 1);
1430 } else {
1431 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(cw->button), 0);
1432 gtk_widget_set_sensitive(cw->button, 0);
1433 }
1434}
1435
Jens Axboeb9f3c7e2012-03-02 14:27:17 +01001436static int get_connection_details(char **host, int *port, int *type,
1437 int *server_start)
Jens Axboea7a42ce2012-03-02 13:12:04 +01001438{
Jens Axboe62bc9372012-03-07 11:45:07 +01001439 GtkWidget *dialog, *box, *vbox, *hbox, *frame, *pentry;
1440 struct connection_widgets cw;
Jens Axboea7a42ce2012-03-02 13:12:04 +01001441 char *typeentry;
1442
1443 dialog = gtk_dialog_new_with_buttons("Connection details",
1444 GTK_WINDOW(ui.window),
1445 GTK_DIALOG_DESTROY_WITH_PARENT,
1446 GTK_STOCK_OK, GTK_RESPONSE_ACCEPT,
1447 GTK_STOCK_CANCEL, GTK_RESPONSE_REJECT, NULL);
1448
1449 frame = gtk_frame_new("Hostname / socket name");
1450 vbox = gtk_dialog_get_content_area(GTK_DIALOG(dialog));
1451 gtk_box_pack_start(GTK_BOX(vbox), frame, FALSE, FALSE, 5);
1452
1453 box = gtk_vbox_new(FALSE, 6);
1454 gtk_container_add(GTK_CONTAINER(frame), box);
1455
1456 hbox = gtk_hbox_new(TRUE, 10);
1457 gtk_box_pack_start(GTK_BOX(box), hbox, FALSE, FALSE, 0);
Jens Axboe62bc9372012-03-07 11:45:07 +01001458 cw.hentry = gtk_entry_new();
1459 gtk_entry_set_text(GTK_ENTRY(cw.hentry), "localhost");
1460 gtk_box_pack_start(GTK_BOX(hbox), cw.hentry, TRUE, TRUE, 0);
Jens Axboea7a42ce2012-03-02 13:12:04 +01001461
1462 frame = gtk_frame_new("Port");
1463 gtk_box_pack_start(GTK_BOX(vbox), frame, FALSE, FALSE, 5);
1464 box = gtk_vbox_new(FALSE, 10);
1465 gtk_container_add(GTK_CONTAINER(frame), box);
1466
1467 hbox = gtk_hbox_new(TRUE, 4);
1468 gtk_box_pack_start(GTK_BOX(box), hbox, FALSE, FALSE, 0);
1469 pentry = create_spinbutton(hbox, 1, 65535, FIO_NET_PORT);
1470
1471 frame = gtk_frame_new("Type");
1472 gtk_box_pack_start(GTK_BOX(vbox), frame, FALSE, FALSE, 5);
1473 box = gtk_vbox_new(FALSE, 10);
1474 gtk_container_add(GTK_CONTAINER(frame), box);
1475
1476 hbox = gtk_hbox_new(TRUE, 4);
1477 gtk_box_pack_start(GTK_BOX(box), hbox, FALSE, FALSE, 0);
1478
Jens Axboe62bc9372012-03-07 11:45:07 +01001479 cw.combo = gtk_combo_box_new_text();
1480 gtk_combo_box_append_text(GTK_COMBO_BOX(cw.combo), "IPv4");
1481 gtk_combo_box_append_text(GTK_COMBO_BOX(cw.combo), "IPv6");
1482 gtk_combo_box_append_text(GTK_COMBO_BOX(cw.combo), "local socket");
1483 gtk_combo_box_set_active(GTK_COMBO_BOX(cw.combo), 0);
Jens Axboea7a42ce2012-03-02 13:12:04 +01001484
Jens Axboe62bc9372012-03-07 11:45:07 +01001485 gtk_container_add(GTK_CONTAINER(hbox), cw.combo);
Jens Axboea7a42ce2012-03-02 13:12:04 +01001486
Jens Axboeb9f3c7e2012-03-02 14:27:17 +01001487 frame = gtk_frame_new("Options");
1488 gtk_box_pack_start(GTK_BOX(vbox), frame, FALSE, FALSE, 5);
1489 box = gtk_vbox_new(FALSE, 10);
1490 gtk_container_add(GTK_CONTAINER(frame), box);
1491
1492 hbox = gtk_hbox_new(TRUE, 4);
1493 gtk_box_pack_start(GTK_BOX(box), hbox, FALSE, FALSE, 0);
1494
Jens Axboe62bc9372012-03-07 11:45:07 +01001495 cw.button = gtk_check_button_new_with_label("Auto-spawn fio backend");
1496 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(cw.button), 1);
1497 gtk_widget_set_tooltip_text(cw.button, "When running fio locally, it is necessary to have the backend running on the same system. If this is checked, gfio will start the backend automatically for you if it isn't already running.");
1498 gtk_box_pack_start(GTK_BOX(hbox), cw.button, FALSE, FALSE, 6);
1499
1500 /*
1501 * Connect edit signal, so we can show/not-show the auto start button
1502 */
1503 g_signal_connect(GTK_OBJECT(cw.hentry), "changed", G_CALLBACK(hostname_cb), &cw);
1504 g_signal_connect(GTK_OBJECT(cw.combo), "changed", G_CALLBACK(hostname_cb), &cw);
Jens Axboeb9f3c7e2012-03-02 14:27:17 +01001505
Jens Axboea7a42ce2012-03-02 13:12:04 +01001506 gtk_widget_show_all(dialog);
1507
1508 if (gtk_dialog_run(GTK_DIALOG(dialog)) != GTK_RESPONSE_ACCEPT) {
1509 gtk_widget_destroy(dialog);
1510 return 1;
1511 }
1512
Jens Axboe62bc9372012-03-07 11:45:07 +01001513 *host = strdup(gtk_entry_get_text(GTK_ENTRY(cw.hentry)));
Jens Axboea7a42ce2012-03-02 13:12:04 +01001514 *port = gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(pentry));
1515
Jens Axboe62bc9372012-03-07 11:45:07 +01001516 typeentry = gtk_combo_box_get_active_text(GTK_COMBO_BOX(cw.combo));
Jens Axboea7a42ce2012-03-02 13:12:04 +01001517 if (!typeentry || !strncmp(typeentry, "IPv4", 4))
1518 *type = Fio_client_ipv4;
1519 else if (!strncmp(typeentry, "IPv6", 4))
1520 *type = Fio_client_ipv6;
1521 else
1522 *type = Fio_client_socket;
1523 g_free(typeentry);
1524
Jens Axboe62bc9372012-03-07 11:45:07 +01001525 *server_start = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(cw.button));
Jens Axboeb9f3c7e2012-03-02 14:27:17 +01001526
Jens Axboea7a42ce2012-03-02 13:12:04 +01001527 gtk_widget_destroy(dialog);
1528 return 0;
1529}
1530
Jens Axboee0681f32012-03-06 12:14:42 +01001531static void gfio_client_added(struct gui *ui, struct fio_client *client)
1532{
1533 struct gfio_client *gc;
1534
1535 gc = malloc(sizeof(*gc));
1536 memset(gc, 0, sizeof(*gc));
1537 gc->ui = ui;
1538
1539 client->client_data = gc;
1540}
1541
Jens Axboe0420ba62012-02-29 11:16:52 +01001542static void file_open(GtkWidget *w, gpointer data)
1543{
1544 GtkWidget *dialog;
Jens Axboe63a130b2012-03-06 20:08:59 +01001545 struct gui *ui = data;
Jens Axboe0420ba62012-02-29 11:16:52 +01001546 GSList *filenames, *fn_glist;
1547 GtkFileFilter *filter;
Jens Axboea7a42ce2012-03-02 13:12:04 +01001548 char *host;
Jens Axboeb9f3c7e2012-03-02 14:27:17 +01001549 int port, type, server_start;
Jens Axboe0420ba62012-02-29 11:16:52 +01001550
1551 dialog = gtk_file_chooser_dialog_new("Open File",
Jens Axboe63a130b2012-03-06 20:08:59 +01001552 GTK_WINDOW(ui->window),
Jens Axboe0420ba62012-02-29 11:16:52 +01001553 GTK_FILE_CHOOSER_ACTION_OPEN,
1554 GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
1555 GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT,
1556 NULL);
1557 gtk_file_chooser_set_select_multiple(GTK_FILE_CHOOSER(dialog), TRUE);
1558
1559 filter = gtk_file_filter_new();
1560 gtk_file_filter_add_pattern(filter, "*.fio");
1561 gtk_file_filter_add_pattern(filter, "*.job");
Jens Axboe2d262992012-03-07 08:19:30 +01001562 gtk_file_filter_add_pattern(filter, "*.ini");
Jens Axboe0420ba62012-02-29 11:16:52 +01001563 gtk_file_filter_add_mime_type(filter, "text/fio");
1564 gtk_file_filter_set_name(filter, "Fio job file");
1565 gtk_file_chooser_set_filter(GTK_FILE_CHOOSER(dialog), filter);
1566
1567 if (gtk_dialog_run(GTK_DIALOG(dialog)) != GTK_RESPONSE_ACCEPT) {
1568 gtk_widget_destroy(dialog);
1569 return;
1570 }
1571
1572 fn_glist = gtk_file_chooser_get_filenames(GTK_FILE_CHOOSER(dialog));
Jens Axboea7a42ce2012-03-02 13:12:04 +01001573
1574 gtk_widget_destroy(dialog);
1575
Jens Axboeb9f3c7e2012-03-02 14:27:17 +01001576 if (get_connection_details(&host, &port, &type, &server_start))
Jens Axboea7a42ce2012-03-02 13:12:04 +01001577 goto err;
1578
Jens Axboe0420ba62012-02-29 11:16:52 +01001579 filenames = fn_glist;
1580 while (filenames != NULL) {
Jens Axboee0681f32012-03-06 12:14:42 +01001581 struct fio_client *client;
1582
Jens Axboe63a130b2012-03-06 20:08:59 +01001583 ui->job_files = realloc(ui->job_files, (ui->nr_job_files + 1) * sizeof(char *));
1584 ui->job_files[ui->nr_job_files] = strdup(filenames->data);
1585 ui->nr_job_files++;
Jens Axboe0420ba62012-02-29 11:16:52 +01001586
Jens Axboee0681f32012-03-06 12:14:42 +01001587 client = fio_client_add_explicit(&gfio_client_ops, host, type, port);
1588 if (!client) {
Jens Axboedf06f222012-03-02 13:32:04 +01001589 GError *error;
1590
1591 error = g_error_new(g_quark_from_string("fio"), 1,
1592 "Failed to add client %s", host);
Jens Axboe0420ba62012-02-29 11:16:52 +01001593 report_error(error);
1594 g_error_free(error);
Jens Axboe0420ba62012-02-29 11:16:52 +01001595 }
Jens Axboe63a130b2012-03-06 20:08:59 +01001596 gfio_client_added(ui, client);
Jens Axboe0420ba62012-02-29 11:16:52 +01001597
1598 g_free(filenames->data);
1599 filenames = g_slist_next(filenames);
1600 }
Jens Axboea7a42ce2012-03-02 13:12:04 +01001601 free(host);
Jens Axboe63a130b2012-03-06 20:08:59 +01001602
1603 if (server_start)
1604 gfio_start_server(ui);
Jens Axboea7a42ce2012-03-02 13:12:04 +01001605err:
Jens Axboe0420ba62012-02-29 11:16:52 +01001606 g_slist_free(fn_glist);
Jens Axboe0420ba62012-02-29 11:16:52 +01001607}
1608
1609static void file_save(GtkWidget *w, gpointer data)
1610{
Jens Axboe63a130b2012-03-06 20:08:59 +01001611 struct gui *ui = data;
Jens Axboe0420ba62012-02-29 11:16:52 +01001612 GtkWidget *dialog;
1613
1614 dialog = gtk_file_chooser_dialog_new("Save File",
Jens Axboe63a130b2012-03-06 20:08:59 +01001615 GTK_WINDOW(ui->window),
Jens Axboe0420ba62012-02-29 11:16:52 +01001616 GTK_FILE_CHOOSER_ACTION_SAVE,
1617 GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
1618 GTK_STOCK_SAVE, GTK_RESPONSE_ACCEPT,
1619 NULL);
1620
1621 gtk_file_chooser_set_do_overwrite_confirmation(GTK_FILE_CHOOSER(dialog), TRUE);
1622 gtk_file_chooser_set_current_name(GTK_FILE_CHOOSER(dialog), "Untitled document");
1623
1624 if (gtk_dialog_run(GTK_DIALOG(dialog)) == GTK_RESPONSE_ACCEPT) {
1625 char *filename;
1626
1627 filename = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(dialog));
1628 // save_job_file(filename);
1629 g_free(filename);
1630 }
1631 gtk_widget_destroy(dialog);
1632}
1633
Jens Axboe9b260bd2012-03-06 11:02:52 +01001634static void view_log_destroy(GtkWidget *w, gpointer data)
1635{
1636 struct gui *ui = (struct gui *) data;
1637
1638 gtk_widget_ref(ui->log_tree);
1639 gtk_container_remove(GTK_CONTAINER(w), ui->log_tree);
1640 gtk_widget_destroy(w);
Jens Axboe4cbe7212012-03-06 13:36:17 +01001641 ui->log_view = NULL;
Jens Axboe9b260bd2012-03-06 11:02:52 +01001642}
1643
1644static void view_log(GtkWidget *w, gpointer data)
1645{
Jens Axboe4cbe7212012-03-06 13:36:17 +01001646 GtkWidget *win, *scroll, *vbox, *box;
1647 struct gui *ui = (struct gui *) data;
Jens Axboe9b260bd2012-03-06 11:02:52 +01001648
Jens Axboe4cbe7212012-03-06 13:36:17 +01001649 if (ui->log_view)
1650 return;
1651
1652 ui->log_view = win = gtk_window_new(GTK_WINDOW_TOPLEVEL);
Jens Axboe9b260bd2012-03-06 11:02:52 +01001653 gtk_window_set_title(GTK_WINDOW(win), "Log");
Jens Axboe4cbe7212012-03-06 13:36:17 +01001654 gtk_window_set_default_size(GTK_WINDOW(win), 700, 500);
Jens Axboe9b260bd2012-03-06 11:02:52 +01001655
Jens Axboe4cbe7212012-03-06 13:36:17 +01001656 scroll = gtk_scrolled_window_new(NULL, NULL);
Jens Axboe9b260bd2012-03-06 11:02:52 +01001657
Jens Axboe4cbe7212012-03-06 13:36:17 +01001658 gtk_container_set_border_width(GTK_CONTAINER(scroll), 5);
1659
1660 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scroll), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
1661
1662 box = gtk_hbox_new(TRUE, 0);
1663 gtk_box_pack_start_defaults(GTK_BOX(box), ui->log_tree);
1664 g_signal_connect(box, "destroy", G_CALLBACK(view_log_destroy), ui);
1665 gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(scroll), box);
1666
1667 vbox = gtk_vbox_new(TRUE, 5);
1668 gtk_box_pack_start_defaults(GTK_BOX(vbox), scroll);
1669
1670 gtk_container_add(GTK_CONTAINER(win), vbox);
Jens Axboe9b260bd2012-03-06 11:02:52 +01001671 gtk_widget_show_all(win);
1672}
1673
Jens Axboe46974a72012-03-02 19:34:13 +01001674static void preferences(GtkWidget *w, gpointer data)
1675{
Jens Axboef3e84402012-03-07 13:14:32 +01001676 GtkWidget *dialog, *frame, *box, **buttons, *vbox, *font;
Jens Axboe46974a72012-03-02 19:34:13 +01001677 int i;
1678
1679 dialog = gtk_dialog_new_with_buttons("Preferences",
1680 GTK_WINDOW(ui.window),
1681 GTK_DIALOG_DESTROY_WITH_PARENT,
1682 GTK_STOCK_OK, GTK_RESPONSE_ACCEPT,
1683 GTK_STOCK_CANCEL, GTK_RESPONSE_REJECT,
1684 NULL);
1685
Jens Axboe0b8d11e2012-03-02 19:44:15 +01001686 frame = gtk_frame_new("Debug logging");
Jens Axboe46974a72012-03-02 19:34:13 +01001687 gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dialog)->vbox), frame, FALSE, FALSE, 5);
Jens Axboef3e84402012-03-07 13:14:32 +01001688
1689 vbox = gtk_vbox_new(FALSE, 6);
1690 gtk_container_add(GTK_CONTAINER(frame), vbox);
1691
Jens Axboe46974a72012-03-02 19:34:13 +01001692 box = gtk_hbox_new(FALSE, 6);
Jens Axboef3e84402012-03-07 13:14:32 +01001693 gtk_container_add(GTK_CONTAINER(vbox), box);
Jens Axboe46974a72012-03-02 19:34:13 +01001694
1695 buttons = malloc(sizeof(GtkWidget *) * FD_DEBUG_MAX);
1696
1697 for (i = 0; i < FD_DEBUG_MAX; i++) {
Jens Axboef3e84402012-03-07 13:14:32 +01001698 if (i == 7) {
1699 box = gtk_hbox_new(FALSE, 6);
1700 gtk_container_add(GTK_CONTAINER(vbox), box);
1701 }
1702
1703
Jens Axboe46974a72012-03-02 19:34:13 +01001704 buttons[i] = gtk_check_button_new_with_label(debug_levels[i].name);
Jens Axboe0b8d11e2012-03-02 19:44:15 +01001705 gtk_widget_set_tooltip_text(buttons[i], debug_levels[i].help);
Jens Axboe46974a72012-03-02 19:34:13 +01001706 gtk_box_pack_start(GTK_BOX(box), buttons[i], FALSE, FALSE, 6);
1707 }
1708
Jens Axboef3e84402012-03-07 13:14:32 +01001709 frame = gtk_frame_new("Graph font");
1710 gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dialog)->vbox), frame, FALSE, FALSE, 5);
1711 vbox = gtk_vbox_new(FALSE, 6);
1712 gtk_container_add(GTK_CONTAINER(frame), vbox);
1713
1714 font = gtk_font_button_new();
1715 gtk_box_pack_start(GTK_BOX(vbox), font, FALSE, FALSE, 5);
1716
Jens Axboe46974a72012-03-02 19:34:13 +01001717 gtk_widget_show_all(dialog);
1718
1719 if (gtk_dialog_run(GTK_DIALOG(dialog)) != GTK_RESPONSE_ACCEPT) {
1720 gtk_widget_destroy(dialog);
1721 return;
1722 }
1723
1724 for (i = 0; i < FD_DEBUG_MAX; i++) {
1725 int set;
1726
1727 set = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(buttons[i]));
1728 if (set)
1729 fio_debug |= (1UL << i);
1730 }
1731
Jens Axboef3e84402012-03-07 13:14:32 +01001732 gfio_graph_font = strdup(gtk_font_button_get_font_name(GTK_FONT_BUTTON(font)));
Jens Axboe46974a72012-03-02 19:34:13 +01001733 gtk_widget_destroy(dialog);
1734}
1735
Jens Axboe0420ba62012-02-29 11:16:52 +01001736static void about_dialog(GtkWidget *w, gpointer data)
1737{
Jens Axboe81e4ea62012-03-07 14:18:28 +01001738 const char *authors[] = {
1739 "Jens Axboe <axboe@kernel.dk>",
1740 "Stephen Carmeron <stephenmcameron@gmail.com>",
1741 NULL
1742 };
Jens Axboe84a72ed2012-03-07 14:24:57 +01001743 const char *license[] = {
1744 "Fio is free software; you can redistribute it and/or modify "
1745 "it under the terms of the GNU General Public License as published by "
1746 "the Free Software Foundation; either version 2 of the License, or "
1747 "(at your option) any later version.\n",
1748 "Fio is distributed in the hope that it will be useful, "
1749 "but WITHOUT ANY WARRANTY; without even the implied warranty of "
1750 "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the "
1751 "GNU General Public License for more details.\n",
1752 "You should have received a copy of the GNU General Public License "
1753 "along with Fio; if not, write to the Free Software Foundation, Inc., "
1754 "51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n"
1755 };
1756 char *license_trans;
1757
1758 license_trans = g_strconcat(license[0], "\n", license[1], "\n",
1759 license[2], "\n", NULL);
Jens Axboe81e4ea62012-03-07 14:18:28 +01001760
Jens Axboe0420ba62012-02-29 11:16:52 +01001761 gtk_show_about_dialog(NULL,
1762 "program-name", "gfio",
1763 "comments", "Gtk2 UI for fio",
Jens Axboe84a72ed2012-03-07 14:24:57 +01001764 "license", license_trans,
Jens Axboe81e4ea62012-03-07 14:18:28 +01001765 "website", "http://git.kernel.dk/?p=fio.git;a=summary",
1766 "authors", authors,
Jens Axboe0420ba62012-02-29 11:16:52 +01001767 "version", fio_version_string,
Jens Axboe81e4ea62012-03-07 14:18:28 +01001768 "copyright", "© 2012 Jens Axboe <axboe@kernel.dk>",
Jens Axboe0420ba62012-02-29 11:16:52 +01001769 "logo-icon-name", "fio",
1770 /* Must be last: */
Jens Axboe81e4ea62012-03-07 14:18:28 +01001771 "wrap-license", TRUE,
Jens Axboe0420ba62012-02-29 11:16:52 +01001772 NULL);
Jens Axboe84a72ed2012-03-07 14:24:57 +01001773
1774 g_free (license_trans);
Jens Axboe0420ba62012-02-29 11:16:52 +01001775}
1776
1777static GtkActionEntry menu_items[] = {
Jens Axboe46974a72012-03-02 19:34:13 +01001778 { "FileMenuAction", GTK_STOCK_FILE, "File", NULL, NULL, NULL},
Jens Axboe9b260bd2012-03-06 11:02:52 +01001779 { "ViewMenuAction", GTK_STOCK_FILE, "View", NULL, NULL, NULL},
Jens Axboe46974a72012-03-02 19:34:13 +01001780 { "HelpMenuAction", GTK_STOCK_HELP, "Help", NULL, NULL, NULL},
1781 { "OpenFile", GTK_STOCK_OPEN, NULL, "<Control>O", NULL, G_CALLBACK(file_open) },
1782 { "SaveFile", GTK_STOCK_SAVE, NULL, "<Control>S", NULL, G_CALLBACK(file_save) },
1783 { "Preferences", GTK_STOCK_PREFERENCES, NULL, "<Control>p", NULL, G_CALLBACK(preferences) },
Jens Axboe9b260bd2012-03-06 11:02:52 +01001784 { "ViewLog", NULL, "Log", "<Control>l", NULL, G_CALLBACK(view_log) },
Jens Axboe46974a72012-03-02 19:34:13 +01001785 { "Quit", GTK_STOCK_QUIT, NULL, "<Control>Q", NULL, G_CALLBACK(quit_clicked) },
1786 { "About", GTK_STOCK_ABOUT, NULL, NULL, NULL, G_CALLBACK(about_dialog) },
Jens Axboe0420ba62012-02-29 11:16:52 +01001787};
Jens Axboe3e47bd22012-02-29 13:45:02 +01001788static gint nmenu_items = sizeof(menu_items) / sizeof(menu_items[0]);
Jens Axboe0420ba62012-02-29 11:16:52 +01001789
1790static const gchar *ui_string = " \
1791 <ui> \
1792 <menubar name=\"MainMenu\"> \
1793 <menu name=\"FileMenu\" action=\"FileMenuAction\"> \
1794 <menuitem name=\"Open\" action=\"OpenFile\" /> \
1795 <menuitem name=\"Save\" action=\"SaveFile\" /> \
1796 <separator name=\"Separator\"/> \
Jens Axboe46974a72012-03-02 19:34:13 +01001797 <menuitem name=\"Preferences\" action=\"Preferences\" /> \
1798 <separator name=\"Separator2\"/> \
Jens Axboe0420ba62012-02-29 11:16:52 +01001799 <menuitem name=\"Quit\" action=\"Quit\" /> \
1800 </menu> \
Jens Axboe9b260bd2012-03-06 11:02:52 +01001801 <menu name=\"ViewMenu\" action=\"ViewMenuAction\"> \
1802 <menuitem name=\"Log\" action=\"ViewLog\" /> \
1803 </menu>\
Jens Axboe0420ba62012-02-29 11:16:52 +01001804 <menu name=\"Help\" action=\"HelpMenuAction\"> \
1805 <menuitem name=\"About\" action=\"About\" /> \
1806 </menu> \
1807 </menubar> \
1808 </ui> \
1809";
1810
Jens Axboe4cbe7212012-03-06 13:36:17 +01001811static GtkWidget *get_menubar_menu(GtkWidget *window, GtkUIManager *ui_manager,
1812 struct gui *ui)
Jens Axboe0420ba62012-02-29 11:16:52 +01001813{
1814 GtkActionGroup *action_group = gtk_action_group_new("Menu");
1815 GError *error = 0;
1816
1817 action_group = gtk_action_group_new("Menu");
Jens Axboe4cbe7212012-03-06 13:36:17 +01001818 gtk_action_group_add_actions(action_group, menu_items, nmenu_items, ui);
Jens Axboe0420ba62012-02-29 11:16:52 +01001819
1820 gtk_ui_manager_insert_action_group(ui_manager, action_group, 0);
1821 gtk_ui_manager_add_ui_from_string(GTK_UI_MANAGER(ui_manager), ui_string, -1, &error);
1822
1823 gtk_window_add_accel_group(GTK_WINDOW(window), gtk_ui_manager_get_accel_group(ui_manager));
1824 return gtk_ui_manager_get_widget(ui_manager, "/MainMenu");
1825}
1826
1827void gfio_ui_setup(GtkSettings *settings, GtkWidget *menubar,
1828 GtkWidget *vbox, GtkUIManager *ui_manager)
1829{
1830 gtk_box_pack_start(GTK_BOX(vbox), menubar, FALSE, FALSE, 0);
1831}
1832
Stephen M. Cameronff1f3282012-02-24 08:17:30 +01001833static void init_ui(int *argc, char **argv[], struct gui *ui)
1834{
Jens Axboe0420ba62012-02-29 11:16:52 +01001835 GtkSettings *settings;
1836 GtkUIManager *uimanager;
Jens Axboe843ad232012-02-29 11:44:53 +01001837 GtkWidget *menu, *probe, *probe_frame, *probe_box;
Stephen M. Cameronaaa71f62012-03-07 14:47:03 +01001838 GdkColor white;
Jens Axboe0420ba62012-02-29 11:16:52 +01001839
1840 memset(ui, 0, sizeof(*ui));
Stephen M. Cameron45032dd2012-02-24 08:17:31 +01001841
Stephen M. Cameron2839f0c2012-02-24 08:17:31 +01001842 /* Magical g*thread incantation, you just need this thread stuff.
Stephen M. Cameron04cc6b72012-02-24 08:17:31 +01001843 * Without it, the update that happens in gfio_update_thread_status
Stephen M. Cameron2839f0c2012-02-24 08:17:31 +01001844 * doesn't really happen in a timely fashion, you need expose events
1845 */
Jens Axboeed727a42012-03-02 12:14:40 +01001846 if (!g_thread_supported())
Stephen M. Cameron2839f0c2012-02-24 08:17:31 +01001847 g_thread_init(NULL);
1848 gdk_threads_init();
1849
Stephen M. Cameronff1f3282012-02-24 08:17:30 +01001850 gtk_init(argc, argv);
Jens Axboe0420ba62012-02-29 11:16:52 +01001851 settings = gtk_settings_get_default();
1852 gtk_settings_set_long_property(settings, "gtk_tooltip_timeout", 10, "gfio setting");
1853 g_type_init();
Stephen M. Cameronff1f3282012-02-24 08:17:30 +01001854
1855 ui->window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
1856 gtk_window_set_title(GTK_WINDOW(ui->window), "fio");
Jens Axboef3e84402012-03-07 13:14:32 +01001857 gtk_window_set_default_size(GTK_WINDOW(ui->window), 700, 700);
Stephen M. Cameronff1f3282012-02-24 08:17:30 +01001858
Jens Axboe0420ba62012-02-29 11:16:52 +01001859 g_signal_connect(ui->window, "delete-event", G_CALLBACK(quit_clicked), NULL);
1860 g_signal_connect(ui->window, "destroy", G_CALLBACK(quit_clicked), NULL);
Stephen M. Cameronff1f3282012-02-24 08:17:30 +01001861
Stephen M. Cameron5b7573a2012-02-24 08:17:31 +01001862 ui->vbox = gtk_vbox_new(FALSE, 0);
1863 gtk_container_add(GTK_CONTAINER (ui->window), ui->vbox);
Stephen M. Cameron04cc6b72012-02-24 08:17:31 +01001864
Jens Axboe0420ba62012-02-29 11:16:52 +01001865 uimanager = gtk_ui_manager_new();
Jens Axboe4cbe7212012-03-06 13:36:17 +01001866 menu = get_menubar_menu(ui->window, uimanager, ui);
Jens Axboe0420ba62012-02-29 11:16:52 +01001867 gfio_ui_setup(settings, menu, ui->vbox, uimanager);
1868
Stephen M. Cameron04cc6b72012-02-24 08:17:31 +01001869 /*
Stephen M. Cameronc36f98d2012-02-24 08:17:32 +01001870 * Set up alignments for widgets at the top of ui,
1871 * align top left, expand horizontally but not vertically
1872 */
1873 ui->topalign = gtk_alignment_new(0, 0, 1, 0);
Jens Axboe3ec62ec2012-03-01 12:01:29 +01001874 ui->topvbox = gtk_vbox_new(FALSE, 3);
Stephen M. Cameronc36f98d2012-02-24 08:17:32 +01001875 gtk_container_add(GTK_CONTAINER(ui->topalign), ui->topvbox);
Stephen M. Camerone1645342012-02-24 08:17:32 +01001876 gtk_box_pack_start(GTK_BOX(ui->vbox), ui->topalign, FALSE, FALSE, 0);
Stephen M. Cameronc36f98d2012-02-24 08:17:32 +01001877
Jens Axboe3e47bd22012-02-29 13:45:02 +01001878 probe = gtk_frame_new("Job");
Jens Axboe843ad232012-02-29 11:44:53 +01001879 gtk_box_pack_start(GTK_BOX(ui->topvbox), probe, TRUE, FALSE, 3);
1880 probe_frame = gtk_vbox_new(FALSE, 3);
1881 gtk_container_add(GTK_CONTAINER(probe), probe_frame);
1882
1883 probe_box = gtk_hbox_new(FALSE, 3);
1884 gtk_box_pack_start(GTK_BOX(probe_frame), probe_box, TRUE, FALSE, 3);
Jens Axboe843ad232012-02-29 11:44:53 +01001885 ui->probe.hostname = new_info_label_in_frame(probe_box, "Host");
1886 ui->probe.os = new_info_label_in_frame(probe_box, "OS");
1887 ui->probe.arch = new_info_label_in_frame(probe_box, "Architecture");
1888 ui->probe.fio_ver = new_info_label_in_frame(probe_box, "Fio version");
1889
Jens Axboe3e47bd22012-02-29 13:45:02 +01001890 probe_box = gtk_hbox_new(FALSE, 3);
1891 gtk_box_pack_start(GTK_BOX(probe_frame), probe_box, TRUE, FALSE, 3);
Jens Axboe807f9972012-03-02 10:25:24 +01001892
Jens Axboeca850992012-03-05 20:04:43 +01001893 ui->eta.name = new_info_entry_in_frame(probe_box, "Name");
1894 ui->eta.iotype = new_info_entry_in_frame(probe_box, "IO");
1895 ui->eta.ioengine = new_info_entry_in_frame(probe_box, "IO Engine");
1896 ui->eta.iodepth = new_info_entry_in_frame(probe_box, "IO Depth");
1897 ui->eta.jobs = new_info_entry_in_frame(probe_box, "Jobs");
1898 ui->eta.files = new_info_entry_in_frame(probe_box, "Open files");
Jens Axboe3e47bd22012-02-29 13:45:02 +01001899
1900 probe_box = gtk_hbox_new(FALSE, 3);
1901 gtk_box_pack_start(GTK_BOX(probe_frame), probe_box, TRUE, FALSE, 3);
Jens Axboeca850992012-03-05 20:04:43 +01001902 ui->eta.read_bw = new_info_entry_in_frame(probe_box, "Read BW");
1903 ui->eta.read_iops = new_info_entry_in_frame(probe_box, "IOPS");
1904 ui->eta.write_bw = new_info_entry_in_frame(probe_box, "Write BW");
1905 ui->eta.write_iops = new_info_entry_in_frame(probe_box, "IOPS");
Jens Axboe807f9972012-03-02 10:25:24 +01001906
1907 /*
1908 * Only add this if we have a commit rate
1909 */
1910#if 0
1911 probe_box = gtk_hbox_new(FALSE, 3);
1912 gtk_box_pack_start(GTK_BOX(probe_frame), probe_box, TRUE, FALSE, 3);
1913
Jens Axboe3e47bd22012-02-29 13:45:02 +01001914 ui->eta.cr_bw = new_info_label_in_frame(probe_box, "Commit BW");
1915 ui->eta.cr_iops = new_info_label_in_frame(probe_box, "Commit IOPS");
1916
Jens Axboe3e47bd22012-02-29 13:45:02 +01001917 ui->eta.cw_bw = new_info_label_in_frame(probe_box, "Commit BW");
1918 ui->eta.cw_iops = new_info_label_in_frame(probe_box, "Commit IOPS");
Jens Axboe807f9972012-03-02 10:25:24 +01001919#endif
Jens Axboe3e47bd22012-02-29 13:45:02 +01001920
Stephen M. Cameron45032dd2012-02-24 08:17:31 +01001921 /*
Jens Axboe2fd3bb02012-03-07 08:07:39 +01001922 * Set up a drawing area and IOPS and bandwidth graphs
Stephen M. Cameron736f2df2012-02-24 08:17:32 +01001923 */
Stephen M. Cameronaaa71f62012-03-07 14:47:03 +01001924 gdk_color_parse("white", &white);
Jens Axboe2fd3bb02012-03-07 08:07:39 +01001925 ui->drawing_area = gtk_drawing_area_new();
Stephen M. Cameron3ea48b82012-03-07 19:40:58 +01001926 ui->drawing_area_xdim = DRAWING_AREA_XDIM;
1927 ui->drawing_area_ydim = DRAWING_AREA_YDIM;
Jens Axboe2fd3bb02012-03-07 08:07:39 +01001928 gtk_widget_set_size_request(GTK_WIDGET(ui->drawing_area),
Stephen M. Cameron3ea48b82012-03-07 19:40:58 +01001929 ui->drawing_area_xdim, ui->drawing_area_ydim);
Stephen M. Cameronaaa71f62012-03-07 14:47:03 +01001930 gtk_widget_modify_bg(ui->drawing_area, GTK_STATE_NORMAL, &white);
Jens Axboe2fd3bb02012-03-07 08:07:39 +01001931 g_signal_connect(G_OBJECT(ui->drawing_area), "expose_event",
1932 G_CALLBACK (on_expose_drawing_area), ui);
Stephen M. Cameron3ea48b82012-03-07 19:40:58 +01001933 g_signal_connect(G_OBJECT(ui->drawing_area), "configure_event",
1934 G_CALLBACK (on_config_drawing_area), ui);
Stephen M. Cameron736f2df2012-02-24 08:17:32 +01001935 ui->scrolled_window = gtk_scrolled_window_new(NULL, NULL);
1936 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(ui->scrolled_window),
1937 GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
Jens Axboe2fd3bb02012-03-07 08:07:39 +01001938 gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(ui->scrolled_window),
1939 ui->drawing_area);
Stephen M. Camerone1645342012-02-24 08:17:32 +01001940 gtk_box_pack_start(GTK_BOX(ui->vbox), ui->scrolled_window,
1941 TRUE, TRUE, 0);
Stephen M. Cameron736f2df2012-02-24 08:17:32 +01001942
Jens Axboe2fd3bb02012-03-07 08:07:39 +01001943 setup_iops_graph(ui);
1944 setup_bandwidth_graph(ui);
1945
Stephen M. Cameronc36f98d2012-02-24 08:17:32 +01001946 /*
1947 * Set up alignments for widgets at the bottom of ui,
1948 * align bottom left, expand horizontally but not vertically
1949 */
1950 ui->bottomalign = gtk_alignment_new(0, 1, 1, 0);
1951 ui->buttonbox = gtk_hbox_new(FALSE, 0);
1952 gtk_container_add(GTK_CONTAINER(ui->bottomalign), ui->buttonbox);
Stephen M. Camerone1645342012-02-24 08:17:32 +01001953 gtk_box_pack_start(GTK_BOX(ui->vbox), ui->bottomalign,
1954 FALSE, FALSE, 0);
Stephen M. Cameronc36f98d2012-02-24 08:17:32 +01001955
Stephen M. Cameronf3074002012-02-24 08:17:30 +01001956 add_buttons(ui, buttonspeclist, ARRAYSIZE(buttonspeclist));
Jens Axboe3ec62ec2012-03-01 12:01:29 +01001957
1958 /*
1959 * Set up thread status progress bar
1960 */
1961 ui->thread_status_pb = gtk_progress_bar_new();
1962 gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(ui->thread_status_pb), 0.0);
Jens Axboe8663ea62012-03-02 14:04:30 +01001963 gtk_progress_bar_set_text(GTK_PROGRESS_BAR(ui->thread_status_pb), "No connections");
Jens Axboe3ec62ec2012-03-01 12:01:29 +01001964 gtk_container_add(GTK_CONTAINER(ui->buttonbox), ui->thread_status_pb);
1965
Jens Axboe9b260bd2012-03-06 11:02:52 +01001966 gfio_ui_setup_log(ui);
Jens Axboe3ec62ec2012-03-01 12:01:29 +01001967
Stephen M. Cameronff1f3282012-02-24 08:17:30 +01001968 gtk_widget_show_all(ui->window);
1969}
1970
Stephen M. Cameron8232e282012-02-24 08:17:31 +01001971int main(int argc, char *argv[], char *envp[])
Stephen M. Cameronff1f3282012-02-24 08:17:30 +01001972{
Stephen M. Cameron8232e282012-02-24 08:17:31 +01001973 if (initialize_fio(envp))
1974 return 1;
Jens Axboe0420ba62012-02-29 11:16:52 +01001975 if (fio_init_options())
1976 return 1;
Stephen M. Camerona1820202012-02-24 08:17:31 +01001977
Stephen M. Cameronff1f3282012-02-24 08:17:30 +01001978 init_ui(&argc, &argv, &ui);
Stephen M. Cameron5b7573a2012-02-24 08:17:31 +01001979
Stephen M. Cameron2839f0c2012-02-24 08:17:31 +01001980 gdk_threads_enter();
Stephen M. Cameronff1f3282012-02-24 08:17:30 +01001981 gtk_main();
Stephen M. Cameron2839f0c2012-02-24 08:17:31 +01001982 gdk_threads_leave();
Stephen M. Cameronff1f3282012-02-24 08:17:30 +01001983 return 0;
1984}