473,396 Members | 2,010 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

SerialPort: DataReceived thread ...

What thread does the DataReceived event run on?

I'm preparing a design that uses the DataReceived event to
stimulate a protocol state machine (PSM). The ambition is to
have the serial process happen in the background, and when
certain conditions are met, the PSM then triggers an event
(myPacketIsHere for instance).

The PSM will only ever deal with the serial data sequentially,
i.e. through the use of locks and such, only one instance of the
PSM will run at any given time.

My questions then are:
* What thread does the DataReceivedEventHandler run on?
(Is it from the threadpool?)
* What's the best practiced method for having an event
handler keep state information between successive calls?
* When the PSM triggers its own event, what thread is the
event handler for that going to be running on.
(myPacketIsHereEventHandler())

If it isn't obvious that I'm weak on Delegates, and Threading,
I apologize ... the fact is I am.

- Jamie
Feb 26 '07 #1
3 11008
Hi,

The DataReceived event executes in the (background) thread context of the
SerialPort receive thread. All code called directly from the DataReceived
event executes in the background tread context.

You can keep state information in any suitable structure. Typically a set
of private (perhaps shared) variables, or in an object (Class, so that you
can encapsulate both data - states - and methods and events that might be
called depeding on state) that you might instatiate when you open the port
and begin communications. If you create an object to handle the PSM, it may
use either the background thread of the DataReceive event, or it can
delegate operations to a separate background thread.

The more threads used, the more complex becomes debugging. And, usually,
additional threads will not provide any improvement in performance or
maintainability (IMO).

BTW, the object method for creating a state machine is the approach that I
prefer, unless the number of states is fairly small. Realize that if your
DataReceived code or code in the PSM interact with the User Interface
(STAThread), then this interaction must be marshaled to the UI thread via a
delegate (Invoke or BeginInvoke).

Dick

--
Richard Grier, MVP
Hard & Software
Author of Visual Basic Programmer's Guide to Serial Communications, Fourth
Edition,
ISBN 1-890422-28-2 (391 pages, includes CD-ROM). July 2004, Revised March
2006.
See www.hardandsoftware.net for details and contact information.
Feb 26 '07 #2
Thank you for the response. I have two more questions.
The DataReceived event executes in the (background) thread context of the
SerialPort receive thread. All code called directly from the DataReceived
event executes in the background tread context.
What about events published by the DataReceived handler. On
which thread are those events picked up? Will these be a
background thread as well?
BTW, the object method for creating a state machine is the approach that I
prefer, unless the number of states is fairly small. Realize that if your
DataReceived code or code in the PSM interact with the User Interface
(STAThread), then this interaction must be marshaled to the UI thread via a
delegate (Invoke or BeginInvoke).
I'm not sure what you mean by "the object method for creating a
state machine". Could you elaborate with, perhaps a pointer to
some reading material?

- Jamie
Feb 26 '07 #3
Hi,
>>
What about events published by the DataReceived handler. On
which thread are those events picked up? Will these be a
background thread as well?
<<

Yes (unless these events are specifically generated by code in a different
thread).
>>
I'm not sure what you mean by "the object method for creating a
state machine". Could you elaborate with, perhaps a pointer to
some reading material?
<<

What this means is that you create a class that implements all of the
features of your FSM (instead of inline code). Then, you create an instance
of that class when you start your program, perhaps when you open the port.
Methods in the class might send commands, wait responses, or process serial
data via a method that is called from the DataReceived event, where you pass
it the serial data that generated the event.

The class itself would have data that represents state (private variables)
and data that represent results that you want to relay to the calling
code -- and events for notification. Unless this class creates a seperate
thread (and it probably won't), any event notifications based on
DataReceived data will execute in the thread context of the background
thread.

I have a FSM that decodes GPS data (for example) in my book that uses this
form. I'm sure there are others around. However, these sort of things tend
to be "designed for a purpose" and while useful as guides will be just that.

Dick

--
Richard Grier, MVP
Hard & Software
Author of Visual Basic Programmer's Guide to Serial Communications, Fourth
Edition,
ISBN 1-890422-28-2 (391 pages, includes CD-ROM). July 2004, Revised March
2006.
See www.hardandsoftware.net for details and contact information.
Feb 27 '07 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: LordHog | last post by:
Hello all, I would like to use the new SerialPort class in Visual C++ 2005 Express edition, but I am having problems adding my event handler to the DataReceived event. In the header file I have...
4
by: Ben Kim | last post by:
Hello all, Does anyone have an example on how to implement the new SerialPort Class in VB.NET? I have been able to create the class, send (.WriteLine) to the port and Read from the port but...
0
by: no-one | last post by:
Hi Guys, I am fairly new to Dot Net and I am trying to write a program that listens to the serial port and displays the string in a text box or listbox. I am using VS 2005 and framework 2.0 ...
5
by: herbert | last post by:
back in 1978 (!) the VAX/VMS serial line driver offered everything a developer needs to develop protocols of all kinds: - read x bytes - read to end of line - read to special character - read...
4
by: Jamie Risk | last post by:
I'm trying to implement a protocol that has a concept of a GAP timer in the serial stream; if two properly framed characters are spaced in time by so many milliseconds or longer, there is an...
7
by: Simon | last post by:
Hi all, I'm writing a PocketPC / CE application which communicates with a Bluetooth GPS reciever that is paired to a serial port but I'm experiencing odd behaviour from the CF 2.0 SerialPort...
5
by: agloth | last post by:
Hi, I have a serial port reader application that uses datareceived event to read incoming data. The application also send response some of the messages. The problem is the application...
0
by: =?Utf-8?B?TGVuIFdlbHRtYW4=?= | last post by:
I've created MySerialPort, which inherits from SerialPort, and want to set an internal flag when DataReceived is signalled. If I were firing the event myself, it would be a simple matter of flag...
0
by: cronusf | last post by:
I set up two virtual COM ports 3 and 4 using com0com. I tried to test it with the following program. However, the DataReceived event handlers never get called. Can anyone with SerialPort class...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.