/* * 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 #include #include #include #include "hci/address.h" #include "hci/class_of_device.h" #include "packet/base_packet_builder.h" #include "packet/bit_inserter.h" #include "packet/iterator.h" #include "packet/packet_builder.h" #include "packet/packet_struct.h" #include "packet/packet_view.h" #include "packet/parser/checksum_type_checker.h" #include "packet/parser/custom_type_checker.h" #include "packet/raw_builder.h" namespace py = pybind11; namespace bluetooth { namespace hci { void define_hci_packets_submodule(py::module&); } namespace l2cap { void define_l2cap_packets_submodule(py::module&); } namespace security { void define_smp_packets_submodule(py::module&); } namespace packet { using ::bluetooth::hci::Address; using ::bluetooth::hci::ClassOfDevice; using ::bluetooth::packet::BasePacketBuilder; using ::bluetooth::packet::BaseStruct; using ::bluetooth::packet::BitInserter; using ::bluetooth::packet::CustomTypeChecker; using ::bluetooth::packet::Iterator; using ::bluetooth::packet::kLittleEndian; using ::bluetooth::packet::PacketBuilder; using ::bluetooth::packet::PacketStruct; using ::bluetooth::packet::PacketView; using ::bluetooth::packet::RawBuilder; using ::bluetooth::packet::parser::ChecksumTypeChecker; PYBIND11_MODULE(bluetooth_packets_python3, m) { py::class_>(m, "BasePacketBuilder"); py::class_>(m, "RawBuilder") .def(py::init([](std::vector bytes) { return std::make_unique(bytes); })) .def(py::init([](std::string bytes) { return std::make_unique(std::vector(bytes.begin(), bytes.end())); })) .def("Serialize", [](RawBuilder& builder) { std::vector packet; BitInserter it(packet); builder.Serialize(it); std::string result = std::string(packet.begin(), packet.end()); return py::bytes(result); }); py::class_, BasePacketBuilder, std::shared_ptr>>( m, "PacketBuilderLittleEndian"); py::class_, BasePacketBuilder, std::shared_ptr>>( m, "PacketBuilderBigEndian"); py::class_>(m, "BaseStruct"); py::class_, BaseStruct, std::shared_ptr>>( m, "PacketStructLittleEndian"); py::class_, BaseStruct, std::shared_ptr>>( m, "PacketStructBigEndian"); py::class_>(m, "IteratorLittleEndian"); py::class_>(m, "IteratorBigEndian"); py::class_>(m, "PacketViewLittleEndian") .def(py::init([](std::vector bytes) { // Make a copy auto bytes_shared = std::make_shared>(bytes); return std::make_unique>(bytes_shared); })) .def("GetBytes", [](const PacketView view) { std::string result; for (auto byte : view) { result += byte; } return py::bytes(result); }); py::class_>(m, "PacketViewBigEndian").def(py::init([](std::vector bytes) { // Make a copy auto bytes_shared = std::make_shared>(bytes); return std::make_unique>(bytes_shared); })); py::module hci_m = m.def_submodule("hci_packets", "A submodule of hci_packets"); bluetooth::hci::define_hci_packets_submodule(hci_m); py::class_
(hci_m, "Address") .def(py::init<>()) .def("__repr__", [](const Address& a) { return a.ToString(); }) .def("__str__", [](const Address& a) { return a.ToString(); }); py::class_(hci_m, "ClassOfDevice") .def(py::init<>()) .def("__repr__", [](const ClassOfDevice& c) { return c.ToString(); }) .def("__str__", [](const ClassOfDevice& c) { return c.ToString(); }); py::module l2cap_m = m.def_submodule("l2cap_packets", "A submodule of l2cap_packets"); bluetooth::l2cap::define_l2cap_packets_submodule(l2cap_m); py::module security_m = m.def_submodule("security_packets", "A submodule of security_packets"); bluetooth::security::define_smp_packets_submodule(security_m); } } // namespace packet } // namespace bluetooth