/
BirdLeon
/
ROBLOX2016
Обзор
Документация
Войти
/
BirdLeon
/
ROBLOX2016
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
Library/boost/libs/asio/test/is_write_buffered.cpp
129 строк
3 KB
PatoFlamejanteTV
full source code
19 дек 2024, 19:11
19 дек 2024, 19:11
05db15d
Код
Авторство
О чём код?
// // is_write_buffered.cpp // ~~~~~~~~~~~~~~~~~~~~~ // // Copyright (c) 2003-2020 Christopher M. Kohlhoff (chris at kohlhoff dot com) // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // // Disable autolinking for unit tests. #if !defined(BOOST_ALL_NO_LIB) #define BOOST_ALL_NO_LIB 1 #endif // !defined(BOOST_ALL_NO_LIB) // Test that header file is self-contained. #include <boost/asio/is_write_buffered.hpp> #include <boost/asio/buffered_read_stream.hpp> #include <boost/asio/buffered_write_stream.hpp> #include <boost/asio/io_context.hpp> #include <boost/asio/ip/tcp.hpp> #include "unit_test.hpp" using namespace std; // For memcmp, memcpy and memset. class test_stream { public: typedef boost::asio::io_context io_context_type; typedef test_stream lowest_layer_type; typedef io_context_type::executor_type executor_type; test_stream(boost::asio::io_context& io_context) : io_context_(io_context) { } io_context_type& io_context() { return io_context_; } lowest_layer_type& lowest_layer() { return *this; } template <typename Const_Buffers> size_t write(const Const_Buffers&) { return 0; } template <typename Const_Buffers> size_t write(const Const_Buffers&, boost::system::error_code& ec) { ec = boost::system::error_code(); return 0; } template <typename Const_Buffers, typename Handler> void async_write(const Const_Buffers&, Handler handler) { boost::system::error_code error; boost::asio::post(io_context_, boost::asio::detail::bind_handler(handler, error, 0)); } template <typename Mutable_Buffers> size_t read(const Mutable_Buffers&) { return 0; } template <typename Mutable_Buffers> size_t read(const Mutable_Buffers&, boost::system::error_code& ec) { ec = boost::system::error_code(); return 0; } template <typename Mutable_Buffers, typename Handler> void async_read(const Mutable_Buffers&, Handler handler) { boost::system::error_code error; boost::asio::post(io_context_, boost::asio::detail::bind_handler(handler, error, 0)); } private: io_context_type& io_context_; }; void is_write_buffered_test() { BOOST_ASIO_CHECK(!boost::asio::is_write_buffered< boost::asio::ip::tcp::socket>::value); BOOST_ASIO_CHECK(!boost::asio::is_write_buffered< boost::asio::buffered_read_stream< boost::asio::ip::tcp::socket> >::value); BOOST_ASIO_CHECK(!!boost::asio::is_write_buffered< boost::asio::buffered_write_stream< boost::asio::ip::tcp::socket> >::value); BOOST_ASIO_CHECK(!!boost::asio::is_write_buffered< boost::asio::buffered_stream<boost::asio::ip::tcp::socket> >::value); BOOST_ASIO_CHECK(!boost::asio::is_write_buffered<test_stream>::value); BOOST_ASIO_CHECK(!boost::asio::is_write_buffered< boost::asio::buffered_read_stream<test_stream> >::value); BOOST_ASIO_CHECK(!!boost::asio::is_write_buffered< boost::asio::buffered_write_stream<test_stream> >::value); BOOST_ASIO_CHECK(!!boost::asio::is_write_buffered< boost::asio::buffered_stream<test_stream> >::value); } BOOST_ASIO_TEST_SUITE ( "is_write_buffered", BOOST_ASIO_TEST_CASE(is_write_buffered_test) )