connection.hpp 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714
  1. /*
  2. * Copyright (c) 2014, Peter Thorson. All rights reserved.
  3. *
  4. * Redistribution and use in source and binary forms, with or without
  5. * modification, are permitted provided that the following conditions are met:
  6. * * Redistributions of source code must retain the above copyright
  7. * notice, this list of conditions and the following disclaimer.
  8. * * Redistributions in binary form must reproduce the above copyright
  9. * notice, this list of conditions and the following disclaimer in the
  10. * documentation and/or other materials provided with the distribution.
  11. * * Neither the name of the WebSocket++ Project nor the
  12. * names of its contributors may be used to endorse or promote products
  13. * derived from this software without specific prior written permission.
  14. *
  15. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  16. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  17. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  18. * ARE DISCLAIMED. IN NO EVENT SHALL PETER THORSON BE LIABLE FOR ANY
  19. * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  20. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  21. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  22. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  23. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  24. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  25. *
  26. */
  27. #ifndef WEBSOCKETPP_TRANSPORT_IOSTREAM_CON_HPP
  28. #define WEBSOCKETPP_TRANSPORT_IOSTREAM_CON_HPP
  29. #include <websocketpp/transport/iostream/base.hpp>
  30. #include <websocketpp/transport/base/connection.hpp>
  31. #include <websocketpp/uri.hpp>
  32. #include <websocketpp/logger/levels.hpp>
  33. #include <websocketpp/common/connection_hdl.hpp>
  34. #include <websocketpp/common/memory.hpp>
  35. #include <websocketpp/common/platforms.hpp>
  36. #include <algorithm>
  37. #include <iostream>
  38. #include <sstream>
  39. #include <string>
  40. #include <vector>
  41. namespace websocketpp {
  42. namespace transport {
  43. namespace iostream {
  44. /// Empty timer class to stub out for timer functionality that iostream
  45. /// transport doesn't support
  46. struct timer {
  47. void cancel() {}
  48. };
  49. template <typename config>
  50. class connection : public lib::enable_shared_from_this< connection<config> > {
  51. public:
  52. /// Type of this connection transport component
  53. typedef connection<config> type;
  54. /// Type of a shared pointer to this connection transport component
  55. typedef lib::shared_ptr<type> ptr;
  56. /// transport concurrency policy
  57. typedef typename config::concurrency_type concurrency_type;
  58. /// Type of this transport's access logging policy
  59. typedef typename config::alog_type alog_type;
  60. /// Type of this transport's error logging policy
  61. typedef typename config::elog_type elog_type;
  62. // Concurrency policy types
  63. typedef typename concurrency_type::scoped_lock_type scoped_lock_type;
  64. typedef typename concurrency_type::mutex_type mutex_type;
  65. typedef lib::shared_ptr<timer> timer_ptr;
  66. explicit connection(bool is_server, const lib::shared_ptr<alog_type> & alog, const lib::shared_ptr<elog_type> & elog)
  67. : m_output_stream(NULL)
  68. , m_reading(false)
  69. , m_is_server(is_server)
  70. , m_is_secure(false)
  71. , m_alog(alog)
  72. , m_elog(elog)
  73. , m_remote_endpoint("iostream transport")
  74. {
  75. m_alog->write(log::alevel::devel,"iostream con transport constructor");
  76. }
  77. /// Get a shared pointer to this component
  78. ptr get_shared() {
  79. return type::shared_from_this();
  80. }
  81. /// Register a std::ostream with the transport for writing output
  82. /**
  83. * Register a std::ostream with the transport. All future writes will be
  84. * done to this output stream.
  85. *
  86. * @param o A pointer to the ostream to use for output.
  87. */
  88. void register_ostream(std::ostream * o) {
  89. // TODO: lock transport state?
  90. scoped_lock_type lock(m_read_mutex);
  91. m_output_stream = o;
  92. }
  93. /// Set uri hook
  94. /**
  95. * Called by the endpoint as a connection is being established to provide
  96. * the uri being connected to to the transport layer.
  97. *
  98. * This transport policy doesn't use the uri so it is ignored.
  99. *
  100. * @since 0.6.0
  101. *
  102. * @param u The uri to set
  103. */
  104. void set_uri(uri_ptr) {}
  105. /// Overloaded stream input operator
  106. /**
  107. * Attempts to read input from the given stream into the transport. Bytes
  108. * will be extracted from the input stream to fulfill any pending reads.
  109. * Input in this manner will only read until the current read buffer has
  110. * been filled. Then it will signal the library to process the input. If the
  111. * library's input handler adds a new async_read, additional bytes will be
  112. * read, otherwise the input operation will end.
  113. *
  114. * When this function returns one of the following conditions is true:
  115. * - There is no outstanding read operation
  116. * - There are no more bytes available in the input stream
  117. *
  118. * You can use tellg() on the input stream to determine if all of the input
  119. * bytes were read or not.
  120. *
  121. * If there is no pending read operation when the input method is called, it
  122. * will return immediately and tellg() will not have changed.
  123. */
  124. friend std::istream & operator>> (std::istream & in, type & t) {
  125. // this serializes calls to external read.
  126. scoped_lock_type lock(t.m_read_mutex);
  127. t.read(in);
  128. return in;
  129. }
  130. /// Manual input supply (read some)
  131. /**
  132. * Copies bytes from buf into WebSocket++'s input buffers. Bytes will be
  133. * copied from the supplied buffer to fulfill any pending library reads. It
  134. * will return the number of bytes successfully processed. If there are no
  135. * pending reads read_some will return immediately. Not all of the bytes may
  136. * be able to be read in one call.
  137. *
  138. * @since 0.3.0-alpha4
  139. *
  140. * @param buf Char buffer to read into the websocket
  141. * @param len Length of buf
  142. * @return The number of characters from buf actually read.
  143. */
  144. size_t read_some(char const * buf, size_t len) {
  145. // this serializes calls to external read.
  146. scoped_lock_type lock(m_read_mutex);
  147. return this->read_some_impl(buf,len);
  148. }
  149. /// Manual input supply (read all)
  150. /**
  151. * Similar to read_some, but continues to read until all bytes in the
  152. * supplied buffer have been read or the connection runs out of read
  153. * requests.
  154. *
  155. * This method still may not read all of the bytes in the input buffer. if
  156. * it doesn't it indicates that the connection was most likely closed or
  157. * is in an error state where it is no longer accepting new input.
  158. *
  159. * @since 0.3.0
  160. *
  161. * @param buf Char buffer to read into the websocket
  162. * @param len Length of buf
  163. * @return The number of characters from buf actually read.
  164. */
  165. size_t read_all(char const * buf, size_t len) {
  166. // this serializes calls to external read.
  167. scoped_lock_type lock(m_read_mutex);
  168. size_t total_read = 0;
  169. size_t temp_read = 0;
  170. do {
  171. temp_read = this->read_some_impl(buf+total_read,len-total_read);
  172. total_read += temp_read;
  173. } while (temp_read != 0 && total_read < len);
  174. return total_read;
  175. }
  176. /// Manual input supply (DEPRECATED)
  177. /**
  178. * @deprecated DEPRECATED in favor of read_some()
  179. * @see read_some()
  180. */
  181. size_t readsome(char const * buf, size_t len) {
  182. return this->read_some(buf,len);
  183. }
  184. /// Signal EOF
  185. /**
  186. * Signals to the transport that data stream being read has reached EOF and
  187. * that no more bytes may be read or written to/from the transport.
  188. *
  189. * @since 0.3.0-alpha4
  190. */
  191. void eof() {
  192. // this serializes calls to external read.
  193. scoped_lock_type lock(m_read_mutex);
  194. if (m_reading) {
  195. complete_read(make_error_code(transport::error::eof));
  196. }
  197. }
  198. /// Signal transport error
  199. /**
  200. * Signals to the transport that a fatal data stream error has occurred and
  201. * that no more bytes may be read or written to/from the transport.
  202. *
  203. * @since 0.3.0-alpha4
  204. */
  205. void fatal_error() {
  206. // this serializes calls to external read.
  207. scoped_lock_type lock(m_read_mutex);
  208. if (m_reading) {
  209. complete_read(make_error_code(transport::error::pass_through));
  210. }
  211. }
  212. /// Set whether or not this connection is secure
  213. /**
  214. * The iostream transport does not provide any security features. As such
  215. * it defaults to returning false when `is_secure` is called. However, the
  216. * iostream transport may be used to wrap an external socket API that may
  217. * provide secure transport. This method allows that external API to flag
  218. * whether or not this connection is secure so that users of the WebSocket++
  219. * API will get more accurate information.
  220. *
  221. * @since 0.3.0-alpha4
  222. *
  223. * @param value Whether or not this connection is secure.
  224. */
  225. void set_secure(bool value) {
  226. m_is_secure = value;
  227. }
  228. /// Tests whether or not the underlying transport is secure
  229. /**
  230. * iostream transport will return false always because it has no information
  231. * about the ultimate remote endpoint. This may or may not be accurate
  232. * depending on the real source of bytes being input. The `set_secure`
  233. * method may be used to flag connections that are secured by an external
  234. * API
  235. *
  236. * @return Whether or not the underlying transport is secure
  237. */
  238. bool is_secure() const {
  239. return m_is_secure;
  240. }
  241. /// Set human readable remote endpoint address
  242. /**
  243. * Sets the remote endpoint address returned by `get_remote_endpoint`. This
  244. * value should be a human readable string that describes the remote
  245. * endpoint. Typically an IP address or hostname, perhaps with a port. But
  246. * may be something else depending on the nature of the underlying
  247. * transport.
  248. *
  249. * If none is set the default is "iostream transport".
  250. *
  251. * @since 0.3.0-alpha4
  252. *
  253. * @param value The remote endpoint address to set.
  254. */
  255. void set_remote_endpoint(std::string value) {
  256. m_remote_endpoint = value;
  257. }
  258. /// Get human readable remote endpoint address
  259. /**
  260. * The iostream transport has no information about the ultimate remote
  261. * endpoint. It will return the string "iostream transport". The
  262. * `set_remote_endpoint` method may be used by external network code to set
  263. * a more accurate value.
  264. *
  265. * This value is used in access and error logs and is available to the end
  266. * application for including in user facing interfaces and messages.
  267. *
  268. * @return A string identifying the address of the remote endpoint
  269. */
  270. std::string get_remote_endpoint() const {
  271. return m_remote_endpoint;
  272. }
  273. /// Get the connection handle
  274. /**
  275. * @return The handle for this connection.
  276. */
  277. connection_hdl get_handle() const {
  278. return m_connection_hdl;
  279. }
  280. /// Call back a function after a period of time.
  281. /**
  282. * Timers are not implemented in this transport. The timer pointer will
  283. * always be empty. The handler will never be called.
  284. *
  285. * @param duration Length of time to wait in milliseconds
  286. * @param callback The function to call back when the timer has expired
  287. * @return A handle that can be used to cancel the timer if it is no longer
  288. * needed.
  289. */
  290. timer_ptr set_timer(long, timer_handler) {
  291. return timer_ptr();
  292. }
  293. /// Sets the write handler
  294. /**
  295. * The write handler is called when the iostream transport receives data
  296. * that needs to be written to the appropriate output location. This handler
  297. * can be used in place of registering an ostream for output.
  298. *
  299. * The signature of the handler is
  300. * `lib::error_code (connection_hdl, char const *, size_t)` The
  301. * code returned will be reported and logged by the core library.
  302. *
  303. * See also, set_vector_write_handler, for an optional write handler that
  304. * allows more efficient handling of multiple writes at once.
  305. *
  306. * @see set_vector_write_handler
  307. *
  308. * @since 0.5.0
  309. *
  310. * @param h The handler to call when data is to be written.
  311. */
  312. void set_write_handler(write_handler h) {
  313. m_write_handler = h;
  314. }
  315. /// Sets the vectored write handler
  316. /**
  317. * The vectored write handler is called when the iostream transport receives
  318. * multiple chunks of data that need to be written to the appropriate output
  319. * location. This handler can be used in conjunction with the write_handler
  320. * in place of registering an ostream for output.
  321. *
  322. * The sequence of buffers represents bytes that should be written
  323. * consecutively and it is suggested to group the buffers into as few next
  324. * layer packets as possible. Vector write is used to allow implementations
  325. * that support it to coalesce writes into a single TCP packet or TLS
  326. * segment for improved efficiency.
  327. *
  328. * This is an optional handler. If it is not defined then multiple calls
  329. * will be made to the standard write handler.
  330. *
  331. * The signature of the handler is
  332. * `lib::error_code (connection_hdl, std::vector<websocketpp::transport::buffer>
  333. * const & bufs)`. The code returned will be reported and logged by the core
  334. * library. The `websocketpp::transport::buffer` type is a struct with two
  335. * data members. buf (char const *) and len (size_t).
  336. *
  337. * @since 0.6.0
  338. *
  339. * @param h The handler to call when vectored data is to be written.
  340. */
  341. void set_vector_write_handler(vector_write_handler h) {
  342. m_vector_write_handler = h;
  343. }
  344. /// Sets the shutdown handler
  345. /**
  346. * The shutdown handler is called when the iostream transport receives a
  347. * notification from the core library that it is finished with all read and
  348. * write operations and that the underlying transport can be cleaned up.
  349. *
  350. * If you are using iostream transport with another socket library, this is
  351. * a good time to close/shutdown the socket for this connection.
  352. *
  353. * The signature of the handler is `lib::error_code (connection_hdl)`. The
  354. * code returned will be reported and logged by the core library.
  355. *
  356. * @since 0.5.0
  357. *
  358. * @param h The handler to call on connection shutdown.
  359. */
  360. void set_shutdown_handler(shutdown_handler h) {
  361. m_shutdown_handler = h;
  362. }
  363. protected:
  364. /// Initialize the connection transport
  365. /**
  366. * Initialize the connection's transport component.
  367. *
  368. * @param handler The `init_handler` to call when initialization is done
  369. */
  370. void init(init_handler handler) {
  371. m_alog->write(log::alevel::devel,"iostream connection init");
  372. handler(lib::error_code());
  373. }
  374. /// Initiate an async_read for at least num_bytes bytes into buf
  375. /**
  376. * Initiates an async_read request for at least num_bytes bytes. The input
  377. * will be read into buf. A maximum of len bytes will be input. When the
  378. * operation is complete, handler will be called with the status and number
  379. * of bytes read.
  380. *
  381. * This method may or may not call handler from within the initial call. The
  382. * application should be prepared to accept either.
  383. *
  384. * The application should never call this method a second time before it has
  385. * been called back for the first read. If this is done, the second read
  386. * will be called back immediately with a double_read error.
  387. *
  388. * If num_bytes or len are zero handler will be called back immediately
  389. * indicating success.
  390. *
  391. * @param num_bytes Don't call handler until at least this many bytes have
  392. * been read.
  393. * @param buf The buffer to read bytes into
  394. * @param len The size of buf. At maximum, this many bytes will be read.
  395. * @param handler The callback to invoke when the operation is complete or
  396. * ends in an error
  397. */
  398. void async_read_at_least(size_t num_bytes, char *buf, size_t len,
  399. read_handler handler)
  400. {
  401. std::stringstream s;
  402. s << "iostream_con async_read_at_least: " << num_bytes;
  403. m_alog->write(log::alevel::devel,s.str());
  404. if (num_bytes > len) {
  405. handler(make_error_code(error::invalid_num_bytes),size_t(0));
  406. return;
  407. }
  408. if (m_reading == true) {
  409. handler(make_error_code(error::double_read),size_t(0));
  410. return;
  411. }
  412. if (num_bytes == 0 || len == 0) {
  413. handler(lib::error_code(),size_t(0));
  414. return;
  415. }
  416. m_buf = buf;
  417. m_len = len;
  418. m_bytes_needed = num_bytes;
  419. m_read_handler = handler;
  420. m_cursor = 0;
  421. m_reading = true;
  422. }
  423. /// Asyncronous Transport Write
  424. /**
  425. * Write len bytes in buf to the output method. Call handler to report
  426. * success or failure. handler may or may not be called during async_write,
  427. * but it must be safe for this to happen.
  428. *
  429. * Will return 0 on success. Other possible errors (not exhaustive)
  430. * output_stream_required: No output stream was registered to write to
  431. * bad_stream: a ostream pass through error
  432. *
  433. * This method will attempt to write to the registered ostream first. If an
  434. * ostream is not registered it will use the write handler. If neither are
  435. * registered then an error is passed up to the connection.
  436. *
  437. * @param buf buffer to read bytes from
  438. * @param len number of bytes to write
  439. * @param handler Callback to invoke with operation status.
  440. */
  441. void async_write(char const * buf, size_t len, transport::write_handler
  442. handler)
  443. {
  444. m_alog->write(log::alevel::devel,"iostream_con async_write");
  445. // TODO: lock transport state?
  446. lib::error_code ec;
  447. if (m_output_stream) {
  448. m_output_stream->write(buf,len);
  449. if (m_output_stream->bad()) {
  450. ec = make_error_code(error::bad_stream);
  451. }
  452. } else if (m_write_handler) {
  453. ec = m_write_handler(m_connection_hdl, buf, len);
  454. } else {
  455. ec = make_error_code(error::output_stream_required);
  456. }
  457. handler(ec);
  458. }
  459. /// Asyncronous Transport Write (scatter-gather)
  460. /**
  461. * Write a sequence of buffers to the output method. Call handler to report
  462. * success or failure. handler may or may not be called during async_write,
  463. * but it must be safe for this to happen.
  464. *
  465. * Will return 0 on success. Other possible errors (not exhaustive)
  466. * output_stream_required: No output stream was registered to write to
  467. * bad_stream: a ostream pass through error
  468. *
  469. * This method will attempt to write to the registered ostream first. If an
  470. * ostream is not registered it will use the write handler. If neither are
  471. * registered then an error is passed up to the connection.
  472. *
  473. * @param bufs vector of buffers to write
  474. * @param handler Callback to invoke with operation status.
  475. */
  476. void async_write(std::vector<buffer> const & bufs, transport::write_handler
  477. handler)
  478. {
  479. m_alog->write(log::alevel::devel,"iostream_con async_write buffer list");
  480. // TODO: lock transport state?
  481. lib::error_code ec;
  482. if (m_output_stream) {
  483. std::vector<buffer>::const_iterator it;
  484. for (it = bufs.begin(); it != bufs.end(); it++) {
  485. m_output_stream->write((*it).buf,(*it).len);
  486. if (m_output_stream->bad()) {
  487. ec = make_error_code(error::bad_stream);
  488. break;
  489. }
  490. }
  491. } else if (m_vector_write_handler) {
  492. ec = m_vector_write_handler(m_connection_hdl, bufs);
  493. } else if (m_write_handler) {
  494. std::vector<buffer>::const_iterator it;
  495. for (it = bufs.begin(); it != bufs.end(); it++) {
  496. ec = m_write_handler(m_connection_hdl, (*it).buf, (*it).len);
  497. if (ec) {break;}
  498. }
  499. } else {
  500. ec = make_error_code(error::output_stream_required);
  501. }
  502. handler(ec);
  503. }
  504. /// Set Connection Handle
  505. /**
  506. * @param hdl The new handle
  507. */
  508. void set_handle(connection_hdl hdl) {
  509. m_connection_hdl = hdl;
  510. }
  511. /// Call given handler back within the transport's event system (if present)
  512. /**
  513. * Invoke a callback within the transport's event system if it has one. If
  514. * it doesn't, the handler will be invoked immediately before this function
  515. * returns.
  516. *
  517. * @param handler The callback to invoke
  518. *
  519. * @return Whether or not the transport was able to register the handler for
  520. * callback.
  521. */
  522. lib::error_code dispatch(dispatch_handler handler) {
  523. handler();
  524. return lib::error_code();
  525. }
  526. /// Perform cleanup on socket shutdown_handler
  527. /**
  528. * If a shutdown handler is set, call it and pass through its return error
  529. * code. Otherwise assume there is nothing to do and pass through a success
  530. * code.
  531. *
  532. * @param handler The `shutdown_handler` to call back when complete
  533. */
  534. void async_shutdown(transport::shutdown_handler handler) {
  535. lib::error_code ec;
  536. if (m_shutdown_handler) {
  537. ec = m_shutdown_handler(m_connection_hdl);
  538. }
  539. handler(ec);
  540. }
  541. private:
  542. void read(std::istream &in) {
  543. m_alog->write(log::alevel::devel,"iostream_con read");
  544. while (in.good()) {
  545. if (!m_reading) {
  546. m_elog->write(log::elevel::devel,"write while not reading");
  547. break;
  548. }
  549. in.read(m_buf+m_cursor,static_cast<std::streamsize>(m_len-m_cursor));
  550. if (in.gcount() == 0) {
  551. m_elog->write(log::elevel::devel,"read zero bytes");
  552. break;
  553. }
  554. m_cursor += static_cast<size_t>(in.gcount());
  555. // TODO: error handling
  556. if (in.bad()) {
  557. m_reading = false;
  558. complete_read(make_error_code(error::bad_stream));
  559. }
  560. if (m_cursor >= m_bytes_needed) {
  561. m_reading = false;
  562. complete_read(lib::error_code());
  563. }
  564. }
  565. }
  566. size_t read_some_impl(char const * buf, size_t len) {
  567. m_alog->write(log::alevel::devel,"iostream_con read_some");
  568. if (!m_reading) {
  569. m_elog->write(log::elevel::devel,"write while not reading");
  570. return 0;
  571. }
  572. size_t bytes_to_copy = (std::min)(len,m_len-m_cursor);
  573. std::copy(buf,buf+bytes_to_copy,m_buf+m_cursor);
  574. m_cursor += bytes_to_copy;
  575. if (m_cursor >= m_bytes_needed) {
  576. complete_read(lib::error_code());
  577. }
  578. return bytes_to_copy;
  579. }
  580. /// Signal that a requested read is complete
  581. /**
  582. * Sets the reading flag to false and returns the handler that should be
  583. * called back with the result of the read. The cursor position that is sent
  584. * is whatever the value of m_cursor is.
  585. *
  586. * It MUST NOT be called when m_reading is false.
  587. * it MUST be called while holding the read lock
  588. *
  589. * It is important to use this method rather than directly setting/calling
  590. * m_read_handler back because this function makes sure to delete the
  591. * locally stored handler which contains shared pointers that will otherwise
  592. * cause circular reference based memory leaks.
  593. *
  594. * @param ec The error code to forward to the read handler
  595. */
  596. void complete_read(lib::error_code const & ec) {
  597. m_reading = false;
  598. read_handler handler = m_read_handler;
  599. m_read_handler = read_handler();
  600. handler(ec,m_cursor);
  601. }
  602. // Read space (Protected by m_read_mutex)
  603. char * m_buf;
  604. size_t m_len;
  605. size_t m_bytes_needed;
  606. read_handler m_read_handler;
  607. size_t m_cursor;
  608. // transport resources
  609. std::ostream * m_output_stream;
  610. connection_hdl m_connection_hdl;
  611. write_handler m_write_handler;
  612. vector_write_handler m_vector_write_handler;
  613. shutdown_handler m_shutdown_handler;
  614. bool m_reading;
  615. bool const m_is_server;
  616. bool m_is_secure;
  617. lib::shared_ptr<alog_type> m_alog;
  618. lib::shared_ptr<elog_type> m_elog;
  619. std::string m_remote_endpoint;
  620. // This lock ensures that only one thread can edit read data for this
  621. // connection. This is a very coarse lock that is basically locked all the
  622. // time. The nature of the connection is such that it cannot be
  623. // parallelized, the locking is here to prevent intra-connection concurrency
  624. // in order to allow inter-connection concurrency.
  625. mutex_type m_read_mutex;
  626. };
  627. } // namespace iostream
  628. } // namespace transport
  629. } // namespace websocketpp
  630. #endif // WEBSOCKETPP_TRANSPORT_IOSTREAM_CON_HPP