pysmarlaapi 0.10.2__py3-none-any.whl → 0.10.3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of pysmarlaapi might be problematic. Click here for more details.

pysmarlaapi/__init__.py CHANGED
@@ -1,4 +1,4 @@
1
- __version__ = "0.10.2"
1
+ __version__ = "0.10.3"
2
2
 
3
3
  from .classes import Connection
4
4
  from .federwiege import Federwiege
@@ -38,6 +38,7 @@ class ConnectionHub:
38
38
  self,
39
39
  event_loop: asyncio.AbstractEventLoop,
40
40
  connection: Connection,
41
+ listener,
41
42
  max_delay: int = 256,
42
43
  ):
43
44
  self.connection: Connection = connection
@@ -47,7 +48,7 @@ class ConnectionHub:
47
48
 
48
49
  self.logger = logging.getLogger(f"{__package__}[{self.connection.token.serialNumber}]")
49
50
 
50
- self.listeners = set()
51
+ self.connection_callback = listener
51
52
 
52
53
  self._running = False
53
54
  self._wake = asyncio.Event()
@@ -58,9 +59,11 @@ class ConnectionHub:
58
59
  async def notifycontrollerconnection(self, args):
59
60
  value = args[0]
60
61
  if value == "ControllerConnected":
61
- await self.notify_listeners(True)
62
+ self.logger.info("Controller connected")
63
+ await self.connection_callback(True)
62
64
  else:
63
- await self.notify_listeners(False)
65
+ self.logger.info("Controller disconnected")
66
+ await self.connection_callback(False)
64
67
 
65
68
  def setup(self):
66
69
  self.client = SignalRClient(self.connection.url + "/MobileAppHub", retry_count=1)
@@ -69,20 +72,6 @@ class ConnectionHub:
69
72
  self.client.on_error(self.on_error)
70
73
  self.client.on("SetNotifyAppConnectionCallback", self.notifycontrollerconnection)
71
74
 
72
- def add_listener(self, listener):
73
- if self.running:
74
- return
75
- self.listeners.add(listener)
76
-
77
- def remove_listener(self, listener):
78
- if self.running:
79
- return
80
- self.listeners.remove(listener)
81
-
82
- async def notify_listeners(self, value):
83
- for listener in self.listeners:
84
- await listener(value)
85
-
86
75
  async def on_open_function(self):
87
76
  self._retry_delay = 1
88
77
  self.logger.info("Connection to server established")
@@ -18,14 +18,14 @@ class Federwiege:
18
18
  def connected(self):
19
19
  return self.hub.connected
20
20
 
21
- async def on_controller_connection_change(self, value):
21
+ async def on_connection_change(self, value):
22
22
  self.available = value
23
- if value:
23
+ if self.available:
24
24
  self.sync()
25
25
 
26
26
  def __init__(self, event_loop: asyncio.AbstractEventLoop, connection: Connection):
27
27
  self.serial_number = connection.token.serialNumber
28
- self.hub = ConnectionHub(event_loop, connection)
28
+ self.hub = ConnectionHub(event_loop, connection, self.on_connection_change)
29
29
  self.services: dict[str, Service] = {
30
30
  "babywiege": BabywiegeService(self.hub),
31
31
  "analyser": AnalyserService(self.hub),
@@ -66,7 +66,6 @@ class Federwiege:
66
66
  with self._lock:
67
67
  if self.registered:
68
68
  return
69
- self.registered = True
70
- self.hub.add_listener(self.on_controller_connection_change)
71
69
  for service in self.services.values():
72
70
  service.register()
71
+ self.registered = True
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pysmarlaapi
3
- Version: 0.10.2
3
+ Version: 0.10.3
4
4
  Summary: Swing2Sleep Smarla API
5
5
  Author-email: Robin Lintermann <robin.lintermann@explicatis.com>
6
6
  Requires-Python: >=3.11
@@ -1,9 +1,9 @@
1
- pysmarlaapi/__init__.py,sha256=CKsioEmpvDTxuPK7U0PkysHMGnXtKybXInmhtOWqZjA,91
1
+ pysmarlaapi/__init__.py,sha256=8RGaOyUGbyQ_K8qBXrePMnucfknkt0WORdJ3M1d6DBw,91
2
2
  pysmarlaapi/classes/__init__.py,sha256=N-ZV3Id_t5ciovUlPUGCk5SLLiMUonRoQZWpfOU4ZsM,69
3
3
  pysmarlaapi/classes/auth_token.py,sha256=dpo0lBT9Advm3Iyxu-fT9sq078U2OxgXXBuF5gbBZkM,942
4
4
  pysmarlaapi/classes/connection.py,sha256=vVC0Ur0KQUb4pNDVuCYnfk-JXs-O-FwYVO-2y1E2g6g,1551
5
- pysmarlaapi/connection_hub/__init__.py,sha256=qmoq94Pl0E87Ni_d5L3PqFra2z40a_uZupqmX9eDNAs,4844
6
- pysmarlaapi/federwiege/__init__.py,sha256=P3hpgf-okQDEpwCUiLHn1acnenURUorEDVFya9Dvk6M,2020
5
+ pysmarlaapi/connection_hub/__init__.py,sha256=QUwB7j5BdF5dwal1_uFPUC7hqOMojLUeGlKHcd_32HQ,4624
6
+ pysmarlaapi/federwiege/__init__.py,sha256=LH3Uw9AjO4OAYcMQAIIJ8_i95l50YqcwDWai0E28UJA,1973
7
7
  pysmarlaapi/federwiege/classes/__init__.py,sha256=DFJJVOKpra40S4ZX_oq2RyMazg6Nx0c8hoPggmj1bXA,60
8
8
  pysmarlaapi/federwiege/classes/property.py,sha256=S5Zzo9cXDJMFcQG1vCw1eO-oqeSpQs2YjxWouN_KRkU,1032
9
9
  pysmarlaapi/federwiege/classes/service.py,sha256=Y0OQxtQLaHp4qY8Vthj0zRroPoYTiD2WA9ZR96teZTo,632
@@ -16,7 +16,7 @@ pysmarlaapi/federwiege/types/__init__.py,sha256=XWB_IrNYbIyQjyR_oKAOvHAjGGRLSQqZ
16
16
  pysmarlaapi/federwiege/types/send_diag_status.py,sha256=hxpfNQmZs1YOztxLVnN3Bu50fXwf-hfV6K8GiQlBvkk,120
17
17
  pysmarlaapi/federwiege/types/spring_status.py,sha256=cJsWFf2ZG-NvnT3l_CxVJfMFB3Ruv_juTy7Lpb-YEsA,227
18
18
  pysmarlaapi/federwiege/types/update_status.py,sha256=YkajOEJ09pY9u4EBxw8ePEjPjYOLdK0i2l41cXbjb8Y,123
19
- pysmarlaapi-0.10.2.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
20
- pysmarlaapi-0.10.2.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
21
- pysmarlaapi-0.10.2.dist-info/METADATA,sha256=pz4Rij3qwc5ydyu7j4qL1s_LU0dP-oaCreB9uEoGfKA,1104
22
- pysmarlaapi-0.10.2.dist-info/RECORD,,
19
+ pysmarlaapi-0.10.3.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
20
+ pysmarlaapi-0.10.3.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
21
+ pysmarlaapi-0.10.3.dist-info/METADATA,sha256=SoziHBuB2_oZZHDlt1hsszyzMStlrGXhVUeie-hMoWM,1104
22
+ pysmarlaapi-0.10.3.dist-info/RECORD,,