ntwain/src/NTwain/Internals/InternalMessageLoopHook.cs

115 lines
3.7 KiB
C#
Raw Normal View History

2014-04-21 04:57:38 +08:00
using NTwain.Properties;
using System;
using System.Collections.Generic;
2014-04-21 04:57:38 +08:00
using System.Diagnostics;
using System.Linq;
using System.Text;
2014-04-21 04:57:38 +08:00
using System.Threading;
using System.Windows.Threading;
namespace NTwain.Internals
{
/// <summary>
/// This is the self-hosted message loop for TWAIN communication.
/// It utilizes the wpf Dispatcher to do all the hard work.
/// </summary>
sealed class InternalMessageLoopHook : MessageLoopHook
2014-04-21 04:57:38 +08:00
{
Dispatcher _dispatcher;
WindowsHook _hook;
internal override void Stop()
{
if (_dispatcher != null)
{
_dispatcher.InvokeShutdown();
}
}
internal override void Start(IWinMessageFilter filter)
2014-04-21 04:57:38 +08:00
{
if (_dispatcher == null)
{
// using this hack so the new thread will start running before this function returns
2014-04-21 04:57:38 +08:00
using (var hack = new WrappedManualResetEvent())
{
var loopThread = new Thread(new ThreadStart(() =>
{
2015-07-04 23:18:03 +08:00
PlatformInfo.Current.Log.Debug("NTwain internal message loop is starting.");
2014-04-21 04:57:38 +08:00
_dispatcher = Dispatcher.CurrentDispatcher;
if (!PlatformInfo.Current.IsOnMono)
2014-04-21 04:57:38 +08:00
{
_hook = new WindowsHook(filter);
Handle = _hook.Handle;
2014-04-21 04:57:38 +08:00
}
hack.Set();
Dispatcher.Run();
// if dispatcher shutsdown we'll get here so make everything uninitialized
2014-04-21 04:57:38 +08:00
_dispatcher = null;
if (_hook != null)
{
_hook.Dispose();
_hook = null;
2014-09-05 18:56:57 +08:00
Handle = IntPtr.Zero;
2014-04-21 04:57:38 +08:00
}
}));
loopThread.IsBackground = true;
loopThread.SetApartmentState(ApartmentState.STA);
loopThread.Start();
hack.Wait();
}
}
}
public override void BeginInvoke(Action action)
2014-04-21 04:57:38 +08:00
{
if (_dispatcher == null) { throw new InvalidOperationException(Resources.MsgLoopUnavailble); }
_dispatcher.BeginInvoke(DispatcherPriority.Normal, action);
}
public override void Invoke(Action action)
2014-04-21 04:57:38 +08:00
{
if (_dispatcher == null) { throw new InvalidOperationException(Resources.MsgLoopUnavailble); }
Exception error = null;
2014-04-21 04:57:38 +08:00
if (_dispatcher.CheckAccess())
{
action();
}
else if (PlatformInfo.Current.IsOnMono)
2014-04-21 04:57:38 +08:00
{
using (var man = new WrappedManualResetEvent())
{
_dispatcher.BeginInvoke(DispatcherPriority.Normal, new Action(() =>
{
try
{
action();
}
catch (Exception ex) { error = ex; }
2014-04-21 04:57:38 +08:00
finally
{
man.Set();
}
}));
man.Wait();
}
}
else
{
_dispatcher.Invoke(DispatcherPriority.Normal, new Action(() =>
{
try
{
action();
}
catch (Exception ex) { error = ex; }
}));
2014-04-21 04:57:38 +08:00
}
if (error != null) { Rethrow(error); }
2014-04-21 04:57:38 +08:00
}
}
}