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_DTE_HPP_
|
|
|
|
#define _ESP_MODEM_DTE_HPP_
|
|
|
|
|
2021-02-26 18:32:15 +01:00
|
|
|
#include <memory>
|
|
|
|
#include <cstddef>
|
|
|
|
#include <cstdint>
|
|
|
|
#include <utility>
|
2021-03-07 19:43:45 +01:00
|
|
|
#include "cxx_include/esp_modem_primitives.hpp"
|
|
|
|
#include "cxx_include/esp_modem_terminal.hpp"
|
|
|
|
#include "cxx_include/esp_modem_cmux.hpp"
|
|
|
|
#include "cxx_include/esp_modem_types.hpp"
|
2021-03-05 21:18:38 +01:00
|
|
|
|
2021-03-29 19:34:45 +02:00
|
|
|
namespace esp_modem {
|
2021-03-03 20:35:08 +01:00
|
|
|
|
2021-03-29 19:34:45 +02:00
|
|
|
class DTE : public CommandableIf {
|
|
|
|
public:
|
|
|
|
explicit DTE(std::unique_ptr<Terminal> t);
|
2021-02-26 18:32:15 +01:00
|
|
|
|
2021-03-29 19:34:45 +02:00
|
|
|
~DTE() = default;
|
2021-02-26 18:32:15 +01:00
|
|
|
|
2021-03-29 19:34:45 +02:00
|
|
|
int write(uint8_t *data, size_t len) { return term->write(data, len); }
|
|
|
|
|
|
|
|
int read(uint8_t **d, size_t len) {
|
2021-02-27 09:32:14 +01:00
|
|
|
auto data_to_read = std::min(len, buffer_size);
|
|
|
|
auto data = buffer.get();
|
|
|
|
auto actual_len = term->read(data, data_to_read);
|
|
|
|
*d = data;
|
|
|
|
return actual_len;
|
|
|
|
}
|
2021-02-26 18:32:15 +01:00
|
|
|
|
2021-04-06 08:33:40 +02:00
|
|
|
void set_read_cb(std::function<bool(uint8_t *data, size_t len)> f)
|
|
|
|
{
|
|
|
|
on_data = std::move(f);
|
|
|
|
term->set_read_cb([this](uint8_t *data, size_t len) {
|
|
|
|
if (!data) {
|
|
|
|
auto data_to_read = std::min(len, buffer_size - consumed);
|
|
|
|
data = buffer.get();
|
|
|
|
len = term->read(data, data_to_read);
|
|
|
|
}
|
|
|
|
return on_data(data, len);
|
|
|
|
});
|
2021-03-04 20:19:18 +01:00
|
|
|
}
|
2021-03-29 19:34:45 +02:00
|
|
|
|
2021-02-26 20:23:29 +01:00
|
|
|
void start() { term->start(); }
|
2021-03-29 19:34:45 +02:00
|
|
|
|
2021-02-26 20:23:29 +01:00
|
|
|
void data_mode_closed() { term->stop(); }
|
2021-03-29 19:34:45 +02:00
|
|
|
|
|
|
|
void set_mode(modem_mode m) {
|
|
|
|
term->start();
|
|
|
|
mode = m;
|
2021-03-07 19:43:45 +01:00
|
|
|
if (m == modem_mode::DATA_MODE) {
|
2021-04-06 08:33:40 +02:00
|
|
|
term->set_read_cb(on_data);
|
|
|
|
if (other_term) { // if we have the other terminal, let's use it for commands
|
|
|
|
command_term = other_term.get();
|
|
|
|
}
|
2021-03-07 19:43:45 +01:00
|
|
|
} else if (m == modem_mode::CMUX_MODE) {
|
2021-03-04 20:19:18 +01:00
|
|
|
setup_cmux();
|
2021-02-27 09:32:14 +01:00
|
|
|
}
|
|
|
|
}
|
2021-02-26 18:32:15 +01:00
|
|
|
|
2021-03-29 19:34:45 +02:00
|
|
|
command_result command(const std::string &command, got_line_cb got_line, uint32_t time_ms) override;
|
|
|
|
|
|
|
|
|
2021-02-26 18:32:15 +01:00
|
|
|
private:
|
2021-03-06 16:56:50 +01:00
|
|
|
Lock lock;
|
2021-03-29 19:34:45 +02:00
|
|
|
|
2021-03-04 20:19:18 +01:00
|
|
|
void setup_cmux();
|
2021-04-06 08:33:40 +02:00
|
|
|
// command_result command(Terminal *t, const std::string &command, got_line_cb got_line, uint32_t time_ms);
|
2021-03-29 19:34:45 +02:00
|
|
|
|
2021-04-04 22:15:46 +02:00
|
|
|
static const size_t GOT_LINE = signal_group::bit0;
|
2021-02-26 18:32:15 +01:00
|
|
|
size_t buffer_size;
|
|
|
|
size_t consumed;
|
|
|
|
std::unique_ptr<uint8_t[]> buffer;
|
2021-03-04 20:19:18 +01:00
|
|
|
std::unique_ptr<Terminal> term;
|
2021-04-06 08:33:40 +02:00
|
|
|
Terminal *command_term;
|
|
|
|
std::unique_ptr<Terminal> other_term;
|
2021-03-07 19:43:45 +01:00
|
|
|
modem_mode mode;
|
2021-02-26 18:32:15 +01:00
|
|
|
signal_group signal;
|
2021-04-06 08:33:40 +02:00
|
|
|
std::function<bool(uint8_t *data, size_t len)> on_data;
|
2021-02-26 18:32:15 +01:00
|
|
|
};
|
|
|
|
|
2021-04-06 08:33:40 +02:00
|
|
|
//class DTE_inst: public DTE {
|
|
|
|
//public:
|
|
|
|
// DTE_inst(std::shared_ptr<DTE> parent) : DTE(t), dte(parent) {}
|
|
|
|
//private:
|
|
|
|
// std::shared_ptr<DTE> dte;
|
|
|
|
//};
|
|
|
|
|
2021-03-29 19:34:45 +02:00
|
|
|
} // namespace esp_modem
|
2021-02-26 18:32:15 +01:00
|
|
|
|
2021-03-29 19:34:45 +02:00
|
|
|
#endif // _ESP_MODEM_DTE_HPP_
|