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