123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- /*
- * Copyright 2019 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 "packet/raw_builder.h"
- #include <algorithm>
- #include "os/log.h"
- using std::vector;
- using bluetooth::common::Address;
- namespace bluetooth {
- namespace packet {
- RawBuilder::RawBuilder(size_t max_bytes) : max_bytes_(max_bytes) {}
- bool RawBuilder::AddOctets(size_t octets, const vector<uint8_t>& bytes) {
- if (payload_.size() + octets > max_bytes_) return false;
- if (octets != bytes.size()) return false;
- payload_.insert(payload_.end(), bytes.begin(), bytes.end());
- return true;
- }
- bool RawBuilder::AddOctets(const vector<uint8_t>& bytes) {
- return AddOctets(bytes.size(), bytes);
- }
- bool RawBuilder::AddOctets(size_t octets, uint64_t value) {
- vector<uint8_t> val_vector;
- uint64_t v = value;
- if (octets > sizeof(uint64_t)) return false;
- for (size_t i = 0; i < octets; i++) {
- val_vector.push_back(v & 0xff);
- v = v >> 8;
- }
- if (v != 0) return false;
- return AddOctets(octets, val_vector);
- }
- bool RawBuilder::AddAddress(const Address& address) {
- if (payload_.size() + Address::kLength > max_bytes_) return false;
- for (size_t i = 0; i < Address::kLength; i++) {
- payload_.push_back(address.address[i]);
- }
- return true;
- }
- bool RawBuilder::AddOctets1(uint8_t value) {
- return AddOctets(1, value);
- }
- bool RawBuilder::AddOctets2(uint16_t value) {
- return AddOctets(2, value);
- }
- bool RawBuilder::AddOctets3(uint32_t value) {
- return AddOctets(3, value);
- }
- bool RawBuilder::AddOctets4(uint32_t value) {
- return AddOctets(4, value);
- }
- bool RawBuilder::AddOctets6(uint64_t value) {
- return AddOctets(6, value);
- }
- bool RawBuilder::AddOctets8(uint64_t value) {
- return AddOctets(8, value);
- }
- bool RawBuilder::CanAddOctets(size_t num_bytes) const {
- return payload_.size() + num_bytes <= max_bytes_;
- }
- void RawBuilder::Serialize(BitInserter& it) const {
- for (const auto& val : payload_) {
- insert(val, it);
- }
- }
- size_t RawBuilder::size() const {
- return payload_.size();
- }
- } // namespace packet
- } // namespace bluetooth
|