2017-02-06 14:36:36 -05:00
|
|
|
/*
|
|
|
|
* This file is part of the Micro Python project, http://micropython.org/
|
|
|
|
*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2017 Glenn Ruben Bakke
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2017-02-15 13:33:11 -05:00
|
|
|
#include "py/obj.h"
|
|
|
|
#include "py/runtime.h"
|
2017-02-18 12:06:58 -05:00
|
|
|
#include "py/objlist.h"
|
2017-02-14 18:26:39 -05:00
|
|
|
|
|
|
|
#if MICROPY_PY_UBLUEPY_PERIPHERAL || MICROPY_PY_UBLUEPY_CENTRAL
|
|
|
|
|
2017-02-11 08:20:01 -05:00
|
|
|
#include "modubluepy.h"
|
2017-02-17 13:10:24 -05:00
|
|
|
#include "ble_drv.h"
|
2017-02-06 14:36:36 -05:00
|
|
|
|
2017-02-10 15:09:03 -05:00
|
|
|
STATIC void ubluepy_service_print(const mp_print_t *print, mp_obj_t o, mp_print_kind_t kind) {
|
|
|
|
ubluepy_service_obj_t * self = (ubluepy_service_obj_t *)o;
|
|
|
|
|
|
|
|
mp_printf(print, "Service(handle: 0x" HEX2_FMT ")", self->handle);
|
|
|
|
}
|
|
|
|
|
|
|
|
STATIC mp_obj_t ubluepy_service_make_new(const mp_obj_type_t *type, size_t n_args, size_t n_kw, const mp_obj_t *all_args) {
|
|
|
|
|
|
|
|
enum { ARG_NEW_UUID, ARG_NEW_TYPE };
|
|
|
|
|
|
|
|
static const mp_arg_t allowed_args[] = {
|
|
|
|
{ ARG_NEW_UUID, MP_ARG_OBJ, {.u_obj = MP_OBJ_NULL} },
|
|
|
|
{ ARG_NEW_TYPE, MP_ARG_INT, {.u_int = UBLUEPY_SERVICE_PRIMARY} },
|
|
|
|
};
|
|
|
|
|
|
|
|
// parse args
|
|
|
|
mp_arg_val_t args[MP_ARRAY_SIZE(allowed_args)];
|
|
|
|
mp_arg_parse_all_kw_array(n_args, n_kw, all_args, MP_ARRAY_SIZE(allowed_args), allowed_args, args);
|
|
|
|
|
|
|
|
ubluepy_service_obj_t *s = m_new_obj(ubluepy_service_obj_t);
|
|
|
|
s->base.type = type;
|
|
|
|
|
|
|
|
mp_obj_t uuid_obj = args[ARG_NEW_UUID].u_obj;
|
|
|
|
|
|
|
|
if (uuid_obj == MP_OBJ_NULL) {
|
|
|
|
return MP_OBJ_FROM_PTR(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (MP_OBJ_IS_TYPE(uuid_obj, &ubluepy_uuid_type)) {
|
|
|
|
s->p_uuid = MP_OBJ_TO_PTR(uuid_obj);
|
|
|
|
|
|
|
|
uint8_t type = args[ARG_NEW_TYPE].u_int;
|
|
|
|
if (type > 0 && type <= UBLUEPY_SERVICE_PRIMARY) {
|
|
|
|
s->type = type;
|
|
|
|
} else {
|
|
|
|
nlr_raise(mp_obj_new_exception_msg_varg(&mp_type_ValueError,
|
|
|
|
"Invalid Service type"));
|
|
|
|
}
|
|
|
|
|
2017-02-17 13:02:24 -05:00
|
|
|
(void)ble_drv_service_add(s);
|
2017-02-10 15:09:03 -05:00
|
|
|
|
|
|
|
} else {
|
|
|
|
nlr_raise(mp_obj_new_exception_msg_varg(&mp_type_ValueError,
|
|
|
|
"Invalid UUID parameter"));
|
|
|
|
}
|
|
|
|
|
2017-02-18 07:15:08 -05:00
|
|
|
// clear reference to peripheral
|
|
|
|
s->p_periph = NULL;
|
2017-02-18 12:06:58 -05:00
|
|
|
s->char_list = mp_obj_new_list(0, NULL);
|
2017-02-18 07:15:08 -05:00
|
|
|
|
2017-02-10 15:09:03 -05:00
|
|
|
return MP_OBJ_FROM_PTR(s);
|
|
|
|
}
|
|
|
|
|
2017-02-11 10:04:48 -05:00
|
|
|
/// \method addCharacteristic(Service)
|
|
|
|
/// Add Characteristic to the Service.
|
|
|
|
///
|
|
|
|
STATIC mp_obj_t service_add_characteristic(mp_obj_t self_in, mp_obj_t characteristic) {
|
|
|
|
ubluepy_service_obj_t * self = MP_OBJ_TO_PTR(self_in);
|
|
|
|
ubluepy_characteristic_obj_t * p_char = MP_OBJ_TO_PTR(characteristic);
|
|
|
|
|
|
|
|
p_char->service_handle = self->handle;
|
|
|
|
|
2017-02-17 13:02:24 -05:00
|
|
|
bool retval = ble_drv_characteristic_add(p_char);
|
2017-02-11 10:04:48 -05:00
|
|
|
|
2017-02-18 07:15:08 -05:00
|
|
|
if (retval) {
|
|
|
|
p_char->p_service = self;
|
|
|
|
}
|
|
|
|
|
2017-02-18 12:06:58 -05:00
|
|
|
mp_obj_list_append(self->char_list, characteristic);
|
|
|
|
|
2017-02-18 11:59:10 -05:00
|
|
|
// return mp_obj_new_bool(retval);
|
|
|
|
return mp_const_none;
|
2017-02-11 10:04:48 -05:00
|
|
|
}
|
|
|
|
STATIC MP_DEFINE_CONST_FUN_OBJ_2(ubluepy_service_add_char_obj, service_add_characteristic);
|
2017-02-10 15:09:03 -05:00
|
|
|
|
2017-02-18 12:14:27 -05:00
|
|
|
/// \method getCharacteristics()
|
|
|
|
/// Return list with all characteristics registered in the Service.
|
|
|
|
///
|
|
|
|
STATIC mp_obj_t service_get_chars(mp_obj_t self_in) {
|
|
|
|
ubluepy_service_obj_t * self = MP_OBJ_TO_PTR(self_in);
|
|
|
|
|
|
|
|
return self->char_list;
|
|
|
|
}
|
|
|
|
STATIC MP_DEFINE_CONST_FUN_OBJ_1(ubluepy_service_get_chars_obj, service_get_chars);
|
|
|
|
|
|
|
|
|
2017-02-06 14:36:36 -05:00
|
|
|
STATIC const mp_map_elem_t ubluepy_service_locals_dict_table[] = {
|
|
|
|
#if 0
|
2017-02-18 12:14:27 -05:00
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_getCharacteristic), (mp_obj_t)(&ubluepy_service_get_char_obj) },
|
2017-02-11 10:04:48 -05:00
|
|
|
#endif
|
2017-02-18 12:14:27 -05:00
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_addCharacteristic), (mp_obj_t)(&ubluepy_service_add_char_obj) },
|
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_getCharacteristics), (mp_obj_t)(&ubluepy_service_get_chars_obj) },
|
2017-02-11 10:04:48 -05:00
|
|
|
#if 0
|
|
|
|
// Properties
|
2017-02-06 14:41:42 -05:00
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_peripheral), (mp_obj_t)(&ubluepy_service_get_peripheral_obj) },
|
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_uuid), (mp_obj_t)(&ubluepy_service_get_uuid_obj) },
|
|
|
|
#endif
|
2017-02-10 15:09:03 -05:00
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_PRIMARY), MP_OBJ_NEW_SMALL_INT(UBLUEPY_SERVICE_PRIMARY) },
|
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_SECONDARY), MP_OBJ_NEW_SMALL_INT(UBLUEPY_SERVICE_SECONDARY) },
|
2017-02-06 14:36:36 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
STATIC MP_DEFINE_CONST_DICT(ubluepy_service_locals_dict, ubluepy_service_locals_dict_table);
|
|
|
|
|
|
|
|
const mp_obj_type_t ubluepy_service_type = {
|
|
|
|
{ &mp_type_type },
|
|
|
|
.name = MP_QSTR_Service,
|
|
|
|
.print = ubluepy_service_print,
|
|
|
|
.make_new = ubluepy_service_make_new,
|
|
|
|
.locals_dict = (mp_obj_t)&ubluepy_service_locals_dict
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // MICROPY_PY_UBLUEPY_PERIPHERAL || MICROPY_PY_UBLUEPY_CENTRAL
|