File size: 12,273 Bytes
fa0f006 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 |
// Copyright (C) 2014 Jean-Christophe Jaskula
// 2015 [email protected]
//
// Distributed under the terms of the BSD License.
// ---------------------------------------------------------------------------
//
// Execution timings:
// display when a cell was last executed, and how long it took to run
// A double click on the timing box makes it disappear
define([
'require',
'jquery',
'moment',
'base/js/namespace',
'base/js/events',
'notebook/js/codecell'
], function (
requirejs,
$,
moment,
Jupyter,
events,
codecell
) {
'use strict';
var mod_name = 'ExecuteTime';
var log_prefix = '[' + mod_name + ']';
var CodeCell = codecell.CodeCell;
// defaults, overridden by server's config
var options = {
clear_timings_on_clear_output: false,
clear_timings_on_kernel_restart: false,
default_kernel_to_utc: true,
display_absolute_format: 'HH:mm:ss YYYY-MM-DD',
display_absolute_timings: true,
display_in_utc: false,
display_right_aligned: false,
highlight: {
use: true,
color: '#00bb00',
},
relative_timing_update_period: 10,
template: {
executed: 'executed in ${duration}, finished ${end_time}',
queued: 'execution queued ${start_time}',
},
};
function patch_CodeCell_get_callbacks () {
console.log(log_prefix, 'patching CodeCell.prototype.get_callbacks');
var old_get_callbacks = CodeCell.prototype.get_callbacks;
CodeCell.prototype.get_callbacks = function () {
var callbacks = old_get_callbacks.apply(this, arguments);
var cell = this;
var prev_reply_callback = callbacks.shell.reply;
callbacks.shell.reply = function (msg) {
if (msg.msg_type === 'execute_reply') {
$.extend(true, cell.metadata, {
ExecuteTime: {
start_time: add_utc_offset(msg.metadata.started),
end_time: add_utc_offset(msg.header.date),
}
});
var timing_area = update_timing_area(cell);
if ($.ui !== undefined && options.highlight.use) {
timing_area.stop(true, true).show(0).effect('highlight', {color: options.highlight.color});
}
}
else {
console.log('msg_type', msg.msg_type);
}
return prev_reply_callback(msg);
};
return callbacks;
};
}
function patch_CodeCell_clear_output () {
console.log(log_prefix, 'Patching CodeCell.prototype.clear_output to clear timings also.');
var orig_clear_output = CodeCell.prototype.clear_output;
CodeCell.prototype.clear_output = function () {
var ret = orig_clear_output.apply(this, arguments);
clear_timing_data([this]);
return ret;
};
}
function toggle_timing_display (cells, vis) {
for (var i = 0; i < cells.length; i++) {
var cell = cells[i];
if (cell instanceof CodeCell) {
var ce = cell.element;
var timing_area = ce.find('.timing_area');
if (timing_area.length > 0) {
if (vis === undefined) {
vis = !timing_area.is(':visible');
}
timing_area.toggle(vis);
}
}
}
return vis;
}
function clear_timing_data (cells) {
cells.forEach(function (cell, idx, arr) {
delete cell.metadata.ExecuteTime;
cell.element.find('.timing_area').remove();
});
events.trigger('set_dirty.Notebook', {value: true});
}
function clear_timing_data_all () {
console.log(log_prefix, 'Clearing all timing data');
clear_timing_data(Jupyter.notebook.get_cells());
}
function create_menu () {
var timings_menu_item = $('<li/>')
.addClass('dropdown-submenu')
.append(
$('<a href="#">')
.text('Execution Timings')
.on('click', function (evt) { evt.preventDefault(); })
)
.appendTo($('#cell_menu'));
var timings_submenu = $('<ul/>')
.addClass('dropdown-menu')
.appendTo(timings_menu_item);
$('<li/>')
.attr('title', 'Toggle the timing box for the selected cell(s)')
.append(
$('<a href="#">')
.text('Toggle visibility (selected)')
.on('click', function (evt) {
evt.preventDefault();
toggle_timing_display(Jupyter.notebook.get_selected_cells());
})
)
.appendTo(timings_submenu);
$('<li/>')
.attr('title', 'Toggle the timing box for all cells')
.append(
$('<a href="#">')
.text('Toggle visibility (all)')
.on('click', function (evt) {
evt.preventDefault();
toggle_timing_display(Jupyter.notebook.get_cells());
})
)
.appendTo(timings_submenu);
$('<li/>')
.attr('title', 'Clear the selected cell(s) timing data')
.append(
$('<a href="#">')
.text('Clear (selected)')
.on('click', function (evt) {
evt.preventDefault();
clear_timing_data(Jupyter.notebook.get_selected_cells());
})
)
.appendTo(timings_submenu);
$('<li/>')
.attr('title', 'Clear the timing data from all cells')
.append(
$('<a href="#">')
.text('Clear (all)')
.on('click', function (evt) {
evt.preventDefault();
clear_timing_data(Jupyter.notebook.get_cells());
})
)
.appendTo(timings_submenu);
}
function excute_codecell_callback (evt, data) {
var cell = data.cell;
cell.metadata.ExecuteTime = {start_time: moment().toISOString()};
update_timing_area(cell);
}
function humanized_duration (duration_ms, item_count) {
if (duration_ms < 1000) { // < 1s, show ms directly
return Math.round(duration_ms) + 'ms';
}
var humanized = '';
var days = Math.floor(duration_ms / 86400000);
if (days) {
humanized += days + 'd ';
}
duration_ms %= 86400000;
var hours = Math.floor(duration_ms / 3600000);
if (days || hours) {
humanized += hours + 'h ';
}
duration_ms %= 3600000;
var mins = Math.floor(duration_ms / 60000);
if (days || hours || mins) {
humanized += mins + 'm';
}
duration_ms %= 60000;
var secs = duration_ms / 1000; // don't round!
if (!days) {
var decimals = (hours || mins > 1) ? 0 : (secs > 10 ? 1 : 2);
humanized += (humanized ? ' ' : '') + secs.toFixed(decimals) + 's';
}
return humanized;
}
// ISO8601 UTC offset is in format ±[hh]:[mm], ±[hh][mm], or ±[hh]
var rgx_has_timezone = new RegExp('Z|[\\-+\u2212]\\d\\d(?::?\\d\\d)?$');
function add_utc_offset (timestamp) {
if (options.default_kernel_to_utc && timestamp !== undefined && !rgx_has_timezone.test(timestamp)) {
return timestamp + 'Z';
}
return timestamp;
}
function format_moment (when) {
if (options.display_in_utc) {
when.utc();
}
if (options.display_absolute_timings) {
return when.format(options.display_absolute_format);
}
return when.fromNow();
}
function update_timing_area (cell) {
if (! (cell instanceof CodeCell) ||
!cell.metadata.ExecuteTime ||
!cell.metadata.ExecuteTime.start_time) {
return $();
}
var timing_area = cell.element.find('.timing_area');
if (timing_area.length < 1) {
timing_area = $('<div/>')
.addClass('timing_area' + (options.display_right_aligned ? ' text-right' : ''))
.on('dblclick', function (evt) { toggle_timing_display([cell]); })
.appendTo(cell.element.find('.input_area'));
}
var start_time = moment(cell.metadata.ExecuteTime.start_time),
end_time = cell.metadata.ExecuteTime.end_time;
var msg = options.template[end_time ? 'executed' : 'queued'];
msg = msg.replace('${start_time}', format_moment(start_time));
if (end_time) {
end_time = moment(end_time);
msg = msg.replace('${end_time}', format_moment(end_time));
var exec_time = -start_time.diff(end_time);
msg = msg.replace('${duration}', humanized_duration(exec_time));
}
timing_area.text(msg);
return timing_area;
}
function _update_all_timing_areas () {
Jupyter.notebook.get_cells().forEach(update_timing_area);
}
function update_all_timing_areas () {
console.debug(log_prefix, 'updating all timing areas');
_update_all_timing_areas();
}
function add_css(url) {
$('<link/>')
.attr({
rel: 'stylesheet',
href: requirejs.toUrl(url),
type: 'text/css'
})
.appendTo('head');
}
function load_jupyter_extension () {
// try to load jquery-ui
if ($.ui === undefined && options.highlight.use) {
requirejs(['jquery-ui'], function ($) {}, function (err) {
// try to load using the older, non-standard name (without hyphen)
requirejs(['jqueryui'], function ($) {}, function (err) {
console.log(log_prefix, 'couldn\'t find jquery-ui, so no animations');
});
});
}
add_css('./ExecuteTime.css');
Jupyter.notebook.config.loaded.then(function on_config_loaded () {
$.extend(true, options, Jupyter.notebook.config.data[mod_name]);
}, function on_config_load_error (reason) {
console.warn(log_prefix, 'Using defaults after error loading config:', reason);
}).then(function do_stuff_with_config () {
patch_CodeCell_get_callbacks();
events.on('execute.CodeCell', excute_codecell_callback);
create_menu();
// add any existing timing info
events.on("notebook_loaded.Notebook", update_all_timing_areas);
if (Jupyter.notebook !== undefined && Jupyter.notebook._fully_loaded) {
// notebook already loaded, so we missed the event, so update all
update_all_timing_areas();
}
// setup optional clear-data calls
if (options.clear_timings_on_clear_output) {
patch_CodeCell_clear_output();
}
if (options.clear_timings_on_kernel_restart) {
console.log(log_prefix, 'Binding kernel_restarting.Kernel event to clear timings.');
events.on('kernel_restarting.Kernel', clear_timing_data_all);
}
// if displaying relative times, update them at intervals
if (!options.display_absolute_timings) {
var period_ms = 1000 * Math.max(1, options.relative_timing_update_period);
setInterval(_update_all_timing_areas, period_ms);
}
}).catch(function on_error (reason) {
console.error(log_prefix, 'Error:', reason);
});
}
return {
load_jupyter_extension : load_jupyter_extension,
load_ipython_extension : load_jupyter_extension
};
});
|