/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- * * Copyright (C) 2007-2008 Richard Hughes * * Licensed under the GNU General Public License Version 2 * * 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 2 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, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include #include #include #include #include static PkBackendSpawn *spawn; const gchar * pk_backend_get_description (PkBackend *backend) { return g_strdup ("Test-Spawn"); } void pk_backend_start_job (PkBackend *backend, PkBackendJob *job) { if (pk_backend_spawn_is_busy (spawn)) { pk_backend_job_error_code (job, PK_ERROR_ENUM_LOCK_REQUIRED, "spawned backend requires lock"); return; } } void pk_backend_search_names (PkBackend *backend, PkBackendJob *job, PkBitfield filters, gchar **values) { gchar *filters_text; gchar *search; pk_backend_job_set_allow_cancel (job, TRUE); pk_backend_job_set_percentage (job, PK_BACKEND_PERCENTAGE_INVALID); filters_text = pk_filter_bitfield_to_string (filters); search = g_strjoinv ("&", values); pk_backend_spawn_helper (spawn, job, "search-name.sh", filters_text, search, NULL); g_free (filters_text); g_free (search); } void pk_backend_initialize (GKeyFile *conf, PkBackend *backend) { g_debug ("backend: initialize"); spawn = pk_backend_spawn_new (conf); pk_backend_spawn_set_name (spawn, "test"); } void pk_backend_destroy (PkBackend *backend) { g_debug ("backend: destroy"); g_object_unref (spawn); }