blob: e9c01dcf2c557437e2664501e2d4c8ae9b641ecd [file] [log] [blame]
Myles Watson274a3812017-02-23 06:29:08 -08001//
2// Copyright 2017 The Android Open Source Project
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15//
16
17#pragma once
18
19#include <functional>
20
21#include <hidl/HidlSupport.h>
22
23#include "hci_internals.h"
24
25namespace android {
26namespace hardware {
27namespace bluetooth {
28namespace hci {
29
30using ::android::hardware::hidl_vec;
31using HciPacketReadyCallback = std::function<void(void)>;
32
33class HciPacketizer {
34 public:
35 HciPacketizer(HciPacketReadyCallback packet_cb) : hci_packet_ready_cb_(packet_cb) {};
36 void OnDataReady(int fd);
37 const hidl_vec<uint8_t>& GetPacket() const;
38 HciPacketType GetPacketType() const;
39
40 protected:
41 enum HciParserState { HCI_IDLE, HCI_TYPE_READY, HCI_PAYLOAD };
42 HciParserState hci_parser_state_{HCI_IDLE};
43 HciPacketType hci_packet_type_{HCI_PACKET_TYPE_UNKNOWN};
44 uint8_t hci_packet_preamble_[HCI_PREAMBLE_SIZE_MAX];
45 hidl_vec<uint8_t> hci_packet_;
46 size_t hci_packet_bytes_remaining_;
47 size_t hci_packet_bytes_read_;
48 HciPacketReadyCallback hci_packet_ready_cb_;
49};
50
51} // namespace hci
52} // namespace bluetooth
53} // namespace hardware
54} // namespace android