📄 read_until.ipp
字号:
read_until_delim_handler(AsyncReadStream& stream, boost::asio::basic_streambuf<Allocator>& streambuf, char delim, std::size_t next_search_start, ReadHandler handler) : stream_(stream), streambuf_(streambuf), delim_(delim), next_search_start_(next_search_start), handler_(handler) { } void operator()(const boost::system::error_code& ec, std::size_t bytes_transferred) { // Check for errors. if (ec) { std::size_t bytes = 0; handler_(ec, bytes); return; } // Commit received data to streambuf's get area. streambuf_.commit(bytes_transferred); // Determine the range of the data to be searched. typedef typename boost::asio::basic_streambuf< Allocator>::const_buffers_type const_buffers_type; typedef boost::asio::buffers_iterator<const_buffers_type> iterator; const_buffers_type buffers = streambuf_.data(); iterator begin = iterator::begin(buffers); iterator start = begin + next_search_start_; iterator end = iterator::end(buffers); // Look for a match. iterator iter = std::find(start, end, delim_); if (iter != end) { // Found a match. We're done. std::size_t bytes = iter - begin + 1; handler_(ec, bytes); return; } // No match. Check if buffer is full. if (streambuf_.size() == streambuf_.max_size()) { std::size_t bytes = 0; boost::system::error_code ec(error::not_found); handler_(ec, bytes); return; } // Next search can start with the new data. next_search_start_ = end - begin; // Start a new asynchronous read operation to obtain more data. std::size_t bytes_available = std::min<std::size_t>(512, streambuf_.max_size() - streambuf_.size()); stream_.async_read_some(streambuf_.prepare(bytes_available), *this); } //private: AsyncReadStream& stream_; boost::asio::basic_streambuf<Allocator>& streambuf_; char delim_; std::size_t next_search_start_; ReadHandler handler_; }; template <typename AsyncReadStream, typename Allocator, typename ReadHandler> inline void* asio_handler_allocate(std::size_t size, read_until_delim_handler<AsyncReadStream, Allocator, ReadHandler>* this_handler) { return boost_asio_handler_alloc_helpers::allocate( size, &this_handler->handler_); } template <typename AsyncReadStream, typename Allocator, typename ReadHandler> inline void asio_handler_deallocate(void* pointer, std::size_t size, read_until_delim_handler<AsyncReadStream, Allocator, ReadHandler>* this_handler) { boost_asio_handler_alloc_helpers::deallocate( pointer, size, &this_handler->handler_); } template <typename Function, typename AsyncReadStream, typename Allocator, typename ReadHandler> inline void asio_handler_invoke(const Function& function, read_until_delim_handler<AsyncReadStream, Allocator, ReadHandler>* this_handler) { boost_asio_handler_invoke_helpers::invoke( function, &this_handler->handler_); }} // namespace detailtemplate <typename AsyncReadStream, typename Allocator, typename ReadHandler>void async_read_until(AsyncReadStream& s, boost::asio::basic_streambuf<Allocator>& b, char delim, ReadHandler handler){ // Determine the range of the data to be searched. typedef typename boost::asio::basic_streambuf< Allocator>::const_buffers_type const_buffers_type; typedef boost::asio::buffers_iterator<const_buffers_type> iterator; const_buffers_type buffers = b.data(); iterator begin = iterator::begin(buffers); iterator end = iterator::end(buffers); // Look for a match. iterator iter = std::find(begin, end, delim); if (iter != end) { // Found a match. We're done. boost::system::error_code ec; std::size_t bytes = iter - begin + 1; s.get_io_service().post(detail::bind_handler(handler, ec, bytes)); return; } // No match. Check if buffer is full. if (b.size() == b.max_size()) { boost::system::error_code ec(error::not_found); s.get_io_service().post(detail::bind_handler(handler, ec, 0)); return; } // Start a new asynchronous read operation to obtain more data. std::size_t bytes_available = std::min<std::size_t>(512, b.max_size() - b.size()); s.async_read_some(b.prepare(bytes_available), detail::read_until_delim_handler<AsyncReadStream, Allocator, ReadHandler>( s, b, delim, end - begin, handler));}namespace detail{ template <typename AsyncReadStream, typename Allocator, typename ReadHandler> class read_until_delim_string_handler { public: read_until_delim_string_handler(AsyncReadStream& stream, boost::asio::basic_streambuf<Allocator>& streambuf, const std::string& delim, std::size_t next_search_start, ReadHandler handler) : stream_(stream), streambuf_(streambuf), delim_(delim), next_search_start_(next_search_start), handler_(handler) { } void operator()(const boost::system::error_code& ec, std::size_t bytes_transferred) { // Check for errors. if (ec) { std::size_t bytes = 0; handler_(ec, bytes); return; } // Commit received data to streambuf's get area. streambuf_.commit(bytes_transferred); // Determine the range of the data to be searched. typedef typename boost::asio::basic_streambuf< Allocator>::const_buffers_type const_buffers_type; typedef boost::asio::buffers_iterator<const_buffers_type> iterator; const_buffers_type buffers = streambuf_.data(); iterator begin = iterator::begin(buffers); iterator start = begin + next_search_start_; iterator end = iterator::end(buffers); // Look for a match. std::pair<iterator, bool> result = boost::asio::detail::partial_search( start, end, delim_.begin(), delim_.end()); if (result.first != end) { if (result.second) { // Full match. We're done. std::size_t bytes = result.first - begin + delim_.length(); handler_(ec, bytes); return; } else { // Partial match. Next search needs to start from beginning of match. next_search_start_ = result.first - begin; } } else { // No match. Next search can start with the new data. next_search_start_ = end - begin; } // Check if buffer is full. if (streambuf_.size() == streambuf_.max_size()) { std::size_t bytes = 0; boost::system::error_code ec2(error::not_found); handler_(ec2, bytes); return; } // Start a new asynchronous read operation to obtain more data. std::size_t bytes_available = std::min<std::size_t>(512, streambuf_.max_size() - streambuf_.size()); stream_.async_read_some(streambuf_.prepare(bytes_available), *this); } //private: AsyncReadStream& stream_; boost::asio::basic_streambuf<Allocator>& streambuf_; std::string delim_; std::size_t next_search_start_; ReadHandler handler_; }; template <typename AsyncReadStream, typename Allocator, typename ReadHandler> inline void* asio_handler_allocate(std::size_t size, read_until_delim_string_handler<AsyncReadStream, Allocator, ReadHandler>* this_handler) { return boost_asio_handler_alloc_helpers::allocate( size, &this_handler->handler_); } template <typename AsyncReadStream, typename Allocator, typename ReadHandler> inline void asio_handler_deallocate(void* pointer, std::size_t size, read_until_delim_string_handler<AsyncReadStream, Allocator, ReadHandler>* this_handler) { boost_asio_handler_alloc_helpers::deallocate( pointer, size, &this_handler->handler_); } template <typename Function, typename AsyncReadStream, typename Allocator, typename ReadHandler> inline void asio_handler_invoke(const Function& function, read_until_delim_string_handler<AsyncReadStream, Allocator, ReadHandler>* this_handler) { boost_asio_handler_invoke_helpers::invoke( function, &this_handler->handler_); }} // namespace detailtemplate <typename AsyncReadStream, typename Allocator, typename ReadHandler>void async_read_until(AsyncReadStream& s, boost::asio::basic_streambuf<Allocator>& b, const std::string& delim, ReadHandler handler){ // Determine the range of the data to be searched. typedef typename boost::asio::basic_streambuf< Allocator>::const_buffers_type const_buffers_type; typedef boost::asio::buffers_iterator<const_buffers_type> iterator; const_buffers_type buffers = b.data(); iterator begin = iterator::begin(buffers); iterator end = iterator::end(buffers); // Look for a match. std::size_t next_search_start; std::pair<iterator, bool> result = boost::asio::detail::partial_search( begin, end, delim.begin(), delim.end()); if (result.first != end) { if (result.second) { // Full match. We're done. boost::system::error_code ec; std::size_t bytes = result.first - begin + delim.length(); s.get_io_service().post(detail::bind_handler(handler, ec, bytes)); return; } else { // Partial match. Next search needs to start from beginning of match. next_search_start = result.first - begin; } } else { // No match. Next search can start with the new data. next_search_start = end - begin; } // Check if buffer is full. if (b.size() == b.max_size()) { boost::system::error_code ec(error::not_found); s.get_io_service().post(detail::bind_handler(handler, ec, 0)); return; } // Start a new asynchronous read operation to obtain more data. std::size_t bytes_available = std::min<std::size_t>(512, b.max_size() - b.size()); s.async_read_some(b.prepare(bytes_available), detail::read_until_delim_string_handler< AsyncReadStream, Allocator, ReadHandler>( s, b, delim, next_search_start, handler));}namespace detail{ template <typename AsyncReadStream, typename Allocator, typename ReadHandler> class read_until_expr_handler { public: read_until_expr_handler(AsyncReadStream& stream, boost::asio::basic_streambuf<Allocator>& streambuf, const boost::regex& expr, std::size_t next_search_start, ReadHandler handler) : stream_(stream), streambuf_(streambuf), expr_(expr), next_search_start_(next_search_start), handler_(handler) { } void operator()(const boost::system::error_code& ec,
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -