gem-graph-client/libide/search/ide-search-engine.c

447 lines
13 KiB
C
Raw Normal View History

/* ide-search-engine.c
*
* Copyright 2015-2019 Christian Hergert <chergert@redhat.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
#define G_LOG_DOMAIN "ide-search-engine"
#include "config.h"
#include <libide-plugins.h>
#include <libpeas/peas.h>
#include <libide-core.h>
#include <libide-threading.h>
#include "ide-search-engine.h"
#include "ide-search-provider.h"
#include "ide-search-result.h"
#define DEFAULT_MAX_RESULTS 50
struct _IdeSearchEngine
{
IdeObject parent_instance;
IdeExtensionSetAdapter *extensions;
GPtrArray *custom_provider;
guint active_count;
};
typedef struct
{
IdeTask *task;
gchar *query;
GListStore *store;
guint outstanding;
guint max_results;
} Request;
enum {
PROP_0,
PROP_BUSY,
N_PROPS
};
G_DEFINE_FINAL_TYPE (IdeSearchEngine, ide_search_engine, IDE_TYPE_OBJECT)
static GParamSpec *properties [N_PROPS];
static Request *
request_new (void)
{
Request *r;
r = g_slice_new0 (Request);
r->store = NULL;
r->outstanding = 0;
r->query = NULL;
return r;
}
static void
request_destroy (Request *r)
{
g_assert (r->outstanding == 0);
g_clear_object (&r->store);
g_clear_pointer (&r->query, g_free);
r->task = NULL;
g_slice_free (Request, r);
}
static void
on_extension_added_cb (IdeExtensionSetAdapter *set,
PeasPluginInfo *plugin_info,
PeasExtension *exten,
gpointer user_data)
{
IdeSearchEngine *self = (IdeSearchEngine *)user_data;
IdeSearchProvider *provider = (IdeSearchProvider *)exten;
IdeContext *context = ide_object_get_context (IDE_OBJECT (self));
g_assert (IDE_IS_MAIN_THREAD ());
g_assert (plugin_info != NULL);
g_assert (IDE_IS_SEARCH_PROVIDER (provider));
g_assert (context != NULL);
g_assert (IDE_IS_CONTEXT (context));
ide_search_provider_load (provider, context);
}
static void
on_extension_removed_cb (IdeExtensionSetAdapter *set,
PeasPluginInfo *plugin_info,
PeasExtension *exten,
gpointer user_data)
{
// FIXME ??
}
static void
ide_search_engine_parent_set (IdeObject *object,
IdeObject *parent)
{
IdeSearchEngine *self = (IdeSearchEngine *)object;
g_assert (IDE_IS_SEARCH_ENGINE (self));
g_assert (!parent || IDE_IS_OBJECT (parent));
if (parent == NULL)
{
g_clear_object (&self->extensions);
return;
}
self->extensions = ide_extension_set_adapter_new (parent,
peas_engine_get_default (),
IDE_TYPE_SEARCH_PROVIDER,
NULL, NULL);
g_signal_connect (self->extensions,
"extension-added",
G_CALLBACK (on_extension_added_cb),
self);
g_signal_connect (self->extensions,
"extension-removed",
G_CALLBACK (on_extension_removed_cb),
self);
ide_extension_set_adapter_foreach (self->extensions,
on_extension_added_cb,
self);
}
static void
ide_search_engine_destroy (IdeObject *object)
{
IdeSearchEngine *self = (IdeSearchEngine *)object;
g_clear_object (&self->extensions);
g_clear_pointer (&self->custom_provider, g_ptr_array_unref);
IDE_OBJECT_CLASS (ide_search_engine_parent_class)->destroy (object);
}
static void
ide_search_engine_get_property (GObject *object,
guint prop_id,
GValue *value,
GParamSpec *pspec)
{
IdeSearchEngine *self = IDE_SEARCH_ENGINE (object);
switch (prop_id)
{
case PROP_BUSY:
g_value_set_boolean (value, ide_search_engine_get_busy (self));
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
}
}
static void
ide_search_engine_class_init (IdeSearchEngineClass *klass)
{
GObjectClass *g_object_class = G_OBJECT_CLASS (klass);
IdeObjectClass *object_class = IDE_OBJECT_CLASS (klass);
g_object_class->get_property = ide_search_engine_get_property;
object_class->destroy = ide_search_engine_destroy;
object_class->parent_set = ide_search_engine_parent_set;
properties [PROP_BUSY] =
g_param_spec_boolean ("busy",
"Busy",
"If the search engine is busy",
FALSE,
(G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
g_object_class_install_properties (g_object_class, N_PROPS, properties);
}
static void
ide_search_engine_init (IdeSearchEngine *self)
{
self->custom_provider = g_ptr_array_new_with_free_func (g_object_unref);
}
IdeSearchEngine *
ide_search_engine_new (void)
{
return g_object_new (IDE_TYPE_SEARCH_ENGINE, NULL);
}
/**
* ide_search_engine_get_busy:
* @self: a #IdeSearchEngine
*
* Checks if the #IdeSearchEngine is currently executing a query.
*
* Returns: %TRUE if queries are being processed.
*
* Since: 3.32
*/
gboolean
ide_search_engine_get_busy (IdeSearchEngine *self)
{
g_return_val_if_fail (IDE_IS_SEARCH_ENGINE (self), FALSE);
return self->active_count > 0;
}
static void
ide_search_engine_search_cb (GObject *object,
GAsyncResult *result,
gpointer user_data)
{
IdeSearchProvider *provider = (IdeSearchProvider *)object;
g_autoptr(IdeTask) task = user_data;
g_autoptr(GError) error = NULL;
g_autoptr(GPtrArray) ar = NULL;
Request *r;
g_assert (IDE_IS_SEARCH_PROVIDER (provider));
g_assert (G_IS_ASYNC_RESULT (result));
g_assert (IDE_IS_TASK (task));
r = ide_task_get_task_data (task);
g_assert (r != NULL);
g_assert (r->task == task);
g_assert (r->outstanding > 0);
g_assert (G_IS_LIST_STORE (r->store));
ar = ide_search_provider_search_finish (provider, result, &error);
IDE_PTR_ARRAY_SET_FREE_FUNC (ar, g_object_unref);
if (error != NULL)
{
if (!g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED) &&
!g_error_matches (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED))
g_warning ("%s", error->message);
goto cleanup;
}
for (guint i = 0; i < ar->len; i++)
{
IdeSearchResult *item = g_ptr_array_index (ar, i);
g_assert (IDE_IS_SEARCH_RESULT (item));
g_list_store_insert_sorted (r->store,
item,
(GCompareDataFunc)ide_search_result_compare,
NULL);
}
cleanup:
r->outstanding--;
if (r->outstanding == 0)
ide_task_return_pointer (task, g_steal_pointer (&r->store), g_object_unref);
}
static void
_provider_search_async (IdeSearchProvider *provider,
Request *request)
{
g_assert (IDE_IS_SEARCH_PROVIDER (provider));
g_assert (request != NULL);
g_assert (IDE_IS_TASK (request->task));
g_assert (G_IS_LIST_STORE (request->store));
request->outstanding++;
ide_search_provider_search_async (provider,
request->query,
request->max_results,
ide_task_get_cancellable (request->task),
ide_search_engine_search_cb,
g_object_ref (request->task));
}
static void
ide_search_engine_search_foreach (IdeExtensionSetAdapter *set,
PeasPluginInfo *plugin_info,
PeasExtension *exten,
gpointer user_data)
{
IdeSearchProvider *provider = (IdeSearchProvider *)exten;
Request *r = user_data;
g_assert (IDE_IS_EXTENSION_SET_ADAPTER (set));
g_assert (plugin_info != NULL);
g_assert (IDE_IS_SEARCH_PROVIDER (provider));
g_assert (r != NULL);
g_assert (IDE_IS_TASK (r->task));
g_assert (G_IS_LIST_STORE (r->store));
_provider_search_async (provider, r);
}
static void
ide_search_engine_search_foreach_custom_provider (gpointer data,
gpointer user_data)
{
IdeSearchProvider *provider = (IdeSearchProvider *)data;
Request *r = user_data;
g_assert (IDE_IS_SEARCH_PROVIDER (provider));
g_assert (r != NULL);
g_assert (IDE_IS_TASK (r->task));
g_assert (G_IS_LIST_STORE (r->store));
_provider_search_async (provider, r);
}
void
ide_search_engine_search_async (IdeSearchEngine *self,
const gchar *query,
guint max_results,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data)
{
g_autoptr(IdeTask) task = NULL;
Request *r;
g_return_if_fail (IDE_IS_SEARCH_ENGINE (self));
g_return_if_fail (query != NULL);
g_return_if_fail (!cancellable || G_IS_CANCELLABLE (cancellable));
max_results = max_results ? max_results : DEFAULT_MAX_RESULTS;
task = ide_task_new (self, cancellable, callback, user_data);
ide_task_set_source_tag (task, ide_search_engine_search_async);
ide_task_set_priority (task, G_PRIORITY_LOW);
r = request_new ();
r->query = g_strdup (query);
r->max_results = max_results;
r->task = task;
r->store = g_list_store_new (IDE_TYPE_SEARCH_RESULT);
r->outstanding = 0;
ide_task_set_task_data (task, r, request_destroy);
ide_extension_set_adapter_foreach (self->extensions,
ide_search_engine_search_foreach,
r);
g_ptr_array_foreach (self->custom_provider,
ide_search_engine_search_foreach_custom_provider,
r);
self->active_count += r->outstanding;
if (r->outstanding == 0)
ide_task_return_pointer (task,
g_object_ref (r->store),
g_object_unref);
g_object_notify_by_pspec (G_OBJECT (self), properties [PROP_BUSY]);
}
/**
* ide_search_engine_search_finish:
* @self: a #IdeSearchEngine
* @result: a #GAsyncResult
* @error: a location for a #GError, or %NULL
*
* Completes an asynchronous request to ide_search_engine_search_async().
*
* The result is a #GListModel of #IdeSearchResult when successful.
*
* Returns: (transfer full): a #GListModel of #IdeSearchResult items.
*
* Since: 3.32
*/
GListModel *
ide_search_engine_search_finish (IdeSearchEngine *self,
GAsyncResult *result,
GError **error)
{
g_return_val_if_fail (IDE_IS_SEARCH_ENGINE (self), NULL);
g_return_val_if_fail (IDE_IS_TASK (result), NULL);
return ide_task_propagate_pointer (IDE_TASK (result), error);
}
/**
* ide_search_engine_add_provider:
* @self: a #IdeSearchEngine
* @provider: a #IdeSearchProvider
*
* Adds a custom search provider to the #IdeSearchEngine. This enables
* to bring in custom #IdeSearchProvider during the runtime.
*
* Since: 3.38
*/
void
ide_search_engine_add_provider (IdeSearchEngine *self,
IdeSearchProvider *provider)
{
g_return_if_fail (IDE_IS_SEARCH_ENGINE (self));
g_return_if_fail (IDE_IS_SEARCH_PROVIDER (provider));
g_ptr_array_add (self->custom_provider, g_object_ref (provider));
}
/**
* ide_search_engine_remove_provider:
* @self: a #IdeSearchEngine
* @provider: a #IdeSearchProvider
*
* Remove a custom search provider from the #IdeSearchEngine. This removes
* custom #IdeSearchProvider during the runtime.
*
* Since: 3.38
*/
void
ide_search_engine_remove_provider (IdeSearchEngine *self,
IdeSearchProvider *provider)
{
g_return_if_fail (IDE_IS_SEARCH_ENGINE (self));
g_return_if_fail (IDE_IS_SEARCH_PROVIDER (provider));
g_ptr_array_remove (self->custom_provider, provider);
}