-
Notifications
You must be signed in to change notification settings - Fork 23
Cleanup serial data handling #87
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
JaagupAverin
wants to merge
1
commit into
intercreate:main
Choose a base branch
from
JaagupAverin:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+313
−187
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -42,30 +42,17 @@ class SMPSerialTransport(SMPTransport): | |||||
| _POLLING_INTERVAL_S = 0.005 | ||||||
| _CONNECTION_RETRY_INTERVAL_S = 0.500 | ||||||
|
|
||||||
| class _ReadBuffer: | ||||||
| """The state of the read buffer.""" | ||||||
|
|
||||||
| @unique | ||||||
| class State(IntEnum): | ||||||
| SMP = 0 | ||||||
| """An SMP start or continue delimiter has been received and the | ||||||
| `smp_buffer` is being filled with the remainder of the SMP packet. | ||||||
| """ | ||||||
|
|
||||||
| SER = 1 | ||||||
| """The SMP start delimiter has not been received and the | ||||||
| `ser_buffer` is being filled with data. | ||||||
| """ | ||||||
|
|
||||||
| def __init__(self) -> None: | ||||||
| self.smp = bytearray([]) | ||||||
| """The buffer for the SMP packet.""" | ||||||
|
|
||||||
| self.ser = bytearray([]) | ||||||
| """The buffer for serial data that is not part of an SMP packet.""" | ||||||
| @unique | ||||||
| class BufferState(IntEnum): | ||||||
| SMP = 0 | ||||||
| """An SMP start or continue delimiter has been received and | ||||||
| `_buffer` is being parsed as an SMP packet. | ||||||
| """ | ||||||
|
|
||||||
| self.state = SMPSerialTransport._ReadBuffer.State.SER | ||||||
| """The state of the read buffer.""" | ||||||
| SERIAL = 1 | ||||||
| """The SMP start delimiter has not been received and | ||||||
| `_buffer` is being parsed as serial data. | ||||||
| """ | ||||||
|
|
||||||
| def __init__( # noqa: DOC301 | ||||||
| self, | ||||||
|
|
@@ -131,17 +118,36 @@ def __init__( # noqa: DOC301 | |||||
| inter_byte_timeout=inter_byte_timeout, | ||||||
| exclusive=exclusive, | ||||||
| ) | ||||||
| self._buffer = SMPSerialTransport._ReadBuffer() | ||||||
|
|
||||||
| self._smp_packet_queue: asyncio.Queue[bytes] = asyncio.Queue() | ||||||
| """Contains full SMP packets.""" | ||||||
| self._serial_buffer = bytearray() | ||||||
| """Contains any non-SMP serial data.""" | ||||||
| self._buffer: bytearray = bytearray([]) | ||||||
| """Contains all incoming data (serial + SMP intertwined, may be incomplete).""" | ||||||
| self._buffer_state = SMPSerialTransport.BufferState.SERIAL | ||||||
| """The state of the read buffer.""" | ||||||
|
|
||||||
| logger.debug(f"Initialized {self.__class__.__name__}") | ||||||
|
|
||||||
| def _reset_state(self) -> None: | ||||||
| """Reset internal state and queues for a fresh connection.""" | ||||||
|
|
||||||
| self._smp_packet_queue = asyncio.Queue() | ||||||
| self._serial_buffer.clear() | ||||||
| self._buffer = bytearray([]) | ||||||
|
||||||
| self._buffer = bytearray([]) | |
| self._buffer = bytearray() |
JPHutchins marked this conversation as resolved.
Show resolved
Hide resolved
JPHutchins marked this conversation as resolved.
Show resolved
Hide resolved
JPHutchins marked this conversation as resolved.
Show resolved
Hide resolved
JPHutchins marked this conversation as resolved.
Show resolved
Hide resolved
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The empty list argument
[]inbytearray([])is unnecessary. Usebytearray()directly for clarity.