Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
pipiche38 committed Nov 5, 2023
1 parent a4eb311 commit c854903
Show file tree
Hide file tree
Showing 5 changed files with 134 additions and 32 deletions.
23 changes: 18 additions & 5 deletions Classes/ZigpyTransport/AppBellows.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python3
#!/usr/bin/env python3btt.
# coding: utf-8 -*-
#
# Author: deufo, badz & pipiche38
Expand All @@ -7,8 +7,8 @@
import logging

import bellows.config as bellows_conf
import bellows.types as bt
import zigpy.types as t
import bellows.types as t
import zigpy.types as zigpy_t
import bellows.zigbee.application
import zigpy.config as zigpy_conf
import zigpy.device
Expand Down Expand Up @@ -137,7 +137,7 @@ async def register_endpoints(self, endpoint=1):
def get_device(self, ieee=None, nwk=None):
return Classes.ZigpyTransport.AppGeneric.get_device(self, ieee, nwk)

def handle_join(self, nwk: bt.EmberNodeId, ieee: bt.EmberEUI64, parent_nwk: bt.EmberNodeId, *, handle_rejoin: bool = True,) -> None:
def handle_join(self, nwk: t.EmberNodeId, ieee: t.EmberEUI64, parent_nwk: t.EmberNodeId, *, handle_rejoin: bool = True,) -> None:
return Classes.ZigpyTransport.AppGeneric.handle_join(self, nwk, ieee, parent_nwk)

def get_device_ieee(self, nwk):
Expand All @@ -149,8 +149,21 @@ def handle_leave(self, nwk, ieee):
def get_zigpy_version(self):
return Classes.ZigpyTransport.AppGeneric.get_zigpy_version(self)

def packet_received(self, packet: t.ZigbeePacket) -> None:
def packet_received(self, packet: zigpy_t.ZigbeePacket) -> None:
return Classes.ZigpyTransport.AppGeneric.packet_received(self,packet)

def handle_message(
self,
sender: zigpy.device.Device,
profile: int,
cluster: int,
src_ep: int,
dst_ep: int,
message: bytes,
* ,
dst_addressing=None,
)->None:
return Classes.ZigpyTransport.AppGeneric.handle_message(self,sender,profile,cluster,src_ep,dst_ep,message, dst_addressing=dst_addressing)

async def set_zigpy_tx_power(self, power):
# EmberConfigTxPowerMode - EZSP_CONFIG_TX_POWER_MODE in EzspConfigId
Expand Down
13 changes: 13 additions & 0 deletions Classes/ZigpyTransport/AppDeconz.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,19 @@ def handle_leave(self, nwk, ieee):
def packet_received(self, packet: t.ZigbeePacket) -> None:
return Classes.ZigpyTransport.AppGeneric.packet_received(self,packet)

def handle_message(
self,
sender: zigpy.device.Device,
profile: int,
cluster: int,
src_ep: int,
dst_ep: int,
message: bytes,
* ,
dst_addressing=None,
) -> None:
return Classes.ZigpyTransport.AppGeneric.handle_message(self,sender,profile,cluster,src_ep,dst_ep,message,dst_addressing=dst_addressing)

async def set_zigpy_tx_power(self, power):
pass
#await self._api.set_tx_power(power)
Expand Down
110 changes: 87 additions & 23 deletions Classes/ZigpyTransport/AppGeneric.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,14 @@ def get_zigpy_version(self):
return self.version


def packet_received(self, packet: t.ZigbeePacket) -> None:
def packet_received(
self,
packet: t.ZigbeePacket
) -> None:

"""Notify zigpy of a received Zigbee packet."""
self.log.logging("TransportZigpy", "Debug", "packet_received %s" %(packet))

try:
sender = self.get_device_with_address(packet.src)
self.log.logging("TransportZigpy", "Debug", "identified device - %s (%s)" %(str(sender), type(sender)) )
Expand All @@ -188,57 +194,115 @@ def packet_received(self, packet: t.ZigbeePacket) -> None:
message = packet.data.serialize()
hex_message = binascii.hexlify(message).decode("utf-8")
dst_addressing = packet.dst.addr_mode if packet.dst else None

