2018-07-16 10:31:28 -04:00
|
|
|
/*
|
|
|
|
* This file is part of the MicroPython project, http://micropython.org/
|
|
|
|
*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
2019-06-19 10:42:36 -04:00
|
|
|
* Copyright (c) 2019 Dan Halbert for Adafruit Industries
|
2018-07-16 10:31:28 -04:00
|
|
|
* Copyright (c) 2018 Artur Pacholec
|
2019-06-19 10:42:36 -04:00
|
|
|
* Copyright (c) 2017 Glenn Ruben Bakke
|
2018-07-16 10:31:28 -04:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "py/objproperty.h"
|
|
|
|
#include "py/runtime.h"
|
2019-08-02 17:56:44 -04:00
|
|
|
#include "shared-bindings/bleio/Attribute.h"
|
2018-07-16 10:31:28 -04:00
|
|
|
#include "shared-bindings/bleio/Descriptor.h"
|
|
|
|
#include "shared-bindings/bleio/UUID.h"
|
|
|
|
|
|
|
|
//| .. currentmodule:: bleio
|
|
|
|
//|
|
|
|
|
//| :class:`Descriptor` -- BLE descriptor
|
|
|
|
//| =========================================================
|
|
|
|
//|
|
|
|
|
//| Stores information about a BLE descriptor.
|
|
|
|
//| Descriptors are encapsulated by BLE characteristics and provide contextual
|
|
|
|
//| information about the characteristic.
|
|
|
|
//|
|
|
|
|
|
2019-08-02 17:56:44 -04:00
|
|
|
//| .. class:: Descriptor(uuid, security_mode=`Attribute.OPEN`)
|
2018-07-16 10:31:28 -04:00
|
|
|
//|
|
2019-08-02 17:56:44 -04:00
|
|
|
//| Create a new descriptor object with the UUID uuid and the given value, if any.
|
2018-07-16 10:31:28 -04:00
|
|
|
|
2019-01-14 21:08:45 -05:00
|
|
|
STATIC mp_obj_t bleio_descriptor_make_new(const mp_obj_type_t *type, size_t n_args, const mp_obj_t *pos_args, mp_map_t *kw_args) {
|
2019-08-02 17:56:44 -04:00
|
|
|
enum { ARG_uuid, ARG_security_mode };
|
2018-07-16 10:31:28 -04:00
|
|
|
static const mp_arg_t allowed_args[] = {
|
2019-08-02 17:56:44 -04:00
|
|
|
{ MP_QSTR_uuid, MP_ARG_REQUIRED | MP_ARG_OBJ },
|
|
|
|
{ MP_QSTR_security_mode, MP_ARG_KW_ONLY| MP_ARG_INT, {.u_int = SEC_MODE_OPEN } },
|
2018-07-16 10:31:28 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
mp_arg_val_t args[MP_ARRAY_SIZE(allowed_args)];
|
2019-01-14 21:08:45 -05:00
|
|
|
mp_arg_parse_all(n_args, pos_args, kw_args, MP_ARRAY_SIZE(allowed_args), allowed_args, args);
|
2018-07-16 10:31:28 -04:00
|
|
|
|
|
|
|
const mp_obj_t uuid_arg = args[ARG_uuid].u_obj;
|
|
|
|
|
2018-11-20 23:04:58 -05:00
|
|
|
if (!MP_OBJ_IS_TYPE(uuid_arg, &bleio_uuid_type)) {
|
|
|
|
mp_raise_ValueError(translate("Expected a UUID"));
|
2018-07-16 10:31:28 -04:00
|
|
|
}
|
|
|
|
|
2019-08-02 17:56:44 -04:00
|
|
|
const bleio_attribute_security_mode_t security_mode = args[ARG_security_mode].u_int;
|
|
|
|
common_hal_bleio_attribute_security_mode_check_valid(security_mode);
|
|
|
|
|
2019-01-14 21:08:45 -05:00
|
|
|
bleio_descriptor_obj_t *self = m_new_obj(bleio_descriptor_obj_t);
|
|
|
|
self->base.type = type;
|
2018-11-20 23:04:58 -05:00
|
|
|
bleio_uuid_obj_t *uuid = MP_OBJ_TO_PTR(uuid_arg);
|
2018-07-16 10:31:28 -04:00
|
|
|
|
2019-08-02 17:56:44 -04:00
|
|
|
common_hal_bleio_descriptor_construct(self, uuid, security_mode);
|
2018-07-16 10:31:28 -04:00
|
|
|
|
2019-08-02 17:56:44 -04:00
|
|
|
return MP_OBJ_FROM_PTR(self);
|
2018-07-16 10:31:28 -04:00
|
|
|
}
|
|
|
|
|
2019-08-02 17:56:44 -04:00
|
|
|
//| .. attribute:: uuid
|
|
|
|
//|
|
|
|
|
//| The descriptor uuid. (read-only)
|
|
|
|
//|
|
2018-07-16 10:31:28 -04:00
|
|
|
STATIC mp_obj_t bleio_descriptor_get_uuid(mp_obj_t self_in) {
|
|
|
|
bleio_descriptor_obj_t *self = MP_OBJ_TO_PTR(self_in);
|
2019-07-09 00:21:46 -04:00
|
|
|
|
|
|
|
bleio_uuid_obj_t *uuid = common_hal_bleio_descriptor_get_uuid(self);
|
|
|
|
return uuid ? MP_OBJ_FROM_PTR(uuid) : mp_const_none;
|
2018-07-16 10:31:28 -04:00
|
|
|
}
|
|
|
|
MP_DEFINE_CONST_FUN_OBJ_1(bleio_descriptor_get_uuid_obj, bleio_descriptor_get_uuid);
|
|
|
|
|
|
|
|
const mp_obj_property_t bleio_descriptor_uuid_obj = {
|
|
|
|
.base.type = &mp_type_property,
|
|
|
|
.proxy = {(mp_obj_t)&bleio_descriptor_get_uuid_obj,
|
|
|
|
(mp_obj_t)&mp_const_none_obj,
|
|
|
|
(mp_obj_t)&mp_const_none_obj},
|
|
|
|
};
|
|
|
|
|
|
|
|
STATIC const mp_rom_map_elem_t bleio_descriptor_locals_dict_table[] = {
|
|
|
|
// Properties
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_uuid), MP_ROM_PTR(&bleio_descriptor_uuid_obj) },
|
|
|
|
};
|
|
|
|
|
|
|
|
STATIC MP_DEFINE_CONST_DICT(bleio_descriptor_locals_dict, bleio_descriptor_locals_dict_table);
|
|
|
|
|
2019-07-09 00:21:46 -04:00
|
|
|
STATIC void bleio_descriptor_print(const mp_print_t *print, mp_obj_t self_in, mp_print_kind_t kind) {
|
|
|
|
bleio_descriptor_obj_t *self = MP_OBJ_TO_PTR(self_in);
|
|
|
|
if (self->uuid) {
|
2019-07-16 19:53:36 -04:00
|
|
|
mp_printf(print, "Descriptor(");
|
2019-07-09 00:21:46 -04:00
|
|
|
bleio_uuid_print(print, MP_OBJ_FROM_PTR(self->uuid), kind);
|
2019-07-16 19:53:36 -04:00
|
|
|
mp_printf(print, ")");
|
2019-07-09 00:21:46 -04:00
|
|
|
} else {
|
2019-07-16 19:53:36 -04:00
|
|
|
mp_printf(print, "<Descriptor with Unregistered UUID>");
|
2019-07-09 00:21:46 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-16 10:31:28 -04:00
|
|
|
const mp_obj_type_t bleio_descriptor_type = {
|
|
|
|
{ &mp_type_type },
|
|
|
|
.name = MP_QSTR_Descriptor,
|
|
|
|
.make_new = bleio_descriptor_make_new,
|
2019-07-09 00:21:46 -04:00
|
|
|
.print = bleio_descriptor_print,
|
2018-07-16 10:31:28 -04:00
|
|
|
.locals_dict = (mp_obj_dict_t*)&bleio_descriptor_locals_dict
|
|
|
|
};
|