Compare commits

...

2 Commits

2 changed files with 16 additions and 2 deletions

View File

@ -24,7 +24,7 @@ namespace CppUtilities {
/*!
* \brief Processes the specified \a buffer. Invokes the callback according to the remarks mentioned in the class documentation.
*/
void BufferSearch::operator()(const char *buffer, std::size_t bufferSize)
void BufferSearch::operator()(const std::string_view::value_type *buffer, std::size_t bufferSize)
{
if (m_hasResult || (!m_giveUpTerm.empty() && m_giveUpTermIterator == m_giveUpTerm.end())) {
return;

View File

@ -2,8 +2,11 @@
#define IOUTILITIES_BUFFER_SEARCH_H
#include "../global.h"
#include "../misc/traits.h"
#include <array>
#include <functional>
#include <memory>
#include <string>
#include <string_view>
@ -14,7 +17,9 @@ public:
using CallbackType = std::function<void(BufferSearch &, std::string &&)>;
BufferSearch(std::string_view searchTerm, std::string_view terminationChars, std::string_view giveUpTerm, CallbackType &&callback);
void operator()(std::string_view buffer);
void operator()(const char *buffer, std::size_t bufferSize);
void operator()(const std::string_view::value_type *buffer, std::size_t bufferSize);
template <std::size_t bufferCapacity>
void operator()(std::shared_ptr<std::array<std::string_view::value_type, bufferCapacity>> buffer, std::size_t bufferSize);
void reset();
private:
@ -54,6 +59,15 @@ inline void BufferSearch::operator()(std::string_view buffer)
(*this)(buffer.data(), buffer.size());
}
/*!
* \brief Processes the specified \a buffer which is a shared array with fixed \tp bufferCapacity. Invokes the callback according to the remarks mentioned in the class documentation.
*/
template <std::size_t bufferCapacity>
inline void BufferSearch::operator()(std::shared_ptr<std::array<std::string_view::value_type, bufferCapacity>> buffer, std::size_t bufferSize)
{
(*this)(buffer->data(), bufferSize);
}
} // namespace CppUtilities
#endif // IOUTILITIES_BUFFER_SEARCH_H