canon_dr backend v65

- fix imprinter support (#672)
- update attach_one and other init functions
707-xerox_mfp-scx-4521-fixes-are-not-merged
m. allan noah 2023-06-06 21:48:56 -04:00
rodzic 820ce39e94
commit 9d721e4610
1 zmienionych plików z 42 dodań i 32 usunięć

Wyświetl plik

@ -359,6 +359,9 @@
- add support for reading the total and roller counters
v64 2022-11-18, CQ, MAN
- add complete support for imprinters on X10C (#585)
v65 2023-06-06, MAN
- fix imprinter support (#672)
- update attach_one and other init functions
SANE FLOW DIAGRAM
@ -411,7 +414,7 @@
#include "canon_dr.h"
#define DEBUG 1
#define BUILD 64
#define BUILD 65
/* values for SANE_DEBUG_CANON_DR env var:
- errors 5
@ -1007,23 +1010,19 @@ attach_one (const char *device_name, int connType)
/* this detects imprinters if they are available */
ret = init_imprinters (s);
if (ret != SANE_STATUS_GOOD) {
DBG (5, "attach_one: errors while trying to detect optional imprinters, continuing\n");
DBG (5, "attach_one: unable to init_imprinters, continuing\n");
}
/* enable/read the buttons */
ret = init_panel (s);
if (ret != SANE_STATUS_GOOD) {
disconnect_fd(s);
free (s);
DBG (5, "attach_one: model failed\n");
return ret;
DBG (5, "attach_one: unable init_panel, continuing\n");
}
/* enable/read the lifecycle counters */
ret = init_counters (s);
if (ret != SANE_STATUS_GOOD) {
DBG (5, "attach_one: unable to detect lifecycle counters, continuing\n");
return ret;
DBG (5, "attach_one: unable to init_counters, continuing\n");
}
/* sets SANE option 'values' to good defaults */
@ -1035,6 +1034,7 @@ attach_one (const char *device_name, int connType)
return ret;
}
/* sets the s->opt array to blank */
ret = init_options (s);
if (ret != SANE_STATUS_GOOD) {
disconnect_fd(s);
@ -1988,19 +1988,26 @@ init_imprinters (struct scanner *s)
{
SANE_Status ret = SANE_STATUS_GOOD;
s->has_pre_imprinter = 0;
s->has_post_imprinter = 0;
DBG (10, "init_imprinters: start\n");
/* check the pre imprinter first */
ret = detect_imprinter(s,R_PRE_IMPRINTER);
if(ret != SANE_STATUS_GOOD){
return ret;
if(ret == SANE_STATUS_GOOD){
DBG (15, "init_imprinters: preimprinter found\n");
s->has_pre_imprinter = 1;
}
ret = detect_imprinter(s,R_POST_IMPRINTER);
if(ret != SANE_STATUS_GOOD){
return ret;
/* these scanners only support one imprinter */
/* so only ask for postimp if preimp not found */
else if(ret == SANE_STATUS_UNSUPPORTED){
ret = detect_imprinter(s,R_POST_IMPRINTER);
if(ret == SANE_STATUS_GOOD){
DBG (15, "init_imprinters: postimprinter found\n");
s->has_post_imprinter = 1;
}
}
DBG (10, "init_imprinters: finish\n");
return ret;
}
@ -2018,7 +2025,6 @@ init_panel (struct scanner *s)
if(ret){
DBG (5, "init_panel: disabling read_panel\n");
s->can_read_panel = 0;
ret = SANE_STATUS_GOOD;
}
s->panel_enable_led = 1;
@ -2027,7 +2033,6 @@ init_panel (struct scanner *s)
if(ret){
DBG (5, "init_panel: disabling send_panel\n");
s->can_write_panel = 0;
ret = SANE_STATUS_GOOD;
}
DBG (10, "init_panel: finish\n");
@ -2049,7 +2054,6 @@ init_counters (struct scanner *s)
if(ret){
DBG (5, "init_counters: disabling lifecycle counters\n");
s->can_read_lifecycle_counters = 0;
return ret;
}
DBG (10, "init_counters: finish\n");
@ -5249,8 +5253,13 @@ load_imprinting_settings(struct scanner *s)
return ret;
}
/* look for a particular imprinter
* SANE_STATUS_GOOD = found
* SANE_STATUS_UNSUPPORTED = not found
* SANE_STATUS_INVAL = all other errors
*/
static SANE_Status
detect_imprinter(struct scanner *s,SANE_Int option)
detect_imprinter(struct scanner *s, SANE_Int imp_side)
{
SANE_Status ret = SANE_STATUS_GOOD;
@ -5260,12 +5269,12 @@ detect_imprinter(struct scanner *s,SANE_Int option)
unsigned char in[R_IMPRINTER_len];
size_t inLen = R_IMPRINTER_len;
DBG (10, "detect_imprinter: start %d\n", option);
DBG (10, "detect_imprinter: start %d\n", imp_side);
memset(cmd,0,cmdLen);
set_SCSI_opcode(cmd, READ_code);
set_R_datatype_code(cmd, SR_datatype_imprinters);
set_R_xfer_uid(cmd, option);
set_R_xfer_uid(cmd, imp_side);
set_R_xfer_length(cmd, inLen);
ret = do_cmd(
@ -5275,23 +5284,24 @@ detect_imprinter(struct scanner *s,SANE_Int option)
in, &inLen
);
if (ret == SANE_STATUS_GOOD || ret == SANE_STATUS_EOF) {
/* some scanners return eof for success, so we change it */
if (ret == SANE_STATUS_EOF) {
ret = SANE_STATUS_GOOD;
}
int imprinter_found = get_R_IMPRINTER_found(in);
const char* imprinter_type = "unknown";
if (option == R_PRE_IMPRINTER){
s->has_pre_imprinter = imprinter_found;
imprinter_type = "pre-imprinter";
}
else if (option == R_POST_IMPRINTER){
s->has_post_imprinter = imprinter_found;
imprinter_type = "post-imprinter";
/* failed commands are 'inval' */
if(ret){
DBG (15, "detect_imprinter: error, converting %d to invalid\n", ret);
ret = SANE_STATUS_INVAL;
}
DBG (10, "detect_imprinter: type: %s. found status bit: %d \n",imprinter_type,imprinter_found);
/* negative responses are 'unsupported' */
else if(!get_R_IMPRINTER_found(in)){
DBG (15, "detect_imprinter: not found, converting to unsupported\n");
ret = SANE_STATUS_UNSUPPORTED;
}
DBG (10, "detect_imprinter: finish %d\n", ret);
return ret;
}