Merge branch 'genesys-fix-test-mode' into 'master'

genesys: Fix test mode

See merge request sane-project/backends!398
merge-requests/213/head^2
Povilas Kanapickas 2020-04-11 12:37:30 +00:00
commit 13f943ec12
3 zmienionych plików z 41 dodań i 19 usunięć

Wyświetl plik

@ -4788,22 +4788,24 @@ const UsbDeviceEntry& get_matching_usb_dev(std::uint16_t vendor_id, std::uint16_
} }
static Genesys_Device* attach_usb_device(const char* devname, static Genesys_Device* attach_usb_device(const char* devname,
std::uint16_t vendor_id, std::uint16_t product_id) std::uint16_t vendor_id, std::uint16_t product_id,
std::uint16_t bcd_device)
{ {
// verify that there's at least one entry for this vendor and product ids. We will check const auto& usb_dev = get_matching_usb_dev(vendor_id, product_id, bcd_device);
// bcdDevice in open().
get_matching_usb_dev(vendor_id, product_id, UsbDeviceEntry::BCD_DEVICE_NOT_SET);
s_devices->emplace_back(); s_devices->emplace_back();
Genesys_Device* dev = &s_devices->back(); Genesys_Device* dev = &s_devices->back();
dev->file_name = devname; dev->file_name = devname;
dev->vendorId = vendor_id; dev->vendorId = vendor_id;
dev->productId = product_id; dev->productId = product_id;
dev->model = &usb_dev.model();
dev->usb_mode = 0; // i.e. unset dev->usb_mode = 0; // i.e. unset
dev->already_initialized = false; dev->already_initialized = false;
return dev; return dev;
} }
static bool s_attach_device_by_name_evaluate_bcd_device = false;
static Genesys_Device* attach_device_by_name(SANE_String_Const devname, bool may_wait) static Genesys_Device* attach_device_by_name(SANE_String_Const devname, bool may_wait)
{ {
DBG_HELPER_ARGS(dbg, " devname: %s, may_wait = %d", devname, may_wait); DBG_HELPER_ARGS(dbg, " devname: %s, may_wait = %d", devname, may_wait);
@ -4828,6 +4830,12 @@ static Genesys_Device* attach_device_by_name(SANE_String_Const devname, bool may
auto vendor_id = usb_dev.get_vendor_id(); auto vendor_id = usb_dev.get_vendor_id();
auto product_id = usb_dev.get_product_id(); auto product_id = usb_dev.get_product_id();
auto bcd_device = UsbDeviceEntry::BCD_DEVICE_NOT_SET;
if (s_attach_device_by_name_evaluate_bcd_device) {
// when the device is already known before scanning, we don't want to call get_bcd_device()
// when iterating devices, as that will interfere with record/replay during testing.
bcd_device = usb_dev.get_bcd_device();
}
usb_dev.close(); usb_dev.close();
/* KV-SS080 is an auxiliary device which requires a master device to be here */ /* KV-SS080 is an auxiliary device which requires a master device to be here */
@ -4841,7 +4849,7 @@ static Genesys_Device* attach_device_by_name(SANE_String_Const devname, bool may
} }
} }
Genesys_Device* dev = attach_usb_device(devname, vendor_id, product_id); Genesys_Device* dev = attach_usb_device(devname, vendor_id, product_id, bcd_device);
DBG(DBG_info, "%s: found %u flatbed scanner %u at %s\n", __func__, vendor_id, product_id, DBG(DBG_info, "%s: found %u flatbed scanner %u at %s\n", __func__, vendor_id, product_id,
dev->file_name.c_str()); dev->file_name.c_str());
@ -4879,7 +4887,8 @@ static void probe_genesys_devices()
DBG_HELPER(dbg); DBG_HELPER(dbg);
if (is_testing_mode()) { if (is_testing_mode()) {
attach_usb_device(get_testing_device_name().c_str(), attach_usb_device(get_testing_device_name().c_str(),
get_testing_vendor_id(), get_testing_product_id()); get_testing_vendor_id(), get_testing_product_id(),
get_testing_bcd_device());
return; return;
} }
@ -5129,6 +5138,7 @@ void sane_init_impl(SANE_Int * version_code, SANE_Auth_Callback authorize)
); );
// cold-plug case :detection of allready connected scanners // cold-plug case :detection of allready connected scanners
s_attach_device_by_name_evaluate_bcd_device = false;
probe_genesys_devices(); probe_genesys_devices();
} }
@ -5168,6 +5178,7 @@ void sane_get_devices_impl(const SANE_Device *** device_list, SANE_Bool local_on
// hot-plug case : detection of newly connected scanners */ // hot-plug case : detection of newly connected scanners */
sanei_usb_scan_devices(); sanei_usb_scan_devices();
} }
s_attach_device_by_name_evaluate_bcd_device = true;
probe_genesys_devices(); probe_genesys_devices();
s_sane_devices->clear(); s_sane_devices->clear();
@ -5256,22 +5267,31 @@ static void sane_open_impl(SANE_String_Const devicename, SANE_Handle * handle)
throw SaneException("could not find the device to open: %s", devicename); throw SaneException("could not find the device to open: %s", devicename);
} }
dbg.vstatus("open device '%s'", dev->file_name.c_str());
if (is_testing_mode()) { if (is_testing_mode()) {
auto interface = std::unique_ptr<TestScannerInterface>{new TestScannerInterface{dev}}; // during testing w
auto vendor_id = get_testing_vendor_id();
auto product_id = get_testing_product_id();
auto bcd_device = get_testing_bcd_device();
dev->model = &get_matching_usb_dev(vendor_id, product_id, bcd_device).model();
auto interface = std::unique_ptr<TestScannerInterface>{
new TestScannerInterface{dev, vendor_id, product_id, bcd_device}};
interface->set_checkpoint_callback(get_testing_checkpoint_callback()); interface->set_checkpoint_callback(get_testing_checkpoint_callback());
dev->interface = std::move(interface); dev->interface = std::move(interface);
dev->interface->get_usb_device().open(dev->file_name.c_str());
} else { } else {
dev->interface = std::unique_ptr<ScannerInterfaceUsb>{new ScannerInterfaceUsb{dev}}; dev->interface = std::unique_ptr<ScannerInterfaceUsb>{new ScannerInterfaceUsb{dev}};
}
dbg.vstatus("open device '%s'", dev->file_name.c_str());
dev->interface->get_usb_device().open(dev->file_name.c_str()); dev->interface->get_usb_device().open(dev->file_name.c_str());
dbg.clear(); dbg.clear();
auto bcd_device = dev->interface->get_usb_device().get_bcd_device(); auto bcd_device = dev->interface->get_usb_device().get_bcd_device();
const auto& usb_dev = get_matching_usb_dev(dev->vendorId, dev->productId, bcd_device);
dev->model = &usb_dev.model(); dev->model = &get_matching_usb_dev(dev->vendorId, dev->productId, bcd_device).model();
}
dbg.vlog(DBG_info, "Opened device %s", dev->model->name); dbg.vlog(DBG_info, "Opened device %s", dev->model->name);

Wyświetl plik

@ -49,9 +49,10 @@
namespace genesys { namespace genesys {
TestScannerInterface::TestScannerInterface(Genesys_Device* dev) : TestScannerInterface::TestScannerInterface(Genesys_Device* dev, uint16_t vendor_id,
uint16_t product_id, uint16_t bcd_device) :
dev_{dev}, dev_{dev},
usb_dev_{get_testing_vendor_id(), get_testing_product_id(), get_testing_bcd_device()} usb_dev_{vendor_id, product_id, bcd_device}
{ {
// initialize status registers // initialize status registers
if (dev_->model->asic_type == AsicType::GL124) { if (dev_->model->asic_type == AsicType::GL124) {

Wyświetl plik

@ -56,7 +56,8 @@ namespace genesys {
class TestScannerInterface : public ScannerInterface class TestScannerInterface : public ScannerInterface
{ {
public: public:
TestScannerInterface(Genesys_Device* dev); TestScannerInterface(Genesys_Device* dev, std::uint16_t vendor_id, std::uint16_t product_id,
std::uint16_t bcd_device);
~TestScannerInterface() override; ~TestScannerInterface() override;