using NTwain.Data; using NTwain.Internals; using NTwain.Properties; using NTwain.Triplets; using System; using System.Collections.Generic; using System.ComponentModel; using System.Diagnostics; using System.Globalization; using System.IO; using System.Runtime.InteropServices; using System.Threading; namespace NTwain { /// /// Basic class for interfacing with TWAIN. You should only have one of this per application process. /// public class TwainSession : ITwainSessionInternal { /// /// Initializes a new instance of the class. /// /// The app id. /// public TwainSession(TWIdentity appId) { if (appId == null) { throw new ArgumentNullException("appId"); } _appId = appId; ((ITwainSessionInternal)this).ChangeState(1, false); EnforceState = true; MessageLoop.Instance.EnsureStarted(HandleWndProcMessage); } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] object _callbackObj; // kept around so it doesn't get gc'ed TWIdentity _appId; TWUserInterface _twui; /// /// Gets or sets the optional synchronization context. /// This allows events to be raised on the thread /// associated with the context. /// /// /// The synchronization context. /// public SynchronizationContext SynchronizationContext { get; set; } #region ITwainSessionInternal Members /// /// Gets the app id used for the session. /// /// The app id. TWIdentity ITwainSessionInternal.AppId { get { return _appId; } } /// /// Gets or sets a value indicating whether calls to triplets will verify the current twain session state. /// /// /// true if state value is enforced; otherwise, false. /// public bool EnforceState { get; set; } void ITwainSessionInternal.ChangeState(int newState, bool notifyChange) { _state = newState; if (notifyChange) { OnPropertyChanged("State"); SafeAsyncSyncableRaiseOnEvent(OnStateChanged, StateChanged); } } ICommittable ITwainSessionInternal.GetPendingStateChanger(int newState) { return new TentativeStateCommitable(this, newState); } void ITwainSessionInternal.ChangeSourceId(TWIdentity sourceId) { SourceId = sourceId; OnPropertyChanged("SourceId"); SafeAsyncSyncableRaiseOnEvent(OnSourceChanged, SourceChanged); } void ITwainSessionInternal.SafeSyncableRaiseEvent(DataTransferredEventArgs e) { SafeSyncableRaiseOnEvent(OnDataTransferred, DataTransferred, e); } void ITwainSessionInternal.SafeSyncableRaiseEvent(TransferErrorEventArgs e) { SafeSyncableRaiseOnEvent(OnTransferError, TransferError, e); } void ITwainSessionInternal.SafeSyncableRaiseEvent(TransferReadyEventArgs e) { SafeSyncableRaiseOnEvent(OnTransferReady, TransferReady, e); } #endregion #region ITwainSession Members /// /// Gets the source id used for the session. /// /// /// The source id. /// public TWIdentity SourceId { get; private set; } int _state; /// /// Gets the current state number as defined by the TWAIN spec. /// /// /// The state. /// public int State { get { return _state; } private set { if (value > 0 && value < 8) { _state = value; OnPropertyChanged("State"); SafeAsyncSyncableRaiseOnEvent(OnStateChanged, StateChanged); } } } static readonly CapabilityId[] _emptyCapList = new CapabilityId[0]; private IList _supportedCaps; /// /// Gets the supported caps for the currently open source. /// /// /// The supported caps. /// public IList SupportedCaps { get { if (_supportedCaps == null && State > 3) { _supportedCaps = this.GetCapabilities(); } return _supportedCaps ?? _emptyCapList; } private set { _supportedCaps = value; OnPropertyChanged("SupportedCaps"); } } #endregion #region ITwainOperation Members DGAudio _dgAudio; /// /// Gets the triplet operations defined for audio data group. /// public DGAudio DGAudio { get { if (_dgAudio == null) { _dgAudio = new DGAudio(this); } return _dgAudio; } } DGControl _dgControl; /// /// Gets the triplet operations defined for control data group. /// public DGControl DGControl { get { if (_dgControl == null) { _dgControl = new DGControl(this); } return _dgControl; } } DGImage _dgImage; /// /// Gets the triplet operations defined for image data group. /// public DGImage DGImage { get { if (_dgImage == null) { _dgImage = new DGImage(this); } return _dgImage; } } #endregion #region INotifyPropertyChanged Members /// /// Occurs when a property value changes. /// public event PropertyChangedEventHandler PropertyChanged; /// /// Raises the event. /// /// Name of the property. protected void OnPropertyChanged(string propertyName) { var syncer = SynchronizationContext; if (syncer == null) { try { var hand = PropertyChanged; if (hand != null) { hand(this, new PropertyChangedEventArgs(propertyName)); } } catch { } } else { syncer.Post(o => { try { var hand = PropertyChanged; if (hand != null) { hand(this, new PropertyChangedEventArgs(propertyName)); } } catch { } }, null); } } #endregion #region privileged calls that causes state change in TWAIN /// /// Opens the data source manager. This must be the first method used /// before using other TWAIN functions. Calls to this must be followed by when done with a TWAIN session. /// /// public ReturnCode OpenManager() { var rc = ReturnCode.Failure; MessageLoop.Instance.Invoke(() => { Debug.WriteLine(string.Format(CultureInfo.InvariantCulture, "Thread {0}: OpenManager.", Thread.CurrentThread.ManagedThreadId)); rc = DGControl.Parent.OpenDsm(MessageLoop.Instance.LoopHandle); if (rc == ReturnCode.Success) { // if twain2 then get memory management functions if ((_appId.DataFunctionalities & DataFunctionalities.Dsm2) == DataFunctionalities.Dsm2) { TWEntryPoint entry; rc = DGControl.EntryPoint.Get(out entry); if (rc == ReturnCode.Success) { Platform.MemoryManager = entry; Debug.WriteLine("Using TWAIN2 memory functions."); } else { CloseManager(); } } } }); return rc; } /// /// Closes the data source manager. /// /// public ReturnCode CloseManager() { var rc = ReturnCode.Failure; MessageLoop.Instance.Invoke(() => { Debug.WriteLine(string.Format(CultureInfo.InvariantCulture, "Thread {0}: CloseManager.", Thread.CurrentThread.ManagedThreadId)); rc = DGControl.Parent.CloseDsm(MessageLoop.Instance.LoopHandle); if (rc == ReturnCode.Success) { Platform.MemoryManager = null; } }); return rc; } /// /// Loads the specified source into main memory and causes its initialization. /// Calls to this must be followed by /// when not using it anymore. /// /// Name of the source. /// /// sourceProductName public ReturnCode OpenSource(string sourceProductName) { if (string.IsNullOrEmpty(sourceProductName)) { throw new ArgumentException(Resources.SourceRequired, "sourceProductName"); } var rc = ReturnCode.Failure; MessageLoop.Instance.Invoke(() => { Debug.WriteLine(string.Format(CultureInfo.InvariantCulture, "Thread {0}: OpenSource.", Thread.CurrentThread.ManagedThreadId)); var source = new TWIdentity { ProductName = sourceProductName }; rc = DGControl.Identity.OpenDS(source); }); return rc; } /// /// When an application is finished with a Source, it must formally close the session between them /// using this operation. This is necessary in case the Source only supports connection with a single /// application (many desktop scanners will behave this way). A Source such as this cannot be /// accessed by other applications until its current session is terminated /// /// public ReturnCode CloseSource() { var rc = ReturnCode.Failure; MessageLoop.Instance.Invoke(() => { Debug.WriteLine(string.Format(CultureInfo.InvariantCulture, "Thread {0}: CloseSource.", Thread.CurrentThread.ManagedThreadId)); rc = DGControl.Identity.CloseDS(); if (rc == ReturnCode.Success) { SupportedCaps = null; } }); return rc; } /// /// Enables the source to start transferring. /// /// The mode. /// if set to true any driver UI will display as modal. /// The window handle if modal. /// public ReturnCode EnableSource(SourceEnableMode mode, bool modal, IntPtr windowHandle) { var rc = ReturnCode.Failure; MessageLoop.Instance.Invoke(() => { Debug.WriteLine(string.Format(CultureInfo.InvariantCulture, "Thread {0}: EnableSource.", Thread.CurrentThread.ManagedThreadId)); // app v2.2 or higher uses callback2 if (_appId.ProtocolMajor >= 2 && _appId.ProtocolMinor >= 2) { var cb = new TWCallback2(HandleCallback); var rc2 = DGControl.Callback2.RegisterCallback(cb); if (rc2 == ReturnCode.Success) { Debug.WriteLine("Registered callback2 OK."); _callbackObj = cb; } } else { var cb = new TWCallback(HandleCallback); var rc2 = DGControl.Callback.RegisterCallback(cb); if (rc2 == ReturnCode.Success) { Debug.WriteLine("Registered callback OK."); _callbackObj = cb; } } _twui = new TWUserInterface(); _twui.ShowUI = mode == SourceEnableMode.ShowUI; _twui.ModalUI = modal; _twui.hParent = windowHandle; if (mode == SourceEnableMode.ShowUIOnly) { rc = DGControl.UserInterface.EnableDSUIOnly(_twui); } else { rc = DGControl.UserInterface.EnableDS(_twui); } if (rc != ReturnCode.Success) { _callbackObj = null; } }); return rc; } ReturnCode ITwainSessionInternal.DisableSource() { var rc = ReturnCode.Failure; MessageLoop.Instance.Invoke(() => { Debug.WriteLine(string.Format(CultureInfo.InvariantCulture, "Thread {0}: DisableSource.", Thread.CurrentThread.ManagedThreadId)); rc = DGControl.UserInterface.DisableDS(_twui); if (rc == ReturnCode.Success) { _callbackObj = null; SafeAsyncSyncableRaiseOnEvent(OnSourceDisabled, SourceDisabled); } }); return rc; } /// /// Forces the stepping down of an opened source when things gets out of control. /// Used when session state and source state become out of sync. /// /// State of the target. public void ForceStepDown(int targetState) { Debug.WriteLine(string.Format(CultureInfo.InvariantCulture, "Thread {0}: ForceStepDown.", Thread.CurrentThread.ManagedThreadId)); bool origFlag = EnforceState; EnforceState = false; // From the twain spec // Stepping Back Down the States // DG_CONTROL / DAT_PENDINGXFERS / MSG_ENDXFER → state 7 to 6 // DG_CONTROL / DAT_PENDINGXFERS / MSG_RESET → state 6 to 5 // DG_CONTROL / DAT_USERINTERFACE / MSG_DISABLEDS → state 5 to 4 // DG_CONTROL / DAT_IDENTITY / MSG_CLOSEDS → state 4 to 3 // Ignore the status returns from the calls prior to the one yielding the desired state. For instance, if a // call during scanning returns TWCC_SEQERROR and the desire is to return to state 5, then use the // following commands. // DG_CONTROL / DAT_PENDINGXFERS / MSG_ENDXFER → state 7 to 6 // DG_CONTROL / DAT_PENDINGXFERS / MSG_RESET → state 6 to 5 // Being sure to confirm that DG_CONTROL / DAT_PENDINGXFERS / MSG_RESET returned // success, the return status from DG_CONTROL / DAT_PENDINGXFERS / MSG_ENDXFER may // be ignored. MessageLoop.Instance.Invoke(() => { if (targetState < 7) { DGControl.PendingXfers.EndXfer(new TWPendingXfers()); } if (targetState < 6) { DGControl.PendingXfers.Reset(new TWPendingXfers()); } if (targetState < 5) { ((ITwainSessionInternal)this).DisableSource(); } if (targetState < 4) { CloseSource(); } if (targetState < 3) { CloseManager(); } }); EnforceState = origFlag; } #endregion #region custom events and overridables /// /// Occurs when has changed. /// public event EventHandler StateChanged; /// /// Occurs when has changed. /// public event EventHandler SourceChanged; /// /// Occurs when source has been disabled (back to state 4). /// public event EventHandler SourceDisabled; /// /// Occurs when the source has generated an event. /// public event EventHandler DeviceEvent; /// /// Occurs when a data transfer is ready. /// public event EventHandler TransferReady; /// /// Occurs when data has been transferred. /// public event EventHandler DataTransferred; /// /// Occurs when an error has been encountered during transfer. /// public event EventHandler TransferError; /// /// Raises event and if applicable marshal it asynchronously to the thread /// without exceptions. /// /// The on event function. /// The handler. void SafeAsyncSyncableRaiseOnEvent(Action onEventFunc, EventHandler handler) { var syncer = SynchronizationContext; if (syncer == null) { try { onEventFunc(); if (handler != null) { handler(this, EventArgs.Empty); } } catch { } } else { syncer.Post(o => { try { onEventFunc(); if (handler != null) { handler(this, EventArgs.Empty); } } catch { } }, null); } } /// /// Raises event and if applicable marshal it synchronously to the thread /// without exceptions. /// /// The type of the event arguments. /// The on event function. /// The handler. /// The TEventArgs instance containing the event data. void SafeSyncableRaiseOnEvent(Action onEventFunc, EventHandler handler, TEventArgs e) where TEventArgs : EventArgs { var syncer = SynchronizationContext; if (syncer == null) { try { onEventFunc(e); if (handler != null) { handler(this, e); } } catch { } } else { syncer.Send(o => { try { onEventFunc(e); if (handler != null) { handler(this, e); } } catch { } }, null); } } /// /// Called when changed. /// protected virtual void OnStateChanged() { } /// /// Called when changed. /// protected virtual void OnSourceChanged() { } /// /// Called when source has been disabled (back to state 4). /// protected virtual void OnSourceDisabled() { } /// /// Called when the source has generated an event. /// /// The instance containing the event data. protected virtual void OnDeviceEvent(DeviceEventArgs e) { } /// /// Called when a data transfer is ready. /// /// The instance containing the event data. protected virtual void OnTransferReady(TransferReadyEventArgs e) { } /// /// Called when data has been transferred. /// /// The instance containing the event data. protected virtual void OnDataTransferred(DataTransferredEventArgs e) { } /// /// Called when an error has been encountered during transfer. /// /// The instance containing the event data. protected virtual void OnTransferError(TransferErrorEventArgs e) { } #endregion #region handle twain ds message void HandleWndProcMessage(ref WindowsHook.MESSAGE winMsg, ref bool handled) { // this handles the message from a typical WndProc message loop and check if it's from the TWAIN source. if (State >= 5) { // transform it into a pointer for twain IntPtr msgPtr = IntPtr.Zero; try { // no need to do another lock call when using marshal alloc msgPtr = Marshal.AllocHGlobal(Marshal.SizeOf(winMsg)); Marshal.StructureToPtr(winMsg, msgPtr, false); var evt = new TWEvent(); evt.pEvent = msgPtr; if (handled = (DGControl.Event.ProcessEvent(evt) == ReturnCode.DSEvent)) { Debug.WriteLine(string.Format(CultureInfo.InvariantCulture, "Thread {0}: HandleWndProcMessage at state {1} with MSG={2}.", Thread.CurrentThread.ManagedThreadId, State, evt.TWMessage)); HandleSourceMsg(evt.TWMessage); } } finally { if (msgPtr != IntPtr.Zero) { Marshal.FreeHGlobal(msgPtr); } } } } ReturnCode HandleCallback(TWIdentity origin, TWIdentity destination, DataGroups dg, DataArgumentType dat, Message msg, IntPtr data) { if (origin != null && SourceId != null && origin.Id == SourceId.Id) { Debug.WriteLine(string.Format(CultureInfo.InvariantCulture, "Thread {0}: CallbackHandler at state {1} with MSG={2}.", Thread.CurrentThread.ManagedThreadId, State, msg)); // spec says we must handle this on the thread that enabled the DS. // by using the internal dispatcher this will be the case. MessageLoop.Instance.BeginInvoke(() => { HandleSourceMsg(msg); }); return ReturnCode.Success; } return ReturnCode.Failure; } // final method that handles msg from the source, whether it's from wndproc or callbacks void HandleSourceMsg(Message msg) { switch (msg) { case Message.XferReady: if (State < 6) { State = 6; } TransferLogic.DoTransferRoutine(this); break; case Message.DeviceEvent: TWDeviceEvent de; var rc = DGControl.DeviceEvent.Get(out de); if (rc == ReturnCode.Success) { SafeSyncableRaiseOnEvent(OnDeviceEvent, DeviceEvent, new DeviceEventArgs(de)); } break; case Message.CloseDSReq: case Message.CloseDSOK: // even though it says closeDS it's really disable. // dsok is sent if source is enabled with uionly // some sources send this at other states so do a step down if (State > 5) { ForceStepDown(4); } else if (State == 5) { // needs this state check since some source sends this more than once ((ITwainSessionInternal)this).DisableSource(); } break; } } #endregion } }