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 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
|
import asyncio
import contextlib
import functools
import logging
import click
import zigpy.config as zigpy_conf
import bellows.ezsp
import bellows.types as t
LOGGER = logging.getLogger(__name__)
class CSVParamType(click.ParamType):
name = "comma separated integers"
def __init__(self, min=None, max=None):
self.intrange = click.IntRange(min, max)
def convert(self, value, param, ctx):
values = [self.intrange.convert(v, param, ctx) for v in value.split(",")]
return values
class ZigbeeNodeParamType(click.ParamType):
name = "colon separated hex bytes"
def convert(self, value, param, ctx):
if ":" not in value or len(value) != 23:
self.fail("Node format should be a 8 byte hex string separated by ':'")
return t.EUI64.convert(value)
def background(f):
@functools.wraps(f)
def inner(*args, **kwargs):
loop = asyncio.get_event_loop()
loop.run_until_complete(f(*args, **kwargs))
return inner
def app(f, app_startup=True, extra_config=None):
database_file = None
application = None
async def async_inner(ctx, *args, **kwargs):
nonlocal database_file
nonlocal application
app_config = {
zigpy_conf.CONF_DEVICE: {
zigpy_conf.CONF_DEVICE_PATH: ctx.obj["device"],
zigpy_conf.CONF_DEVICE_BAUDRATE: ctx.obj["baudrate"],
zigpy_conf.CONF_DEVICE_FLOW_CONTROL: ctx.obj["flow_control"],
},
zigpy_conf.CONF_DATABASE: ctx.obj["database_file"],
}
if extra_config:
app_config.update(extra_config)
application = await setup_application(app_config, startup=app_startup)
ctx.obj["app"] = application
await f(ctx, *args, **kwargs)
await asyncio.sleep(0.5)
await application.shutdown()
def shutdown():
with contextlib.suppress(Exception):
application._ezsp.close()
@functools.wraps(f)
def inner(*args, **kwargs):
loop = asyncio.get_event_loop()
try:
loop.run_until_complete(async_inner(*args, **kwargs))
except: # noqa: E722
# It seems that often errors like a message send will try to send
# two messages, and not reading all of them will leave the NCP in
# a bad state. This seems to mitigate this somewhat. Better way?
loop.run_until_complete(asyncio.sleep(0.5))
raise
finally:
shutdown()
return inner
def print_cb(frame_name, response):
click.echo(f"Callback: {frame_name} {response}")
def channel_mask(channels):
mask = 0
for channel in channels:
if not (11 <= channel <= 26):
raise click.BadOptionUsage("channels must be from 11 to 26")
mask |= 1 << channel
return mask
async def setup(dev, baudrate, cbh=None, configure=True):
app_config = {
zigpy_conf.CONF_DEVICE: {
zigpy_conf.CONF_DEVICE_PATH: dev,
zigpy_conf.CONF_DEVICE_BAUDRATE: baudrate,
zigpy_conf.CONF_DEVICE_FLOW_CONTROL: zigpy_conf.CONF_DEVICE_FLOW_CONTROL_DEFAULT,
}
}
app = bellows.zigbee.application.ControllerApplication(app_config)
await app.connect()
if cbh:
app._ezsp.add_callback(cbh)
return app._ezsp
async def setup_application(app_config, startup=True):
app = await bellows.zigbee.application.ControllerApplication.new(
app_config, start_radio=startup
)
return app
def check(ret, message, expected=0):
if ret == expected:
return
if isinstance(expected, list) and ret in expected:
return
raise click.ClickException(message)
async def network_init(s):
v = await s.initialize_network()
check(
v,
f"Failure initializing network: {v}",
t.sl_Status.OK,
)
return v
def parse_epan(epan):
"""Parse a user specified extended PAN ID"""
epan_list = [t.uint8_t(x, 16) for x in epan.split(":")]
return t.FixedList[t.uint8_t, 8](epan_list)
async def basic_tc_permits(s):
async def set_policy(policy, decision):
v = await s.setPolicy(policy, decision)
check(v[0], f"Failed to set policy {policy} to {decision}: {v[0]}")
await set_policy(
t.EzspPolicyId.TC_KEY_REQUEST_POLICY,
t.EzspDecisionId.DENY_TC_KEY_REQUESTS,
)
await set_policy(
t.EzspPolicyId.APP_KEY_REQUEST_POLICY,
t.EzspDecisionId.ALLOW_APP_KEY_REQUESTS,
)
await set_policy(
t.EzspPolicyId.TRUST_CENTER_POLICY,
t.EzspDecisionId.ALLOW_PRECONFIGURED_KEY_JOINS,
)
def get_device(app, node):
if node not in app.devices:
click.echo(f"Device {node} is not in the device database")
return None
return app.devices[node]
def get_endpoint(app, node, endpoint_id):
dev = get_device(app, node)
if dev is None:
return (dev, None)
if endpoint_id not in dev.endpoints:
click.echo("Device %s has no endpoint %d" % (node, endpoint_id))
return (dev, None)
return (dev, dev.endpoints[endpoint_id])
def get_in_cluster(app, node, endpoint_id, cluster_id):
dev, endpoint = get_endpoint(app, node, endpoint_id)
if endpoint is None:
return (dev, endpoint, None)
if cluster_id not in endpoint.in_clusters:
click.echo(
"Device %s has no cluster %d on endpoint %d"
% (node, cluster_id, endpoint_id)
)
return (dev, endpoint, None)
return (dev, endpoint, endpoint.in_clusters[cluster_id])
|