2008-12-01 14:51:43 -05:00
|
|
|
/* -*- mode: js2; js2-basic-offset: 4; indent-tabs-mode: nil -*- */
|
2008-11-19 18:21:42 -05:00
|
|
|
|
|
|
|
const Clutter = imports.gi.Clutter;
|
2009-12-17 17:12:46 -05:00
|
|
|
const Gio = imports.gi.Gio;
|
2009-08-10 15:49:25 -04:00
|
|
|
const GLib = imports.gi.GLib;
|
2009-08-03 17:52:45 -04:00
|
|
|
const Lang = imports.lang;
|
2009-09-15 17:40:26 -04:00
|
|
|
const Meta = imports.gi.Meta;
|
2010-02-09 12:42:07 -05:00
|
|
|
const St = imports.gi.St;
|
2009-02-02 18:02:16 -05:00
|
|
|
const Shell = imports.gi.Shell;
|
|
|
|
const Signals = imports.signals;
|
2009-08-14 09:30:48 -04:00
|
|
|
const Gettext = imports.gettext.domain('gnome-shell');
|
|
|
|
const _ = Gettext.gettext;
|
2008-11-19 18:21:42 -05:00
|
|
|
|
2011-01-17 16:30:12 -05:00
|
|
|
const FileUtils = imports.misc.fileUtils;
|
2008-11-19 18:21:42 -05:00
|
|
|
const Main = imports.ui.main;
|
2010-12-06 14:41:06 -05:00
|
|
|
const ModalDialog = imports.ui.modalDialog;
|
2010-03-17 10:36:57 -04:00
|
|
|
const Tweener = imports.ui.tweener;
|
2010-11-17 11:43:08 -05:00
|
|
|
const Util = imports.misc.util;
|
2008-11-19 18:21:42 -05:00
|
|
|
|
2009-12-17 17:12:46 -05:00
|
|
|
const MAX_FILE_DELETED_BEFORE_INVALID = 10;
|
|
|
|
|
2010-05-05 17:05:42 -04:00
|
|
|
const HISTORY_KEY = 'command-history';
|
2010-03-17 11:22:27 -04:00
|
|
|
const HISTORY_LIMIT = 512;
|
|
|
|
|
2010-12-06 14:41:45 -05:00
|
|
|
const DIALOG_GROW_TIME = 0.1;
|
|
|
|
|
2009-12-17 17:12:46 -05:00
|
|
|
function CommandCompleter() {
|
|
|
|
this._init();
|
|
|
|
}
|
|
|
|
|
|
|
|
CommandCompleter.prototype = {
|
|
|
|
_init : function() {
|
|
|
|
this._changedCount = 0;
|
|
|
|
this._paths = GLib.getenv('PATH').split(':');
|
2010-02-26 14:07:44 -05:00
|
|
|
this._paths.push(GLib.get_home_dir());
|
2009-12-17 17:12:46 -05:00
|
|
|
this._valid = false;
|
|
|
|
this._updateInProgress = false;
|
|
|
|
this._childs = new Array(this._paths.length);
|
|
|
|
this._monitors = new Array(this._paths.length);
|
|
|
|
for (let i = 0; i < this._paths.length; i++) {
|
|
|
|
this._childs[i] = [];
|
|
|
|
let file = Gio.file_new_for_path(this._paths[i]);
|
2009-12-19 00:41:05 -05:00
|
|
|
let info;
|
|
|
|
try {
|
|
|
|
info = file.query_info(Gio.FILE_ATTRIBUTE_STANDARD_TYPE, Gio.FileQueryInfoFlags.NONE, null);
|
|
|
|
} catch (e) {
|
|
|
|
// FIXME catchall
|
|
|
|
this._paths[i] = null;
|
|
|
|
continue;
|
|
|
|
}
|
2009-12-17 17:12:46 -05:00
|
|
|
|
|
|
|
if (info.get_attribute_uint32(Gio.FILE_ATTRIBUTE_STANDARD_TYPE) != Gio.FileType.DIRECTORY)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
this._paths[i] = file.get_path();
|
|
|
|
this._monitors[i] = file.monitor_directory(Gio.FileMonitorFlags.NONE, null);
|
|
|
|
if (this._monitors[i] != null) {
|
2010-05-13 15:46:04 -04:00
|
|
|
this._monitors[i].connect('changed', Lang.bind(this, this._onChanged));
|
2009-12-17 17:12:46 -05:00
|
|
|
}
|
|
|
|
}
|
2009-12-19 00:41:05 -05:00
|
|
|
this._paths = this._paths.filter(function(a) {
|
|
|
|
return a != null;
|
|
|
|
});
|
2009-12-17 17:12:46 -05:00
|
|
|
this._update(0);
|
|
|
|
},
|
|
|
|
|
|
|
|
update : function() {
|
|
|
|
if (this._valid)
|
|
|
|
return;
|
|
|
|
this._update(0);
|
|
|
|
},
|
|
|
|
|
|
|
|
_update : function(i) {
|
|
|
|
if (i == 0 && this._updateInProgress)
|
|
|
|
return;
|
|
|
|
this._updateInProgress = true;
|
|
|
|
this._changedCount = 0;
|
|
|
|
this._i = i;
|
|
|
|
if (i >= this._paths.length) {
|
|
|
|
this._valid = true;
|
|
|
|
this._updateInProgress = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
let file = Gio.file_new_for_path(this._paths[i]);
|
|
|
|
this._childs[this._i] = [];
|
2011-01-17 16:30:12 -05:00
|
|
|
FileUtils.listDirAsync(file, Lang.bind(this, function (files) {
|
|
|
|
for (let i = 0; i < files.length; i++) {
|
|
|
|
this._childs[this._i].push(files[i].get_name());
|
|
|
|
}
|
|
|
|
this._update(this._i + 1);
|
|
|
|
}));
|
2009-12-17 17:12:46 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
_onChanged : function(m, f, of, type) {
|
|
|
|
if (!this._valid)
|
|
|
|
return;
|
|
|
|
let path = f.get_parent().get_path();
|
|
|
|
let k = undefined;
|
|
|
|
for (let i = 0; i < this._paths.length; i++) {
|
|
|
|
if (this._paths[i] == path)
|
|
|
|
k = i;
|
|
|
|
}
|
|
|
|
if (k === undefined) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (type == Gio.FileMonitorEvent.CREATED) {
|
|
|
|
this._childs[k].push(f.get_basename());
|
|
|
|
}
|
|
|
|
if (type == Gio.FileMonitorEvent.DELETED) {
|
|
|
|
this._changedCount++;
|
|
|
|
if (this._changedCount > MAX_FILE_DELETED_BEFORE_INVALID) {
|
|
|
|
this._valid = false;
|
|
|
|
}
|
|
|
|
let name = f.get_basename();
|
|
|
|
this._childs[k] = this._childs[k].filter(function(e) {
|
|
|
|
return e != name;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
if (type == Gio.FileMonitorEvent.UNMOUNTED) {
|
|
|
|
this._childs[k] = [];
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
getCompletion: function(text) {
|
2010-05-13 15:46:04 -04:00
|
|
|
let common = '';
|
2009-12-17 17:12:46 -05:00
|
|
|
let notInit = true;
|
|
|
|
if (!this._valid) {
|
|
|
|
this._update(0);
|
|
|
|
return common;
|
|
|
|
}
|
|
|
|
function _getCommon(s1, s2) {
|
|
|
|
let k = 0;
|
|
|
|
for (; k < s1.length && k < s2.length; k++) {
|
|
|
|
if (s1[k] != s2[k])
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (k == 0)
|
2010-05-13 15:46:04 -04:00
|
|
|
return '';
|
2009-12-17 17:12:46 -05:00
|
|
|
return s1.substr(0, k);
|
|
|
|
}
|
|
|
|
function _hasPrefix(s1, prefix) {
|
|
|
|
return s1.indexOf(prefix) == 0;
|
|
|
|
}
|
|
|
|
for (let i = 0; i < this._childs.length; i++) {
|
|
|
|
for (let k = 0; k < this._childs[i].length; k++) {
|
|
|
|
if (!_hasPrefix(this._childs[i][k], text))
|
|
|
|
continue;
|
|
|
|
if (notInit) {
|
|
|
|
common = this._childs[i][k];
|
|
|
|
notInit = false;
|
|
|
|
}
|
|
|
|
common = _getCommon(common, this._childs[i][k]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (common.length)
|
|
|
|
return common.substr(text.length);
|
|
|
|
return common;
|
|
|
|
}
|
|
|
|
};
|
2008-11-19 18:21:42 -05:00
|
|
|
|
|
|
|
function RunDialog() {
|
|
|
|
this._init();
|
2010-03-15 09:50:05 -04:00
|
|
|
}
|
2008-11-19 18:21:42 -05:00
|
|
|
|
|
|
|
RunDialog.prototype = {
|
2010-12-06 14:41:06 -05:00
|
|
|
__proto__: ModalDialog.ModalDialog.prototype,
|
2008-12-01 14:51:43 -05:00
|
|
|
_init : function() {
|
2010-12-06 14:41:06 -05:00
|
|
|
ModalDialog.ModalDialog.prototype._init.call(this, { styleClass: 'run-dialog' });
|
2009-08-03 17:52:45 -04:00
|
|
|
|
2010-05-05 17:05:42 -04:00
|
|
|
global.settings.connect('changed::development-tools', Lang.bind(this, function () {
|
|
|
|
this._enableInternalCommands = global.settings.get_boolean('development-tools');
|
2010-03-17 11:22:27 -04:00
|
|
|
}));
|
2010-05-05 17:05:42 -04:00
|
|
|
this._enableInternalCommands = global.settings.get_boolean('development-tools');
|
2010-03-17 11:22:27 -04:00
|
|
|
|
2010-05-05 17:05:42 -04:00
|
|
|
this._history = global.settings.get_strv(HISTORY_KEY);
|
2010-03-17 11:22:27 -04:00
|
|
|
this._historyIndex = -1;
|
|
|
|
|
2010-05-05 17:05:42 -04:00
|
|
|
global.settings.connect('changed::' + HISTORY_KEY, Lang.bind(this, function() {
|
|
|
|
this._history = global.settings.get_strv(HISTORY_KEY);
|
2010-03-17 11:22:27 -04:00
|
|
|
this._historyIndex = this._history.length;
|
2009-09-14 13:45:49 -04:00
|
|
|
}));
|
|
|
|
|
2009-08-02 03:46:01 -04:00
|
|
|
this._internalCommands = { 'lg':
|
|
|
|
Lang.bind(this, function() {
|
2009-09-15 15:53:07 -04:00
|
|
|
Main.createLookingGlass().open();
|
2009-08-02 03:46:01 -04:00
|
|
|
}),
|
2009-08-26 18:43:44 -04:00
|
|
|
|
|
|
|
'r': Lang.bind(this, function() {
|
|
|
|
global.reexec_self();
|
|
|
|
}),
|
|
|
|
|
|
|
|
// Developer brain backwards compatibility
|
2009-08-02 03:46:01 -04:00
|
|
|
'restart': Lang.bind(this, function() {
|
2009-08-03 17:52:45 -04:00
|
|
|
global.reexec_self();
|
2009-09-15 17:40:26 -04:00
|
|
|
}),
|
|
|
|
|
|
|
|
'debugexit': Lang.bind(this, function() {
|
|
|
|
Meta.exit(Meta.ExitCode.ERROR);
|
2011-01-04 14:34:54 -05:00
|
|
|
}),
|
|
|
|
|
|
|
|
// rt is short for "reload theme"
|
|
|
|
'rt': Lang.bind(this, function() {
|
|
|
|
Main.loadTheme();
|
2009-08-03 17:52:45 -04:00
|
|
|
})
|
|
|
|
};
|
|
|
|
|
2009-09-08 14:04:18 -04:00
|
|
|
|
2010-02-26 11:32:38 -05:00
|
|
|
let label = new St.Label({ style_class: 'run-dialog-label',
|
|
|
|
text: _("Please enter a command:") });
|
2009-09-08 14:04:18 -04:00
|
|
|
|
2010-12-06 14:41:06 -05:00
|
|
|
this.contentLayout.add(label, { y_align: St.Align.START });
|
2008-12-01 14:51:43 -05:00
|
|
|
|
2010-02-26 11:32:38 -05:00
|
|
|
let entry = new St.Entry({ style_class: 'run-dialog-entry' });
|
2009-09-08 14:04:18 -04:00
|
|
|
|
2010-02-26 11:32:38 -05:00
|
|
|
this._entryText = entry.clutter_text;
|
2010-12-06 14:41:06 -05:00
|
|
|
this.contentLayout.add(entry, { y_align: St.Align.START });
|
|
|
|
this.connect('opened',
|
|
|
|
Lang.bind(this, function() {
|
|
|
|
this._entryText.grab_key_focus();
|
|
|
|
}));
|
2008-12-01 14:51:43 -05:00
|
|
|
|
2010-02-26 11:32:38 -05:00
|
|
|
this._errorBox = new St.BoxLayout();
|
2009-09-08 14:04:18 -04:00
|
|
|
|
2010-12-06 14:41:06 -05:00
|
|
|
this.contentLayout.add(this._errorBox, { expand: true });
|
2009-09-08 14:04:18 -04:00
|
|
|
|
2010-02-26 11:32:38 -05:00
|
|
|
let errorIcon = new St.Button({ style_class: 'run-dialog-error-icon' });
|
2009-09-08 14:04:18 -04:00
|
|
|
|
2010-02-26 11:32:38 -05:00
|
|
|
this._errorBox.add(errorIcon);
|
2009-09-08 14:04:18 -04:00
|
|
|
|
|
|
|
this._commandError = false;
|
|
|
|
|
2010-02-26 11:32:38 -05:00
|
|
|
this._errorMessage = new St.Label({ style_class: 'run-dialog-error-label' });
|
|
|
|
this._errorMessage.clutter_text.line_wrap = true;
|
2009-09-08 14:04:18 -04:00
|
|
|
|
2010-02-26 11:32:38 -05:00
|
|
|
this._errorBox.add(this._errorMessage, { expand: true });
|
2009-09-08 14:04:18 -04:00
|
|
|
|
|
|
|
this._errorBox.hide();
|
2008-12-01 14:51:43 -05:00
|
|
|
|
2009-12-17 17:12:46 -05:00
|
|
|
this._pathCompleter = new Gio.FilenameCompleter();
|
|
|
|
this._commandCompleter = new CommandCompleter();
|
|
|
|
this._group.connect('notify::visible', Lang.bind(this._commandCompleter, this._commandCompleter.update));
|
2010-02-26 11:32:38 -05:00
|
|
|
this._entryText.connect('key-press-event', Lang.bind(this, function(o, e) {
|
2009-09-08 16:58:57 -04:00
|
|
|
let symbol = e.get_key_symbol();
|
2010-03-17 11:22:27 -04:00
|
|
|
if (symbol == Clutter.Down) {
|
|
|
|
this._setCommandFromHistory(this._historyIndex++);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (symbol == Clutter.Up) {
|
|
|
|
this._setCommandFromHistory(this._historyIndex--);
|
|
|
|
return true;
|
|
|
|
}
|
2010-03-31 09:29:11 -04:00
|
|
|
if (symbol == Clutter.Return || symbol == Clutter.KP_Enter) {
|
2010-03-24 13:15:50 -04:00
|
|
|
if (Shell.get_event_state(e) & Clutter.ModifierType.CONTROL_MASK)
|
2010-02-26 11:32:38 -05:00
|
|
|
this._run(o.get_text(), true);
|
|
|
|
else
|
|
|
|
this._run(o.get_text(), false);
|
|
|
|
if (!this._commandError)
|
2010-12-06 14:41:06 -05:00
|
|
|
this.close(global.get_current_time());
|
2010-02-26 11:32:38 -05:00
|
|
|
}
|
2009-08-03 17:52:45 -04:00
|
|
|
if (symbol == Clutter.Escape) {
|
2010-12-06 14:41:06 -05:00
|
|
|
this.close(global.get_current_time());
|
2009-08-03 17:52:45 -04:00
|
|
|
return true;
|
|
|
|
}
|
2009-12-17 17:12:46 -05:00
|
|
|
if (symbol == Clutter.slash) {
|
|
|
|
// Need preload data before get completion. GFilenameCompleter load content of parent directory.
|
|
|
|
// Parent directory for /usr/include/ is /usr/. So need to add fake name('a').
|
|
|
|
let text = o.get_text().concat('/a');
|
|
|
|
let prefix;
|
|
|
|
if (text.lastIndexOf(' ') == -1)
|
|
|
|
prefix = text;
|
|
|
|
else
|
|
|
|
prefix = text.substr(text.lastIndexOf(' ') + 1);
|
|
|
|
this._getCompletion(prefix);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (symbol == Clutter.Tab) {
|
|
|
|
let text = o.get_text();
|
|
|
|
let prefix;
|
|
|
|
if (text.lastIndexOf(' ') == -1)
|
|
|
|
prefix = text;
|
|
|
|
else
|
|
|
|
prefix = text.substr(text.lastIndexOf(' ') + 1);
|
|
|
|
let postfix = this._getCompletion(prefix);
|
|
|
|
if (postfix != null && postfix.length > 0) {
|
|
|
|
o.insert_text(postfix, -1);
|
|
|
|
o.set_cursor_position(text.length + postfix.length);
|
|
|
|
if (postfix[postfix.length - 1] == '/')
|
|
|
|
this._getCompletion(text + postfix + 'a');
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2009-08-03 17:52:45 -04:00
|
|
|
return false;
|
|
|
|
}));
|
2008-12-01 14:51:43 -05:00
|
|
|
},
|
|
|
|
|
2009-12-17 17:12:46 -05:00
|
|
|
_getCompletion : function(text) {
|
|
|
|
if (text.indexOf('/') != -1) {
|
|
|
|
return this._pathCompleter.get_completion_suffix(text);
|
|
|
|
} else {
|
|
|
|
return this._commandCompleter.getCompletion(text);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2010-03-17 11:22:27 -04:00
|
|
|
_saveHistory : function() {
|
|
|
|
if (this._history.length > HISTORY_LIMIT) {
|
|
|
|
this._history.splice(0, this._history.length - HISTORY_LIMIT);
|
|
|
|
}
|
2010-05-05 17:05:42 -04:00
|
|
|
global.settings.set_strv(HISTORY_KEY, this._history);
|
2010-03-17 11:22:27 -04:00
|
|
|
},
|
|
|
|
|
2010-02-26 14:07:44 -05:00
|
|
|
_run : function(input, inTerminal) {
|
|
|
|
let command = input;
|
2010-03-17 11:22:27 -04:00
|
|
|
|
2010-06-09 09:30:40 -04:00
|
|
|
if (this._history.length == 0 ||
|
|
|
|
this._history[this._history.length - 1] != input) {
|
2010-03-23 15:22:46 -04:00
|
|
|
this._history.push(input);
|
|
|
|
this._saveHistory();
|
|
|
|
}
|
2010-03-17 11:22:27 -04:00
|
|
|
|
2009-10-01 17:44:16 -04:00
|
|
|
this._commandError = false;
|
2009-09-14 13:45:49 -04:00
|
|
|
let f;
|
|
|
|
if (this._enableInternalCommands)
|
2010-02-26 14:07:44 -05:00
|
|
|
f = this._internalCommands[input];
|
2009-09-14 13:45:49 -04:00
|
|
|
else
|
|
|
|
f = null;
|
2009-08-03 17:52:45 -04:00
|
|
|
if (f) {
|
|
|
|
f();
|
2010-02-26 14:07:44 -05:00
|
|
|
} else if (input) {
|
2008-12-01 14:51:43 -05:00
|
|
|
try {
|
2010-02-26 11:32:38 -05:00
|
|
|
if (inTerminal)
|
2010-02-26 14:07:44 -05:00
|
|
|
command = 'gnome-terminal -x ' + input;
|
2010-11-17 11:43:08 -05:00
|
|
|
Util.trySpawnCommandLine(command);
|
2008-12-01 14:51:43 -05:00
|
|
|
} catch (e) {
|
2010-02-26 14:07:44 -05:00
|
|
|
// Mmmh, that failed - see if @input matches an existing file
|
|
|
|
let path = null;
|
|
|
|
if (input.charAt(0) == '/') {
|
|
|
|
path = input;
|
|
|
|
} else {
|
|
|
|
if (input.charAt(0) == '~')
|
|
|
|
input = input.slice(1);
|
|
|
|
path = GLib.get_home_dir() + '/' + input;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (GLib.file_test(path, GLib.FileTest.EXISTS)) {
|
|
|
|
let file = Gio.file_new_for_path(path);
|
|
|
|
Gio.app_info_launch_default_for_uri(file.get_uri(),
|
|
|
|
global.create_app_launch_context());
|
|
|
|
} else {
|
|
|
|
this._commandError = true;
|
2010-11-17 11:43:08 -05:00
|
|
|
|
|
|
|
let errorStr = _("Execution of '%s' failed:").format(command) + '\n' + e.message;
|
2010-02-26 14:07:44 -05:00
|
|
|
this._errorMessage.set_text(errorStr);
|
|
|
|
|
2010-12-06 14:41:45 -05:00
|
|
|
if (!this._errorBox.visible) {
|
|
|
|
let [errorBoxMinHeight, errorBoxNaturalHeight] = this._errorBox.get_preferred_height(-1);
|
|
|
|
|
|
|
|
let parentActor = this._errorBox.get_parent();
|
|
|
|
Tweener.addTween(parentActor,
|
|
|
|
{ height: parentActor.height + errorBoxNaturalHeight,
|
|
|
|
time: DIALOG_GROW_TIME,
|
|
|
|
transition: 'easeOutQuad',
|
|
|
|
onComplete: Lang.bind(this,
|
|
|
|
function() {
|
|
|
|
parentActor.set_height(-1);
|
|
|
|
this._errorBox.show();
|
|
|
|
})
|
|
|
|
});
|
|
|
|
}
|
2010-02-26 14:07:44 -05:00
|
|
|
}
|
2008-12-01 14:51:43 -05:00
|
|
|
}
|
2008-11-19 18:21:42 -05:00
|
|
|
}
|
2008-12-01 14:51:43 -05:00
|
|
|
},
|
2008-11-19 18:21:42 -05:00
|
|
|
|
2010-03-17 11:22:27 -04:00
|
|
|
_setCommandFromHistory: function(lastI) {
|
|
|
|
if (this._historyIndex < 0)
|
|
|
|
this._historyIndex = 0;
|
|
|
|
if (this._historyIndex > this._history.length)
|
|
|
|
this._historyIndex = this._history.length;
|
|
|
|
|
|
|
|
let text = this._entryText.get_text();
|
|
|
|
if (text) {
|
|
|
|
this._history[lastI] = text;
|
|
|
|
}
|
|
|
|
if (this._history[this._historyIndex]) {
|
|
|
|
this._entryText.set_text(this._history[this._historyIndex]);
|
|
|
|
} else
|
|
|
|
this._entryText.set_text('');
|
|
|
|
},
|
|
|
|
|
2010-12-06 14:41:06 -05:00
|
|
|
open: function() {
|
2010-03-17 11:22:27 -04:00
|
|
|
this._historyIndex = this._history.length;
|
2010-12-06 14:41:06 -05:00
|
|
|
this._errorBox.hide();
|
|
|
|
this._entryText.set_text('');
|
|
|
|
this._commandError = false;
|
2010-03-17 11:22:27 -04:00
|
|
|
|
2010-12-06 14:41:06 -05:00
|
|
|
ModalDialog.ModalDialog.prototype.open.call(this);
|
2008-12-01 14:51:43 -05:00
|
|
|
},
|
2008-11-24 14:07:18 -05:00
|
|
|
|
2008-11-19 18:21:42 -05:00
|
|
|
};
|
2008-11-20 10:40:44 -05:00
|
|
|
Signals.addSignalMethods(RunDialog.prototype);
|