basic_socket_streambuf.hpp 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569
  1. //
  2. // basic_socket_streambuf.hpp
  3. // ~~~~~~~~~~~~~~~~~~~~~~~~~~
  4. //
  5. // Copyright (c) 2003-2015 Christopher M. Kohlhoff (chris at kohlhoff dot com)
  6. //
  7. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  8. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  9. //
  10. #ifndef BOOST_ASIO_BASIC_SOCKET_STREAMBUF_HPP
  11. #define BOOST_ASIO_BASIC_SOCKET_STREAMBUF_HPP
  12. #if defined(_MSC_VER) && (_MSC_VER >= 1200)
  13. # pragma once
  14. #endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
  15. #include <boost/asio/detail/config.hpp>
  16. #if !defined(BOOST_ASIO_NO_IOSTREAM)
  17. #include <streambuf>
  18. #include <boost/asio/basic_socket.hpp>
  19. #include <boost/asio/deadline_timer_service.hpp>
  20. #include <boost/asio/detail/array.hpp>
  21. #include <boost/asio/detail/throw_error.hpp>
  22. #include <boost/asio/io_service.hpp>
  23. #include <boost/asio/stream_socket_service.hpp>
  24. #if defined(BOOST_ASIO_HAS_BOOST_DATE_TIME)
  25. # include <boost/asio/deadline_timer.hpp>
  26. #else
  27. # include <boost/asio/steady_timer.hpp>
  28. #endif
  29. #if !defined(BOOST_ASIO_HAS_VARIADIC_TEMPLATES)
  30. # include <boost/asio/detail/variadic_templates.hpp>
  31. // A macro that should expand to:
  32. // template <typename T1, ..., typename Tn>
  33. // basic_socket_streambuf<Protocol, StreamSocketService,
  34. // Time, TimeTraits, TimerService>* connect(
  35. // T1 x1, ..., Tn xn)
  36. // {
  37. // init_buffers();
  38. // this->basic_socket<Protocol, StreamSocketService>::close(ec_);
  39. // typedef typename Protocol::resolver resolver_type;
  40. // typedef typename resolver_type::query resolver_query;
  41. // resolver_query query(x1, ..., xn);
  42. // resolve_and_connect(query);
  43. // return !ec_ ? this : 0;
  44. // }
  45. // This macro should only persist within this file.
  46. # define BOOST_ASIO_PRIVATE_CONNECT_DEF(n) \
  47. template <BOOST_ASIO_VARIADIC_TPARAMS(n)> \
  48. basic_socket_streambuf<Protocol, StreamSocketService, \
  49. Time, TimeTraits, TimerService>* connect(BOOST_ASIO_VARIADIC_PARAMS(n)) \
  50. { \
  51. init_buffers(); \
  52. this->basic_socket<Protocol, StreamSocketService>::close(ec_); \
  53. typedef typename Protocol::resolver resolver_type; \
  54. typedef typename resolver_type::query resolver_query; \
  55. resolver_query query(BOOST_ASIO_VARIADIC_ARGS(n)); \
  56. resolve_and_connect(query); \
  57. return !ec_ ? this : 0; \
  58. } \
  59. /**/
  60. #endif // !defined(BOOST_ASIO_HAS_VARIADIC_TEMPLATES)
  61. #include <boost/asio/detail/push_options.hpp>
  62. namespace boost {
  63. namespace asio {
  64. namespace detail {
  65. // A separate base class is used to ensure that the io_service is initialised
  66. // prior to the basic_socket_streambuf's basic_socket base class.
  67. class socket_streambuf_base
  68. {
  69. protected:
  70. io_service io_service_;
  71. };
  72. } // namespace detail
  73. /// Iostream streambuf for a socket.
  74. template <typename Protocol,
  75. typename StreamSocketService = stream_socket_service<Protocol>,
  76. #if defined(BOOST_ASIO_HAS_BOOST_DATE_TIME) \
  77. || defined(GENERATING_DOCUMENTATION)
  78. typename Time = boost::posix_time::ptime,
  79. typename TimeTraits = boost::asio::time_traits<Time>,
  80. typename TimerService = deadline_timer_service<Time, TimeTraits> >
  81. #else
  82. typename Time = steady_timer::clock_type,
  83. typename TimeTraits = steady_timer::traits_type,
  84. typename TimerService = steady_timer::service_type>
  85. #endif
  86. class basic_socket_streambuf
  87. : public std::streambuf,
  88. private detail::socket_streambuf_base,
  89. public basic_socket<Protocol, StreamSocketService>
  90. {
  91. private:
  92. // These typedefs are intended keep this class's implementation independent
  93. // of whether it's using Boost.DateTime, Boost.Chrono or std::chrono.
  94. #if defined(BOOST_ASIO_HAS_BOOST_DATE_TIME)
  95. typedef TimeTraits traits_helper;
  96. #else
  97. typedef detail::chrono_time_traits<Time, TimeTraits> traits_helper;
  98. #endif
  99. public:
  100. /// The endpoint type.
  101. typedef typename Protocol::endpoint endpoint_type;
  102. #if defined(GENERATING_DOCUMENTATION)
  103. /// The time type.
  104. typedef typename TimeTraits::time_type time_type;
  105. /// The duration type.
  106. typedef typename TimeTraits::duration_type duration_type;
  107. #else
  108. typedef typename traits_helper::time_type time_type;
  109. typedef typename traits_helper::duration_type duration_type;
  110. #endif
  111. /// Construct a basic_socket_streambuf without establishing a connection.
  112. basic_socket_streambuf()
  113. : basic_socket<Protocol, StreamSocketService>(
  114. this->detail::socket_streambuf_base::io_service_),
  115. unbuffered_(false),
  116. timer_service_(0),
  117. timer_state_(no_timer)
  118. {
  119. init_buffers();
  120. }
  121. /// Destructor flushes buffered data.
  122. virtual ~basic_socket_streambuf()
  123. {
  124. if (pptr() != pbase())
  125. overflow(traits_type::eof());
  126. destroy_timer();
  127. }
  128. /// Establish a connection.
  129. /**
  130. * This function establishes a connection to the specified endpoint.
  131. *
  132. * @return \c this if a connection was successfully established, a null
  133. * pointer otherwise.
  134. */
  135. basic_socket_streambuf<Protocol, StreamSocketService,
  136. Time, TimeTraits, TimerService>* connect(
  137. const endpoint_type& endpoint)
  138. {
  139. init_buffers();
  140. this->basic_socket<Protocol, StreamSocketService>::close(ec_);
  141. if (timer_state_ == timer_has_expired)
  142. {
  143. ec_ = boost::asio::error::operation_aborted;
  144. return 0;
  145. }
  146. io_handler handler = { this };
  147. this->basic_socket<Protocol, StreamSocketService>::async_connect(
  148. endpoint, handler);
  149. ec_ = boost::asio::error::would_block;
  150. this->get_service().get_io_service().reset();
  151. do this->get_service().get_io_service().run_one();
  152. while (ec_ == boost::asio::error::would_block);
  153. return !ec_ ? this : 0;
  154. }
  155. #if defined(GENERATING_DOCUMENTATION)
  156. /// Establish a connection.
  157. /**
  158. * This function automatically establishes a connection based on the supplied
  159. * resolver query parameters. The arguments are used to construct a resolver
  160. * query object.
  161. *
  162. * @return \c this if a connection was successfully established, a null
  163. * pointer otherwise.
  164. */
  165. template <typename T1, ..., typename TN>
  166. basic_socket_streambuf<Protocol, StreamSocketService>* connect(
  167. T1 t1, ..., TN tn);
  168. #elif defined(BOOST_ASIO_HAS_VARIADIC_TEMPLATES)
  169. template <typename... T>
  170. basic_socket_streambuf<Protocol, StreamSocketService,
  171. Time, TimeTraits, TimerService>* connect(T... x)
  172. {
  173. init_buffers();
  174. this->basic_socket<Protocol, StreamSocketService>::close(ec_);
  175. typedef typename Protocol::resolver resolver_type;
  176. typedef typename resolver_type::query resolver_query;
  177. resolver_query query(x...);
  178. resolve_and_connect(query);
  179. return !ec_ ? this : 0;
  180. }
  181. #else
  182. BOOST_ASIO_VARIADIC_GENERATE(BOOST_ASIO_PRIVATE_CONNECT_DEF)
  183. #endif
  184. /// Close the connection.
  185. /**
  186. * @return \c this if a connection was successfully established, a null
  187. * pointer otherwise.
  188. */
  189. basic_socket_streambuf<Protocol, StreamSocketService,
  190. Time, TimeTraits, TimerService>* close()
  191. {
  192. sync();
  193. this->basic_socket<Protocol, StreamSocketService>::close(ec_);
  194. if (!ec_)
  195. init_buffers();
  196. return !ec_ ? this : 0;
  197. }
  198. /// Get the last error associated with the stream buffer.
  199. /**
  200. * @return An \c error_code corresponding to the last error from the stream
  201. * buffer.
  202. */
  203. const boost::system::error_code& puberror() const
  204. {
  205. return error();
  206. }
  207. /// Get the stream buffer's expiry time as an absolute time.
  208. /**
  209. * @return An absolute time value representing the stream buffer's expiry
  210. * time.
  211. */
  212. time_type expires_at() const
  213. {
  214. return timer_service_
  215. ? timer_service_->expires_at(timer_implementation_)
  216. : time_type();
  217. }
  218. /// Set the stream buffer's expiry time as an absolute time.
  219. /**
  220. * This function sets the expiry time associated with the stream. Stream
  221. * operations performed after this time (where the operations cannot be
  222. * completed using the internal buffers) will fail with the error
  223. * boost::asio::error::operation_aborted.
  224. *
  225. * @param expiry_time The expiry time to be used for the stream.
  226. */
  227. void expires_at(const time_type& expiry_time)
  228. {
  229. construct_timer();
  230. boost::system::error_code ec;
  231. timer_service_->expires_at(timer_implementation_, expiry_time, ec);
  232. boost::asio::detail::throw_error(ec, "expires_at");
  233. start_timer();
  234. }
  235. /// Get the stream buffer's expiry time relative to now.
  236. /**
  237. * @return A relative time value representing the stream buffer's expiry time.
  238. */
  239. duration_type expires_from_now() const
  240. {
  241. return traits_helper::subtract(expires_at(), traits_helper::now());
  242. }
  243. /// Set the stream buffer's expiry time relative to now.
  244. /**
  245. * This function sets the expiry time associated with the stream. Stream
  246. * operations performed after this time (where the operations cannot be
  247. * completed using the internal buffers) will fail with the error
  248. * boost::asio::error::operation_aborted.
  249. *
  250. * @param expiry_time The expiry time to be used for the timer.
  251. */
  252. void expires_from_now(const duration_type& expiry_time)
  253. {
  254. construct_timer();
  255. boost::system::error_code ec;
  256. timer_service_->expires_from_now(timer_implementation_, expiry_time, ec);
  257. boost::asio::detail::throw_error(ec, "expires_from_now");
  258. start_timer();
  259. }
  260. protected:
  261. int_type underflow()
  262. {
  263. if (gptr() == egptr())
  264. {
  265. if (timer_state_ == timer_has_expired)
  266. {
  267. ec_ = boost::asio::error::operation_aborted;
  268. return traits_type::eof();
  269. }
  270. io_handler handler = { this };
  271. this->get_service().async_receive(this->get_implementation(),
  272. boost::asio::buffer(boost::asio::buffer(get_buffer_) + putback_max),
  273. 0, handler);
  274. ec_ = boost::asio::error::would_block;
  275. this->get_service().get_io_service().reset();
  276. do this->get_service().get_io_service().run_one();
  277. while (ec_ == boost::asio::error::would_block);
  278. if (ec_)
  279. return traits_type::eof();
  280. setg(&get_buffer_[0], &get_buffer_[0] + putback_max,
  281. &get_buffer_[0] + putback_max + bytes_transferred_);
  282. return traits_type::to_int_type(*gptr());
  283. }
  284. else
  285. {
  286. return traits_type::eof();
  287. }
  288. }
  289. int_type overflow(int_type c)
  290. {
  291. if (unbuffered_)
  292. {
  293. if (traits_type::eq_int_type(c, traits_type::eof()))
  294. {
  295. // Nothing to do.
  296. return traits_type::not_eof(c);
  297. }
  298. else
  299. {
  300. if (timer_state_ == timer_has_expired)
  301. {
  302. ec_ = boost::asio::error::operation_aborted;
  303. return traits_type::eof();
  304. }
  305. // Send the single character immediately.
  306. char_type ch = traits_type::to_char_type(c);
  307. io_handler handler = { this };
  308. this->get_service().async_send(this->get_implementation(),
  309. boost::asio::buffer(&ch, sizeof(char_type)), 0, handler);
  310. ec_ = boost::asio::error::would_block;
  311. this->get_service().get_io_service().reset();
  312. do this->get_service().get_io_service().run_one();
  313. while (ec_ == boost::asio::error::would_block);
  314. if (ec_)
  315. return traits_type::eof();
  316. return c;
  317. }
  318. }
  319. else
  320. {
  321. // Send all data in the output buffer.
  322. boost::asio::const_buffer buffer =
  323. boost::asio::buffer(pbase(), pptr() - pbase());
  324. while (boost::asio::buffer_size(buffer) > 0)
  325. {
  326. if (timer_state_ == timer_has_expired)
  327. {
  328. ec_ = boost::asio::error::operation_aborted;
  329. return traits_type::eof();
  330. }
  331. io_handler handler = { this };
  332. this->get_service().async_send(this->get_implementation(),
  333. boost::asio::buffer(buffer), 0, handler);
  334. ec_ = boost::asio::error::would_block;
  335. this->get_service().get_io_service().reset();
  336. do this->get_service().get_io_service().run_one();
  337. while (ec_ == boost::asio::error::would_block);
  338. if (ec_)
  339. return traits_type::eof();
  340. buffer = buffer + bytes_transferred_;
  341. }
  342. setp(&put_buffer_[0], &put_buffer_[0] + put_buffer_.size());
  343. // If the new character is eof then our work here is done.
  344. if (traits_type::eq_int_type(c, traits_type::eof()))
  345. return traits_type::not_eof(c);
  346. // Add the new character to the output buffer.
  347. *pptr() = traits_type::to_char_type(c);
  348. pbump(1);
  349. return c;
  350. }
  351. }
  352. int sync()
  353. {
  354. return overflow(traits_type::eof());
  355. }
  356. std::streambuf* setbuf(char_type* s, std::streamsize n)
  357. {
  358. if (pptr() == pbase() && s == 0 && n == 0)
  359. {
  360. unbuffered_ = true;
  361. setp(0, 0);
  362. return this;
  363. }
  364. return 0;
  365. }
  366. /// Get the last error associated with the stream buffer.
  367. /**
  368. * @return An \c error_code corresponding to the last error from the stream
  369. * buffer.
  370. */
  371. virtual const boost::system::error_code& error() const
  372. {
  373. return ec_;
  374. }
  375. private:
  376. void init_buffers()
  377. {
  378. setg(&get_buffer_[0],
  379. &get_buffer_[0] + putback_max,
  380. &get_buffer_[0] + putback_max);
  381. if (unbuffered_)
  382. setp(0, 0);
  383. else
  384. setp(&put_buffer_[0], &put_buffer_[0] + put_buffer_.size());
  385. }
  386. template <typename ResolverQuery>
  387. void resolve_and_connect(const ResolverQuery& query)
  388. {
  389. typedef typename Protocol::resolver resolver_type;
  390. typedef typename resolver_type::iterator iterator_type;
  391. resolver_type resolver(detail::socket_streambuf_base::io_service_);
  392. iterator_type i = resolver.resolve(query, ec_);
  393. if (!ec_)
  394. {
  395. iterator_type end;
  396. ec_ = boost::asio::error::host_not_found;
  397. while (ec_ && i != end)
  398. {
  399. this->basic_socket<Protocol, StreamSocketService>::close(ec_);
  400. if (timer_state_ == timer_has_expired)
  401. {
  402. ec_ = boost::asio::error::operation_aborted;
  403. return;
  404. }
  405. io_handler handler = { this };
  406. this->basic_socket<Protocol, StreamSocketService>::async_connect(
  407. *i, handler);
  408. ec_ = boost::asio::error::would_block;
  409. this->get_service().get_io_service().reset();
  410. do this->get_service().get_io_service().run_one();
  411. while (ec_ == boost::asio::error::would_block);
  412. ++i;
  413. }
  414. }
  415. }
  416. struct io_handler;
  417. friend struct io_handler;
  418. struct io_handler
  419. {
  420. basic_socket_streambuf* this_;
  421. void operator()(const boost::system::error_code& ec,
  422. std::size_t bytes_transferred = 0)
  423. {
  424. this_->ec_ = ec;
  425. this_->bytes_transferred_ = bytes_transferred;
  426. }
  427. };
  428. struct timer_handler;
  429. friend struct timer_handler;
  430. struct timer_handler
  431. {
  432. basic_socket_streambuf* this_;
  433. void operator()(const boost::system::error_code&)
  434. {
  435. time_type now = traits_helper::now();
  436. time_type expiry_time = this_->timer_service_->expires_at(
  437. this_->timer_implementation_);
  438. if (traits_helper::less_than(now, expiry_time))
  439. {
  440. this_->timer_state_ = timer_is_pending;
  441. this_->timer_service_->async_wait(this_->timer_implementation_, *this);
  442. }
  443. else
  444. {
  445. this_->timer_state_ = timer_has_expired;
  446. boost::system::error_code ec;
  447. this_->basic_socket<Protocol, StreamSocketService>::close(ec);
  448. }
  449. }
  450. };
  451. void construct_timer()
  452. {
  453. if (timer_service_ == 0)
  454. {
  455. TimerService& timer_service = use_service<TimerService>(
  456. detail::socket_streambuf_base::io_service_);
  457. timer_service.construct(timer_implementation_);
  458. timer_service_ = &timer_service;
  459. }
  460. }
  461. void destroy_timer()
  462. {
  463. if (timer_service_)
  464. timer_service_->destroy(timer_implementation_);
  465. }
  466. void start_timer()
  467. {
  468. if (timer_state_ != timer_is_pending)
  469. {
  470. timer_handler handler = { this };
  471. handler(boost::system::error_code());
  472. }
  473. }
  474. enum { putback_max = 8 };
  475. enum { buffer_size = 512 };
  476. boost::asio::detail::array<char, buffer_size> get_buffer_;
  477. boost::asio::detail::array<char, buffer_size> put_buffer_;
  478. bool unbuffered_;
  479. boost::system::error_code ec_;
  480. std::size_t bytes_transferred_;
  481. TimerService* timer_service_;
  482. typename TimerService::implementation_type timer_implementation_;
  483. enum state { no_timer, timer_is_pending, timer_has_expired } timer_state_;
  484. };
  485. } // namespace asio
  486. } // namespace boost
  487. #include <boost/asio/detail/pop_options.hpp>
  488. #if !defined(BOOST_ASIO_HAS_VARIADIC_TEMPLATES)
  489. # undef BOOST_ASIO_PRIVATE_CONNECT_DEF
  490. #endif // !defined(BOOST_ASIO_HAS_VARIADIC_TEMPLATES)
  491. #endif // !defined(BOOST_ASIO_NO_IOSTREAM)
  492. #endif // BOOST_ASIO_BASIC_SOCKET_STREAMBUF_HPP