blob: b0d27e694774c5f6721457e145f71a1bce3dd0c5 [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/command_packet_view.h"
#include "os/log.h"
using std::vector;
namespace test_vendor_lib {
namespace packets {
CommandPacketView::CommandPacketView(std::shared_ptr<std::vector<uint8_t>> packet) : PacketView<true>(packet) {}
CommandPacketView CommandPacketView::Create(std::shared_ptr<std::vector<uint8_t>> packet) {
return CommandPacketView(packet);
}
uint16_t CommandPacketView::GetOpcode() const {
return begin().extract<uint16_t>();
}
PacketView<true> CommandPacketView::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 Command packet payload_size %d + 2 != %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