Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
CyanLight
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
fxk8y
CyanLight
Commits
d2c09e04
Commit
d2c09e04
authored
3 years ago
by
fxk8y
Browse files
Options
Downloads
Patches
Plain Diff
Moar MQTT stuff
parent
1f573c10
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
SiliconTorch/Device.py
+20
-18
20 additions, 18 deletions
SiliconTorch/Device.py
with
20 additions
and
18 deletions
SiliconTorch/Device.py
+
20
−
18
View file @
d2c09e04
from
MQTT
import
Topic
from
typing
import
Any
,
Callable
...
...
@@ -6,6 +7,8 @@ from typing import Any, Callable
# TODO: dev is stalled!
# at first, we'll design easier things to not loose focus on the project
# Just use simple properties and triggers to get the same (write-only) behavior
#
# TODO ^2: use functools.wraps to copy the annotations of decorated functions
class
MQTTProperty
:
def
__init__
(
self
,
name
:
str
=
None
,
initialValue
:
Any
=
None
,
getConvert
:
Callable
[[
str
],
Any
]
=
None
,
setConvert
:
Callable
[[
Any
],
str
]
=
None
,
readOnly
=
False
):
...
...
@@ -55,48 +58,47 @@ class MQTTProperty:
class
MQTTTrigger
:
# TODO: should we check message's type instead to decide if it is binary? evaluate!
def
__init__
(
self
,
topic
:
str
=
None
,
message
:
str
=
None
,
binaryMessage
:
bytes
=
None
):
if
topic
is
not
None
:
self
.
topic
=
topic
self
.
__
topic
=
Topic
(
topic
)
else
:
raise
AttributeError
(
'
topic is mandatory
'
)
# TODO: correct exception…?
if
binaryMessage
is
not
None
:
self
.
message
=
binaryMessage
self
.
__
message
=
binaryMessage
elif
message
is
not
None
:
self
.
message
=
bytes
(
message
,
'
UTF-8
'
)
self
.
__
message
=
bytes
(
message
,
'
UTF-8
'
)
else
:
self
.
message
=
b
''
self
.
__message
=
b
''
# ###################
# ### TODO: !!! ###
# ###################
def
__call__
(
self
,
func
)
->
Callable
[[
Any
],
Any
]:
self
.
__function
=
func
return
self
class
Device
:
def
__init__
(
self
,
torch
,
name
,
online
=
True
):
def
__init__
(
self
,
torch
,
name
:
str
,
online
:
bool
=
True
):
self
.
_torch
=
torch
self
.
_name
=
name
self
.
_
_
name
=
name
self
.
__online
=
online
@property
def
name
(
self
):
return
self
.
_name
return
self
.
_
_
name
@property
def
online
(
self
):
return
self
.
__online
@MQTTTrigger
(
topic
=
'
{NameSpace}/{DeviceName}/command
'
,
message
=
'
restart
'
)
def
restart
(
self
):
pass
class
Extension
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment