mirror of
https://github.com/soukoku/ntwain.git
synced 2025-04-05 20:59:23 +08:00
110 lines
3.5 KiB
C#
110 lines
3.5 KiB
C#
using NTwain.Properties;
|
|
using NTwain.Triplets;
|
|
using System;
|
|
using System.Diagnostics;
|
|
using System.Threading;
|
|
using System.Windows.Interop;
|
|
using System.Windows.Threading;
|
|
|
|
namespace NTwain
|
|
{
|
|
/// <summary>
|
|
/// Provides a message loop for old TWAIN to post or new TWAIN to synchronize callbacks.
|
|
/// </summary>
|
|
class MessageLoop
|
|
{
|
|
static MessageLoop _instance = new MessageLoop();
|
|
public static MessageLoop Instance { get { return _instance; } }
|
|
|
|
Dispatcher _dispatcher;
|
|
bool _started;
|
|
HwndSource _dummyWindow;
|
|
|
|
private MessageLoop() { }
|
|
|
|
public void EnsureStarted()
|
|
{
|
|
if (!_started)
|
|
{
|
|
// using this terrible hack so the new thread will start running before this function returns
|
|
var hack = new ManualResetEvent(false);
|
|
|
|
var loopThread = new Thread(new ThreadStart(() =>
|
|
{
|
|
Debug.WriteLine("NTwain message loop started.");
|
|
_dispatcher = Dispatcher.CurrentDispatcher;
|
|
if (Dsm.IsWin)
|
|
{
|
|
// start a windows msg loop for old twain to post msgs
|
|
// the style values are purely guesses here with
|
|
// CS_NOCLOSE, WS_DISABLED, and WS_EX_NOACTIVATE
|
|
_dummyWindow = new HwndSource(0x0200, 0x8000000, 0x8000000, 0, 0, "NTWAIN_LOOPER", IntPtr.Zero);
|
|
}
|
|
hack.Set();
|
|
Dispatcher.Run();
|
|
_started = false;
|
|
}));
|
|
loopThread.IsBackground = true;
|
|
loopThread.SetApartmentState(ApartmentState.STA);
|
|
loopThread.Start();
|
|
hack.WaitOne();
|
|
hack.Close();
|
|
_started = true;
|
|
}
|
|
}
|
|
|
|
public IntPtr LoopHandle
|
|
{
|
|
get
|
|
{
|
|
return _dummyWindow == null ? IntPtr.Zero : _dummyWindow.Handle;
|
|
}
|
|
}
|
|
|
|
public void BeginInvoke(Action action)
|
|
{
|
|
if (_dispatcher == null) { throw new InvalidOperationException(Resources.MsgLoopUnavailble); }
|
|
|
|
_dispatcher.BeginInvoke(DispatcherPriority.Normal, action);
|
|
}
|
|
|
|
public void Invoke(Action action)
|
|
{
|
|
if (_dispatcher == null) { throw new InvalidOperationException(Resources.MsgLoopUnavailble); }
|
|
|
|
if (_dispatcher.CheckAccess())
|
|
{
|
|
action();
|
|
}
|
|
else
|
|
{
|
|
//_dispatcher.Invoke(DispatcherPriority.Normal, action);
|
|
// why use this instead of the single line above? for possible future use in mono!
|
|
var man = new ManualResetEvent(false);
|
|
_dispatcher.BeginInvoke(DispatcherPriority.Normal, new Action(() =>
|
|
{
|
|
try
|
|
{
|
|
action();
|
|
}
|
|
finally
|
|
{
|
|
man.Set();
|
|
}
|
|
}));
|
|
man.WaitOne();
|
|
man.Close();
|
|
}
|
|
}
|
|
|
|
public void AddHook(HwndSourceHook hook)
|
|
{
|
|
if (_dummyWindow != null) { _dummyWindow.AddHook(hook); }
|
|
}
|
|
public void RemoveHook(HwndSourceHook hook)
|
|
{
|
|
if (_dummyWindow != null) { _dummyWindow.RemoveHook(hook); }
|
|
}
|
|
}
|
|
}
|