Files
esp-protocols/esp_modem/include/cxx_include/esp_modem_dce.hpp

91 lines
2.5 KiB
C++
Raw Normal View History

2021-03-29 19:34:45 +02:00
// Copyright 2021 Espressif Systems (Shanghai) PTE LTD
//
// 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.
#ifndef _ESP_MODEM_DCE_HPP_
#define _ESP_MODEM_DCE_HPP_
2021-03-24 21:06:27 +01:00
2021-03-29 19:34:45 +02:00
#include <utility>
#include "cxx_include/esp_modem_netif.hpp"
2021-03-24 21:06:27 +01:00
#include "cxx_include/esp_modem_dce_module.hpp"
2021-03-03 20:35:08 +01:00
2021-03-29 19:34:45 +02:00
namespace esp_modem {
2021-03-24 21:06:27 +01:00
2021-03-29 19:34:45 +02:00
class DCE_Mode {
2021-03-24 21:06:27 +01:00
public:
2021-03-29 19:34:45 +02:00
DCE_Mode(): mode(modem_mode::COMMAND_MODE) {}
~DCE_Mode() = default;
bool set(DTE *dte, ModuleIf *module, Netif &netif, modem_mode m);
2021-03-24 21:06:27 +01:00
modem_mode get();
private:
modem_mode mode;
};
2021-03-29 19:34:45 +02:00
2021-03-24 21:06:27 +01:00
template<class SpecificModule>
2021-03-24 21:06:27 +01:00
class DCE_T {
static_assert(std::is_base_of<ModuleIf, SpecificModule>::value, "DCE must be instantiated with Module class only");
2021-03-03 20:35:08 +01:00
public:
2021-03-24 21:06:27 +01:00
explicit DCE_T(const std::shared_ptr<DTE>& dte, std::shared_ptr<SpecificModule> device, esp_netif_t * netif):
dte(dte), module(std::move(device)), netif(dte, netif)
{ }
2021-03-24 21:06:27 +01:00
~DCE_T() = default;
void set_data() { set_mode(modem_mode::DATA_MODE); }
void exit_data() { set_mode(modem_mode::COMMAND_MODE); }
void set_cmux() { set_mode(modem_mode::CMUX_MODE); }
2021-03-28 20:22:44 +02:00
ModuleIf* get_module() { return module.get(); }
2021-03-24 21:06:27 +01:00
command_result command(const std::string& command, got_line_cb got_line, uint32_t time_ms)
{
return dte->command(command, std::move(got_line), time_ms);
}
2021-03-24 21:06:27 +01:00
protected:
bool set_mode(modem_mode m) { return mode.set(dte.get(), module.get(), netif, m); }
std::shared_ptr<DTE> dte;
std::shared_ptr<SpecificModule> module;
Netif netif;
2021-03-29 19:34:45 +02:00
DCE_Mode mode;
2021-03-24 21:06:27 +01:00
};
class DCE: public DCE_T<GenericModule> {
public:
using DCE_T<GenericModule>::DCE_T;
#define ESP_MODEM_DECLARE_DCE_COMMAND(name, return_type, TEMPLATE_ARG, MUX_ARG, ...) \
template <typename ...Agrs> \
return_type name(Agrs&&... args) \
{ \
2021-03-24 21:06:27 +01:00
return module->name(std::forward<Agrs>(args)...); \
}
DECLARE_ALL_COMMAND_APIS(forwards name(...) { device->name(...); } )
#undef ESP_MODEM_DECLARE_DCE_COMMAND
2021-03-28 20:22:44 +02:00
};
2021-03-29 19:34:45 +02:00
} // esp_modem
#endif // _ESP_MODEM_DCE_HPP_