common: Add support for a backend-specific serno call.

(Nothing uses it just yet)
This commit is contained in:
Solomon Peachy 2013-07-24 13:49:06 -04:00
parent d01cb80428
commit b7851a3df1
2 changed files with 8 additions and 4 deletions

View file

@ -27,7 +27,7 @@
#include "backend_common.h"
#define BACKEND_VERSION "0.15"
#define BACKEND_VERSION "0.16"
#ifndef URI_PREFIX
#define URI_PREFIX "gutenprint+usb"
#endif
@ -132,7 +132,8 @@ static int print_scan_output(struct libusb_device *device,
struct libusb_device_descriptor *desc,
char *prefix, char *manuf2,
int found, int match,
int scan_only, char *match_serno)
int scan_only, char *match_serno,
struct dyesub_backend *backend)
{
struct libusb_device_handle *dev;
@ -158,6 +159,8 @@ static int print_scan_output(struct libusb_device *device,
if (desc->iSerialNumber) {
libusb_get_string_descriptor_ascii(dev, desc->iSerialNumber, serial, STR_LEN_MAX);
sanitize_string((char*)serial);
} else if (backend->query_serno) {
backend->query_serno(dev, (char*)serial, STR_LEN_MAX);
}
if (!strlen((char*)serial)) {
@ -277,7 +280,8 @@ static int find_and_enumerate(struct libusb_context *ctx,
found = print_scan_output((*list)[i], &desc,
URI_PREFIX, backends[k]->devices[j].manuf_str,
found, (found == i),
scan_only, match_serno);
scan_only, match_serno,
backends[k]);
}
return found;

View file

@ -115,7 +115,7 @@ struct dyesub_backend {
int (*early_parse)(void *ctx, int data_fd);
int (*read_parse)(void *ctx, int data_fd);
int (*main_loop)(void *ctx, int copies);
int (*query_serno)(struct libusb_device_handle *dev, char *buf, int buf_len);
struct device_id devices[];
};