forked from ivgg-me/aioremootio
-
Notifications
You must be signed in to change notification settings - Fork 2
/
example_mc.py
121 lines (98 loc) · 4.9 KB
/
example_mc.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
# Copyright 2021 Gergö Gabor Ilyes-Veisz
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from typing import NoReturn, Optional
import argparse
import logging
import asyncio
import aiohttp
import aioremootio
AD_HOST = "host"
AD_API_SECRET_KEY = "api_secret_key"
AD_API_AUTH_KEY = "api_auth_key"
AD_ACTION = "action"
AV_ACTION_TRIGGER = "trigger"
AV_ACTION_OPEN = "open"
AV_ACTION_CLOSE = "close"
log_state_periodically_task: Optional[asyncio.Task] = None
class ExampleStateListener(aioremootio.Listener[aioremootio.StateChange]):
__logger: logging.Logger
def __init__(self, logger: logging.Logger):
self.__logger = logger
async def execute(self, client: aioremootio.RemootioClient, subject: aioremootio.StateChange) -> NoReturn:
self.__logger.info("State of the device has been changed. Host [%s] OldState [%s] NewState [%s]" %
(client.host, subject.old_state, subject.new_state))
async def log_state_periodically(remootio_client: aioremootio.RemootioClient, period: float, logger: logging.Logger):
try:
while True:
logger.info("Last known state of the device is %s", remootio_client.state)
await asyncio.sleep(period)
except asyncio.CancelledError:
pass
async def main() -> NoReturn:
logger = logging.getLogger(__name__)
logger.setLevel(logging.INFO)
handler: logging.Handler = logging.StreamHandler()
handler.setFormatter(logging.Formatter(fmt="%(asctime)s [%(levelname)s] %(message)s"))
logger.addHandler(handler)
parser: argparse.ArgumentParser = argparse.ArgumentParser("python %s" % __file__)
parser.add_argument("--host", required=True, type=str, dest=AD_HOST,
help="IP address or host name (that resolves to the IP address) of the device to connect to")
parser.add_argument("--apiSecretKey", required=True, type=str, dest=AD_API_SECRET_KEY,
help="API Secret Key for the API access")
parser.add_argument("--apiAuthKey", required=True, type=str, dest=AD_API_AUTH_KEY,
help="API Auth Key for the API access")
parser.add_argument("--action", required=False, dest=AD_ACTION,
choices=[AV_ACTION_TRIGGER, AV_ACTION_OPEN, AV_ACTION_CLOSE],
help="The action to be triggered on the device. If not given the state of the device will be "
"logged.")
args: dict = vars(parser.parse_args())
connection_options: aioremootio.ConnectionOptions = \
aioremootio.ConnectionOptions(args[AD_HOST], args[AD_API_SECRET_KEY], args[AD_API_AUTH_KEY], False)
state_change_listener: aioremootio.Listener[aioremootio.StateChange] = ExampleStateListener(logger)
remootio_client: aioremootio.RemootioClient
async with aiohttp.ClientSession() as client_session:
try:
remootio_client = \
await aioremootio.RemootioClient(
connection_options,
client_session,
aioremootio.LoggerConfiguration(logger=logger),
[state_change_listener]
)
await remootio_client.connect()
except aioremootio.RemootioClientConnectionEstablishmentError:
logger.exception("The client has failed to establish connection to the Remootio device.")
except aioremootio.RemootioClientAuthenticationError:
logger.exception("The client has failed to authenticate with the Remootio device.")
except aioremootio.RemootioError:
logger.exception("Failed to create client because of an error.")
else:
log_state_periodically_task = asyncio.create_task(log_state_periodically(remootio_client, 60, logger))
if AD_ACTION not in args or args[AD_ACTION] is None:
logger.info("State of the device: %s", remootio_client.state)
elif args[AD_ACTION] == AV_ACTION_TRIGGER:
await remootio_client.trigger()
elif args[AD_ACTION] == AV_ACTION_OPEN:
await remootio_client.trigger_open()
elif args[AD_ACTION] == AV_ACTION_CLOSE:
await remootio_client.trigger_close()
while True:
await asyncio.sleep(0.1)
if __name__ == "__main__":
try:
asyncio.run(main())
except KeyboardInterrupt:
if log_state_periodically_task is not None:
log_state_periodically_task.cancel()
pass