1. <tfoot id='IbQcV'></tfoot>

      <i id='IbQcV'><tr id='IbQcV'><dt id='IbQcV'><q id='IbQcV'><span id='IbQcV'><b id='IbQcV'><form id='IbQcV'><ins id='IbQcV'></ins><ul id='IbQcV'></ul><sub id='IbQcV'></sub></form><legend id='IbQcV'></legend><bdo id='IbQcV'><pre id='IbQcV'><center id='IbQcV'></center></pre></bdo></b><th id='IbQcV'></th></span></q></dt></tr></i><div id='IbQcV'><tfoot id='IbQcV'></tfoot><dl id='IbQcV'><fieldset id='IbQcV'></fieldset></dl></div>
      • <bdo id='IbQcV'></bdo><ul id='IbQcV'></ul>
    2. <legend id='IbQcV'><style id='IbQcV'><dir id='IbQcV'><q id='IbQcV'></q></dir></style></legend>

      <small id='IbQcV'></small><noframes id='IbQcV'>

        C#串口通信中的await事件和超时

        C# await event and timeout in serial port communication(C#串口通信中的await事件和超时)

        <small id='ywAUM'></small><noframes id='ywAUM'>

        <legend id='ywAUM'><style id='ywAUM'><dir id='ywAUM'><q id='ywAUM'></q></dir></style></legend>

        <tfoot id='ywAUM'></tfoot>
        • <bdo id='ywAUM'></bdo><ul id='ywAUM'></ul>

            1. <i id='ywAUM'><tr id='ywAUM'><dt id='ywAUM'><q id='ywAUM'><span id='ywAUM'><b id='ywAUM'><form id='ywAUM'><ins id='ywAUM'></ins><ul id='ywAUM'></ul><sub id='ywAUM'></sub></form><legend id='ywAUM'></legend><bdo id='ywAUM'><pre id='ywAUM'><center id='ywAUM'></center></pre></bdo></b><th id='ywAUM'></th></span></q></dt></tr></i><div id='ywAUM'><tfoot id='ywAUM'></tfoot><dl id='ywAUM'><fieldset id='ywAUM'></fieldset></dl></div>

                  <tbody id='ywAUM'></tbody>
                  本文介绍了C#串口通信中的await事件和超时的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  您好,我在串口上有一个简单的通信,一切都根据书籍和文档,所以开放端口方法如下所示:

                  Hi I have a simple communication on serial port well all is according to book and documentation so open port method looks like this:

                      public SerialPort OpenPort(string portName)
                      {
                          Port = new SerialPort(portName, BaudRate);
                          try
                          {
                              Port.Open();
                              Port.DtrEnable = true;
                              Port.RtsEnable = true;
                  
                              Port.DataReceived += DataReceivedEvent;
                          }
                          catch (Exception e)
                          {
                              Console.WriteLine($"ERRROR: {e.Message}");
                          }
                  
                          return Port;
                      }
                  

                  这里我们有一个关于数据读取的事件:

                  Here we have an event on data read:

                      private async void DataReceivedEvent(object sender, SerialDataReceivedEventArgs e)
                      {
                          var data = new byte[Port.BytesToRead];
                          await Port.BaseStream.ReadAsync(data, 0, data.Length);
                  
                          Response = data;
                  
                          isFinished = true;
                      }
                  

                  一切都很好,花花公子,但现在我想按需发送消息并将响应存储在属性中,我还想在该任务超时时添加取消令牌.所以我想出了这个方法:

                  Well all is fine and dandy, but now i want to send a message on demand and store response in a property, also i want to add cancellation token on that task timeout. So i came up with this method:

                          public async Task SendMessenge(byte[] messange)
                      {
                          var cancellationTokenSource = new CancellationTokenSource();
                          CancellationToken token = cancellationTokenSource.Token;
                          cancellationTokenSource.CancelAfter(5000);
                          token.ThrowIfCancellationRequested();
                  
                          isFinished = false;
                          try
                          {
                              Task worker = Task.Run(() =>
                              {
                                  while (!isFinished)
                                  {
                                  }
                              }, token);
                  
                              await Port.BaseStream.WriteAsync(messange, 0, messange.Length, token);
                              await worker;
                          }
                          catch (OperationCanceledException e)
                          {
                              throw new OperationCanceledException(e.Message, e, token);
                          }
                      }
                  

                  问题在于这个while循环,如果它是任务,它会进入无限循环,并且它不会捕获超时令牌,如果我将它放在任务之外并删除工作人员它可以工作,但我会丢失取消令牌.我想我可以做一些手动倒计时,比如:

                  Problem is with this while loop, if it is task it goes into endless loop, and it does not capture timeout token, if i put it outside a task and remove worker it works but im loosing cancellation token. I guess i could do some manual countdown like:

                  double WaitTimeout = Timeout + DateAndTime.Now.TimeOfDay.TotalMilliseconds;
                  while (!(DateAndTime.Now.TimeOfDay.TotalMilliseconds >= WaitTimeout)|| !isFalse) 
                  

                  但它看起来很丑.

                  所以我认为我的基本问题是如何有效地等待事件响应并获得超时?

                  So i think my basic question is how to effectively await for event to response and get a timeout?

                  推荐答案

                  写操作后循环读取数据,直到得到完整响应.但是您需要使用同步 API 和 Task.Run() 因为当前版本的异步 API 完全忽略了 SerialPort 超时属性和 Task 中的 CancellationToken几乎完全基于 API.

                  Read data in a loop after write operation until get a full response. But you need to use synchronous API and Task.Run() as current version of the asynchronous API ignores SerialPort timeout properties completely and CancellationToken in Task based API almost completely.

                  摘自 SerialPort.ReadTimeout 与 SerialPort.BaseStream.ReadAsync() 相关的 Microsoft Docs,因为它使用默认实现 Stream.ReadAsync():

                  Excerpt from the SerialPort.ReadTimeout Microsoft Docs that is relevant to SerialPort.BaseStream.ReadAsync() because it uses default implementation Stream.ReadAsync():

                  此属性不影响 BeginRead 方法view=netframework-4.7.2" rel="nofollow noreferrer">BaseStream 属性.

                  This property does not affect the BeginRead method of the stream returned by the BaseStream property.

                  使用同步 API 和动态超时属性更新的示例实现:

                  Example implementation using synchronous API and dynamic timeout properties update:

                  static byte[] SendMessage(byte[] message, TimeSpan timeout)
                  {
                      // Use stopwatch to update SerialPort.ReadTimeout and SerialPort.WriteTimeout 
                      // as we go.
                      var stopwatch = Stopwatch.StartNew();
                  
                      // Organize critical section for logical operations using some standard .NET tool.
                      lock (_syncRoot)
                      {
                          var originalWriteTimeout = _serialPort.WriteTimeout;
                          var originalReadTimeout = _serialPort.ReadTimeout;
                          try
                          {
                              // Start logical request.
                              _serialPort.WriteTimeout = (int)Math.Max((timeout - stopwatch.Elapsed).TotalMilliseconds, 0);
                              _serialPort.Write(message, 0, message.Length);
                  
                              // Expected response length. Look for the constant value from 
                              // the device communication protocol specification or extract 
                              // from the response header (first response bytes) if there is 
                              // any specified in the protocol.
                              int count = ...;
                              byte[] buffer = new byte[count];
                              int offset = 0;
                              // Loop until we recieve a full response.
                              while (count > 0)
                              {
                                  _serialPort.ReadTimeout = (int)Math.Max((timeout - stopwatch.Elapsed).TotalMilliseconds, 0);
                                  var readCount = _serialPort.Read(buffer, offset, count);
                                  offset += readCount;
                                  count -= readCount;
                              }
                              return buffer;
                          }
                          finally
                          {
                              // Restore SerialPort state.
                              _serialPort.ReadTimeout = originalReadTimeout;
                              _serialPort.WriteTimeout = originalWriteTimeout;
                          }
                      }
                  }
                  

                  以及示例用法:

                  byte[] request = ...;
                  TimeSpan timeout = ...;
                  
                  var sendTask = Task.Run(() => SendMessage(request, timeout));
                  try
                  {
                      await await Task.WhenAny(sendTask, Task.Delay(timeout));
                  }
                  catch (TaskCanceledException)
                  {
                      throw new TimeoutException();
                  }
                  byte[] response = await sendTask;
                  

                  你可以用 CancellationToken 实例做类似的事情,并在读写操作之间使用 CancellationToken.ThrowIfCancellationRequested() 但你必须确保在 SerialPort 或其他线程池线程将永远挂起,可能持有锁.据我所知,您不能使用 CancellationToken.Register() 因为没有 SerialPort 方法可以调用来取消操作.

                  You can do similar thing with CancellationToken instance and use CancellationToken.ThrowIfCancellationRequested() between read and write operations but you have to make sure that proper timeouts are set on SerialPort or otherwise Thread pool thread will hang forever possible holding a lock. As far as I know you can't utilize CancellationToken.Register() because there is no SerialPort method to call to cancel an operation.

                  更多信息请查看:

                  • 前 5 名串行端口提示 Kim Hamilton 的文章
                  • 推荐的SerialPort异步使用模式, 记录 Stream.ReadAsync() 中的 CancellationToken 是建议性的 和 NetworkStream.ReadAsync/WriteAsync 忽略 .NET GitHub 上的 CancellationToken 相关问题
                  • 我应该为同步方法? Stephen Toub 的文章
                  • Top 5 SerialPort Tips article by Kim Hamilton
                  • Recommended asynchronous usage pattern of SerialPort, Document that CancellationToken in Stream.ReadAsync() is advisory and NetworkStream.ReadAsync/WriteAsync ignores CancellationToken related issues on .NET GitHub
                  • Should I expose asynchronous wrappers for synchronous methods? article by Stephen Toub

                  这篇关于C#串口通信中的await事件和超时的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Multicast delegate weird behavior in C#?(C# 中的多播委托奇怪行为?)
                  Parameter count mismatch with Invoke?(参数计数与调用不匹配?)
                  How to store delegates in a List(如何将代表存储在列表中)
                  How delegates work (in the background)?(代表如何工作(在后台)?)
                  C# Asynchronous call without EndInvoke?(没有 EndInvoke 的 C# 异步调用?)
                  Delegate.CreateDelegate() and generics: Error binding to target method(Delegate.CreateDelegate() 和泛型:错误绑定到目标方法)

                    <tbody id='mGZWf'></tbody>

                  1. <small id='mGZWf'></small><noframes id='mGZWf'>

                      <bdo id='mGZWf'></bdo><ul id='mGZWf'></ul>
                      <tfoot id='mGZWf'></tfoot><legend id='mGZWf'><style id='mGZWf'><dir id='mGZWf'><q id='mGZWf'></q></dir></style></legend>

                          <i id='mGZWf'><tr id='mGZWf'><dt id='mGZWf'><q id='mGZWf'><span id='mGZWf'><b id='mGZWf'><form id='mGZWf'><ins id='mGZWf'></ins><ul id='mGZWf'></ul><sub id='mGZWf'></sub></form><legend id='mGZWf'></legend><bdo id='mGZWf'><pre id='mGZWf'><center id='mGZWf'></center></pre></bdo></b><th id='mGZWf'></th></span></q></dt></tr></i><div id='mGZWf'><tfoot id='mGZWf'></tfoot><dl id='mGZWf'><fieldset id='mGZWf'></fieldset></dl></div>