2011-09-28 09:16:26 -04:00
|
|
|
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
|
2010-05-09 13:42:35 -04:00
|
|
|
|
2010-05-12 17:24:52 -04:00
|
|
|
const Gio = imports.gi.Gio;
|
2013-11-28 19:45:39 -05:00
|
|
|
const GLib = imports.gi.GLib;
|
2010-05-09 13:42:35 -04:00
|
|
|
const Mainloop = imports.mainloop;
|
|
|
|
const Meta = imports.gi.Meta;
|
|
|
|
const Shell = imports.gi.Shell;
|
|
|
|
|
2011-06-13 09:54:05 -04:00
|
|
|
const Main = imports.ui.main;
|
2014-05-19 21:00:01 -04:00
|
|
|
const Params = imports.misc.params;
|
2011-06-13 09:54:05 -04:00
|
|
|
|
2018-09-05 20:55:20 -04:00
|
|
|
const { loadInterfaceXML } = imports.misc.fileUtils;
|
|
|
|
|
2010-05-09 13:42:35 -04:00
|
|
|
// This module provides functionality for driving the shell user interface
|
|
|
|
// in an automated fashion. The primary current use case for this is
|
|
|
|
// automated performance testing (see runPerfScript()), but it could
|
|
|
|
// be applied to other forms of automation, such as testing for
|
|
|
|
// correctness as well.
|
|
|
|
//
|
|
|
|
// When scripting an automated test we want to make a series of calls
|
|
|
|
// in a linear fashion, but we also want to be able to let the main
|
|
|
|
// loop run so actions can finish. For this reason we write the script
|
|
|
|
// as a generator function that yields when it want to let the main
|
|
|
|
// loop run.
|
|
|
|
//
|
|
|
|
// yield Scripting.sleep(1000);
|
|
|
|
// main.overview.show();
|
|
|
|
// yield Scripting.waitLeisure();
|
|
|
|
//
|
|
|
|
// While it isn't important to the person writing the script, the actual
|
|
|
|
// yielded result is a function that the caller uses to provide the
|
|
|
|
// callback for resuming the script.
|
|
|
|
|
|
|
|
/**
|
|
|
|
* sleep:
|
|
|
|
* @milliseconds: number of milliseconds to wait
|
|
|
|
*
|
|
|
|
* Used within an automation script to pause the the execution of the
|
|
|
|
* current script for the specified amount of time. Use as
|
|
|
|
* 'yield Scripting.sleep(500);'
|
|
|
|
*/
|
|
|
|
function sleep(milliseconds) {
|
|
|
|
let cb;
|
|
|
|
|
2017-10-30 20:38:18 -04:00
|
|
|
let id = Mainloop.timeout_add(milliseconds, () => {
|
|
|
|
if (cb)
|
|
|
|
cb();
|
|
|
|
return GLib.SOURCE_REMOVE;
|
|
|
|
});
|
2014-04-10 13:26:52 -04:00
|
|
|
GLib.Source.set_name_by_id(id, '[gnome-shell] sleep');
|
2010-05-09 13:42:35 -04:00
|
|
|
|
2017-10-30 20:38:18 -04:00
|
|
|
return callback => { cb = callback; };
|
2010-05-09 13:42:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* waitLeisure:
|
|
|
|
*
|
|
|
|
* Used within an automation script to pause the the execution of the
|
|
|
|
* current script until the shell is completely idle. Use as
|
|
|
|
* 'yield Scripting.waitLeisure();'
|
|
|
|
*/
|
|
|
|
function waitLeisure() {
|
|
|
|
let cb;
|
|
|
|
|
2017-10-30 20:38:18 -04:00
|
|
|
global.run_at_leisure(() => {
|
|
|
|
if (cb)
|
|
|
|
cb();
|
|
|
|
});
|
2010-05-09 13:42:35 -04:00
|
|
|
|
2017-10-30 20:38:18 -04:00
|
|
|
return callback => { cb = callback; };
|
2010-05-09 13:42:35 -04:00
|
|
|
}
|
|
|
|
|
2018-09-05 20:55:20 -04:00
|
|
|
const PerfHelperIface = loadInterfaceXML('org.gnome.Shell.PerfHelper');
|
2011-08-16 08:28:53 -04:00
|
|
|
var PerfHelperProxy = Gio.DBusProxy.makeProxyWrapper(PerfHelperIface);
|
|
|
|
function PerfHelper() {
|
|
|
|
return new PerfHelperProxy(Gio.DBus.session, 'org.gnome.Shell.PerfHelper', '/org/gnome/Shell/PerfHelper');
|
|
|
|
}
|
2011-03-08 18:48:07 -05:00
|
|
|
|
|
|
|
let _perfHelper = null;
|
|
|
|
function _getPerfHelper() {
|
|
|
|
if (_perfHelper == null)
|
|
|
|
_perfHelper = new PerfHelper();
|
|
|
|
|
|
|
|
return _perfHelper;
|
|
|
|
}
|
|
|
|
|
2014-05-19 22:11:48 -04:00
|
|
|
function _callRemote(obj, method, ...args) {
|
|
|
|
let cb;
|
|
|
|
let errcb;
|
|
|
|
|
2017-10-30 20:38:18 -04:00
|
|
|
args.push((result, excp) => {
|
|
|
|
if (excp) {
|
|
|
|
if (errcb)
|
|
|
|
errcb(excp);
|
|
|
|
} else {
|
|
|
|
if (cb)
|
|
|
|
cb();
|
|
|
|
}
|
|
|
|
});
|
2014-05-19 22:11:48 -04:00
|
|
|
|
|
|
|
method.apply(obj, args);
|
|
|
|
|
2017-10-30 20:38:18 -04:00
|
|
|
return (callback, error_callback) => {
|
2014-05-19 22:11:48 -04:00
|
|
|
cb = callback;
|
|
|
|
errcb = error_callback;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2011-03-08 18:48:07 -05:00
|
|
|
/**
|
|
|
|
* createTestWindow:
|
2014-05-19 21:00:01 -04:00
|
|
|
* @params: options for window creation.
|
|
|
|
* width - width of window, in pixels (default 640)
|
|
|
|
* height - height of window, in pixels (default 480)
|
|
|
|
* alpha - whether the window should have an alpha channel (default false)
|
|
|
|
* maximized - whether the window should be created maximized (default false)
|
2014-05-19 21:11:01 -04:00
|
|
|
* redraws - whether the window should continually redraw itself (default false)
|
2011-03-08 18:48:07 -05:00
|
|
|
* @maximized: whethe the window should be created maximized
|
|
|
|
*
|
|
|
|
* Creates a window using gnome-shell-perf-helper for testing purposes.
|
|
|
|
* While this function can be used with yield in an automation
|
|
|
|
* script to pause until the D-Bus call to the helper process returns,
|
|
|
|
* because of the normal X asynchronous mapping process, to actually wait
|
|
|
|
* until the window has been mapped and exposed, use waitTestWindows().
|
|
|
|
*/
|
2018-04-25 17:47:06 -04:00
|
|
|
function createTestWindow(params) {
|
2014-05-19 21:00:01 -04:00
|
|
|
params = Params.parse(params, { width: 640,
|
|
|
|
height: 480,
|
|
|
|
alpha: false,
|
2014-05-19 21:11:01 -04:00
|
|
|
maximized: false,
|
|
|
|
redraws: false });
|
2014-05-19 21:00:01 -04:00
|
|
|
|
2011-03-08 18:48:07 -05:00
|
|
|
let perfHelper = _getPerfHelper();
|
2014-05-19 22:11:48 -04:00
|
|
|
return _callRemote(perfHelper, perfHelper.CreateWindowRemote,
|
|
|
|
params.width, params.height,
|
2014-05-19 21:11:01 -04:00
|
|
|
params.alpha, params.maximized, params.redraws);
|
2011-03-08 18:48:07 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* waitTestWindows:
|
|
|
|
*
|
|
|
|
* Used within an automation script to pause until all windows previously
|
|
|
|
* created with createTestWindow have been mapped and exposed.
|
|
|
|
*/
|
|
|
|
function waitTestWindows() {
|
|
|
|
let perfHelper = _getPerfHelper();
|
2014-05-19 22:11:48 -04:00
|
|
|
return _callRemote(perfHelper, perfHelper.WaitWindowsRemote);
|
2011-03-08 18:48:07 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* destroyTestWindows:
|
|
|
|
*
|
|
|
|
* Destroys all windows previously created with createTestWindow().
|
|
|
|
* While this function can be used with yield in an automation
|
|
|
|
* script to pause until the D-Bus call to the helper process returns,
|
|
|
|
* this doesn't guarantee that Mutter has actually finished the destroy
|
|
|
|
* process because of normal X asynchronicity.
|
|
|
|
*/
|
|
|
|
function destroyTestWindows() {
|
|
|
|
let perfHelper = _getPerfHelper();
|
2014-05-19 22:11:48 -04:00
|
|
|
return _callRemote(perfHelper, perfHelper.DestroyWindowsRemote);
|
2011-03-08 18:48:07 -05:00
|
|
|
}
|
|
|
|
|
2010-05-09 13:42:35 -04:00
|
|
|
/**
|
|
|
|
* defineScriptEvent
|
|
|
|
* @name: The event will be called script.<name>
|
|
|
|
* @description: Short human-readable description of the event
|
|
|
|
*
|
|
|
|
* Convenience function to define a zero-argument performance event
|
|
|
|
* within the 'script' namespace that is reserved for events defined locally
|
|
|
|
* within a performance automation script
|
|
|
|
*/
|
|
|
|
function defineScriptEvent(name, description) {
|
|
|
|
Shell.PerfLog.get_default().define_event("script." + name,
|
|
|
|
description,
|
|
|
|
"");
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* scriptEvent
|
|
|
|
* @name: Name registered with defineScriptEvent()
|
|
|
|
*
|
|
|
|
* Convenience function to record a script-local performance event
|
|
|
|
* previously defined with defineScriptEvent
|
|
|
|
*/
|
|
|
|
function scriptEvent(name) {
|
|
|
|
Shell.PerfLog.get_default().event("script." + name);
|
|
|
|
}
|
|
|
|
|
2010-05-11 15:53:55 -04:00
|
|
|
/**
|
|
|
|
* collectStatistics
|
|
|
|
*
|
|
|
|
* Convenience function to trigger statistics collection
|
|
|
|
*/
|
|
|
|
function collectStatistics() {
|
|
|
|
Shell.PerfLog.get_default().collect_statistics();
|
|
|
|
}
|
|
|
|
|
2010-05-09 13:42:35 -04:00
|
|
|
function _step(g, finish, onError) {
|
|
|
|
try {
|
|
|
|
let waitFunction = g.next();
|
2017-10-30 20:38:18 -04:00
|
|
|
waitFunction(() => {
|
2010-05-09 13:42:35 -04:00
|
|
|
_step(g, finish, onError);
|
2014-05-19 22:11:48 -04:00
|
|
|
},
|
2017-10-30 20:38:18 -04:00
|
|
|
err => {
|
2014-05-19 22:11:48 -04:00
|
|
|
if (onError)
|
|
|
|
onError(err);
|
2010-05-09 13:42:35 -04:00
|
|
|
});
|
|
|
|
} catch (err) {
|
2018-07-14 21:17:42 -04:00
|
|
|
if (err instanceof StopIteration) {
|
|
|
|
if (finish)
|
|
|
|
finish();
|
|
|
|
} else {
|
|
|
|
if (onError)
|
|
|
|
onError(err);
|
|
|
|
}
|
2010-05-09 13:42:35 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function _collect(scriptModule, outputFile) {
|
|
|
|
let eventHandlers = {};
|
|
|
|
|
|
|
|
for (let f in scriptModule) {
|
|
|
|
let m = /([A-Za-z]+)_([A-Za-z]+)/.exec(f);
|
|
|
|
if (m)
|
|
|
|
eventHandlers[m[1] + "." + m[2]] = scriptModule[f];
|
|
|
|
}
|
|
|
|
|
|
|
|
Shell.PerfLog.get_default().replay(
|
2017-10-30 20:38:18 -04:00
|
|
|
(time, eventName, signature, arg) => {
|
2010-05-09 13:42:35 -04:00
|
|
|
if (eventName in eventHandlers)
|
|
|
|
eventHandlers[eventName](time, arg);
|
|
|
|
});
|
|
|
|
|
|
|
|
if ('finish' in scriptModule)
|
|
|
|
scriptModule.finish();
|
|
|
|
|
|
|
|
if (outputFile) {
|
2010-05-12 17:24:52 -04:00
|
|
|
let f = Gio.file_new_for_path(outputFile);
|
|
|
|
let raw = f.replace(null, false,
|
|
|
|
Gio.FileCreateFlags.NONE,
|
|
|
|
null);
|
|
|
|
let out = Gio.BufferedOutputStream.new_sized (raw, 4096);
|
|
|
|
Shell.write_string_to_stream (out, "{\n");
|
|
|
|
|
|
|
|
Shell.write_string_to_stream(out, '"events":\n');
|
|
|
|
Shell.PerfLog.get_default().dump_events(out);
|
|
|
|
|
2011-06-13 09:54:05 -04:00
|
|
|
let monitors = Main.layoutManager.monitors;
|
|
|
|
let primary = Main.layoutManager.primaryIndex;
|
2010-05-18 19:13:56 -04:00
|
|
|
Shell.write_string_to_stream(out, ',\n"monitors":\n[');
|
|
|
|
for (let i = 0; i < monitors.length; i++) {
|
|
|
|
let monitor = monitors[i];
|
|
|
|
if (i != 0)
|
|
|
|
Shell.write_string_to_stream(out, ', ');
|
2011-06-13 09:54:05 -04:00
|
|
|
Shell.write_string_to_stream(out, '"%s%dx%d+%d+%d"'.format(i == primary ? "*" : "",
|
2010-05-18 19:13:56 -04:00
|
|
|
monitor.width, monitor.height,
|
|
|
|
monitor.x, monitor.y));
|
|
|
|
}
|
|
|
|
Shell.write_string_to_stream(out, ' ]');
|
|
|
|
|
2010-05-12 17:24:52 -04:00
|
|
|
Shell.write_string_to_stream(out, ',\n"metrics":\n[ ');
|
|
|
|
let first = true;
|
|
|
|
for (let name in scriptModule.METRICS) {
|
2011-03-08 18:51:15 -05:00
|
|
|
let metric = scriptModule.METRICS[name];
|
|
|
|
// Extra checks here because JSON.stringify generates
|
|
|
|
// invalid JSON for undefined values
|
|
|
|
if (metric.description == null) {
|
|
|
|
log("Error: No description found for metric " + name);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (metric.units == null) {
|
|
|
|
log("Error: No units found for metric " + name);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (metric.value == null) {
|
|
|
|
log("Error: No value found for metric " + name);
|
|
|
|
continue;
|
|
|
|
}
|
2010-05-12 17:24:52 -04:00
|
|
|
|
|
|
|
if (!first)
|
|
|
|
Shell.write_string_to_stream(out, ',\n ');
|
|
|
|
first = false;
|
|
|
|
|
|
|
|
Shell.write_string_to_stream(out,
|
|
|
|
'{ "name": ' + JSON.stringify(name) + ',\n' +
|
2010-05-17 14:04:09 -04:00
|
|
|
' "description": ' + JSON.stringify(metric.description) + ',\n' +
|
|
|
|
' "units": ' + JSON.stringify(metric.units) + ',\n' +
|
|
|
|
' "value": ' + JSON.stringify(metric.value) + ' }');
|
2010-05-09 13:42:35 -04:00
|
|
|
}
|
2010-05-12 17:24:52 -04:00
|
|
|
Shell.write_string_to_stream(out, ' ]');
|
2010-05-09 13:42:35 -04:00
|
|
|
|
2010-05-12 17:24:52 -04:00
|
|
|
Shell.write_string_to_stream (out, ',\n"log":\n');
|
|
|
|
Shell.PerfLog.get_default().dump_log(out);
|
|
|
|
|
|
|
|
Shell.write_string_to_stream (out, '\n}\n');
|
|
|
|
out.close(null);
|
2010-05-09 13:42:35 -04:00
|
|
|
} else {
|
|
|
|
let metrics = [];
|
|
|
|
for (let metric in scriptModule.METRICS)
|
|
|
|
metrics.push(metric);
|
|
|
|
|
|
|
|
metrics.sort();
|
|
|
|
|
|
|
|
print ('------------------------------------------------------------');
|
|
|
|
for (let i = 0; i < metrics.length; i++) {
|
|
|
|
let metric = metrics[i];
|
2014-05-19 19:26:41 -04:00
|
|
|
print ('# ' + scriptModule.METRICS[metric].description);
|
|
|
|
print (metric + ': ' + scriptModule.METRICS[metric].value + scriptModule.METRICS[metric].units);
|
2010-05-09 13:42:35 -04:00
|
|
|
}
|
|
|
|
print ('------------------------------------------------------------');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* runPerfScript
|
|
|
|
* @scriptModule: module object with run and finish functions
|
|
|
|
* and event handlers
|
|
|
|
*
|
|
|
|
* Runs a script for automated collection of performance data. The
|
|
|
|
* script is defined as a Javascript module with specified contents.
|
|
|
|
*
|
|
|
|
* First the run() function within the module will be called as a
|
|
|
|
* generator to automate a series of actions. These actions will
|
|
|
|
* trigger performance events and the script can also record its
|
|
|
|
* own performance events.
|
|
|
|
*
|
|
|
|
* Then the recorded event log is replayed using handler functions
|
|
|
|
* within the module. The handler for the event 'foo.bar' is called
|
|
|
|
* foo_bar().
|
|
|
|
*
|
|
|
|
* Finally if the module has a function called finish(), that will
|
|
|
|
* be called.
|
|
|
|
*
|
|
|
|
* The event handler and finish functions are expected to fill in
|
2010-05-17 14:04:09 -04:00
|
|
|
* metrics to an object within the module called METRICS. Each
|
|
|
|
* property of this object represents an individual metric. The
|
|
|
|
* name of the property is the name of the metric, the value
|
|
|
|
* of the property is an object with the following properties:
|
|
|
|
*
|
|
|
|
* description: human readable description of the metric
|
|
|
|
* units: a string representing the units of the metric. It has
|
|
|
|
* the form '<unit> <unit> ... / <unit> / <unit> ...'. Certain
|
|
|
|
* unit values are recognized: s, ms, us, B, KiB, MiB. Other
|
|
|
|
* values can appear but are uninterpreted. Examples 's',
|
|
|
|
* '/ s', 'frames', 'frames / s', 'MiB / s / frame'
|
|
|
|
* value: computed value of the metric
|
2010-05-09 13:42:35 -04:00
|
|
|
*
|
|
|
|
* The resulting metrics will be written to @outputFile as JSON, or,
|
|
|
|
* if @outputFile is not provided, logged.
|
|
|
|
*
|
|
|
|
* After running the script and collecting statistics from the
|
|
|
|
* event log, GNOME Shell will exit.
|
|
|
|
**/
|
|
|
|
function runPerfScript(scriptModule, outputFile) {
|
|
|
|
Shell.PerfLog.get_default().set_enabled(true);
|
|
|
|
|
|
|
|
let g = scriptModule.run();
|
|
|
|
|
|
|
|
_step(g,
|
2017-10-30 20:38:18 -04:00
|
|
|
() => {
|
2014-05-19 21:34:04 -04:00
|
|
|
try {
|
|
|
|
_collect(scriptModule, outputFile);
|
|
|
|
} catch (err) {
|
|
|
|
log("Script failed: " + err + "\n" + err.stack);
|
|
|
|
Meta.exit(Meta.ExitCode.ERROR);
|
|
|
|
}
|
2010-05-11 18:08:50 -04:00
|
|
|
Meta.exit(Meta.ExitCode.SUCCESS);
|
2010-05-09 13:42:35 -04:00
|
|
|
},
|
2017-10-30 20:38:18 -04:00
|
|
|
err => {
|
2010-05-09 13:42:35 -04:00
|
|
|
log("Script failed: " + err + "\n" + err.stack);
|
|
|
|
Meta.exit(Meta.ExitCode.ERROR);
|
|
|
|
});
|
|
|
|
}
|