5810fcb14d
Extension developers may be confused about why their extensions aren't working: the LookingGlass isn't a very obvious place, or even which errors are theirs. To remedy this, save all errors per-UUID which allows them to be retrieved later. https://bugzilla.gnome.org/show_bug.cgi?id=654770
109 lines
2.8 KiB
JavaScript
109 lines
2.8 KiB
JavaScript
/* -*- mode: js2; js2-basic-offset: 4; indent-tabs-mode: nil -*- */
|
|
|
|
const DBus = imports.dbus;
|
|
|
|
const Config = imports.misc.config;
|
|
const ExtensionSystem = imports.ui.extensionSystem;
|
|
const Main = imports.ui.main;
|
|
|
|
const GnomeShellIface = {
|
|
name: 'org.gnome.Shell',
|
|
methods: [{ name: 'Eval',
|
|
inSignature: 's',
|
|
outSignature: 'bs'
|
|
},
|
|
{ name: 'ListExtensions',
|
|
inSignature: '',
|
|
outSignature: 'a{sa{sv}}'
|
|
},
|
|
{ name: 'GetExtensionInfo',
|
|
inSignature: 's',
|
|
outSignature: 'a{sv}'
|
|
},
|
|
{ name: 'GetExtensionErrors',
|
|
inSignature: 's',
|
|
outSignature: 'as'
|
|
}
|
|
],
|
|
signals: [],
|
|
properties: [{ name: 'OverviewActive',
|
|
signature: 'b',
|
|
access: 'readwrite' },
|
|
{ name: 'ApiVersion',
|
|
signature: 'i',
|
|
access: 'read' },
|
|
{ name: 'ShellVersion',
|
|
signature: 's',
|
|
access: 'read' }]
|
|
};
|
|
|
|
function GnomeShell() {
|
|
this._init();
|
|
}
|
|
|
|
GnomeShell.prototype = {
|
|
_init: function() {
|
|
DBus.session.exportObject('/org/gnome/Shell', this);
|
|
},
|
|
|
|
/**
|
|
* Eval:
|
|
* @code: A string containing JavaScript code
|
|
*
|
|
* This function executes arbitrary code in the main
|
|
* loop, and returns a boolean success and
|
|
* JSON representation of the object as a string.
|
|
*
|
|
* If evaluation completes without throwing an exception,
|
|
* then the return value will be [true, JSON.stringify(result)].
|
|
* If evaluation fails, then the return value will be
|
|
* [false, JSON.stringify(exception)];
|
|
*
|
|
*/
|
|
Eval: function(code) {
|
|
let returnValue;
|
|
let success;
|
|
try {
|
|
returnValue = JSON.stringify(eval(code));
|
|
// A hack; DBus doesn't have null/undefined
|
|
if (returnValue == undefined)
|
|
returnValue = '';
|
|
success = true;
|
|
} catch (e) {
|
|
returnValue = JSON.stringify(e);
|
|
success = false;
|
|
}
|
|
return [success, returnValue];
|
|
},
|
|
|
|
ListExtensions: function() {
|
|
return ExtensionSystem.extensionMeta;
|
|
},
|
|
|
|
GetExtensionInfo: function(uuid) {
|
|
return ExtensionSystem.extensionMeta[uuid] || {};
|
|
},
|
|
|
|
GetExtensionErrors: function(uuid) {
|
|
return ExtensionSystem.errors[uuid] || [];
|
|
},
|
|
|
|
get OverviewActive() {
|
|
return Main.overview.visible;
|
|
},
|
|
|
|
set OverviewActive(visible) {
|
|
if (visible)
|
|
Main.overview.show();
|
|
else
|
|
Main.overview.hide();
|
|
},
|
|
|
|
ApiVersion: 1,
|
|
|
|
ShellVersion: Config.PACKAGE_VERSION
|
|
};
|
|
|
|
DBus.conformExport(GnomeShell.prototype, GnomeShellIface);
|
|
|