/* * 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. */ #pragma once #include #include #include #include #include #include "model/devices/device.h" #include "net/async_data_channel.h" #include "packets/link_layer_packets.h" #include "phy.h" namespace rootcanal { using android::net::AsyncDataChannel; class LinkLayerSocketDevice : public Device { public: LinkLayerSocketDevice(std::shared_ptr socket_fd, Phy::Type phy_type); LinkLayerSocketDevice(LinkLayerSocketDevice&& s) = default; virtual ~LinkLayerSocketDevice() = default; static std::unique_ptr Create( std::shared_ptr socket_fd, Phy::Type phy_type) { return std::make_unique(socket_fd, phy_type); } virtual std::string GetTypeString() const override { return "link_layer_socket_device"; } virtual void ReceiveLinkLayerPacket( model::packets::LinkLayerPacketView packet, Phy::Type type, int8_t rssi) override; virtual void Tick() override; virtual void Close() override; static constexpr size_t kSizeBytes = sizeof(uint32_t); private: std::shared_ptr socket_; Phy::Type phy_type_; bool receiving_size_{true}; size_t bytes_left_{kSizeBytes}; size_t offset_{0}; std::shared_ptr> size_bytes_; std::shared_ptr> received_; std::vector packet_queue_; }; } // namespace rootcanal