2 * Copyright 2000 Corel Corporation
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
26 #include "wine/debug.h"
28 WINE_DEFAULT_DEBUG_CHANNEL(twain
);
30 /* DG_CONTROL/DAT_CAPABILITY/MSG_GET */
31 TW_UINT16
SANE_CapabilityGet (pTW_IDENTITY pOrigin
, TW_MEMREF pData
)
33 TW_UINT16 twRC
= TWRC_SUCCESS
, twCC
= TWCC_SUCCESS
;
34 pTW_CAPABILITY pCapability
= (pTW_CAPABILITY
) pData
;
36 TRACE("DG_CONTROL/DAT_CAPABILITY/MSG_GET\n");
38 if (activeDS
.currentState
< 4 || activeDS
.currentState
> 7)
41 activeDS
.twCC
= TWCC_SEQERROR
;
45 twCC
= SANE_SaneCapability (pCapability
, MSG_GET
);
46 twRC
= (twCC
== TWCC_SUCCESS
)?TWRC_SUCCESS
:TWRC_FAILURE
;
53 /* DG_CONTROL/DAT_CAPABILITY/MSG_GETCURRENT */
54 TW_UINT16
SANE_CapabilityGetCurrent (pTW_IDENTITY pOrigin
, TW_MEMREF pData
)
56 TW_UINT16 twRC
= TWRC_SUCCESS
, twCC
= TWCC_SUCCESS
;
57 pTW_CAPABILITY pCapability
= (pTW_CAPABILITY
) pData
;
59 TRACE("DG_CONTROL/DAT_CAPABILITY/MSG_GETCURRENT\n");
61 if (activeDS
.currentState
< 4 || activeDS
.currentState
> 7)
64 activeDS
.twCC
= TWCC_SEQERROR
;
68 twCC
= SANE_SaneCapability (pCapability
, MSG_GETCURRENT
);
69 twRC
= (twCC
== TWCC_SUCCESS
)?TWRC_SUCCESS
:TWRC_FAILURE
;
76 /* DG_CONTROL/DAT_CAPABILITY/MSG_GETDEFAULT */
77 TW_UINT16
SANE_CapabilityGetDefault (pTW_IDENTITY pOrigin
, TW_MEMREF pData
)
79 TW_UINT16 twRC
= TWRC_SUCCESS
, twCC
= TWCC_SUCCESS
;
80 pTW_CAPABILITY pCapability
= (pTW_CAPABILITY
) pData
;
82 TRACE("DG_CONTROL/DAT_CAPABILITY/MSG_GETDEFAULT\n");
84 if (activeDS
.currentState
< 4 || activeDS
.currentState
> 7)
87 activeDS
.twCC
= TWCC_SEQERROR
;
91 twCC
= SANE_SaneCapability (pCapability
, MSG_GETDEFAULT
);
92 twRC
= (twCC
== TWCC_SUCCESS
)?TWRC_SUCCESS
:TWRC_FAILURE
;
99 /* DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT */
100 TW_UINT16
SANE_CapabilityQuerySupport (pTW_IDENTITY pOrigin
,
103 TW_UINT16 twRC
= TWRC_SUCCESS
, twCC
= TWCC_SUCCESS
;
104 pTW_CAPABILITY pCapability
= (pTW_CAPABILITY
) pData
;
106 TRACE("DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT\n");
108 if (activeDS
.currentState
< 4 || activeDS
.currentState
> 7)
111 activeDS
.twCC
= TWCC_SEQERROR
;
115 twCC
= SANE_SaneCapability (pCapability
, MSG_QUERYSUPPORT
);
116 twRC
= (twCC
== TWCC_SUCCESS
)?TWRC_SUCCESS
:TWRC_FAILURE
;
117 activeDS
.twCC
= twCC
;
123 /* DG_CONTROL/DAT_CAPABILITY/MSG_RESET */
124 TW_UINT16
SANE_CapabilityReset (pTW_IDENTITY pOrigin
,
127 TW_UINT16 twRC
= TWRC_SUCCESS
, twCC
= TWCC_SUCCESS
;
128 pTW_CAPABILITY pCapability
= (pTW_CAPABILITY
) pData
;
130 TRACE("DG_CONTROL/DAT_CAPABILITY/MSG_RESET\n");
132 if (activeDS
.currentState
< 4 || activeDS
.currentState
> 7)
135 activeDS
.twCC
= TWCC_SEQERROR
;
139 twCC
= SANE_SaneCapability (pCapability
, MSG_RESET
);
140 twRC
= (twCC
== TWCC_SUCCESS
)?TWRC_SUCCESS
:TWRC_FAILURE
;
141 activeDS
.twCC
= twCC
;
147 /* DG_CONTROL/DAT_CAPABILITY/MSG_SET */
148 TW_UINT16
SANE_CapabilitySet (pTW_IDENTITY pOrigin
,
151 TW_UINT16 twRC
= TWRC_SUCCESS
, twCC
= TWCC_SUCCESS
;
152 pTW_CAPABILITY pCapability
= (pTW_CAPABILITY
) pData
;
154 TRACE ("DG_CONTROL/DAT_CAPABILITY/MSG_SET\n");
156 if (activeDS
.currentState
!= 4)
159 activeDS
.twCC
= TWCC_SEQERROR
;
163 twCC
= SANE_SaneCapability (pCapability
, MSG_SET
);
164 if (twCC
== TWCC_CHECKSTATUS
)
167 twRC
= TWRC_CHECKSTATUS
;
170 twRC
= (twCC
== TWCC_SUCCESS
)?TWRC_SUCCESS
:TWRC_FAILURE
;
171 activeDS
.twCC
= twCC
;
176 /* DG_CONTROL/DAT_EVENT/MSG_PROCESSEVENT */
177 TW_UINT16
SANE_ProcessEvent (pTW_IDENTITY pOrigin
,
180 TW_UINT16 twRC
= TWRC_NOTDSEVENT
;
181 pTW_EVENT pEvent
= (pTW_EVENT
) pData
;
182 MSG
*pMsg
= pEvent
->pEvent
;
184 TRACE("DG_CONTROL/DAT_EVENT/MSG_PROCESSEVENT msg 0x%x, wParam 0x%lx\n", pMsg
->message
, pMsg
->wParam
);
186 activeDS
.twCC
= TWCC_SUCCESS
;
187 pEvent
->TWMessage
= MSG_NULL
; /* no message to the application */
189 if (activeDS
.currentState
< 5 || activeDS
.currentState
> 7)
192 activeDS
.twCC
= TWCC_SEQERROR
;
198 /* DG_CONTROL/DAT_PENDINGXFERS/MSG_ENDXFER */
199 TW_UINT16
SANE_PendingXfersEndXfer (pTW_IDENTITY pOrigin
,
202 #ifndef SONAME_LIBSANE
205 TW_UINT16 twRC
= TWRC_SUCCESS
;
206 pTW_PENDINGXFERS pPendingXfers
= (pTW_PENDINGXFERS
) pData
;
209 TRACE("DG_CONTROL/DAT_PENDINGXFERS/MSG_ENDXFER\n");
211 if (activeDS
.currentState
!= 6 && activeDS
.currentState
!= 7)
214 activeDS
.twCC
= TWCC_SEQERROR
;
218 pPendingXfers
->Count
= -1;
219 activeDS
.currentState
= 6;
220 if (! activeDS
.sane_started
)
222 status
= psane_start (activeDS
.deviceHandle
);
223 if (status
!= SANE_STATUS_GOOD
)
225 TRACE("PENDINGXFERS/MSG_ENDXFER sane_start returns %s\n", psane_strstatus(status
));
226 pPendingXfers
->Count
= 0;
227 activeDS
.currentState
= 5;
228 /* Notify the application that it can close the data source */
229 SANE_Notify(MSG_CLOSEDSREQ
);
232 activeDS
.sane_started
= TRUE
;
235 activeDS
.twCC
= TWCC_SUCCESS
;
242 /* DG_CONTROL/DAT_PENDINGXFERS/MSG_GET */
243 TW_UINT16
SANE_PendingXfersGet (pTW_IDENTITY pOrigin
,
246 #ifndef SONAME_LIBSANE
249 TW_UINT16 twRC
= TWRC_SUCCESS
;
250 pTW_PENDINGXFERS pPendingXfers
= (pTW_PENDINGXFERS
) pData
;
253 TRACE("DG_CONTROL/DAT_PENDINGXFERS/MSG_GET\n");
255 if (activeDS
.currentState
< 4 || activeDS
.currentState
> 7)
258 activeDS
.twCC
= TWCC_SEQERROR
;
262 pPendingXfers
->Count
= -1;
263 if (! activeDS
.sane_started
)
265 status
= psane_start (activeDS
.deviceHandle
);
266 if (status
!= SANE_STATUS_GOOD
)
268 TRACE("PENDINGXFERS/MSG_GET sane_start returns %s\n", psane_strstatus(status
));
269 pPendingXfers
->Count
= 0;
272 activeDS
.sane_started
= TRUE
;
275 activeDS
.twCC
= TWCC_SUCCESS
;
282 /* DG_CONTROL/DAT_PENDINGXFERS/MSG_RESET */
283 TW_UINT16
SANE_PendingXfersReset (pTW_IDENTITY pOrigin
,
286 #ifndef SONAME_LIBSANE
289 TW_UINT16 twRC
= TWRC_SUCCESS
;
290 pTW_PENDINGXFERS pPendingXfers
= (pTW_PENDINGXFERS
) pData
;
292 TRACE("DG_CONTROL/DAT_PENDINGXFERS/MSG_RESET\n");
294 if (activeDS
.currentState
!= 6)
297 activeDS
.twCC
= TWCC_SEQERROR
;
301 pPendingXfers
->Count
= 0;
302 activeDS
.currentState
= 5;
304 activeDS
.twCC
= TWCC_SUCCESS
;
306 if (activeDS
.sane_started
)
308 psane_cancel (activeDS
.deviceHandle
);
309 activeDS
.sane_started
= FALSE
;
317 /* DG_CONTROL/DAT_SETUPMEMXFER/MSG_GET */
318 TW_UINT16
SANE_SetupMemXferGet (pTW_IDENTITY pOrigin
,
321 #ifndef SONAME_LIBSANE
324 pTW_SETUPMEMXFER pSetupMemXfer
= (pTW_SETUPMEMXFER
)pData
;
326 TRACE("DG_CONTROL/DAT_SETUPMEMXFER/MSG_GET\n");
327 if (activeDS
.sane_param_valid
)
329 pSetupMemXfer
->MinBufSize
= activeDS
.sane_param
.bytes_per_line
;
330 pSetupMemXfer
->MaxBufSize
= activeDS
.sane_param
.bytes_per_line
* 8;
331 pSetupMemXfer
->Preferred
= activeDS
.sane_param
.bytes_per_line
* 2;
336 pSetupMemXfer
->MinBufSize
= 2000;
337 pSetupMemXfer
->MaxBufSize
= 8000;
338 pSetupMemXfer
->Preferred
= 4000;
345 /* DG_CONTROL/DAT_STATUS/MSG_GET */
346 TW_UINT16
SANE_GetDSStatus (pTW_IDENTITY pOrigin
,
349 pTW_STATUS pSourceStatus
= (pTW_STATUS
) pData
;
351 TRACE ("DG_CONTROL/DAT_STATUS/MSG_GET\n");
352 pSourceStatus
->ConditionCode
= activeDS
.twCC
;
353 /* Reset the condition code */
354 activeDS
.twCC
= TWCC_SUCCESS
;
358 /* DG_CONTROL/DAT_USERINTERFACE/MSG_DISABLEDS */
359 TW_UINT16
SANE_DisableDSUserInterface (pTW_IDENTITY pOrigin
,
362 TW_UINT16 twRC
= TWRC_SUCCESS
;
364 TRACE ("DG_CONTROL/DAT_USERINTERFACE/MSG_DISABLEDS\n");
366 if (activeDS
.currentState
!= 5)
369 activeDS
.twCC
= TWCC_SEQERROR
;
373 activeDS
.currentState
= 4;
375 activeDS
.twCC
= TWCC_SUCCESS
;
381 /* DG_CONTROL/DAT_USERINTERFACE/MSG_ENABLEDS */
382 TW_UINT16
SANE_EnableDSUserInterface (pTW_IDENTITY pOrigin
,
385 TW_UINT16 twRC
= TWRC_SUCCESS
;
386 pTW_USERINTERFACE pUserInterface
= (pTW_USERINTERFACE
) pData
;
388 TRACE ("DG_CONTROL/DAT_USERINTERFACE/MSG_ENABLEDS\n");
390 if (activeDS
.currentState
!= 4)
393 activeDS
.twCC
= TWCC_SEQERROR
;
394 WARN("sequence error %d\n", activeDS
.currentState
);
398 activeDS
.hwndOwner
= pUserInterface
->hParent
;
399 if (pUserInterface
->ShowUI
)
402 activeDS
.currentState
= 5; /* Transitions to state 5 */
404 pUserInterface
->ModalUI
= TRUE
;
407 SANE_Notify(MSG_CLOSEDSREQ
);
409 #ifdef SONAME_LIBSANE
412 psane_get_parameters (activeDS
.deviceHandle
, &activeDS
.sane_param
);
413 activeDS
.sane_param_valid
= TRUE
;
419 /* no UI will be displayed, so source is ready to transfer data */
420 activeDS
.currentState
= 6; /* Transitions to state 6 directly */
421 SANE_Notify(MSG_XFERREADY
);
425 activeDS
.twCC
= TWCC_SUCCESS
;
431 /* DG_CONTROL/DAT_USERINTERFACE/MSG_ENABLEDSUIONLY */
432 TW_UINT16
SANE_EnableDSUIOnly (pTW_IDENTITY pOrigin
,
435 TW_UINT16 twRC
= TWRC_SUCCESS
;
437 TRACE("DG_CONTROL/DAT_USERINTERFACE/MSG_ENABLEDSUIONLY\n");
439 if (activeDS
.currentState
!= 4)
442 activeDS
.twCC
= TWCC_SEQERROR
;
446 /* FIXME: we should replace xscanimage with our own UI */
447 system ("xscanimage");
448 activeDS
.currentState
= 5;
450 activeDS
.twCC
= TWCC_SUCCESS
;
456 /* DG_CONTROL/DAT_XFERGROUP/MSG_GET */
457 TW_UINT16
SANE_XferGroupGet (pTW_IDENTITY pOrigin
,
465 /* DG_CONTROL/DAT_XFERGROUP/MSG_SET */
466 TW_UINT16
SANE_XferGroupSet (pTW_IDENTITY pOrigin
,