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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
|
/*
* Copyright 2021 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/*
* Generated mock file from original source file
* Functions generated:12
*
* mockcify.pl ver 0.2
*/
#include <cstdint>
#include <functional>
#include <map>
#include <string>
extern std::map<std::string, int> mock_function_count_map;
// Original included files, if any
// NOTE: Since this is a mock file with mock definitions some number of
// include files may not be required. The include-what-you-use
// still applies, but crafting proper inclusion is out of scope
// for this effort. This compilation unit may compile as-is, or
// may need attention to prune the inclusion set.
#include "gd/hci/address.h"
#include "gd/os/metrics.h"
#include "main/shim/helpers.h"
#include "main/shim/metrics_api.h"
#include "types/raw_address.h"
// Mocked compile conditionals, if any
#ifndef UNUSED_ATTR
#define UNUSED_ATTR
#endif
namespace test {
namespace mock {
namespace main_shim_metrics_api {
// Shared state between mocked functions and tests
// Name: LogMetricLinkLayerConnectionEvent
// Params: const RawAddress* raw_address, uint32_t connection_handle,
// android::bluetooth::DirectionEnum direction, uint16_t link_type, uint32_t
// hci_cmd, uint16_t hci_event, uint16_t hci_ble_event, uint16_t cmd_status,
// uint16_t reason_code Returns: void
struct LogMetricLinkLayerConnectionEvent {
std::function<void(const RawAddress* raw_address, uint32_t connection_handle,
android::bluetooth::DirectionEnum direction,
uint16_t link_type, uint32_t hci_cmd, uint16_t hci_event,
uint16_t hci_ble_event, uint16_t cmd_status,
uint16_t reason_code)>
body{[](const RawAddress* raw_address, uint32_t connection_handle,
android::bluetooth::DirectionEnum direction, uint16_t link_type,
uint32_t hci_cmd, uint16_t hci_event, uint16_t hci_ble_event,
uint16_t cmd_status, uint16_t reason_code) {}};
void operator()(const RawAddress* raw_address, uint32_t connection_handle,
android::bluetooth::DirectionEnum direction,
uint16_t link_type, uint32_t hci_cmd, uint16_t hci_event,
uint16_t hci_ble_event, uint16_t cmd_status,
uint16_t reason_code) {
body(raw_address, connection_handle, direction, link_type, hci_cmd,
hci_event, hci_ble_event, cmd_status, reason_code);
};
};
extern struct LogMetricLinkLayerConnectionEvent
LogMetricLinkLayerConnectionEvent;
// Name: LogMetricA2dpAudioUnderrunEvent
// Params: const RawAddress& raw_address, uint64_t encoding_interval_millis, int
// num_missing_pcm_bytes Returns: void
struct LogMetricA2dpAudioUnderrunEvent {
std::function<void(const RawAddress& raw_address,
uint64_t encoding_interval_millis,
int num_missing_pcm_bytes)>
body{[](const RawAddress& raw_address, uint64_t encoding_interval_millis,
int num_missing_pcm_bytes) {}};
void operator()(const RawAddress& raw_address,
uint64_t encoding_interval_millis,
int num_missing_pcm_bytes) {
body(raw_address, encoding_interval_millis, num_missing_pcm_bytes);
};
};
extern struct LogMetricA2dpAudioUnderrunEvent LogMetricA2dpAudioUnderrunEvent;
// Name: LogMetricA2dpAudioOverrunEvent
// Params: const RawAddress& raw_address, uint64_t encoding_interval_millis, int
// num_dropped_buffers, int num_dropped_encoded_frames, int
// num_dropped_encoded_bytes Returns: void
struct LogMetricA2dpAudioOverrunEvent {
std::function<void(const RawAddress& raw_address,
uint64_t encoding_interval_millis, int num_dropped_buffers,
int num_dropped_encoded_frames,
int num_dropped_encoded_bytes)>
body{[](const RawAddress& raw_address, uint64_t encoding_interval_millis,
int num_dropped_buffers, int num_dropped_encoded_frames,
int num_dropped_encoded_bytes) {}};
void operator()(const RawAddress& raw_address,
uint64_t encoding_interval_millis, int num_dropped_buffers,
int num_dropped_encoded_frames,
int num_dropped_encoded_bytes) {
body(raw_address, encoding_interval_millis, num_dropped_buffers,
num_dropped_encoded_frames, num_dropped_encoded_bytes);
};
};
extern struct LogMetricA2dpAudioOverrunEvent LogMetricA2dpAudioOverrunEvent;
// Name: LogMetricA2dpPlaybackEvent
// Params: const RawAddress& raw_address, int playback_state, int
// audio_coding_mode Returns: void
struct LogMetricA2dpPlaybackEvent {
std::function<void(const RawAddress& raw_address, int playback_state,
int audio_coding_mode)>
body{[](const RawAddress& raw_address, int playback_state,
int audio_coding_mode) {}};
void operator()(const RawAddress& raw_address, int playback_state,
int audio_coding_mode) {
body(raw_address, playback_state, audio_coding_mode);
};
};
extern struct LogMetricA2dpPlaybackEvent LogMetricA2dpPlaybackEvent;
// Name: LogMetricReadRssiResult
// Params: const RawAddress& raw_address, uint16_t handle, uint32_t cmd_status,
// int8_t rssi Returns: void
struct LogMetricReadRssiResult {
std::function<void(const RawAddress& raw_address, uint16_t handle,
uint32_t cmd_status, int8_t rssi)>
body{[](const RawAddress& raw_address, uint16_t handle,
uint32_t cmd_status, int8_t rssi) {}};
void operator()(const RawAddress& raw_address, uint16_t handle,
uint32_t cmd_status, int8_t rssi) {
body(raw_address, handle, cmd_status, rssi);
};
};
extern struct LogMetricReadRssiResult LogMetricReadRssiResult;
// Name: LogMetricReadFailedContactCounterResult
// Params: const RawAddress& raw_address, uint16_t handle, uint32_t cmd_status,
// int32_t failed_contact_counter Returns: void
struct LogMetricReadFailedContactCounterResult {
std::function<void(const RawAddress& raw_address, uint16_t handle,
uint32_t cmd_status, int32_t failed_contact_counter)>
body{[](const RawAddress& raw_address, uint16_t handle,
uint32_t cmd_status, int32_t failed_contact_counter) {}};
void operator()(const RawAddress& raw_address, uint16_t handle,
uint32_t cmd_status, int32_t failed_contact_counter) {
body(raw_address, handle, cmd_status, failed_contact_counter);
};
};
extern struct LogMetricReadFailedContactCounterResult
LogMetricReadFailedContactCounterResult;
// Name: LogMetricReadTxPowerLevelResult
// Params: const RawAddress& raw_address, uint16_t handle, uint32_t cmd_status,
// int32_t transmit_power_level Returns: void
struct LogMetricReadTxPowerLevelResult {
std::function<void(const RawAddress& raw_address, uint16_t handle,
uint32_t cmd_status, int32_t transmit_power_level)>
body{[](const RawAddress& raw_address, uint16_t handle,
uint32_t cmd_status, int32_t transmit_power_level) {}};
void operator()(const RawAddress& raw_address, uint16_t handle,
uint32_t cmd_status, int32_t transmit_power_level) {
body(raw_address, handle, cmd_status, transmit_power_level);
};
};
extern struct LogMetricReadTxPowerLevelResult LogMetricReadTxPowerLevelResult;
// Name: LogMetricSmpPairingEvent
// Params: const RawAddress& raw_address, uint8_t smp_cmd,
// android::bluetooth::DirectionEnum direction, uint8_t smp_fail_reason Returns:
// void
struct LogMetricSmpPairingEvent {
std::function<void(const RawAddress& raw_address, uint8_t smp_cmd,
android::bluetooth::DirectionEnum direction,
uint8_t smp_fail_reason)>
body{[](const RawAddress& raw_address, uint8_t smp_cmd,
android::bluetooth::DirectionEnum direction,
uint8_t smp_fail_reason) {}};
void operator()(const RawAddress& raw_address, uint8_t smp_cmd,
android::bluetooth::DirectionEnum direction,
uint8_t smp_fail_reason) {
body(raw_address, smp_cmd, direction, smp_fail_reason);
};
};
extern struct LogMetricSmpPairingEvent LogMetricSmpPairingEvent;
// Name: LogMetricClassicPairingEvent
// Params: const RawAddress& raw_address, uint16_t handle, uint32_t hci_cmd,
// uint16_t hci_event, uint16_t cmd_status, uint16_t reason_code, int64_t
// event_value Returns: void
struct LogMetricClassicPairingEvent {
std::function<void(const RawAddress& raw_address, uint16_t handle,
uint32_t hci_cmd, uint16_t hci_event, uint16_t cmd_status,
uint16_t reason_code, int64_t event_value)>
body{[](const RawAddress& raw_address, uint16_t handle, uint32_t hci_cmd,
uint16_t hci_event, uint16_t cmd_status, uint16_t reason_code,
int64_t event_value) {}};
void operator()(const RawAddress& raw_address, uint16_t handle,
uint32_t hci_cmd, uint16_t hci_event, uint16_t cmd_status,
uint16_t reason_code, int64_t event_value) {
body(raw_address, handle, hci_cmd, hci_event, cmd_status, reason_code,
event_value);
};
};
extern struct LogMetricClassicPairingEvent LogMetricClassicPairingEvent;
// Name: LogMetricSdpAttribute
// Params: const RawAddress& raw_address, uint16_t protocol_uuid, uint16_t
// attribute_id, size_t attribute_size, const char* attribute_value Returns:
// void
struct LogMetricSdpAttribute {
std::function<void(const RawAddress& raw_address, uint16_t protocol_uuid,
uint16_t attribute_id, size_t attribute_size,
const char* attribute_value)>
body{[](const RawAddress& raw_address, uint16_t protocol_uuid,
uint16_t attribute_id, size_t attribute_size,
const char* attribute_value) {}};
void operator()(const RawAddress& raw_address, uint16_t protocol_uuid,
uint16_t attribute_id, size_t attribute_size,
const char* attribute_value) {
body(raw_address, protocol_uuid, attribute_id, attribute_size,
attribute_value);
};
};
extern struct LogMetricSdpAttribute LogMetricSdpAttribute;
// Name: LogMetricSocketConnectionState
// Params: const RawAddress& raw_address, int port, int type,
// android::bluetooth::SocketConnectionstateEnum connection_state, int64_t
// tx_bytes, int64_t rx_bytes, int uid, int server_port,
// android::bluetooth::SocketRoleEnum socket_role Returns: void
struct LogMetricSocketConnectionState {
std::function<void(
const RawAddress& raw_address, int port, int type,
android::bluetooth::SocketConnectionstateEnum connection_state,
int64_t tx_bytes, int64_t rx_bytes, int uid, int server_port,
android::bluetooth::SocketRoleEnum socket_role)>
body{[](const RawAddress& raw_address, int port, int type,
android::bluetooth::SocketConnectionstateEnum connection_state,
int64_t tx_bytes, int64_t rx_bytes, int uid, int server_port,
android::bluetooth::SocketRoleEnum socket_role) {}};
void operator()(
const RawAddress& raw_address, int port, int type,
android::bluetooth::SocketConnectionstateEnum connection_state,
int64_t tx_bytes, int64_t rx_bytes, int uid, int server_port,
android::bluetooth::SocketRoleEnum socket_role) {
body(raw_address, port, type, connection_state, tx_bytes, rx_bytes, uid,
server_port, socket_role);
};
};
extern struct LogMetricSocketConnectionState LogMetricSocketConnectionState;
// Name: LogMetricManufacturerInfo
// Params: const RawAddress& raw_address, android::bluetooth::DeviceInfoSrcEnum
// source_type, const std::string& source_name, const std::string& manufacturer,
// const std::string& model, const std::string& hardware_version, const
// std::string& software_version Returns: void
struct LogMetricManufacturerInfo {
std::function<void(const RawAddress& raw_address,
android::bluetooth::AddressTypeEnum address_type,
android::bluetooth::DeviceInfoSrcEnum source_type,
const std::string& source_name,
const std::string& manufacturer, const std::string& model,
const std::string& hardware_version,
const std::string& software_version)>
body{[](const RawAddress& raw_address,
android::bluetooth::AddressTypeEnum address_type,
android::bluetooth::DeviceInfoSrcEnum source_type,
const std::string& source_name, const std::string& manufacturer,
const std::string& model, const std::string& hardware_version,
const std::string& software_version) {}};
void operator()(const RawAddress& raw_address,
android::bluetooth::AddressTypeEnum address_type,
android::bluetooth::DeviceInfoSrcEnum source_type,
const std::string& source_name,
const std::string& manufacturer, const std::string& model,
const std::string& hardware_version,
const std::string& software_version) {
body(raw_address, address_type, source_type, source_name, manufacturer,
model, hardware_version, software_version);
};
};
extern struct LogMetricManufacturerInfo LogMetricManufacturerInfo;
} // namespace main_shim_metrics_api
} // namespace mock
} // namespace test
// END mockcify generation
|