xref: /btstack/src/btstack_memory.h (revision b6ac006a5ae8713f93c95a2195e82842f44eb762)
1 /*
2  * Copyright (C) 2014 BlueKitchen GmbH
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  *
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. Neither the name of the copyright holders nor the names of
14  *    contributors may be used to endorse or promote products derived
15  *    from this software without specific prior written permission.
16  * 4. Any redistribution, use, or modification is done solely for
17  *    personal benefit and not for any commercial purpose or for
18  *    monetary gain.
19  *
20  * THIS SOFTWARE IS PROVIDED BY BLUEKITCHEN GMBH AND CONTRIBUTORS
21  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BLUEKITCHEN
24  * GMBH OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
25  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
26  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
27  * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
28  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
29  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
30  * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  *
33  * Please inquire about commercial licensing options at
34  * [email protected]
35  *
36  */
37 
38 
39 
40 /*
41  * btstack_memory.h
42  *
43  * @brief BTstack memory management using configurable memory pools
44  *
45  */
46 
47 #ifndef BTSTACK_MEMORY_H
48 #define BTSTACK_MEMORY_H
49 
50 #if defined __cplusplus
51 extern "C" {
52 #endif
53 
54 #include "btstack_config.h"
55 
56 // Core
57 #include "hci.h"
58 #include "l2cap.h"
59 
60 // Classic
61 #ifdef ENABLE_CLASSIC
62 #include "classic/avdtp_sink.h"
63 #include "classic/avdtp_source.h"
64 #include "classic/avrcp.h"
65 #include "classic/bnep.h"
66 #include "classic/btstack_link_key_db.h"
67 #include "classic/btstack_link_key_db_memory.h"
68 #include "classic/goep_server.h"
69 #include "classic/hfp.h"
70 #include "classic/hid_host.h"
71 #include "classic/rfcomm.h"
72 #include "classic/sdp_server.h"
73 #endif
74 
75 // BLE
76 #ifdef ENABLE_BLE
77 #include "ble/gatt-service/battery_service_client.h"
78 #include "ble/gatt-service/hids_client.h"
79 #include "ble/gatt-service/scan_parameters_service_client.h"
80 #include "ble/gatt_client.h"
81 #include "ble/sm.h"
82 #endif
83 
84 #ifdef ENABLE_MESH
85 #include "mesh/mesh_network.h"
86 #include "mesh/mesh_keys.h"
87 #include "mesh/mesh_virtual_addresses.h"
88 #endif
89 
90 /* API_START */
91 
92 /**
93  * @brief Initializes BTstack memory pools.
94  */
95 void btstack_memory_init(void);
96 
97 /**
98  * @brief Deinitialize BTstack memory pools
99  * @note if HAVE_MALLOC is defined, all previously allocated buffers are free'd
100  */
101 void btstack_memory_deinit(void);
102 
103 /* API_END */
104 
105 hci_connection_t * btstack_memory_hci_connection_get(void);
106 void   btstack_memory_hci_connection_free(hci_connection_t *hci_connection);
107 
108 l2cap_service_t * btstack_memory_l2cap_service_get(void);
109 void   btstack_memory_l2cap_service_free(l2cap_service_t *l2cap_service);
110 l2cap_channel_t * btstack_memory_l2cap_channel_get(void);
111 void   btstack_memory_l2cap_channel_free(l2cap_channel_t *l2cap_channel);
112 
113 #ifdef ENABLE_CLASSIC
114 rfcomm_multiplexer_t * btstack_memory_rfcomm_multiplexer_get(void);
115 void   btstack_memory_rfcomm_multiplexer_free(rfcomm_multiplexer_t *rfcomm_multiplexer);
116 rfcomm_service_t * btstack_memory_rfcomm_service_get(void);
117 void   btstack_memory_rfcomm_service_free(rfcomm_service_t *rfcomm_service);
118 rfcomm_channel_t * btstack_memory_rfcomm_channel_get(void);
119 void   btstack_memory_rfcomm_channel_free(rfcomm_channel_t *rfcomm_channel);
120 
121 btstack_link_key_db_memory_entry_t * btstack_memory_btstack_link_key_db_memory_entry_get(void);
122 void   btstack_memory_btstack_link_key_db_memory_entry_free(btstack_link_key_db_memory_entry_t *btstack_link_key_db_memory_entry);
123 
124 bnep_service_t * btstack_memory_bnep_service_get(void);
125 void   btstack_memory_bnep_service_free(bnep_service_t *bnep_service);
126 bnep_channel_t * btstack_memory_bnep_channel_get(void);
127 void   btstack_memory_bnep_channel_free(bnep_channel_t *bnep_channel);
128 
129 goep_server_service_t * btstack_memory_goep_server_service_get(void);
130 void   btstack_memory_goep_server_service_free(goep_server_service_t *goep_server_service);
131 goep_server_connection_t * btstack_memory_goep_server_connection_get(void);
132 void   btstack_memory_goep_server_connection_free(goep_server_connection_t *goep_server_connection);
133 
134 hfp_connection_t * btstack_memory_hfp_connection_get(void);
135 void   btstack_memory_hfp_connection_free(hfp_connection_t *hfp_connection);
136 
137 hid_host_connection_t * btstack_memory_hid_host_connection_get(void);
138 void   btstack_memory_hid_host_connection_free(hid_host_connection_t *hid_host_connection);
139 
140 service_record_item_t * btstack_memory_service_record_item_get(void);
141 void   btstack_memory_service_record_item_free(service_record_item_t *service_record_item);
142 
143 avdtp_stream_endpoint_t * btstack_memory_avdtp_stream_endpoint_get(void);
144 void   btstack_memory_avdtp_stream_endpoint_free(avdtp_stream_endpoint_t *avdtp_stream_endpoint);
145 
146 avdtp_connection_t * btstack_memory_avdtp_connection_get(void);
147 void   btstack_memory_avdtp_connection_free(avdtp_connection_t *avdtp_connection);
148 
149 avrcp_connection_t * btstack_memory_avrcp_connection_get(void);
150 void   btstack_memory_avrcp_connection_free(avrcp_connection_t *avrcp_connection);
151 
152 avrcp_browsing_connection_t * btstack_memory_avrcp_browsing_connection_get(void);
153 void   btstack_memory_avrcp_browsing_connection_free(avrcp_browsing_connection_t *avrcp_browsing_connection);
154 
155 #endif
156 #ifdef ENABLE_BLE
157 battery_service_client_t * btstack_memory_battery_service_client_get(void);
158 void   btstack_memory_battery_service_client_free(battery_service_client_t *battery_service_client);
159 gatt_client_t * btstack_memory_gatt_client_get(void);
160 void   btstack_memory_gatt_client_free(gatt_client_t *gatt_client);
161 hids_client_t * btstack_memory_hids_client_get(void);
162 void   btstack_memory_hids_client_free(hids_client_t *hids_client);
163 scan_parameters_service_client_t * btstack_memory_scan_parameters_service_client_get(void);
164 void   btstack_memory_scan_parameters_service_client_free(scan_parameters_service_client_t *scan_parameters_service_client);
165 sm_lookup_entry_t * btstack_memory_sm_lookup_entry_get(void);
166 void   btstack_memory_sm_lookup_entry_free(sm_lookup_entry_t *sm_lookup_entry);
167 whitelist_entry_t * btstack_memory_whitelist_entry_get(void);
168 void   btstack_memory_whitelist_entry_free(whitelist_entry_t *whitelist_entry);
169 periodic_advertiser_list_entry_t * btstack_memory_periodic_advertiser_list_entry_get(void);
170 void   btstack_memory_periodic_advertiser_list_entry_free(periodic_advertiser_list_entry_t *periodic_advertiser_list_entry);
171 
172 #endif
173 #ifdef ENABLE_MESH
174 mesh_network_pdu_t * btstack_memory_mesh_network_pdu_get(void);
175 void   btstack_memory_mesh_network_pdu_free(mesh_network_pdu_t *mesh_network_pdu);
176 mesh_segmented_pdu_t * btstack_memory_mesh_segmented_pdu_get(void);
177 void   btstack_memory_mesh_segmented_pdu_free(mesh_segmented_pdu_t *mesh_segmented_pdu);
178 mesh_upper_transport_pdu_t * btstack_memory_mesh_upper_transport_pdu_get(void);
179 void   btstack_memory_mesh_upper_transport_pdu_free(mesh_upper_transport_pdu_t *mesh_upper_transport_pdu);
180 mesh_network_key_t * btstack_memory_mesh_network_key_get(void);
181 void   btstack_memory_mesh_network_key_free(mesh_network_key_t *mesh_network_key);
182 mesh_transport_key_t * btstack_memory_mesh_transport_key_get(void);
183 void   btstack_memory_mesh_transport_key_free(mesh_transport_key_t *mesh_transport_key);
184 mesh_virtual_address_t * btstack_memory_mesh_virtual_address_get(void);
185 void   btstack_memory_mesh_virtual_address_free(mesh_virtual_address_t *mesh_virtual_address);
186 mesh_subnet_t * btstack_memory_mesh_subnet_get(void);
187 void   btstack_memory_mesh_subnet_free(mesh_subnet_t *mesh_subnet);
188 
189 #endif
190 #ifdef ENABLE_LE_ISOCHRONOUS_STREAMS
191 hci_iso_stream_t * btstack_memory_hci_iso_stream_get(void);
192 void   btstack_memory_hci_iso_stream_free(hci_iso_stream_t *hci_iso_stream);
193 
194 #endif
195 
196 #if defined __cplusplus
197 }
198 #endif
199 
200 #endif // BTSTACK_MEMORY_H
201 
202