-
Notifications
You must be signed in to change notification settings - Fork 2
Implement Multi-Threading into CARP #24
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
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
06d8155
begin threading implementation for `AcquisitionWorker()`
mmillns2 7423456
Completed first draft of threaded AcquisitionWroker
mmillns2 8fadd6b
Made Tracker thread-safe
mmillns2 5ef0968
Removed all digitiser calls within Controller
mmillns2 26231a8
Removed digitiser calls from elements.
mmillns2 9390b83
Fixed all multithreading bugs.
mmillns2 a2f041a
add comments and seperate classes into their own files
mmillns2 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 |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| from enum import Enum, auto | ||
| from dataclasses import dataclass | ||
|
|
||
| class CommandType(Enum): | ||
| START = 0 | ||
| STOP = 1 | ||
| CONNECT = auto() | ||
| UPDATE = auto() | ||
| CH_DISPLAY = auto() | ||
|
|
||
| @dataclass | ||
| class Command: | ||
| type: CommandType | ||
| args: tuple = () | ||
|
|
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
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 |
|---|---|---|
| @@ -0,0 +1,33 @@ | ||
| import logging | ||
| import time | ||
| from threading import Lock | ||
|
|
||
| class Tracker: | ||
| ''' | ||
| Tracking class that keeps track of: | ||
| - number of collected events | ||
| - speed at which data is being collected | ||
| ''' | ||
|
|
||
| def __init__(self): | ||
| self.start_time = time.perf_counter() | ||
| self.bytes_ps = 0 | ||
| self.events_ps = 0 | ||
| self.last_time = self.start_time | ||
| self.lock = Lock() | ||
|
|
||
| def track(self, nbytes: int = 0): | ||
| ''' | ||
| Tracker outputting the number of events that arrive per second | ||
| ''' | ||
| with self.lock: | ||
| self.events_ps += 1 | ||
| self.bytes_ps += nbytes | ||
|
|
||
| t_check = time.perf_counter() | ||
| if t_check - self.last_time >= 1.0: | ||
| MB = self.bytes_ps / 1000000 | ||
| logging.info(f'|| {self.events_ps} events/sec || {MB:.2f} MB/sec ||') | ||
| self.last_time = t_check | ||
| self.bytes_ps = 0 | ||
| self.events_ps = 0 |
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.
Uh oh!
There was an error while loading. Please reload this page.