理解SynchronizationContext,如何在Winform里面跨线程访问UI控件
Posted 天道酬勤,商道酬信。
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了理解SynchronizationContext,如何在Winform里面跨线程访问UI控件相关的知识,希望对你有一定的参考价值。
SynchronizationContext 类是一个基类,可提供不带同步的自由线程上下文。 此类实现的同步模型的目的是使公共语言运行库内部的异步/同步操作能够针对不同的异步模型采取正确的行为。此模型还简化了托管应用程序为在不同的同步环境下正常工作而必须遵循的一些要求。同步模型的提供程序可以扩展此类并为这些方法提供自己的实现。(来自MSDN)
简而言之就是允许一个线程和另外一个线程进行通讯,SynchronizationContext在通讯中充当传输者的角色。另外这里有个地方需要清楚的,不是每个线程都附加SynchronizationContext这个对象,只有UI线程是一直拥有的。
前戏
之前在winform里面使用多线程或者异步的时候为了避免“访问了不是本线程创建的控件”都是设置窗体的CheckForIllegalCrossThreadCalls为不检查线程冲突,或者检测控件的InvokeRequired?!是的,当然没问题。(解释下,InvokeRequired属性是每个Control对象都具有的属性,它会返回true和false,当是true的时候,表示它在另外一个线程上面,这是必须通过Invoke,BeginInvoke这些方法来调用更新UI对象的方法,当是false的时候,有两种情况,1:位于当前线程上面,可以通过直接去调用修改UI对象的方法,2:位于不同的线程上,不过控件或窗体的句柄不存在。对于句柄是否存在的判断,可以通过IsHandleCreated来获取,如果句柄不存在,是不能调用Invoke...这些方法的,这时候你必须等待句柄的创建)
曾经对异步委托的使用简直上瘾,一天不用就不舒服。结果最近发现SynchronizationContext类真是个好东西啊。可以在窗体里面进行一下封装可以避免使用InvokeRequired去检测UI控件状态的麻烦。这里分享一段测试过程。
曾经以为工作十几年,Winform没啥学头了。其实呵呵了,要想在某个小领域突破是很难的。要成为真正的专家是马虎不得的,真是要活到老学到老。
测试代码
public partial class Form1 : Form { SynchronizationContext sc = null; public Form1() { InitializeComponent(); sc = SynchronizationContext.Current; this.Load += Form1_Load; } private void Form1_Load(object sender, EventArgs e) { Thread thread = new Thread((object state) => { int id = Thread.CurrentThread.ManagedThreadId; for (int i = 0; i < 1000; i++) { Thread.Sleep(10); sc.Post(UpdateUI, "line " + i.ToString()); } }); thread.Start(); } /// <summary> /// This method is executed on the main UI thread. /// </summary> private void UpdateUI(object state) { int id = Thread.CurrentThread.ManagedThreadId; SendLogMessage("UpdateUI thread:" + id); string text = state as string; SendLogMessage(text); } /// <summary> /// UI线程回调方法,访问控件刷新显示 /// </summary> /// <param name="message">消息内容</param> private void LogMessageBack(object message) { rbxMessageInfo.AppendText(DateTime.Now + "->" + message.ToString() + Environment.NewLine); } /// <summary> /// 交给UI线程去排队显示消息 /// </summary> /// <param name="message"></param> private void SendLogMessage(string message) { sc.Post(LogMessageBack, message); } }
大神对SynchronizationContext的封装
protected internal static System.AsyncCallback SyncCallback(System.AsyncCallback callback) { System.Threading.SynchronizationContext sc = System.Threading.SynchronizationContext.Current; if (sc == null) { return callback; } return delegate(System.IAsyncResult asyncResult) { sc.Post(delegate(object result) { callback((System.IAsyncResult)result); }, asyncResult); }; } protected void DataAction(Action action) { try { action(); } catch (System.Exception ex) { OperateLog.OpExcpLog(string.Format("[{0}][{1}]功能操作执行异常,异常原因:{2}", action.Method.GetType().FullName, action.Method.Name, ex.Message)); System.Windows.Forms.MessageBox.Show(EESException.getException(ex).Message, "异常警告", System.Windows.Forms.MessageBoxButtons.OK, System.Windows.Forms.MessageBoxIcon.Hand); } } protected void BeginAction(MethodDelegate action, object obj, params object[] args) { EForm.AsyncRequest asyncRequest = new EForm.AsyncRequest(action, obj, args, System.Threading.SynchronizationContext.Current); this.inAsyncAction = null; this.OnBeginAction(asyncRequest); System.Threading.ThreadPool.QueueUserWorkItem(new System.Threading.WaitCallback(this.OnWaitCallback), asyncRequest); } protected void BeginAction(object proxy, string command, params object[] args) { MethodDelegate action = FastInvoke.CreateMethodDelegate(proxy.GetType().GetMethod(command)); this.BeginAction(action, proxy, args); } protected void BeginActionWithToolTip(MethodDelegate action, object obj, string toolTip, params object[] args) { EForm.AsyncRequest asyncRequest = new EForm.AsyncRequest(action, obj, args, System.Threading.SynchronizationContext.Current, toolTip); this.inAsyncAction = null; this.OnBeginAction(asyncRequest); System.Threading.ThreadPool.QueueUserWorkItem(new System.Threading.WaitCallback(this.OnWaitCallback), asyncRequest); } protected void BeginActionWithToolTip(object proxy, string command, string toolTip, params object[] args) { MethodDelegate action = FastInvoke.CreateMethodDelegate(proxy.GetType().GetMethod(command)); this.BeginAction(action, proxy, new object[] { toolTip, args }); } protected virtual void OnBeginAction(EForm.AsyncRequest context) { if (this.waitingForm.Visible) { throw new EESException("后台正在执行,请稍候……"); } this.waitingForm.Message = context.ToolTip; this.waitingForm.Show(); } protected virtual void OnEndAction(EForm.AsyncResponse context) { this.waitingForm.Visible = false; } private void OnWaitCallback(object state) { EForm.AsyncRequest asyncRequest = (EForm.AsyncRequest)state; object result = null; System.Exception exception = null; try { result = asyncRequest.Method(asyncRequest.Obj, asyncRequest.Args); } catch (System.Exception ex) { exception = ex; } EForm.AsyncResponse state2 = new EForm.AsyncResponse(asyncRequest.Method, result, asyncRequest.Args, exception); System.Threading.SynchronizationContext context = asyncRequest.Context; if (context != null) { context.Post(new System.Threading.SendOrPostCallback(this.OnSendOrPostCallback), state2); } } private void OnSendOrPostCallback(object state) { EForm.AsyncResponse asyncResponse = (EForm.AsyncResponse)state; this.OnEndAction(asyncResponse); if (asyncResponse.Exception != null) { System.Windows.Forms.MessageBox.Show(EESException.getException(asyncResponse.Exception).Message); return; } this.OnActionComplete(asyncResponse); } protected virtual void OnActionComplete(EForm.AsyncResponse context) { }
这是摘录的项目里面基类窗体关于SynchronizationContext的封装,子类只要使用各种BeginAction就行了,然后在OnActionComplete里面处理访问UI控件的操作
以上是关于理解SynchronizationContext,如何在Winform里面跨线程访问UI控件的主要内容,如果未能解决你的问题,请参考以下文章
SynchronizationContext.CreateCopy 的目的
从给定线程获取 SynchronizationContext
为啥控制台应用程序中没有捕获默认的 SynchronizationContext?