hal/hald/linux2/probing Makefile.am, 1.3, 1.4 probe-printer.c, NONE,
1.1
David Zeuthen
david at freedesktop.org
Tue Feb 22 12:18:07 PST 2005
Update of /cvs/hal/hal/hald/linux2/probing
In directory gabe:/tmp/cvs-serv16831/hald/linux2/probing
Modified Files:
Makefile.am
Added Files:
probe-printer.c
Log Message:
2005-02-22 David Zeuthen <davidz at redhat.com>
* hald/linux2/probing/probe-printer.c: New file
* hald/linux2/probing/Makefile.am: Add build rules for
hald-probe-printer
* hald/linux2/classdev.c (usbclass_add, usbclass_get_prober)
(usbclass_compute_udi): Add support for USB printers
Index: Makefile.am
===================================================================
RCS file: /cvs/hal/hal/hald/linux2/probing/Makefile.am,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- Makefile.am 10 Feb 2005 17:03:57 -0000 1.3
+++ Makefile.am 22 Feb 2005 20:18:04 -0000 1.4
@@ -8,7 +8,11 @@
-I$(top_srcdir) \
@PACKAGE_CFLAGS@
-libexec_PROGRAMS = hald-probe-input hald-probe-hiddev hald-probe-storage hald-probe-volume
+libexec_PROGRAMS = hald-probe-input hald-probe-hiddev hald-probe-storage hald-probe-volume hald-probe-printer
+
+hald_probe_printer_SOURCES = probe-printer.c
+hald_probe_printer_LDADD = $(top_builddir)/libhal/libhal.la @PACKAGE_LIBS@
+#TODO : get rid of glib in hald_probe_printer
hald_probe_input_SOURCES = probe-input.c
hald_probe_input_LDADD = $(top_builddir)/libhal/libhal.la
--- NEW FILE: probe-printer.c ---
/***************************************************************************
* CVSID: $Id: probe-printer.c,v 1.1 2005/02/22 20:18:04 david Exp $
*
* Copyright (C) 2005 David Zeuthen, <david at fubar.dk>
*
* Licensed under the Academic Free License version 2.0
*
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
**************************************************************************/
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <errno.h>
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include <sys/ioctl.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <asm/types.h>
#include <fcntl.h>
#include <unistd.h>
#include <glib.h>
#include "libhal/libhal.h"
#include "shared.h"
/* Stolen from kernel 2.6.4, drivers/usb/class/usblp.c */
#define IOCNR_GET_DEVICE_ID 1
#define LPIOC_GET_DEVICE_ID(len) _IOC(_IOC_READ, 'P', IOCNR_GET_DEVICE_ID, len)
int
main (int argc, char *argv[])
{
int fd;
int ret;
char *udi;
char *device_file;
LibHalContext *ctx = NULL;
DBusError error;
DBusConnection *conn;
unsigned int i;
char device_id[1024];
char **props;
char **iter;
char *mfg;
char *model;
char *serial;
char *desc;
fd = -1;
/* assume failure */
ret = 1;
udi = getenv ("UDI");
if (udi == NULL)
goto out;
dbus_error_init (&error);
if ((conn = dbus_bus_get (DBUS_BUS_SYSTEM, &error)) == NULL)
goto out;
if ((ctx = libhal_ctx_new ()) == NULL)
goto out;
if (!libhal_ctx_set_dbus_connection (ctx, conn))
goto out;
if (!libhal_ctx_init (ctx, &error))
goto out;
if ((getenv ("HALD_VERBOSE")) != NULL)
is_verbose = TRUE;
device_file = getenv ("HAL_PROP_PRINTER_DEVICE");
if (device_file == NULL)
goto out;
fd = open (device_file, O_RDONLY);
if (fd < 0) {
dbg ("Cannot open %s", device_file);
goto out;
}
if (ioctl (fd, LPIOC_GET_DEVICE_ID (sizeof (device_id)), device_id) < 0) {
dbg ("Cannot do LPIOC_GET_DEVICE_ID on %s", device_file);
goto out;
} else
mfg = NULL;
model = NULL;
serial = NULL;
desc = NULL;
dbg ("device_id = %s", device_id + 2);
props = g_strsplit (device_id+2, ";", 0);
for (iter = props; *iter != NULL; iter++) {
if (strncmp (*iter, "MANUFACTURER:", 13) == 0)
mfg = *iter + 13;
else if (strncmp (*iter, "MFG:", 4) == 0)
mfg = *iter + 4;
else if (strncmp (*iter, "MODEL:", 6) == 0)
model = *iter + 6;
else if (strncmp (*iter, "MDL:", 4) == 0)
model = *iter + 4;
else if (strncmp (*iter, "SN:", 3) == 0)
serial = *iter + 3;
else if (strncmp (*iter, "SERN:", 5) == 0)
serial = *iter + 5;
else if (strncmp (*iter, "SERIALNUMBER:", 13) == 0)
serial = *iter + 13;
else if (strncmp (*iter, "DES:", 4) == 0)
desc = *iter + 4;
else if (strncmp (*iter, "DESCRIPTION:", 12) == 0)
desc = *iter + 12;
}
dbus_error_init (&error);
if (mfg != NULL) {
libhal_device_set_property_string (ctx, udi, "info.vendor", mfg, &error);
libhal_device_set_property_string (ctx, udi, "printer.vendor", mfg, &error);
}
if (model != NULL) {
libhal_device_set_property_string (ctx, udi, "info.product", model, &error);
libhal_device_set_property_string (ctx, udi, "printer.product", model, &error);
}
if (serial != NULL)
libhal_device_set_property_string (ctx, udi, "printer.serial", serial, &error);
if (desc != NULL) {
libhal_device_set_property_string (ctx, udi, "printer.description", desc, &error);
}
g_strfreev (props);
ret = 0;
out:
if (fd >= 0)
close (fd);
if (ctx != NULL) {
dbus_error_init (&error);
libhal_ctx_shutdown (ctx, &error);
libhal_ctx_free (ctx);
}
return ret;
}
More information about the hal-commit
mailing list