2011-11-16 18:11:05 -05:00
|
|
|
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
|
|
|
|
|
2013-01-02 20:48:22 -05:00
|
|
|
const GdkPixbuf = imports.gi.GdkPixbuf;
|
2011-11-16 18:11:05 -05:00
|
|
|
const Gio = imports.gi.Gio;
|
2011-12-15 08:46:12 -05:00
|
|
|
const GLib = imports.gi.GLib;
|
2011-11-16 18:11:05 -05:00
|
|
|
const Lang = imports.lang;
|
|
|
|
const St = imports.gi.St;
|
2013-01-02 09:31:50 -05:00
|
|
|
const Shell = imports.gi.Shell;
|
2011-11-16 18:11:05 -05:00
|
|
|
|
|
|
|
const Search = imports.ui.search;
|
|
|
|
|
2011-12-15 08:46:12 -05:00
|
|
|
const KEY_FILE_GROUP = 'Shell Search Provider';
|
|
|
|
|
2011-11-16 18:11:05 -05:00
|
|
|
const SearchProviderIface = <interface name="org.gnome.Shell.SearchProvider">
|
|
|
|
<method name="GetInitialResultSet">
|
|
|
|
<arg type="as" direction="in" />
|
|
|
|
<arg type="as" direction="out" />
|
|
|
|
</method>
|
|
|
|
<method name="GetSubsearchResultSet">
|
|
|
|
<arg type="as" direction="in" />
|
|
|
|
<arg type="as" direction="in" />
|
|
|
|
<arg type="as" direction="out" />
|
|
|
|
</method>
|
|
|
|
<method name="GetResultMetas">
|
|
|
|
<arg type="as" direction="in" />
|
|
|
|
<arg type="aa{sv}" direction="out" />
|
|
|
|
</method>
|
|
|
|
<method name="ActivateResult">
|
|
|
|
<arg type="s" direction="in" />
|
|
|
|
</method>
|
|
|
|
</interface>;
|
|
|
|
|
2012-12-05 17:20:22 -05:00
|
|
|
const SearchProvider2Iface = <interface name="org.gnome.Shell.SearchProvider2">
|
|
|
|
<method name="GetInitialResultSet">
|
|
|
|
<arg type="as" direction="in" />
|
|
|
|
<arg type="as" direction="out" />
|
|
|
|
</method>
|
|
|
|
<method name="GetSubsearchResultSet">
|
|
|
|
<arg type="as" direction="in" />
|
|
|
|
<arg type="as" direction="in" />
|
|
|
|
<arg type="as" direction="out" />
|
|
|
|
</method>
|
|
|
|
<method name="GetResultMetas">
|
|
|
|
<arg type="as" direction="in" />
|
|
|
|
<arg type="aa{sv}" direction="out" />
|
|
|
|
</method>
|
|
|
|
<method name="ActivateResult">
|
|
|
|
<arg type="s" direction="in" />
|
|
|
|
<arg type="as" direction="in" />
|
|
|
|
<arg type="u" direction="in" />
|
|
|
|
</method>
|
|
|
|
<method name="LaunchSearch">
|
|
|
|
<arg type="as" direction="in" />
|
2012-12-10 15:47:25 -05:00
|
|
|
<arg type="u" direction="in" />
|
2012-12-05 17:20:22 -05:00
|
|
|
</method>
|
|
|
|
</interface>;
|
|
|
|
|
2011-11-16 18:11:05 -05:00
|
|
|
var SearchProviderProxy = Gio.DBusProxy.makeProxyWrapper(SearchProviderIface);
|
2012-12-05 17:20:22 -05:00
|
|
|
var SearchProvider2Proxy = Gio.DBusProxy.makeProxyWrapper(SearchProvider2Iface);
|
2011-11-16 18:11:05 -05:00
|
|
|
|
2011-12-15 08:46:12 -05:00
|
|
|
function loadRemoteSearchProviders(addProviderCallback) {
|
2013-07-26 18:36:31 -04:00
|
|
|
let objectPaths = {};
|
|
|
|
let loadedProviders = [];
|
2012-06-22 11:44:15 -04:00
|
|
|
|
2013-07-26 18:36:31 -04:00
|
|
|
function loadRemoteSearchProvider(file) {
|
|
|
|
let keyfile = new GLib.KeyFile();
|
|
|
|
let path = file.get_path();
|
2012-11-30 10:36:12 -05:00
|
|
|
|
|
|
|
try {
|
2013-07-26 18:36:31 -04:00
|
|
|
keyfile.load_from_file(path, 0);
|
|
|
|
} catch(e) {
|
2012-11-30 10:36:12 -05:00
|
|
|
return;
|
2011-12-15 08:46:12 -05:00
|
|
|
}
|
2012-11-01 15:55:41 -04:00
|
|
|
|
2013-07-26 18:36:31 -04:00
|
|
|
if (!keyfile.has_group(KEY_FILE_GROUP))
|
|
|
|
return;
|
|
|
|
|
|
|
|
let remoteProvider;
|
2012-12-05 17:20:22 -05:00
|
|
|
try {
|
2013-07-26 18:36:31 -04:00
|
|
|
let group = KEY_FILE_GROUP;
|
|
|
|
let busName = keyfile.get_string(group, 'BusName');
|
|
|
|
let objectPath = keyfile.get_string(group, 'ObjectPath');
|
|
|
|
|
|
|
|
if (objectPaths[objectPath])
|
|
|
|
return;
|
|
|
|
|
|
|
|
let appInfo = null;
|
|
|
|
try {
|
|
|
|
let desktopId = keyfile.get_string(group, 'DesktopId');
|
|
|
|
appInfo = Gio.DesktopAppInfo.new(desktopId);
|
|
|
|
} catch (e) {
|
|
|
|
log('Ignoring search provider ' + path + ': missing DesktopId');
|
|
|
|
return;
|
|
|
|
}
|
2012-12-05 17:20:22 -05:00
|
|
|
|
2013-07-26 18:36:31 -04:00
|
|
|
let version = '1';
|
|
|
|
try {
|
|
|
|
version = keyfile.get_string(group, 'Version');
|
|
|
|
} catch (e) {
|
|
|
|
// ignore error
|
|
|
|
}
|
2012-12-05 17:20:22 -05:00
|
|
|
|
2013-07-26 18:36:31 -04:00
|
|
|
if (version >= 2)
|
|
|
|
remoteProvider = new RemoteSearchProvider2(appInfo, busName, objectPath);
|
|
|
|
else
|
|
|
|
remoteProvider = new RemoteSearchProvider(appInfo, busName, objectPath);
|
|
|
|
|
|
|
|
objectPaths[objectPath] = remoteProvider;
|
|
|
|
loadedProviders.push(remoteProvider);
|
|
|
|
} catch(e) {
|
|
|
|
log('Failed to add search provider %s: %s'.format(path, e.toString()));
|
|
|
|
}
|
2012-11-30 10:36:12 -05:00
|
|
|
}
|
2012-11-01 15:55:41 -04:00
|
|
|
|
2013-07-26 18:36:31 -04:00
|
|
|
let dataDirs = GLib.get_system_data_dirs();
|
|
|
|
dataDirs.forEach(function(dataDir) {
|
|
|
|
let path = GLib.build_filenamev([dataDir, 'gnome-shell', 'search-providers']);
|
|
|
|
let dir = Gio.File.new_for_path(path);
|
2013-07-27 10:55:57 -04:00
|
|
|
let fileEnum;
|
|
|
|
try {
|
|
|
|
fileEnum = dir.enumerate_children('standard::name,standard::type',
|
2013-07-26 18:36:31 -04:00
|
|
|
Gio.FileQueryInfoFlags.NONE, null);
|
2013-07-27 10:55:57 -04:00
|
|
|
} catch (e) {
|
|
|
|
fileEnum = null;
|
|
|
|
}
|
|
|
|
if (fileEnum != null) {
|
|
|
|
let info;
|
|
|
|
while ((info = fileEnum.next_file(null)))
|
|
|
|
loadRemoteSearchProvider(fileEnum.get_child(info));
|
|
|
|
}
|
2013-07-26 18:36:31 -04:00
|
|
|
});
|
|
|
|
|
2012-11-01 15:57:18 -04:00
|
|
|
let searchSettings = new Gio.Settings({ schema: Search.SEARCH_PROVIDERS_SCHEMA });
|
|
|
|
let sortOrder = searchSettings.get_strv('sort-order');
|
2012-12-28 12:03:13 -05:00
|
|
|
|
|
|
|
// Special case gnome-control-center to be always active and always first
|
|
|
|
sortOrder.unshift('gnome-control-center.desktop');
|
|
|
|
|
2013-07-26 18:36:31 -04:00
|
|
|
loadedProviders.sort(function(providerA, providerB) {
|
|
|
|
let idxA, idxB;
|
|
|
|
let appIdA, appIdB;
|
2012-11-01 15:57:18 -04:00
|
|
|
|
2013-07-26 18:36:31 -04:00
|
|
|
appIdA = providerA.appInfo.get_id();
|
|
|
|
appIdB = providerB.appInfo.get_id();
|
2012-11-01 15:57:18 -04:00
|
|
|
|
2013-07-26 18:36:31 -04:00
|
|
|
idxA = sortOrder.indexOf(appIdA);
|
|
|
|
idxB = sortOrder.indexOf(appIdB);
|
2012-11-01 15:57:18 -04:00
|
|
|
|
2013-07-26 18:36:31 -04:00
|
|
|
// if no provider is found in the order, use alphabetical order
|
|
|
|
if ((idxA == -1) && (idxB == -1)) {
|
|
|
|
let nameA = providerA.appInfo.get_name();
|
|
|
|
let nameB = providerB.appInfo.get_name();
|
2013-01-28 12:04:59 -05:00
|
|
|
|
2013-07-26 18:36:31 -04:00
|
|
|
return GLib.utf8_collate(nameA, nameB);
|
|
|
|
}
|
2012-11-01 15:57:18 -04:00
|
|
|
|
2013-07-26 18:36:31 -04:00
|
|
|
// if providerA isn't found, it's sorted after providerB
|
|
|
|
if (idxA == -1)
|
|
|
|
return 1;
|
2012-11-01 15:57:18 -04:00
|
|
|
|
2013-07-26 18:36:31 -04:00
|
|
|
// if providerB isn't found, it's sorted after providerA
|
|
|
|
if (idxB == -1)
|
|
|
|
return -1;
|
2012-11-01 15:57:18 -04:00
|
|
|
|
2013-07-26 18:36:31 -04:00
|
|
|
// finally, if both providers are found, return their order in the list
|
|
|
|
return (idxA - idxB);
|
|
|
|
});
|
2012-11-01 15:57:18 -04:00
|
|
|
|
2013-07-26 18:36:31 -04:00
|
|
|
loadedProviders.forEach(addProviderCallback);
|
2012-11-01 15:55:41 -04:00
|
|
|
}
|
|
|
|
|
2011-11-16 18:11:05 -05:00
|
|
|
const RemoteSearchProvider = new Lang.Class({
|
|
|
|
Name: 'RemoteSearchProvider',
|
|
|
|
|
2012-12-05 17:20:22 -05:00
|
|
|
_init: function(appInfo, dbusName, dbusPath, proxyType) {
|
|
|
|
if (!proxyType)
|
|
|
|
proxyType = SearchProviderProxy;
|
|
|
|
|
|
|
|
this.proxy = new proxyType(Gio.DBus.session,
|
|
|
|
dbusName, dbusPath, Lang.bind(this, this._onProxyConstructed));
|
2011-11-16 18:11:05 -05:00
|
|
|
|
2012-12-06 14:10:44 -05:00
|
|
|
this.appInfo = appInfo;
|
|
|
|
this.id = appInfo.get_id();
|
|
|
|
this.isRemoteProvider = true;
|
|
|
|
|
2011-11-16 18:11:05 -05:00
|
|
|
this._cancellable = new Gio.Cancellable();
|
|
|
|
},
|
|
|
|
|
2012-11-01 17:28:46 -04:00
|
|
|
_onProxyConstructed: function(proxy) {
|
|
|
|
// Do nothing
|
|
|
|
},
|
|
|
|
|
2011-11-16 18:11:05 -05:00
|
|
|
createIcon: function(size, meta) {
|
2013-01-02 09:31:50 -05:00
|
|
|
let gicon;
|
2013-04-24 12:05:22 -04:00
|
|
|
if (meta['icon']) {
|
|
|
|
gicon = Gio.icon_deserialize(meta['icon']);
|
|
|
|
} else if (meta['gicon']) {
|
2013-01-02 09:31:50 -05:00
|
|
|
gicon = Gio.icon_new_for_string(meta['gicon']);
|
2011-11-16 18:11:05 -05:00
|
|
|
} else if (meta['icon-data']) {
|
|
|
|
let [width, height, rowStride, hasAlpha,
|
|
|
|
bitsPerSample, nChannels, data] = meta['icon-data'];
|
2013-01-02 09:31:50 -05:00
|
|
|
gicon = Shell.util_create_pixbuf_from_data(data, GdkPixbuf.Colorspace.RGB, hasAlpha,
|
|
|
|
bitsPerSample, width, height, rowStride);
|
2011-11-16 18:11:05 -05:00
|
|
|
}
|
|
|
|
|
2013-01-14 19:36:18 -05:00
|
|
|
return new St.Icon({ gicon: gicon,
|
2013-01-02 09:31:50 -05:00
|
|
|
icon_size: size });
|
2011-11-16 18:11:05 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
_getResultsFinished: function(results, error) {
|
|
|
|
if (error)
|
|
|
|
return;
|
2013-02-08 22:03:28 -05:00
|
|
|
this.searchSystem.setResults(this, results[0]);
|
2011-11-16 18:11:05 -05:00
|
|
|
},
|
|
|
|
|
2012-05-02 15:54:25 -04:00
|
|
|
getInitialResultSet: function(terms) {
|
2011-11-16 18:11:05 -05:00
|
|
|
this._cancellable.cancel();
|
|
|
|
this._cancellable.reset();
|
|
|
|
try {
|
2012-12-05 17:20:22 -05:00
|
|
|
this.proxy.GetInitialResultSetRemote(terms,
|
|
|
|
Lang.bind(this, this._getResultsFinished),
|
|
|
|
this._cancellable);
|
2011-11-16 18:11:05 -05:00
|
|
|
} catch(e) {
|
2013-01-28 12:04:59 -05:00
|
|
|
log('Error calling GetInitialResultSet for provider %s: %s'.format(this.id, e.toString()));
|
2013-02-08 22:03:28 -05:00
|
|
|
this.searchSystem.setResults(this, []);
|
2011-11-16 18:11:05 -05:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2012-05-02 15:54:25 -04:00
|
|
|
getSubsearchResultSet: function(previousResults, newTerms) {
|
2011-11-16 18:11:05 -05:00
|
|
|
this._cancellable.cancel();
|
|
|
|
this._cancellable.reset();
|
|
|
|
try {
|
2012-12-05 17:20:22 -05:00
|
|
|
this.proxy.GetSubsearchResultSetRemote(previousResults, newTerms,
|
|
|
|
Lang.bind(this, this._getResultsFinished),
|
|
|
|
this._cancellable);
|
2011-11-16 18:11:05 -05:00
|
|
|
} catch(e) {
|
2013-01-28 12:04:59 -05:00
|
|
|
log('Error calling GetSubsearchResultSet for provider %s: %s'.format(this.id, e.toString()));
|
2013-02-08 22:03:28 -05:00
|
|
|
this.searchSystem.setResults(this, []);
|
2011-11-16 18:11:05 -05:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
_getResultMetasFinished: function(results, error, callback) {
|
|
|
|
if (error) {
|
|
|
|
callback([]);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
let metas = results[0];
|
|
|
|
let resultMetas = [];
|
|
|
|
for (let i = 0; i < metas.length; i++) {
|
2013-04-24 12:05:22 -04:00
|
|
|
for (let prop in metas[i]) {
|
|
|
|
// we can use the serialized icon variant directly
|
|
|
|
if (prop != 'icon')
|
|
|
|
metas[i][prop] = metas[i][prop].deep_unpack();
|
|
|
|
}
|
|
|
|
|
2011-11-16 18:11:05 -05:00
|
|
|
resultMetas.push({ id: metas[i]['id'],
|
|
|
|
name: metas[i]['name'],
|
2013-02-27 11:54:09 -05:00
|
|
|
description: metas[i]['description'],
|
2011-11-16 18:11:05 -05:00
|
|
|
createIcon: Lang.bind(this,
|
|
|
|
this.createIcon, metas[i]) });
|
|
|
|
}
|
|
|
|
callback(resultMetas);
|
|
|
|
},
|
|
|
|
|
2012-05-02 15:54:25 -04:00
|
|
|
getResultMetas: function(ids, callback) {
|
2011-11-16 18:11:05 -05:00
|
|
|
this._cancellable.cancel();
|
|
|
|
this._cancellable.reset();
|
|
|
|
try {
|
2012-12-05 17:20:22 -05:00
|
|
|
this.proxy.GetResultMetasRemote(ids,
|
|
|
|
Lang.bind(this, this._getResultMetasFinished, callback),
|
|
|
|
this._cancellable);
|
2011-11-16 18:11:05 -05:00
|
|
|
} catch(e) {
|
2013-01-28 12:04:59 -05:00
|
|
|
log('Error calling GetResultMetas for provider %s: %s'.format(this.id, e.toString()));
|
2011-11-16 18:11:05 -05:00
|
|
|
callback([]);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
activateResult: function(id) {
|
2012-12-05 17:20:22 -05:00
|
|
|
this.proxy.ActivateResultRemote(id);
|
2012-11-26 16:55:25 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
launchSearch: function(terms) {
|
|
|
|
// the provider is not compatible with the new version of the interface, launch
|
|
|
|
// the app itself but warn so we can catch the error in logs
|
|
|
|
log('Search provider ' + this.appInfo.get_id() + ' does not implement LaunchSearch');
|
|
|
|
this.appInfo.launch([], global.create_app_launch_context());
|
2011-11-16 18:11:05 -05:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2012-12-05 17:20:22 -05:00
|
|
|
const RemoteSearchProvider2 = new Lang.Class({
|
|
|
|
Name: 'RemoteSearchProvider2',
|
|
|
|
Extends: RemoteSearchProvider,
|
|
|
|
|
|
|
|
_init: function(appInfo, dbusName, dbusPath) {
|
|
|
|
this.parent(appInfo, dbusName, dbusPath, SearchProvider2Proxy);
|
2012-11-26 16:55:25 -05:00
|
|
|
|
|
|
|
this.canLaunchSearch = true;
|
2012-12-05 17:20:22 -05:00
|
|
|
},
|
2011-11-16 18:11:05 -05:00
|
|
|
|
2012-12-05 11:48:22 -05:00
|
|
|
activateResult: function(id, terms) {
|
|
|
|
this.proxy.ActivateResultRemote(id, terms, global.get_current_time());
|
2012-11-26 16:55:25 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
launchSearch: function(terms) {
|
2012-12-10 15:47:25 -05:00
|
|
|
this.proxy.LaunchSearchRemote(terms, global.get_current_time());
|
2012-12-05 17:20:22 -05:00
|
|
|
}
|
|
|
|
});
|