blob: 415ce056d85fa87f9fa7167eb93da9a9b4ce33c8 [file] [log] [blame]
/*
* Copyright 2018 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.
*/
#include "packets/hci/sco_packet_view.h"
#include "os/log.h"
using test_vendor_lib::sco::PacketStatusFlagsType;
namespace test_vendor_lib {
namespace packets {
ScoPacketView::ScoPacketView(std::shared_ptr<std::vector<uint8_t>> packet) : PacketView<true>(packet) {}
ScoPacketView ScoPacketView::Create(std::shared_ptr<std::vector<uint8_t>> packet) {
return ScoPacketView(packet);
}
uint16_t ScoPacketView::GetHandle() const {
return begin().extract<uint16_t>() & 0xfff;
}
PacketStatusFlagsType ScoPacketView::GetPacketStatusFlags() const {
return static_cast<PacketStatusFlagsType>(((begin() + 1).extract<uint8_t>() & 0x30) >> 4);
}
PacketView<true> ScoPacketView::GetPayload() const {
uint8_t payload_size = (begin() + sizeof(uint16_t)).extract<uint8_t>();
ASSERT_LOG(static_cast<uint8_t>(size() - sizeof(uint16_t) - sizeof(uint8_t)) == payload_size,
"Malformed SCO packet payload_size %d + 4 != %d", static_cast<int>(payload_size),
static_cast<int>(size()));
return SubViewLittleEndian(sizeof(uint16_t) + sizeof(uint8_t), size());
}
} // namespace packets
} // namespace test_vendor_lib