write_capture_rx_frames( self, sender, profile, cluster, src_ep, dst_ep, message, hex_message, dst_addressing)

self.log.logging("TransportZigpy", "Debug", "packet_received - %s %s %s %s %s %s %s %s" %(
self.log.logging("TransportZigpy", "Debug", "packet_received - %s %s %s %s %s %s %s %s" %(
sender, profile, cluster, src_ep, dst_ep, message, hex_message, dst_addressing))

_handle_message( self, sender, profile, cluster, src_ep, dst_ep, message, dst_addressing, packet)
return

def handle_message(
self,
sender: zigpy.device.Device,
profile: int,
cluster: int,
src_ep: int,
dst_ep: int,
message: bytes,
dst_addressing=None,
) -> None:

"""Notify zigpy of a received handle_message."""
_handle_message( self, sender, profile, cluster, src_ep, dst_ep, message, dst_addressing)


def _handle_message(
self,
sender: zigpy.device.Device,
profile: int,
cluster: int,
src_ep: int,
dst_ep: int,
message: bytes,
dst_addressing=None,
Packet=None
) -> None:

hex_message = binascii.hexlify(message).decode("utf-8")
write_capture_rx_frames( self, sender, profile, cluster, src_ep, dst_ep, message, hex_message, dst_addressing)

if sender.nwk == 0x0000:
# When coming from coordinator we have to send it back to zigpy
self.log.logging("TransportZigpy", "Debug", "packet_received from Controller Sender: %s Profile: %04x Cluster: %04x srcEp: %02x dstEp: %02x message: %s" %(
self.log.logging("TransportZigpy", "Debug", "handle_message from Controller Sender: %s Profile: %04x Cluster: %04x srcEp: %02x dstEp: %02x message: %s" %(
str(sender.nwk), profile, cluster, src_ep, dst_ep, hex_message))
super(type(self),self).packet_received(packet)
#self.super().handle_message(sender, profile, cluster, src_ep, dst_ep, message)
if Packet:
super(type(self),self).packet_received(Packet)
else:
super(type(self),self).handle_message(sender, profile, cluster, src_ep, dst_ep, message)

if cluster == 0x8036:
# This has been handle via on_zdo_mgmt_permitjoin_rsp()
self.log.logging("TransportZigpy", "Debug", "packet_received 0x8036: %s Profile: %04x Cluster: %04x srcEp: %02x dstEp: %02x message: %s" %(
self.log.logging("TransportZigpy", "Debug", "handle_message 0x8036: %s Profile: %04x Cluster: %04x srcEp: %02x dstEp: %02x message: %s" %(
str(sender.nwk), profile, cluster, src_ep, dst_ep, hex_message))
self.callBackFunction( build_plugin_8014_frame_content(self, str(sender), hex_message ) )
super(type(self),self).packet_received(packet)
if Packet:
super(type(self),self).packet_received(Packet)
else:
super(type(self),self).handle_message(sender, profile, cluster, src_ep, dst_ep, message)
return

if cluster == 0x8034:
# This has been handle via on_zdo_mgmt_leave_rsp()
self.log.logging("TransportZigpy", "Debug", "packet_received 0x8036: %s Profile: %04x Cluster: %04x srcEp: %02x dstEp: %02x message: %s" %(
self.log.logging("TransportZigpy", "Debug", "handle_message 0x8036: %s Profile: %04x Cluster: %04x srcEp: %02x dstEp: %02x message: %s" %(
str(sender.nwk), profile, cluster, src_ep, dst_ep, hex_message))
self.callBackFunction( build_plugin_8047_frame_content(self, str(sender), hex_message) )
return

addr = None
if sender.nwk is not None:
addr_mode = 0x02
addr = sender.nwk.serialize()[::-1].hex()
if profile and cluster:
self.log.logging(
"TransportZigpy",
"Debug",
"handle_message device 1: %s Profile: %04x Cluster: %04x sEP: %s dEp: %s message: %s lqi: %s" % (
str(sender), profile, cluster, src_ep, dst_ep, hex_message, sender.lqi)),

elif sender.ieee is not None:
addr = "%016x" % t.uint64_t.deserialize(sender.ieee.serialize())[0]

addr_mode = 0x02 if sender.nwk is not None else 0x03
sender.lqi = sender.lqi or 0x00
addr_mode = 0x03
if profile and cluster:
self.log.logging(
"TransportZigpy",
"Debug",
"handle_message device 1: %s Profile: %04x Cluster: %04x sEP: %s dEp: %s message: %s lqi: %s" % (
str(sender), profile, cluster, src_ep, dst_ep, hex_message, sender.lqi)),

if sender.lqi is None:
sender.lqi = 0x00

# Let's force profile to ZDP if eps == 0x00
if src_ep == dst_ep == 0x00:
profile = 0x0000

if profile is not None and cluster is not None:
self.log.logging( "TransportZigpy", "Debug", "packet_received device: %s Profile: %04x Cluster: %04x sEP: %s dEp: %s message: %s lqi: %s" % (
str(addr), profile, cluster, src_ep, dst_ep, hex_message, sender.lqi), )
if profile and cluster:
self.log.logging(
"TransportZigpy",
"Debug",
"handle_message device 2: %s Profile: %04x Cluster: %04x sEP: %s dEp: %s message: %s lqi: %s" % (
str(addr), profile, cluster, src_ep, dst_ep, hex_message, sender.lqi),
)

if addr is not None:
if addr:
plugin_frame = build_plugin_8002_frame_content(self, addr, profile, cluster, src_ep, dst_ep, message, sender.lqi, src_addrmode=addr_mode)
self.log.logging("TransportZigpy", "Debug", "packet_received Sender: %s frame for plugin: %s" % (addr, plugin_frame))
return self.callBackFunction(plugin_frame)

self.log.logging( "TransportZigpy", "Error", "packet_received - Issue with sender is %s %s" % (
sender.nwk, sender.ieee), )
self.log.logging("TransportZigpy", "Debug", "handle_message Sender: %s frame for plugin: %s" % (addr, plugin_frame))
self.callBackFunction(plugin_frame)
else:
self.log.logging(
"TransportZigpy",
"Error",
"handle_message - Issue with sender is %s %s" % (sender.nwk, sender.ieee),
)

return

Expand Down
18 changes: 15 additions & 3 deletions Classes/ZigpyTransport/AppZnp.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
import zigpy.zdo.types as zdo_types
import zigpy_znp.commands.util
import zigpy_znp.config as znp_conf
#import zigpy_znp.types as znp_t
import zigpy.types as t
import zigpy_znp.types as t
import zigpy.types as zigpy_t
import zigpy_znp.zigbee.application
from Classes.ZigpyTransport.firmwareversionHelper import \
znp_extract_versioning_for_plugin
Expand Down Expand Up @@ -117,8 +117,20 @@ def handle_leave(self, nwk, ieee):
def get_zigpy_version(self):
return Classes.ZigpyTransport.AppGeneric.get_zigpy_version(self)

def packet_received(self, packet: t.ZigbeePacket) -> None:
def packet_received(self, packet: zigpy_t.ZigbeePacket) -> None:
return Classes.ZigpyTransport.AppGeneric.packet_received(self,packet)

def handle_message(
self,
sender: zigpy.device.Device,
profile: int,
cluster: int,
src_ep: int,
dst_ep: int,
message: bytes,
dst_addressing=None,
) -> None:
return Classes.ZigpyTransport.AppGeneric.handle_message(self,sender,profile,cluster,src_ep,dst_ep,message, dst_addressing=dst_addressing)

async def set_zigpy_tx_power(self, power):
self.log.logging("TransportZigpy", "Debug", "set_tx_power %s" %power)
Expand Down
2 changes: 1 addition & 1 deletion plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -1505,7 +1505,7 @@ def check_python_modules_version( self ):
"zigpy": "0.59.0",
"zigpy_znp": "0.11.6",
"zigpy_deconz": "0.21.1",
"bellows": "0.35.8",
"bellows": "0.36.8",
}

flag = True
Expand Down

0 comments on commit c854903

Please sign in to comment.