#!/usr/bin/env python3 import glob import re import sys import os import btstack_parser as parser meta_events = [ 'A2DP', 'ANCS', 'AVDTP', 'AVRCP', 'GAP', 'GATTSERVICE', 'GOEP', 'HFP', 'HID', 'HIDS', 'HSP', 'LE', 'LEAUDIO', 'MAP', 'MESH', 'PBAP', 'OPP' ] supported_event_groups = meta_events + [ 'ATT', 'BNEP', 'BTSTACK', 'GAP', 'GATT', 'HCI', 'HID', 'L2CAP', 'RFCOMM', 'SDP', 'SM', 'DAEMON', ] open_bracket = parser.open_bracket closing_bracket = parser.closing_bracket program_info = ''' BTstack Event Getter Generator for BTstack Copyright 2016, BlueKitchen GmbH ''' copyright = """/* * Copyright (C) 2016 BlueKitchen GmbH * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. Neither the name of the copyright holders nor the names of * contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * 4. Any redistribution, use, or modification is done solely for * personal benefit and not for any commercial purpose or for * monetary gain. * * THIS SOFTWARE IS PROVIDED BY BLUEKITCHEN GMBH AND CONTRIBUTORS * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BLUEKITCHEN * GMBH OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * Please inquire about commercial licensing options at * contact@bluekitchen-gmbh.com * */ """ hfile_header_begin = """ /** * HCI Event Getter * * Note: Don't edit this file. It is generated by tool/btstack_event_generator.py * */ #ifndef BTSTACK_EVENT_H #define BTSTACK_EVENT_H #if defined __cplusplus extern "C" { #endif #include "btstack_util.h" #include #ifdef ENABLE_BLE #include "ble/gatt_client.h" #endif /* API_START */ /** * @brief Get event type * @param event * @return type of event */ static inline uint8_t hci_event_packet_get_type(const uint8_t * event){ return event[0]; } typedef uint8_t* btstack_event_iterator_t; """ hfile_header_end = """ /* API_END */ #if defined __cplusplus } #endif #endif // BTSTACK_EVENT_H """ c_prototoype_simple_return = '''/** * @brief {description} * @param event packet * @return {result_name} * @note: btstack_type {format} */ static inline {result_type} {event}_get_{field}(const uint8_t * event){{ {code} }} ''' c_prototype_iterator_return = '''/** * @brief {description} * @param event packet * @return {result_name} * @note: btstack_type {format} */ static inline {result_type} {event}_get_{scope}_item_{field}(btstack_event_iterator_t * iter){{ {code} }} ''' c_prototype_iterator_init = '''/** * @brief Initialize iterator for list {scope} of {event} * @param iterator * @param event packet * @note: btstack_type {format} */ static inline void {event}_{field}_init(btstack_event_iterator_t * iter, const uint8_t * event){{ *iter = (btstack_event_iterator_t)&event[{list_field}]; }} ''' c_prototype_iterator_has_next = '''/** * @brief Returns true if iterator of list {scope} of {event} has more elements, false otherwise. * @param iterator * @param event packet * @return * @note: btstack_type {format} */ static inline bool {event}_{field}_has_next(btstack_event_iterator_t * iter, const uint8_t * event){{ uint8_t length = event[{length_field}]; const uint8_t *begin = &event[{list_field}]; const uint8_t *end = begin+length; return *iter