2016-06-20 13:56:35 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2016 Red Hat, Inc
|
|
|
|
*
|
|
|
|
* 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* Authors: Martin Hatina <mhatina@redhat.com>
|
|
|
|
* Marek Kasik <mkasik@redhat.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "pp-printer.h"
|
|
|
|
|
2017-02-28 12:48:11 +01:00
|
|
|
#include "pp-job.h"
|
2016-06-20 13:56:35 +02:00
|
|
|
|
2017-10-24 11:53:28 +02:00
|
|
|
#if (CUPS_VERSION_MAJOR == 1) && (CUPS_VERSION_MINOR <= 6)
|
|
|
|
#define IPP_STATE_IDLE IPP_IDLE
|
|
|
|
#endif
|
|
|
|
|
2016-06-20 13:56:35 +02:00
|
|
|
struct _PpPrinter
|
|
|
|
{
|
2018-06-15 14:13:15 +12:00
|
|
|
GObject parent_instance;
|
|
|
|
gchar *printer_name;
|
2016-06-20 13:56:35 +02:00
|
|
|
};
|
|
|
|
|
2018-06-15 14:13:15 +12:00
|
|
|
G_DEFINE_TYPE (PpPrinter, pp_printer, G_TYPE_OBJECT)
|
2016-06-20 13:56:35 +02:00
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0 = 0,
|
|
|
|
PROP_NAME
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
pp_printer_dispose (GObject *object)
|
|
|
|
{
|
2018-06-15 14:13:15 +12:00
|
|
|
PpPrinter *self = PP_PRINTER (object);
|
2016-06-20 13:56:35 +02:00
|
|
|
|
2018-12-06 09:28:35 +13:00
|
|
|
g_clear_pointer (&self->printer_name, g_free);
|
2016-06-20 13:56:35 +02:00
|
|
|
|
|
|
|
G_OBJECT_CLASS (pp_printer_parent_class)->dispose (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
pp_printer_finalize (GObject *object)
|
|
|
|
{
|
|
|
|
G_OBJECT_CLASS (pp_printer_parent_class)->finalize (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
pp_printer_get_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
PpPrinter *self = PP_PRINTER (object);
|
|
|
|
|
|
|
|
switch (property_id)
|
|
|
|
{
|
|
|
|
case PROP_NAME:
|
2018-06-15 14:13:15 +12:00
|
|
|
g_value_set_string (value, self->printer_name);
|
2016-06-20 13:56:35 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
pp_printer_set_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
PpPrinter *self = PP_PRINTER (object);
|
|
|
|
|
|
|
|
switch (property_id)
|
|
|
|
{
|
|
|
|
case PROP_NAME:
|
2018-06-15 14:13:15 +12:00
|
|
|
g_free (self->printer_name);
|
|
|
|
self->printer_name = g_value_dup_string (value);
|
2016-06-20 13:56:35 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
pp_printer_class_init (PpPrinterClass *klass)
|
|
|
|
{
|
|
|
|
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
|
|
|
|
|
|
|
|
gobject_class->set_property = pp_printer_set_property;
|
|
|
|
gobject_class->get_property = pp_printer_get_property;
|
|
|
|
gobject_class->dispose = pp_printer_dispose;
|
|
|
|
gobject_class->finalize = pp_printer_finalize;
|
|
|
|
|
|
|
|
g_object_class_install_property (gobject_class, PROP_NAME,
|
|
|
|
g_param_spec_string ("printer-name",
|
|
|
|
"Printer name",
|
|
|
|
"Name of this printer",
|
|
|
|
NULL,
|
|
|
|
G_PARAM_READWRITE));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
pp_printer_init (PpPrinter *printer)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
PpPrinter *
|
|
|
|
pp_printer_new (const gchar *name)
|
|
|
|
{
|
|
|
|
PpPrinter *self = g_object_new (PP_TYPE_PRINTER, "printer-name", name, NULL);
|
|
|
|
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
printer_rename_thread (GTask *task,
|
|
|
|
gpointer source_object,
|
|
|
|
gpointer task_data,
|
|
|
|
GCancellable *cancellable)
|
|
|
|
{
|
|
|
|
PpPrinter *printer = PP_PRINTER (source_object);
|
|
|
|
gboolean result;
|
|
|
|
gchar *new_printer_name = task_data;
|
|
|
|
gchar *old_printer_name;
|
|
|
|
|
|
|
|
g_object_get (printer, "printer-name", &old_printer_name, NULL);
|
|
|
|
|
|
|
|
result = printer_rename (old_printer_name, new_printer_name);
|
|
|
|
|
|
|
|
if (result)
|
|
|
|
{
|
|
|
|
g_object_set (printer, "printer-name", new_printer_name, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_free (old_printer_name);
|
|
|
|
|
|
|
|
g_task_return_boolean (task, result);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
printer_rename_dbus_cb (GObject *source_object,
|
|
|
|
GAsyncResult *res,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
2018-06-26 10:40:43 +12:00
|
|
|
PpPrinter *printer;
|
|
|
|
GVariant *output;
|
|
|
|
gboolean result = FALSE;
|
|
|
|
g_autoptr(GError) error = NULL;
|
|
|
|
GTask *task = user_data;
|
|
|
|
gchar *old_printer_name;
|
2016-06-20 13:56:35 +02:00
|
|
|
|
|
|
|
output = g_dbus_connection_call_finish (G_DBUS_CONNECTION (source_object),
|
|
|
|
res,
|
|
|
|
&error);
|
|
|
|
g_object_unref (source_object);
|
|
|
|
|
|
|
|
if (output != NULL)
|
|
|
|
{
|
|
|
|
const gchar *ret_error;
|
|
|
|
|
|
|
|
printer = g_task_get_source_object (task);
|
|
|
|
g_object_get (printer, "printer-name", &old_printer_name, NULL);
|
|
|
|
|
|
|
|
g_variant_get (output, "(&s)", &ret_error);
|
|
|
|
if (ret_error[0] != '\0')
|
|
|
|
{
|
|
|
|
g_warning ("cups-pk-helper: renaming of printer %s failed: %s", old_printer_name, ret_error);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
result = TRUE;
|
|
|
|
g_object_set (printer, "printer-name", g_task_get_task_data (task), NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_task_return_boolean (task, result);
|
|
|
|
|
|
|
|
g_free (old_printer_name);
|
|
|
|
g_variant_unref (output);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (error->domain == G_DBUS_ERROR &&
|
|
|
|
(error->code == G_DBUS_ERROR_SERVICE_UNKNOWN ||
|
|
|
|
error->code == G_DBUS_ERROR_UNKNOWN_METHOD))
|
|
|
|
{
|
|
|
|
g_warning ("Update cups-pk-helper to at least 0.2.6 please to be able to use PrinterRename method.");
|
|
|
|
|
|
|
|
g_task_run_in_thread (task, printer_rename_thread);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g_task_return_boolean (task, FALSE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
get_bus_cb (GObject *source_object,
|
|
|
|
GAsyncResult *res,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
2018-06-26 10:40:43 +12:00
|
|
|
GDBusConnection *bus;
|
|
|
|
g_autoptr(GError) error = NULL;
|
|
|
|
GTask *task = user_data;
|
|
|
|
gchar *printer_name;
|
2016-06-20 13:56:35 +02:00
|
|
|
|
|
|
|
bus = g_bus_get_finish (res, &error);
|
|
|
|
if (bus != NULL)
|
|
|
|
{
|
|
|
|
g_object_get (g_task_get_source_object (task),
|
|
|
|
"printer-name", &printer_name,
|
|
|
|
NULL);
|
|
|
|
g_dbus_connection_call (bus,
|
|
|
|
MECHANISM_BUS,
|
|
|
|
"/",
|
|
|
|
MECHANISM_BUS,
|
|
|
|
"PrinterRename",
|
|
|
|
g_variant_new ("(ss)",
|
|
|
|
printer_name,
|
|
|
|
g_task_get_task_data (task)),
|
|
|
|
G_VARIANT_TYPE ("(s)"),
|
|
|
|
G_DBUS_CALL_FLAGS_NONE,
|
|
|
|
-1,
|
|
|
|
g_task_get_cancellable (task),
|
|
|
|
printer_rename_dbus_cb,
|
|
|
|
task);
|
|
|
|
|
|
|
|
g_free (printer_name);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g_warning ("Failed to get system bus: %s", error->message);
|
|
|
|
g_task_return_boolean (task, FALSE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
pp_printer_rename_async (PpPrinter *printer,
|
|
|
|
const gchar *new_printer_name,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
GTask *task;
|
|
|
|
|
2017-02-15 15:15:50 +01:00
|
|
|
g_return_if_fail (new_printer_name != NULL);
|
|
|
|
|
2016-06-20 13:56:35 +02:00
|
|
|
task = g_task_new (G_OBJECT (printer), cancellable, callback, user_data);
|
|
|
|
g_task_set_task_data (task, g_strdup (new_printer_name), g_free);
|
|
|
|
|
|
|
|
g_bus_get (G_BUS_TYPE_SYSTEM,
|
|
|
|
cancellable,
|
|
|
|
get_bus_cb,
|
|
|
|
task);
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
pp_printer_rename_finish (PpPrinter *printer,
|
|
|
|
GAsyncResult *res,
|
|
|
|
GError **error)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (g_task_is_valid (res, printer), FALSE);
|
|
|
|
g_object_unref (res);
|
|
|
|
|
|
|
|
return g_task_propagate_boolean (G_TASK (res), error);
|
|
|
|
}
|
2017-02-28 12:48:11 +01:00
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
gboolean myjobs;
|
|
|
|
gint which_jobs;
|
|
|
|
} GetJobsData;
|
|
|
|
|
|
|
|
static void
|
|
|
|
get_jobs_thread (GTask *task,
|
|
|
|
gpointer source_object,
|
|
|
|
gpointer task_data,
|
|
|
|
GCancellable *cancellable)
|
|
|
|
{
|
2018-02-16 16:32:01 +01:00
|
|
|
ipp_attribute_t *attr = NULL;
|
|
|
|
static gchar *printer_attributes[] = { "auth-info-required" };
|
|
|
|
GetJobsData *get_jobs_data = task_data;
|
|
|
|
cups_job_t *jobs = NULL;
|
|
|
|
PpPrinter *printer = PP_PRINTER (source_object);
|
|
|
|
gboolean auth_info_is_required;
|
|
|
|
PpJob *job;
|
|
|
|
ipp_t *job_request;
|
|
|
|
ipp_t *job_response;
|
|
|
|
ipp_t *printer_request;
|
|
|
|
ipp_t *printer_response;
|
|
|
|
gchar *job_uri;
|
|
|
|
gchar *printer_uri;
|
|
|
|
gchar **auth_info_required = NULL;
|
|
|
|
gchar *printer_name;
|
|
|
|
GList *list = NULL;
|
|
|
|
gint num_jobs;
|
|
|
|
gint i, j;
|
2017-02-28 12:48:11 +01:00
|
|
|
|
|
|
|
g_object_get (printer, "printer-name", &printer_name, NULL);
|
|
|
|
|
|
|
|
num_jobs = cupsGetJobs (&jobs,
|
|
|
|
printer_name,
|
|
|
|
get_jobs_data->myjobs ? 1 : 0,
|
|
|
|
get_jobs_data->which_jobs);
|
|
|
|
|
|
|
|
for (i = 0; i < num_jobs; i++)
|
|
|
|
{
|
2018-02-16 16:32:01 +01:00
|
|
|
auth_info_is_required = FALSE;
|
|
|
|
if (jobs[i].state == IPP_JOB_HELD)
|
|
|
|
{
|
|
|
|
job_uri = g_strdup_printf ("ipp://localhost/jobs/%d", jobs[i].id);
|
|
|
|
|
|
|
|
job_request = ippNewRequest (IPP_GET_JOB_ATTRIBUTES);
|
|
|
|
ippAddString (job_request, IPP_TAG_OPERATION, IPP_TAG_URI,
|
|
|
|
"job-uri", NULL, job_uri);
|
|
|
|
ippAddString (job_request, IPP_TAG_OPERATION, IPP_TAG_NAME,
|
|
|
|
"requesting-user-name", NULL, cupsUser ());
|
|
|
|
ippAddString (job_request, IPP_TAG_OPERATION, IPP_TAG_KEYWORD,
|
|
|
|
"requested-attributes", NULL, "job-hold-until");
|
|
|
|
job_response = cupsDoRequest (CUPS_HTTP_DEFAULT, job_request, "/");
|
|
|
|
|
|
|
|
g_free (job_uri);
|
|
|
|
|
|
|
|
if (job_response != NULL)
|
|
|
|
{
|
|
|
|
attr = ippFindAttribute (job_response, "job-hold-until", IPP_TAG_ZERO);
|
|
|
|
if (attr != NULL && g_strcmp0 (ippGetString (attr, 0, NULL), "auth-info-required") == 0)
|
|
|
|
{
|
|
|
|
auth_info_is_required = TRUE;
|
|
|
|
|
|
|
|
if (auth_info_required == NULL)
|
|
|
|
{
|
|
|
|
printer_uri = g_strdup_printf ("ipp://localhost/printers/%s", printer_name);
|
|
|
|
|
|
|
|
printer_request = ippNewRequest (IPP_GET_PRINTER_ATTRIBUTES);
|
|
|
|
ippAddString (printer_request, IPP_TAG_OPERATION, IPP_TAG_URI,
|
|
|
|
"printer-uri", NULL, printer_uri);
|
|
|
|
ippAddString (printer_request, IPP_TAG_OPERATION, IPP_TAG_NAME,
|
|
|
|
"requesting-user-name", NULL, cupsUser ());
|
|
|
|
ippAddStrings (printer_request, IPP_TAG_OPERATION, IPP_TAG_KEYWORD,
|
|
|
|
"requested-attributes", 1, NULL, (const char **) printer_attributes);
|
|
|
|
printer_response = cupsDoRequest (CUPS_HTTP_DEFAULT, printer_request, "/");
|
|
|
|
|
|
|
|
g_free (printer_uri);
|
|
|
|
|
|
|
|
if (printer_response != NULL)
|
|
|
|
{
|
|
|
|
attr = ippFindAttribute (printer_response, "auth-info-required", IPP_TAG_ZERO);
|
|
|
|
if (attr != NULL)
|
|
|
|
{
|
|
|
|
auth_info_required = g_new0 (gchar *, ippGetCount (attr) + 1);
|
|
|
|
for (j = 0; j < ippGetCount (attr); j++)
|
|
|
|
auth_info_required[j] = g_strdup (ippGetString (attr, j, NULL));
|
|
|
|
}
|
|
|
|
|
|
|
|
ippDelete (printer_response);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ippDelete (job_response);
|
|
|
|
}
|
|
|
|
}
|
2017-02-28 12:48:11 +01:00
|
|
|
|
|
|
|
job = g_object_new (pp_job_get_type (),
|
|
|
|
"id", jobs[i].id,
|
|
|
|
"title", jobs[i].title,
|
|
|
|
"state", jobs[i].state,
|
2018-02-16 16:32:01 +01:00
|
|
|
"auth-info-required", auth_info_is_required ? auth_info_required : NULL,
|
2017-02-28 12:48:11 +01:00
|
|
|
NULL);
|
|
|
|
|
|
|
|
list = g_list_append (list, job);
|
|
|
|
}
|
2018-02-16 16:32:01 +01:00
|
|
|
|
|
|
|
g_strfreev (auth_info_required);
|
2017-02-28 12:48:11 +01:00
|
|
|
cupsFreeJobs (num_jobs, jobs);
|
2018-02-16 16:32:01 +01:00
|
|
|
g_free (printer_name);
|
2017-02-28 12:48:11 +01:00
|
|
|
|
|
|
|
if (g_task_set_return_on_cancel (task, FALSE))
|
|
|
|
{
|
|
|
|
g_task_return_pointer (task, list, (GDestroyNotify) g_list_free);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
pp_printer_get_jobs_async (PpPrinter *printer,
|
|
|
|
gboolean myjobs,
|
|
|
|
gint which_jobs,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
GetJobsData *get_jobs_data;
|
|
|
|
GTask *task;
|
|
|
|
|
|
|
|
get_jobs_data = g_new (GetJobsData, 1);
|
|
|
|
get_jobs_data->myjobs = myjobs;
|
|
|
|
get_jobs_data->which_jobs = which_jobs;
|
|
|
|
|
|
|
|
task = g_task_new (G_OBJECT (printer), cancellable, callback, user_data);
|
|
|
|
g_task_set_task_data (task, get_jobs_data, g_free);
|
|
|
|
g_task_set_return_on_cancel (task, TRUE);
|
|
|
|
g_task_run_in_thread (task, get_jobs_thread);
|
|
|
|
g_object_unref (task);
|
|
|
|
}
|
|
|
|
|
|
|
|
GList *
|
|
|
|
pp_printer_get_jobs_finish (PpPrinter *printer,
|
|
|
|
GAsyncResult *res,
|
|
|
|
GError **error)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (g_task_is_valid (res, printer), NULL);
|
|
|
|
|
|
|
|
return g_task_propagate_pointer (G_TASK (res), error);
|
|
|
|
}
|
2017-05-10 13:06:58 +02:00
|
|
|
|
|
|
|
static void
|
|
|
|
pp_printer_delete_dbus_cb (GObject *source_object,
|
|
|
|
GAsyncResult *res,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
2018-06-26 10:40:43 +12:00
|
|
|
GVariant *output;
|
|
|
|
gboolean result = FALSE;
|
|
|
|
g_autoptr(GError) error = NULL;
|
|
|
|
GTask *task = user_data;
|
|
|
|
gchar *printer_name;
|
2017-05-10 13:06:58 +02:00
|
|
|
|
|
|
|
output = g_dbus_connection_call_finish (G_DBUS_CONNECTION (source_object),
|
|
|
|
res,
|
|
|
|
&error);
|
|
|
|
g_object_unref (source_object);
|
|
|
|
|
|
|
|
if (output != NULL)
|
|
|
|
{
|
|
|
|
const gchar *ret_error;
|
|
|
|
|
|
|
|
g_object_get (g_task_get_source_object (task), "printer-name", &printer_name, NULL);
|
|
|
|
|
|
|
|
g_variant_get (output, "(&s)", &ret_error);
|
|
|
|
if (ret_error[0] != '\0')
|
|
|
|
g_warning ("cups-pk-helper: removing of printer %s failed: %s", printer_name, ret_error);
|
|
|
|
else
|
|
|
|
result = TRUE;
|
|
|
|
|
|
|
|
g_task_return_boolean (task, result);
|
|
|
|
|
|
|
|
g_free (printer_name);
|
|
|
|
g_variant_unref (output);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g_warning ("%s", error->message);
|
|
|
|
|
|
|
|
g_task_return_boolean (task, FALSE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
pp_printer_delete_cb (GObject *source_object,
|
|
|
|
GAsyncResult *res,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
2018-06-26 10:40:43 +12:00
|
|
|
GDBusConnection *bus;
|
|
|
|
g_autoptr(GError) error = NULL;
|
|
|
|
GTask *task = user_data;
|
|
|
|
gchar *printer_name;
|
2017-05-10 13:06:58 +02:00
|
|
|
|
|
|
|
bus = g_bus_get_finish (res, &error);
|
|
|
|
if (bus != NULL)
|
|
|
|
{
|
|
|
|
g_object_get (g_task_get_source_object (task),
|
|
|
|
"printer-name", &printer_name,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
g_dbus_connection_call (bus,
|
|
|
|
MECHANISM_BUS,
|
|
|
|
"/",
|
|
|
|
MECHANISM_BUS,
|
|
|
|
"PrinterDelete",
|
|
|
|
g_variant_new ("(s)", printer_name),
|
|
|
|
G_VARIANT_TYPE ("(s)"),
|
|
|
|
G_DBUS_CALL_FLAGS_NONE,
|
|
|
|
-1,
|
|
|
|
g_task_get_cancellable (task),
|
|
|
|
pp_printer_delete_dbus_cb,
|
|
|
|
task);
|
|
|
|
|
|
|
|
g_free (printer_name);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g_warning ("Failed to get system bus: %s", error->message);
|
|
|
|
g_task_return_boolean (task, FALSE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
pp_printer_delete_async (PpPrinter *printer,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
GTask *task;
|
|
|
|
|
|
|
|
task = g_task_new (G_OBJECT (printer), cancellable, callback, user_data);
|
|
|
|
|
|
|
|
g_bus_get (G_BUS_TYPE_SYSTEM,
|
|
|
|
cancellable,
|
|
|
|
pp_printer_delete_cb,
|
|
|
|
task);
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
pp_printer_delete_finish (PpPrinter *printer,
|
|
|
|
GAsyncResult *res,
|
|
|
|
GError **error)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (g_task_is_valid (res, printer), FALSE);
|
|
|
|
|
|
|
|
return g_task_propagate_boolean (G_TASK (res), error);
|
|
|
|
}
|
2017-05-31 13:50:30 +02:00
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
gchar *filename;
|
|
|
|
gchar *job_name;
|
|
|
|
} PrintFileData;
|
|
|
|
|
|
|
|
static void
|
|
|
|
print_file_data_free (PrintFileData *print_file_data)
|
|
|
|
{
|
|
|
|
g_free (print_file_data->filename);
|
|
|
|
g_free (print_file_data->job_name);
|
|
|
|
|
|
|
|
g_slice_free (PrintFileData, print_file_data);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
print_file_thread (GTask *task,
|
|
|
|
gpointer source_object,
|
|
|
|
gpointer task_data,
|
|
|
|
GCancellable *cancellable)
|
|
|
|
{
|
|
|
|
PrintFileData *print_file_data;
|
|
|
|
cups_ptype_t type = 0;
|
|
|
|
cups_dest_t *dest = NULL;
|
|
|
|
const gchar *printer_type = NULL;
|
|
|
|
PpPrinter *printer;
|
|
|
|
gboolean ret = FALSE;
|
|
|
|
gchar *printer_name = NULL;
|
|
|
|
gchar *printer_uri = NULL;
|
|
|
|
gchar *resource = NULL;
|
|
|
|
ipp_t *response = NULL;
|
|
|
|
ipp_t *request;
|
|
|
|
|
|
|
|
printer = PP_PRINTER (source_object);
|
|
|
|
|
|
|
|
g_object_get (printer, "printer-name", &printer_name, NULL);
|
|
|
|
dest = cupsGetNamedDest (CUPS_HTTP_DEFAULT, printer_name, NULL);
|
|
|
|
if (dest != NULL)
|
|
|
|
{
|
|
|
|
printer_type = cupsGetOption ("printer-type",
|
|
|
|
dest->num_options,
|
|
|
|
dest->options);
|
|
|
|
cupsFreeDests (1, dest);
|
|
|
|
|
|
|
|
if (printer_type)
|
|
|
|
type = atoi (printer_type);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (type & CUPS_PRINTER_CLASS)
|
|
|
|
{
|
|
|
|
printer_uri = g_strdup_printf ("ipp://localhost/classes/%s", printer_name);
|
|
|
|
resource = g_strdup_printf ("/classes/%s", printer_name);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
printer_uri = g_strdup_printf ("ipp://localhost/printers/%s", printer_name);
|
|
|
|
resource = g_strdup_printf ("/printers/%s", printer_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
print_file_data = g_task_get_task_data (task);
|
|
|
|
|
|
|
|
request = ippNewRequest (IPP_PRINT_JOB);
|
|
|
|
ippAddString (request, IPP_TAG_OPERATION, IPP_TAG_URI,
|
|
|
|
"printer-uri", NULL, printer_uri);
|
|
|
|
ippAddString (request, IPP_TAG_OPERATION, IPP_TAG_NAME,
|
|
|
|
"requesting-user-name", NULL, cupsUser ());
|
|
|
|
ippAddString (request, IPP_TAG_OPERATION, IPP_TAG_NAME,
|
|
|
|
"job-name", NULL, print_file_data->job_name);
|
|
|
|
response = cupsDoFileRequest (CUPS_HTTP_DEFAULT, request, resource, print_file_data->filename);
|
|
|
|
|
|
|
|
if (response != NULL)
|
|
|
|
{
|
|
|
|
if (ippGetState (response) == IPP_ERROR)
|
|
|
|
g_warning ("An error has occured during printing of test page.");
|
|
|
|
if (ippGetState (response) == IPP_STATE_IDLE)
|
|
|
|
ret = TRUE;
|
|
|
|
|
|
|
|
ippDelete (response);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_free (printer_name);
|
|
|
|
g_free (printer_uri);
|
|
|
|
g_free (resource);
|
|
|
|
|
|
|
|
if (g_task_set_return_on_cancel (task, FALSE))
|
|
|
|
{
|
|
|
|
g_task_return_boolean (task, ret);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
pp_printer_print_file_async (PpPrinter *printer,
|
|
|
|
const gchar *filename,
|
|
|
|
const gchar *job_name,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
PrintFileData *print_file_data;
|
|
|
|
GTask *task;
|
|
|
|
|
|
|
|
print_file_data = g_new (PrintFileData, 1);
|
|
|
|
print_file_data->filename = g_strdup (filename);
|
|
|
|
print_file_data->job_name = g_strdup (job_name);
|
|
|
|
|
|
|
|
task = g_task_new (G_OBJECT (printer), cancellable, callback, user_data);
|
|
|
|
|
|
|
|
g_task_set_return_on_cancel (task, TRUE);
|
|
|
|
g_task_set_task_data (task, print_file_data, (GDestroyNotify) print_file_data_free);
|
|
|
|
|
|
|
|
g_task_run_in_thread (task, print_file_thread);
|
|
|
|
g_object_unref (task);
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
pp_printer_print_file_finish (PpPrinter *printer,
|
|
|
|
GAsyncResult *res,
|
|
|
|
GError **error)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (g_task_is_valid (res, printer), FALSE);
|
|
|
|
|
|
|
|
return g_task_propagate_boolean (G_TASK (res), error);
|
|
|
|
}
|