ntwain/NTwain/MessageLoop.cs

110 lines
3.5 KiB
C#
Raw Normal View History

using NTwain.Properties;
using NTwain.Triplets;
2014-04-15 07:30:25 +08:00
using System;
using System.Diagnostics;
2014-04-15 07:30:25 +08:00
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() { }
2014-04-15 07:30:25 +08:00
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);
2014-04-15 07:30:25 +08:00
var loopThread = new Thread(new ThreadStart(() =>
{
Debug.WriteLine("NTwain message loop started.");
2014-04-15 07:30:25 +08:00
_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();
2014-04-15 07:30:25 +08:00
Dispatcher.Run();
_started = false;
2014-04-15 07:30:25 +08:00
}));
loopThread.IsBackground = true;
loopThread.SetApartmentState(ApartmentState.STA);
loopThread.Start();
hack.WaitOne();
hack.Close();
2014-04-15 07:30:25 +08:00
_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); }
2014-04-16 18:53:05 +08:00
_dispatcher.BeginInvoke(DispatcherPriority.Normal, action);
2014-04-15 07:30:25 +08:00
}
public void Invoke(Action action)
{
if (_dispatcher == null) { throw new InvalidOperationException(Resources.MsgLoopUnavailble); }
2014-04-16 18:53:05 +08:00
if (_dispatcher.CheckAccess())
2014-04-15 07:30:25 +08:00
{
2014-04-16 18:53:05 +08:00
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(() =>
2014-04-15 07:30:25 +08:00
{
2014-04-16 18:53:05 +08:00
try
2014-04-15 07:30:25 +08:00
{
action();
2014-04-16 18:53:05 +08:00
}
finally
{
2014-04-15 07:30:25 +08:00
man.Set();
2014-04-16 18:53:05 +08:00
}
}));
man.WaitOne();
man.Close();
2014-04-15 07:30:25 +08:00
}
}
public void AddHook(HwndSourceHook hook)
{
if (_dummyWindow != null) { _dummyWindow.AddHook(hook); }
}
public void RemoveHook(HwndSourceHook hook)
{
if (_dummyWindow != null) { _dummyWindow.RemoveHook(hook); }
}
}
}