WIP: sequencer/BG95 driver
This commit is contained in:
+153
-68
@@ -34,14 +34,19 @@
|
||||
|
||||
#include <core/core.h>
|
||||
#include <core/crtp.h>
|
||||
#include <cont/range.h>
|
||||
|
||||
#include <ctime>
|
||||
#include <array>
|
||||
#include <string_view>
|
||||
#include <limits>
|
||||
#include <type_traits>
|
||||
#include <functional>
|
||||
|
||||
namespace tbx {
|
||||
|
||||
/*!
|
||||
* \class sequencer_t
|
||||
* \class sequencer
|
||||
* \brief
|
||||
* A CRTP base class to provide the sequencer functionality.
|
||||
*
|
||||
@@ -59,14 +64,26 @@ namespace tbx {
|
||||
* match the units in \c record_t::timeout field.
|
||||
*
|
||||
* \tparam Impl_t The type of derived class
|
||||
* \tparam Cont_t The container type holding the data of type \c Data_t for the derived class.
|
||||
* \tparam Data_t The char-like stream item type. Usually \c char
|
||||
* \tparam N The size of the sequence buffer to temporary store each line from get().
|
||||
*
|
||||
* \note
|
||||
* We need access to derived class container to sneaky get a range of the data beside
|
||||
* the normal data flow, in order to implement the \see control_t::DETECT operation.
|
||||
*/
|
||||
template <typename Impl_t, typename Data_t, size_t N>
|
||||
class sequencer_t {
|
||||
template <typename Impl_t, typename Cont_t, typename Data_t, size_t N>
|
||||
class sequencer {
|
||||
_CRTP_IMPL(Impl_t);
|
||||
|
||||
using str_view_t = std::basic_string_view<Data_t>;
|
||||
static_assert(
|
||||
std::is_same_v<typename Cont_t::value_type, Data_t>,
|
||||
"Cont_t must be a container of type Data_t"
|
||||
);
|
||||
|
||||
// local type dispatch
|
||||
using str_view_t = std::basic_string_view<Data_t>;
|
||||
using range_t = typename Cont_t::range_t;
|
||||
|
||||
//! \name Public types
|
||||
//! @{
|
||||
@@ -88,8 +105,18 @@ class sequencer_t {
|
||||
//! \brief The control type of the script entry.
|
||||
enum class control_t {
|
||||
NOP, //!< No command, dont send or expect anything, used for delays
|
||||
SEND, //!< Send data to implementation
|
||||
EXPECT //!< Expects data from implementation
|
||||
SEND, //!< Send data to implementation through put()
|
||||
EXPECT, //!< Expects data from implementation via get()
|
||||
DETECT //!< Detects data into rx buffer without receiving them via contents()
|
||||
|
||||
//! \note
|
||||
//! The \c DETECT extra incoming channel serve the purpose of sneak into receive
|
||||
//! buffer and check for data without getting them. This is useful when the receive driver
|
||||
//! is buffered with a delimiter and we seek for data that don't follow the delimiter pattern.
|
||||
//!
|
||||
//! For example:
|
||||
//! A modem sends reponses with '\n' termination but for some "special" command it opens a cursor
|
||||
//! lets say ">$ " without '\n' at the end.
|
||||
};
|
||||
|
||||
//! \enum match_t
|
||||
@@ -102,18 +129,18 @@ class sequencer_t {
|
||||
* Match handler function pointer type.
|
||||
* Expects a pointer to buffer and a size and returns status
|
||||
*/
|
||||
using handler_ft = status_t (*) (const Data_t*, size_t);
|
||||
using handler_ft = void (*) (const Data_t*, size_t);
|
||||
|
||||
/*!
|
||||
* \struct block_t
|
||||
* \struct handle_t
|
||||
* \brief
|
||||
* The script line block.
|
||||
* The script record handle block.
|
||||
*
|
||||
* Each script "line" contains up to 2 blocks for matching functionality. Each block
|
||||
* Each script record contains some blocks for matching functionality. Each block
|
||||
* has a token and a matching type. If the response matches the token, the sequencer calls
|
||||
* the handler and perform the action.
|
||||
*/
|
||||
struct block_t {
|
||||
struct handle_t {
|
||||
std::basic_string_view<Data_t>
|
||||
token; //!< The token for the match
|
||||
match_t match_type; //!< The matching type functionality
|
||||
@@ -129,6 +156,19 @@ class sequencer_t {
|
||||
*
|
||||
* Each line consist from a control, 2 blocks and a timeout. The control says if we send or receive data.
|
||||
* The blocks contain the data and the matching information. And the timeout guards the entire line.
|
||||
*/
|
||||
template<size_t Nhandles =2>
|
||||
struct record_t {
|
||||
control_t control; //!< The type of the entry
|
||||
std::array<handle_t, Nhandles>
|
||||
block; //!< The matching blocks
|
||||
clock_t timeout; //!< Timeout in CPU time
|
||||
};
|
||||
|
||||
/*!
|
||||
* \struct script_t
|
||||
* \brief
|
||||
* Describes the sequencer's script.
|
||||
*
|
||||
* The user can create arrays as the example bellow to act as a script.
|
||||
* \code
|
||||
@@ -144,11 +184,8 @@ class sequencer_t {
|
||||
* }};
|
||||
* \endcode
|
||||
*/
|
||||
struct record_t {
|
||||
control_t control; //!< The type of the entry
|
||||
std::array<block_t, 2> block; //!< The matching block
|
||||
clock_t timeout; //!< Timeout in CPU time
|
||||
};
|
||||
template <size_t Nrecords, size_t Nhandles =2>
|
||||
using script_t = std::array<record_t<Nhandles>, Nrecords>;
|
||||
//! @}
|
||||
|
||||
|
||||
@@ -156,10 +193,10 @@ class sequencer_t {
|
||||
//! \name Constructor / Destructor
|
||||
//!@{
|
||||
protected:
|
||||
~sequencer_t () = default; //!< \brief Allow destructor from derived only
|
||||
sequencer_t () = default; //!< \brief A default constructor from derived only
|
||||
sequencer_t(const sequencer_t&) = delete; //!< No copies
|
||||
sequencer_t& operator= (const sequencer_t&) = delete; //!< No copy assignments
|
||||
~sequencer () = default; //!< \brief Allow destructor from derived only
|
||||
sequencer () = default; //!< \brief A default constructor from derived only
|
||||
sequencer(const sequencer&) = delete; //!< No copies
|
||||
sequencer& operator= (const sequencer&) = delete; //!< No copy assignments
|
||||
//!@}
|
||||
|
||||
//! \name Sequencer interface requirements for implementer
|
||||
@@ -167,6 +204,7 @@ class sequencer_t {
|
||||
private:
|
||||
size_t get_ (Data_t* data) { return impl().get (data); }
|
||||
size_t put_ (const Data_t* data, size_t n) { return impl().put (data, n); }
|
||||
const range_t contents_ () const { return impl().contents(); }
|
||||
clock_t clock_ () { return impl().clock(); }
|
||||
//! @}
|
||||
|
||||
@@ -180,7 +218,7 @@ class sequencer_t {
|
||||
* \param prefix What we search
|
||||
* \return True on success, false otherwise
|
||||
*/
|
||||
bool starts_with_ (const str_view_t stream, const str_view_t prefix) {
|
||||
static bool starts_with_ (const str_view_t stream, const str_view_t prefix) {
|
||||
return (stream.rfind(prefix, 0) != str_view_t::npos);
|
||||
}
|
||||
|
||||
@@ -191,7 +229,9 @@ class sequencer_t {
|
||||
* \param postfix What we search
|
||||
* \return True on success, false otherwise
|
||||
*/
|
||||
bool ends_with_ (const str_view_t stream, const str_view_t postfix) {
|
||||
static bool ends_with_ (const str_view_t stream, const str_view_t postfix) {
|
||||
if (stream.size() < postfix.size())
|
||||
return false;
|
||||
return (
|
||||
stream.compare(
|
||||
stream.size() - postfix.size(),
|
||||
@@ -207,7 +247,7 @@ class sequencer_t {
|
||||
* \param needle What we search
|
||||
* \return True on success, false otherwise
|
||||
*/
|
||||
bool contains_ (const str_view_t haystack, const str_view_t needle) {
|
||||
static bool contains_ (const str_view_t haystack, const str_view_t needle) {
|
||||
return (haystack.find(needle) != str_view_t::npos);
|
||||
}
|
||||
/*!
|
||||
@@ -221,7 +261,7 @@ class sequencer_t {
|
||||
* \param go_idx The new value of the step in the case of GOTO type
|
||||
* \return The new sequencer's step value
|
||||
*/
|
||||
size_t step_ (size_t current_idx, action_t action, size_t go_idx =0) {
|
||||
static size_t step_ (size_t current_idx, action_t action, size_t go_idx =0) {
|
||||
switch (action) {
|
||||
default:
|
||||
case action_t::NO: return current_idx;
|
||||
@@ -232,6 +272,27 @@ class sequencer_t {
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
static status_t action_ (size_t& step, const handle_t& block, const str_view_t buffer = str_view_t{}) {
|
||||
if (block.handler != nullptr)
|
||||
block.handler(buffer.begin(), buffer.size());
|
||||
switch (block.action) {
|
||||
case action_t::EXIT_OK:
|
||||
step = std::numeric_limits<size_t>::max();
|
||||
return status_t::OK;
|
||||
case action_t::EXIT_ERROR:
|
||||
step = std::numeric_limits<size_t>::max();
|
||||
return status_t::ERROR;
|
||||
default:
|
||||
step = step_(step, block.action, block.idx);
|
||||
return status_t::OK;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
//! @}
|
||||
|
||||
|
||||
public:
|
||||
/*!
|
||||
* \brief
|
||||
* Checks if the \c needle matches the \c haystack.
|
||||
@@ -241,7 +302,7 @@ class sequencer_t {
|
||||
* \param needle The stream we search
|
||||
* \return True on match
|
||||
*/
|
||||
bool match_(match_t type, const str_view_t haystack, const str_view_t needle) {
|
||||
static bool match (const str_view_t haystack, const str_view_t needle, match_t type) {
|
||||
switch (type) {
|
||||
default:
|
||||
case match_t::NO: return true;
|
||||
@@ -253,10 +314,25 @@ class sequencer_t {
|
||||
case match_t::nCONTAINS: return !contains_(haystack, needle);
|
||||
}
|
||||
}
|
||||
//! @}
|
||||
|
||||
/*!
|
||||
* \brief
|
||||
* A static functionality to provide access to sequencer's inner matching mechanism.
|
||||
* Checks the \c buffer against \c handle and calls its action if needed.
|
||||
*
|
||||
* \param handle Reference to handle
|
||||
* \param buffer The buffer to check
|
||||
* \return True on match, false otherwise
|
||||
*/
|
||||
static bool check_handle (const handle_t& handle, const str_view_t buffer) {
|
||||
size_t tmp{};
|
||||
if (match(buffer, handle.token, handle.match_type)) {
|
||||
action_ (tmp, handle, buffer);
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
public:
|
||||
/*!
|
||||
* \brief
|
||||
* Run the script array
|
||||
@@ -264,28 +340,38 @@ class sequencer_t {
|
||||
* The main sequencer functionality. It starts with the first entry of the array.
|
||||
* - If the entry is \c NOP it executes the action after the timeout.
|
||||
* \c token and \c handler are discarded.
|
||||
* - If the entry is \c SEND it uses the first block's token to send and executes the action after that.
|
||||
* - If the entry is \c SEND it uses the first handle block's token to send and executes the action after that.
|
||||
* \c timeout is discarded.
|
||||
* - If the entry is \c EXCEPTS it continuously try to receive data using implementation's get until one
|
||||
* of the blocks match.
|
||||
* of the handle blocks match.
|
||||
* On match:
|
||||
* - Calls the handler if there is one
|
||||
* - Executes the action
|
||||
* - Skips the next block if there is one
|
||||
* - Skips the next handle blocks if there is any.
|
||||
* If there is no match on timeout it return status_t::EXIT_ERROR
|
||||
* - If the entry is \c DETECT it continuously try to detect data using implementation's contents until one
|
||||
* of the handle blocks match.
|
||||
* On match:
|
||||
* - Calls the handler if there is one
|
||||
* - Executes the action
|
||||
* - Skips the next handle blocks if there is any.
|
||||
* If there is no match on timeout it return status_t::EXIT_ERROR
|
||||
*
|
||||
* \tparam Steps The number of steps of the script
|
||||
* \tparam Nhandles The number of handle blocks in the each script record.
|
||||
*
|
||||
* \param script Reference to script to run
|
||||
* \return The status of entire operation as described above
|
||||
*/
|
||||
template <size_t Steps>
|
||||
status_t run (const std::array<record_t, Steps>& script) {
|
||||
template <size_t Steps, size_t Nhandles>
|
||||
bool run (const script_t<Steps, Nhandles>& script) {
|
||||
Data_t buffer[N];
|
||||
size_t resp_size;
|
||||
size_t resp_size{};
|
||||
status_t status{};
|
||||
|
||||
clock_t mark = clock_();
|
||||
for (size_t step =0, p_step =0 ; step < Steps ; ) {
|
||||
const record_t& it = script[step];
|
||||
const record_t<Nhandles>& it = script[step];
|
||||
|
||||
if (step != p_step) {
|
||||
p_step = step;
|
||||
@@ -294,64 +380,63 @@ class sequencer_t {
|
||||
switch (it.control) {
|
||||
default:
|
||||
case control_t::NOP:
|
||||
if ((clock_() - mark) >= it.timeout) {
|
||||
switch (it.block[0].action) {
|
||||
case action_t::EXIT_OK: return status_t::OK;
|
||||
case action_t::EXIT_ERROR: return status_t::ERROR;
|
||||
default:
|
||||
step = step_(step, it.block[0].action, it.block[0].idx);
|
||||
break;
|
||||
}
|
||||
}
|
||||
if ((clock_() - mark) >= it.timeout)
|
||||
status = action_ (step, it.block[0]);
|
||||
break;
|
||||
|
||||
case control_t::SEND:
|
||||
put_(it.block[0].token.data(), it.block[0].token.size());
|
||||
switch (it.block[0].action) {
|
||||
case action_t::EXIT_OK: return status_t::OK;
|
||||
case action_t::EXIT_ERROR: return status_t::ERROR;
|
||||
default:
|
||||
step = step_(step, it.block[0].action, it.block[0].idx);
|
||||
break;
|
||||
}
|
||||
if (put_(it.block[0].token.data(), it.block[0].token.size()) != it.block[0].token.size())
|
||||
return false;
|
||||
status = action_ (step, it.block[0]);
|
||||
break;
|
||||
|
||||
case control_t::EXPECT:
|
||||
resp_size = get_(buffer);
|
||||
if (resp_size) {
|
||||
for (auto& block : it.block) {
|
||||
if (match_(block.match_type, buffer, block.token)) {
|
||||
if (block.handler != nullptr)
|
||||
block.handler(buffer, resp_size);
|
||||
switch (block.action) {
|
||||
case action_t::EXIT_OK: return status_t::OK;
|
||||
case action_t::EXIT_ERROR: return status_t::ERROR;
|
||||
default:
|
||||
step = step_(step, block.action, block.idx);
|
||||
break;
|
||||
}
|
||||
if (match(
|
||||
{buffer, resp_size},
|
||||
block.token,
|
||||
block.match_type)) {
|
||||
status = action_ (step, block, {buffer, resp_size});
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
if ((clock_() - mark) >= it.timeout)
|
||||
return status_t::ERROR;
|
||||
if (it.timeout && (clock_() - mark) >= it.timeout)
|
||||
return false;
|
||||
break;
|
||||
case control_t::DETECT:
|
||||
auto data = contents_();
|
||||
if (data.begin() != data.end()) {
|
||||
for (auto& block : it.block) {
|
||||
if (match(
|
||||
{data.begin(), static_cast<size_t>(data.end() - data.begin())},
|
||||
block.token,
|
||||
block.match_type)) {
|
||||
status = action_ (step, block, {buffer, resp_size});
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (it.timeout && (clock_() - mark) >= it.timeout)
|
||||
return false;
|
||||
break;
|
||||
} // switch (it.control)
|
||||
}
|
||||
return status_t::OK;
|
||||
return (status == status_t::OK);
|
||||
}
|
||||
};
|
||||
|
||||
/*!
|
||||
* An "empty" block for convenience.
|
||||
*/
|
||||
template <typename Impl_t, typename Data_t, size_t N>
|
||||
constexpr typename sequencer_t<Impl_t, Data_t, N>::block_t Sequencer_null_block = {
|
||||
template <typename Impl_t, typename Cont_t, typename Data_t, size_t N>
|
||||
constexpr typename sequencer<Impl_t, Cont_t, Data_t, N>::handle_t Sequencer_null_block = {
|
||||
"",
|
||||
sequencer_t<Impl_t, Data_t, N>::match_t::NO,
|
||||
sequencer<Impl_t, Cont_t, Data_t, N>::match_t::NO,
|
||||
nullptr,
|
||||
sequencer_t<Impl_t, Data_t, N>::action_t::NO,
|
||||
sequencer<Impl_t, Cont_t, Data_t, N>::action_t::NO,
|
||||
0
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user