1#ifndef IOUTILITIES_BUFFER_SEARCH_H
2#define IOUTILITIES_BUFFER_SEARCH_H
5#include "../misc/traits.h"
18 BufferSearch(std::string_view searchTerm, std::string_view terminationChars, std::string_view giveUpTerm,
CallbackType &&callback);
19 void operator()(std::string_view buffer);
20 void operator()(
const std::string_view::value_type *buffer, std::size_t bufferSize);
21 template <std::
size_t bufferCapacity>
22 void operator()(std::shared_ptr<std::array<std::string_view::value_type, bufferCapacity>> buffer, std::size_t bufferSize);
26 const std::string_view m_searchTerm;
27 const std::string_view m_terminationChars;
28 const std::string_view m_terminationTerm;
29 const std::string_view m_giveUpTerm;
31 std::string_view::const_iterator m_searchTermIterator;
32 std::string_view::const_iterator m_giveUpTermIterator;
33 std::string_view::const_iterator m_terminationTermIterator;
42 std::string_view searchTerm, std::string_view terminationChars, std::string_view giveUpTerm,
CallbackType &&callback)
43 : m_searchTerm(searchTerm)
44 , m_terminationChars(terminationChars)
45 , m_giveUpTerm(giveUpTerm)
46 , m_callback(
std::move(callback))
47 , m_searchTermIterator(m_searchTerm.begin())
48 , m_giveUpTermIterator(m_giveUpTerm.begin())
49 , m_terminationTermIterator(m_terminationTerm.begin())
59 (*this)(buffer.data(), buffer.size());
65template <std::
size_t bufferCapacity>
66inline void BufferSearch::operator()(std::shared_ptr<std::array<std::string_view::value_type, bufferCapacity>> buffer, std::size_t bufferSize)
68 (*this)(buffer->data(), bufferSize);
The BufferSearch struct invokes a callback if an initially given search term occurs in consecutively ...
void operator()(std::string_view buffer)
Processes the specified buffer.
std::function< void(BufferSearch &, std::string &&)> CallbackType
BufferSearch(std::string_view searchTerm, std::string_view terminationChars, std::string_view giveUpTerm, CallbackType &&callback)
Constructs a new BufferSearch.
#define CPP_UTILITIES_EXPORT
Marks the symbol to be exported by the c++utilities library.
Contains all utilities provides by the c++utilities library.