Add overload to BufferSearch required by arch-repo-manager

This commit is contained in:
Martchus 2021-07-16 15:56:28 +02:00
parent 6558ff487a
commit 77b2c3281f
1 changed files with 13 additions and 0 deletions

View File

@ -2,8 +2,11 @@
#define IOUTILITIES_BUFFER_SEARCH_H #define IOUTILITIES_BUFFER_SEARCH_H
#include "../global.h" #include "../global.h"
#include "../misc/traits.h"
#include <array>
#include <functional> #include <functional>
#include <memory>
#include <string> #include <string>
#include <string_view> #include <string_view>
@ -15,6 +18,7 @@ public:
BufferSearch(std::string_view searchTerm, std::string_view terminationChars, std::string_view giveUpTerm, CallbackType &&callback); BufferSearch(std::string_view searchTerm, std::string_view terminationChars, std::string_view giveUpTerm, CallbackType &&callback);
void operator()(std::string_view buffer); void operator()(std::string_view buffer);
void operator()(const char *buffer, std::size_t bufferSize); void operator()(const char *buffer, std::size_t bufferSize);
template <std::size_t bufferCapacity> void operator()(std::shared_ptr<std::array<char, bufferCapacity>> buffer, std::size_t bufferSize);
void reset(); void reset();
private: private:
@ -54,6 +58,15 @@ inline void BufferSearch::operator()(std::string_view buffer)
(*this)(buffer.data(), buffer.size()); (*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<char, bufferCapacity>> buffer, std::size_t bufferSize)
{
(*this)(buffer->data(), bufferSize);
}
} // namespace CppUtilities } // namespace CppUtilities
#endif // IOUTILITIES_BUFFER_SEARCH_H #endif // IOUTILITIES_BUFFER_SEARCH_H