buffer.hpp 69 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241
  1. //
  2. // buffer.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_BUFFER_HPP
  11. #define BOOST_ASIO_BUFFER_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. #include <cstddef>
  17. #include <cstring>
  18. #include <string>
  19. #include <vector>
  20. #include <boost/asio/detail/array_fwd.hpp>
  21. #if defined(BOOST_ASIO_MSVC)
  22. # if defined(_HAS_ITERATOR_DEBUGGING) && (_HAS_ITERATOR_DEBUGGING != 0)
  23. # if !defined(BOOST_ASIO_DISABLE_BUFFER_DEBUGGING)
  24. # define BOOST_ASIO_ENABLE_BUFFER_DEBUGGING
  25. # endif // !defined(BOOST_ASIO_DISABLE_BUFFER_DEBUGGING)
  26. # endif // defined(_HAS_ITERATOR_DEBUGGING)
  27. #endif // defined(BOOST_ASIO_MSVC)
  28. #if defined(__GNUC__)
  29. # if defined(_GLIBCXX_DEBUG)
  30. # if !defined(BOOST_ASIO_DISABLE_BUFFER_DEBUGGING)
  31. # define BOOST_ASIO_ENABLE_BUFFER_DEBUGGING
  32. # endif // !defined(BOOST_ASIO_DISABLE_BUFFER_DEBUGGING)
  33. # endif // defined(_GLIBCXX_DEBUG)
  34. #endif // defined(__GNUC__)
  35. #if defined(BOOST_ASIO_ENABLE_BUFFER_DEBUGGING)
  36. # include <boost/asio/detail/function.hpp>
  37. #endif // BOOST_ASIO_ENABLE_BUFFER_DEBUGGING
  38. #if defined(BOOST_ASIO_HAS_BOOST_WORKAROUND)
  39. # include <boost/detail/workaround.hpp>
  40. # if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x582)) \
  41. || BOOST_WORKAROUND(__SUNPRO_CC, BOOST_TESTED_AT(0x590))
  42. # define BOOST_ASIO_ENABLE_ARRAY_BUFFER_WORKAROUND
  43. # endif // BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x582))
  44. // || BOOST_WORKAROUND(__SUNPRO_CC, BOOST_TESTED_AT(0x590))
  45. #endif // defined(BOOST_ASIO_HAS_BOOST_WORKAROUND)
  46. #if defined(BOOST_ASIO_ENABLE_ARRAY_BUFFER_WORKAROUND)
  47. # include <boost/asio/detail/type_traits.hpp>
  48. #endif // defined(BOOST_ASIO_ENABLE_ARRAY_BUFFER_WORKAROUND)
  49. #include <boost/asio/detail/push_options.hpp>
  50. namespace boost {
  51. namespace asio {
  52. class mutable_buffer;
  53. class const_buffer;
  54. namespace detail {
  55. void* buffer_cast_helper(const mutable_buffer&);
  56. const void* buffer_cast_helper(const const_buffer&);
  57. std::size_t buffer_size_helper(const mutable_buffer&);
  58. std::size_t buffer_size_helper(const const_buffer&);
  59. } // namespace detail
  60. /// Holds a buffer that can be modified.
  61. /**
  62. * The mutable_buffer class provides a safe representation of a buffer that can
  63. * be modified. It does not own the underlying data, and so is cheap to copy or
  64. * assign.
  65. *
  66. * @par Accessing Buffer Contents
  67. *
  68. * The contents of a buffer may be accessed using the @ref buffer_size
  69. * and @ref buffer_cast functions:
  70. *
  71. * @code boost::asio::mutable_buffer b1 = ...;
  72. * std::size_t s1 = boost::asio::buffer_size(b1);
  73. * unsigned char* p1 = boost::asio::buffer_cast<unsigned char*>(b1);
  74. * @endcode
  75. *
  76. * The boost::asio::buffer_cast function permits violations of type safety, so
  77. * uses of it in application code should be carefully considered.
  78. */
  79. class mutable_buffer
  80. {
  81. public:
  82. /// Construct an empty buffer.
  83. mutable_buffer()
  84. : data_(0),
  85. size_(0)
  86. {
  87. }
  88. /// Construct a buffer to represent a given memory range.
  89. mutable_buffer(void* data, std::size_t size)
  90. : data_(data),
  91. size_(size)
  92. {
  93. }
  94. #if defined(BOOST_ASIO_ENABLE_BUFFER_DEBUGGING)
  95. mutable_buffer(void* data, std::size_t size,
  96. boost::asio::detail::function<void()> debug_check)
  97. : data_(data),
  98. size_(size),
  99. debug_check_(debug_check)
  100. {
  101. }
  102. const boost::asio::detail::function<void()>& get_debug_check() const
  103. {
  104. return debug_check_;
  105. }
  106. #endif // BOOST_ASIO_ENABLE_BUFFER_DEBUGGING
  107. private:
  108. friend void* boost::asio::detail::buffer_cast_helper(
  109. const mutable_buffer& b);
  110. friend std::size_t boost::asio::detail::buffer_size_helper(
  111. const mutable_buffer& b);
  112. void* data_;
  113. std::size_t size_;
  114. #if defined(BOOST_ASIO_ENABLE_BUFFER_DEBUGGING)
  115. boost::asio::detail::function<void()> debug_check_;
  116. #endif // BOOST_ASIO_ENABLE_BUFFER_DEBUGGING
  117. };
  118. namespace detail {
  119. inline void* buffer_cast_helper(const mutable_buffer& b)
  120. {
  121. #if defined(BOOST_ASIO_ENABLE_BUFFER_DEBUGGING)
  122. if (b.size_ && b.debug_check_)
  123. b.debug_check_();
  124. #endif // BOOST_ASIO_ENABLE_BUFFER_DEBUGGING
  125. return b.data_;
  126. }
  127. inline std::size_t buffer_size_helper(const mutable_buffer& b)
  128. {
  129. return b.size_;
  130. }
  131. } // namespace detail
  132. /// Adapts a single modifiable buffer so that it meets the requirements of the
  133. /// MutableBufferSequence concept.
  134. class mutable_buffers_1
  135. : public mutable_buffer
  136. {
  137. public:
  138. /// The type for each element in the list of buffers.
  139. typedef mutable_buffer value_type;
  140. /// A random-access iterator type that may be used to read elements.
  141. typedef const mutable_buffer* const_iterator;
  142. /// Construct to represent a given memory range.
  143. mutable_buffers_1(void* data, std::size_t size)
  144. : mutable_buffer(data, size)
  145. {
  146. }
  147. /// Construct to represent a single modifiable buffer.
  148. explicit mutable_buffers_1(const mutable_buffer& b)
  149. : mutable_buffer(b)
  150. {
  151. }
  152. /// Get a random-access iterator to the first element.
  153. const_iterator begin() const
  154. {
  155. return this;
  156. }
  157. /// Get a random-access iterator for one past the last element.
  158. const_iterator end() const
  159. {
  160. return begin() + 1;
  161. }
  162. };
  163. /// Holds a buffer that cannot be modified.
  164. /**
  165. * The const_buffer class provides a safe representation of a buffer that cannot
  166. * be modified. It does not own the underlying data, and so is cheap to copy or
  167. * assign.
  168. *
  169. * @par Accessing Buffer Contents
  170. *
  171. * The contents of a buffer may be accessed using the @ref buffer_size
  172. * and @ref buffer_cast functions:
  173. *
  174. * @code boost::asio::const_buffer b1 = ...;
  175. * std::size_t s1 = boost::asio::buffer_size(b1);
  176. * const unsigned char* p1 = boost::asio::buffer_cast<const unsigned char*>(b1);
  177. * @endcode
  178. *
  179. * The boost::asio::buffer_cast function permits violations of type safety, so
  180. * uses of it in application code should be carefully considered.
  181. */
  182. class const_buffer
  183. {
  184. public:
  185. /// Construct an empty buffer.
  186. const_buffer()
  187. : data_(0),
  188. size_(0)
  189. {
  190. }
  191. /// Construct a buffer to represent a given memory range.
  192. const_buffer(const void* data, std::size_t size)
  193. : data_(data),
  194. size_(size)
  195. {
  196. }
  197. /// Construct a non-modifiable buffer from a modifiable one.
  198. const_buffer(const mutable_buffer& b)
  199. : data_(boost::asio::detail::buffer_cast_helper(b)),
  200. size_(boost::asio::detail::buffer_size_helper(b))
  201. #if defined(BOOST_ASIO_ENABLE_BUFFER_DEBUGGING)
  202. , debug_check_(b.get_debug_check())
  203. #endif // BOOST_ASIO_ENABLE_BUFFER_DEBUGGING
  204. {
  205. }
  206. #if defined(BOOST_ASIO_ENABLE_BUFFER_DEBUGGING)
  207. const_buffer(const void* data, std::size_t size,
  208. boost::asio::detail::function<void()> debug_check)
  209. : data_(data),
  210. size_(size),
  211. debug_check_(debug_check)
  212. {
  213. }
  214. const boost::asio::detail::function<void()>& get_debug_check() const
  215. {
  216. return debug_check_;
  217. }
  218. #endif // BOOST_ASIO_ENABLE_BUFFER_DEBUGGING
  219. private:
  220. friend const void* boost::asio::detail::buffer_cast_helper(
  221. const const_buffer& b);
  222. friend std::size_t boost::asio::detail::buffer_size_helper(
  223. const const_buffer& b);
  224. const void* data_;
  225. std::size_t size_;
  226. #if defined(BOOST_ASIO_ENABLE_BUFFER_DEBUGGING)
  227. boost::asio::detail::function<void()> debug_check_;
  228. #endif // BOOST_ASIO_ENABLE_BUFFER_DEBUGGING
  229. };
  230. namespace detail {
  231. inline const void* buffer_cast_helper(const const_buffer& b)
  232. {
  233. #if defined(BOOST_ASIO_ENABLE_BUFFER_DEBUGGING)
  234. if (b.size_ && b.debug_check_)
  235. b.debug_check_();
  236. #endif // BOOST_ASIO_ENABLE_BUFFER_DEBUGGING
  237. return b.data_;
  238. }
  239. inline std::size_t buffer_size_helper(const const_buffer& b)
  240. {
  241. return b.size_;
  242. }
  243. } // namespace detail
  244. /// Adapts a single non-modifiable buffer so that it meets the requirements of
  245. /// the ConstBufferSequence concept.
  246. class const_buffers_1
  247. : public const_buffer
  248. {
  249. public:
  250. /// The type for each element in the list of buffers.
  251. typedef const_buffer value_type;
  252. /// A random-access iterator type that may be used to read elements.
  253. typedef const const_buffer* const_iterator;
  254. /// Construct to represent a given memory range.
  255. const_buffers_1(const void* data, std::size_t size)
  256. : const_buffer(data, size)
  257. {
  258. }
  259. /// Construct to represent a single non-modifiable buffer.
  260. explicit const_buffers_1(const const_buffer& b)
  261. : const_buffer(b)
  262. {
  263. }
  264. /// Get a random-access iterator to the first element.
  265. const_iterator begin() const
  266. {
  267. return this;
  268. }
  269. /// Get a random-access iterator for one past the last element.
  270. const_iterator end() const
  271. {
  272. return begin() + 1;
  273. }
  274. };
  275. /// An implementation of both the ConstBufferSequence and MutableBufferSequence
  276. /// concepts to represent a null buffer sequence.
  277. class null_buffers
  278. {
  279. public:
  280. /// The type for each element in the list of buffers.
  281. typedef mutable_buffer value_type;
  282. /// A random-access iterator type that may be used to read elements.
  283. typedef const mutable_buffer* const_iterator;
  284. /// Get a random-access iterator to the first element.
  285. const_iterator begin() const
  286. {
  287. return &buf_;
  288. }
  289. /// Get a random-access iterator for one past the last element.
  290. const_iterator end() const
  291. {
  292. return &buf_;
  293. }
  294. private:
  295. mutable_buffer buf_;
  296. };
  297. /** @defgroup buffer_size boost::asio::buffer_size
  298. *
  299. * @brief The boost::asio::buffer_size function determines the total number of
  300. * bytes in a buffer or buffer sequence.
  301. */
  302. /*@{*/
  303. /// Get the number of bytes in a modifiable buffer.
  304. inline std::size_t buffer_size(const mutable_buffer& b)
  305. {
  306. return detail::buffer_size_helper(b);
  307. }
  308. /// Get the number of bytes in a modifiable buffer.
  309. inline std::size_t buffer_size(const mutable_buffers_1& b)
  310. {
  311. return detail::buffer_size_helper(b);
  312. }
  313. /// Get the number of bytes in a non-modifiable buffer.
  314. inline std::size_t buffer_size(const const_buffer& b)
  315. {
  316. return detail::buffer_size_helper(b);
  317. }
  318. /// Get the number of bytes in a non-modifiable buffer.
  319. inline std::size_t buffer_size(const const_buffers_1& b)
  320. {
  321. return detail::buffer_size_helper(b);
  322. }
  323. /// Get the total number of bytes in a buffer sequence.
  324. /**
  325. * The @c BufferSequence template parameter may meet either of the @c
  326. * ConstBufferSequence or @c MutableBufferSequence type requirements.
  327. */
  328. template <typename BufferSequence>
  329. inline std::size_t buffer_size(const BufferSequence& b)
  330. {
  331. std::size_t total_buffer_size = 0;
  332. typename BufferSequence::const_iterator iter = b.begin();
  333. typename BufferSequence::const_iterator end = b.end();
  334. for (; iter != end; ++iter)
  335. total_buffer_size += detail::buffer_size_helper(*iter);
  336. return total_buffer_size;
  337. }
  338. /*@}*/
  339. /** @defgroup buffer_cast boost::asio::buffer_cast
  340. *
  341. * @brief The boost::asio::buffer_cast function is used to obtain a pointer to
  342. * the underlying memory region associated with a buffer.
  343. *
  344. * @par Examples:
  345. *
  346. * To access the memory of a non-modifiable buffer, use:
  347. * @code boost::asio::const_buffer b1 = ...;
  348. * const unsigned char* p1 = boost::asio::buffer_cast<const unsigned char*>(b1);
  349. * @endcode
  350. *
  351. * To access the memory of a modifiable buffer, use:
  352. * @code boost::asio::mutable_buffer b2 = ...;
  353. * unsigned char* p2 = boost::asio::buffer_cast<unsigned char*>(b2);
  354. * @endcode
  355. *
  356. * The boost::asio::buffer_cast function permits violations of type safety, so
  357. * uses of it in application code should be carefully considered.
  358. */
  359. /*@{*/
  360. /// Cast a non-modifiable buffer to a specified pointer to POD type.
  361. template <typename PointerToPodType>
  362. inline PointerToPodType buffer_cast(const mutable_buffer& b)
  363. {
  364. return static_cast<PointerToPodType>(detail::buffer_cast_helper(b));
  365. }
  366. /// Cast a non-modifiable buffer to a specified pointer to POD type.
  367. template <typename PointerToPodType>
  368. inline PointerToPodType buffer_cast(const const_buffer& b)
  369. {
  370. return static_cast<PointerToPodType>(detail::buffer_cast_helper(b));
  371. }
  372. /*@}*/
  373. /// Create a new modifiable buffer that is offset from the start of another.
  374. /**
  375. * @relates mutable_buffer
  376. */
  377. inline mutable_buffer operator+(const mutable_buffer& b, std::size_t start)
  378. {
  379. if (start > buffer_size(b))
  380. return mutable_buffer();
  381. char* new_data = buffer_cast<char*>(b) + start;
  382. std::size_t new_size = buffer_size(b) - start;
  383. return mutable_buffer(new_data, new_size
  384. #if defined(BOOST_ASIO_ENABLE_BUFFER_DEBUGGING)
  385. , b.get_debug_check()
  386. #endif // BOOST_ASIO_ENABLE_BUFFER_DEBUGGING
  387. );
  388. }
  389. /// Create a new modifiable buffer that is offset from the start of another.
  390. /**
  391. * @relates mutable_buffer
  392. */
  393. inline mutable_buffer operator+(std::size_t start, const mutable_buffer& b)
  394. {
  395. if (start > buffer_size(b))
  396. return mutable_buffer();
  397. char* new_data = buffer_cast<char*>(b) + start;
  398. std::size_t new_size = buffer_size(b) - start;
  399. return mutable_buffer(new_data, new_size
  400. #if defined(BOOST_ASIO_ENABLE_BUFFER_DEBUGGING)
  401. , b.get_debug_check()
  402. #endif // BOOST_ASIO_ENABLE_BUFFER_DEBUGGING
  403. );
  404. }
  405. /// Create a new non-modifiable buffer that is offset from the start of another.
  406. /**
  407. * @relates const_buffer
  408. */
  409. inline const_buffer operator+(const const_buffer& b, std::size_t start)
  410. {
  411. if (start > buffer_size(b))
  412. return const_buffer();
  413. const char* new_data = buffer_cast<const char*>(b) + start;
  414. std::size_t new_size = buffer_size(b) - start;
  415. return const_buffer(new_data, new_size
  416. #if defined(BOOST_ASIO_ENABLE_BUFFER_DEBUGGING)
  417. , b.get_debug_check()
  418. #endif // BOOST_ASIO_ENABLE_BUFFER_DEBUGGING
  419. );
  420. }
  421. /// Create a new non-modifiable buffer that is offset from the start of another.
  422. /**
  423. * @relates const_buffer
  424. */
  425. inline const_buffer operator+(std::size_t start, const const_buffer& b)
  426. {
  427. if (start > buffer_size(b))
  428. return const_buffer();
  429. const char* new_data = buffer_cast<const char*>(b) + start;
  430. std::size_t new_size = buffer_size(b) - start;
  431. return const_buffer(new_data, new_size
  432. #if defined(BOOST_ASIO_ENABLE_BUFFER_DEBUGGING)
  433. , b.get_debug_check()
  434. #endif // BOOST_ASIO_ENABLE_BUFFER_DEBUGGING
  435. );
  436. }
  437. #if defined(BOOST_ASIO_ENABLE_BUFFER_DEBUGGING)
  438. namespace detail {
  439. template <typename Iterator>
  440. class buffer_debug_check
  441. {
  442. public:
  443. buffer_debug_check(Iterator iter)
  444. : iter_(iter)
  445. {
  446. }
  447. ~buffer_debug_check()
  448. {
  449. #if defined(BOOST_ASIO_MSVC) && (BOOST_ASIO_MSVC == 1400)
  450. // MSVC 8's string iterator checking may crash in a std::string::iterator
  451. // object's destructor when the iterator points to an already-destroyed
  452. // std::string object, unless the iterator is cleared first.
  453. iter_ = Iterator();
  454. #endif // defined(BOOST_ASIO_MSVC) && (BOOST_ASIO_MSVC == 1400)
  455. }
  456. void operator()()
  457. {
  458. *iter_;
  459. }
  460. private:
  461. Iterator iter_;
  462. };
  463. } // namespace detail
  464. #endif // BOOST_ASIO_ENABLE_BUFFER_DEBUGGING
  465. /** @defgroup buffer boost::asio::buffer
  466. *
  467. * @brief The boost::asio::buffer function is used to create a buffer object to
  468. * represent raw memory, an array of POD elements, a vector of POD elements,
  469. * or a std::string.
  470. *
  471. * A buffer object represents a contiguous region of memory as a 2-tuple
  472. * consisting of a pointer and size in bytes. A tuple of the form <tt>{void*,
  473. * size_t}</tt> specifies a mutable (modifiable) region of memory. Similarly, a
  474. * tuple of the form <tt>{const void*, size_t}</tt> specifies a const
  475. * (non-modifiable) region of memory. These two forms correspond to the classes
  476. * mutable_buffer and const_buffer, respectively. To mirror C++'s conversion
  477. * rules, a mutable_buffer is implicitly convertible to a const_buffer, and the
  478. * opposite conversion is not permitted.
  479. *
  480. * The simplest use case involves reading or writing a single buffer of a
  481. * specified size:
  482. *
  483. * @code sock.send(boost::asio::buffer(data, size)); @endcode
  484. *
  485. * In the above example, the return value of boost::asio::buffer meets the
  486. * requirements of the ConstBufferSequence concept so that it may be directly
  487. * passed to the socket's write function. A buffer created for modifiable
  488. * memory also meets the requirements of the MutableBufferSequence concept.
  489. *
  490. * An individual buffer may be created from a builtin array, std::vector,
  491. * std::array or boost::array of POD elements. This helps prevent buffer
  492. * overruns by automatically determining the size of the buffer:
  493. *
  494. * @code char d1[128];
  495. * size_t bytes_transferred = sock.receive(boost::asio::buffer(d1));
  496. *
  497. * std::vector<char> d2(128);
  498. * bytes_transferred = sock.receive(boost::asio::buffer(d2));
  499. *
  500. * std::array<char, 128> d3;
  501. * bytes_transferred = sock.receive(boost::asio::buffer(d3));
  502. *
  503. * boost::array<char, 128> d4;
  504. * bytes_transferred = sock.receive(boost::asio::buffer(d4)); @endcode
  505. *
  506. * In all three cases above, the buffers created are exactly 128 bytes long.
  507. * Note that a vector is @e never automatically resized when creating or using
  508. * a buffer. The buffer size is determined using the vector's <tt>size()</tt>
  509. * member function, and not its capacity.
  510. *
  511. * @par Accessing Buffer Contents
  512. *
  513. * The contents of a buffer may be accessed using the @ref buffer_size and
  514. * @ref buffer_cast functions:
  515. *
  516. * @code boost::asio::mutable_buffer b1 = ...;
  517. * std::size_t s1 = boost::asio::buffer_size(b1);
  518. * unsigned char* p1 = boost::asio::buffer_cast<unsigned char*>(b1);
  519. *
  520. * boost::asio::const_buffer b2 = ...;
  521. * std::size_t s2 = boost::asio::buffer_size(b2);
  522. * const void* p2 = boost::asio::buffer_cast<const void*>(b2); @endcode
  523. *
  524. * The boost::asio::buffer_cast function permits violations of type safety, so
  525. * uses of it in application code should be carefully considered.
  526. *
  527. * For convenience, the @ref buffer_size function also works on buffer
  528. * sequences (that is, types meeting the ConstBufferSequence or
  529. * MutableBufferSequence type requirements). In this case, the function returns
  530. * the total size of all buffers in the sequence.
  531. *
  532. * @par Buffer Copying
  533. *
  534. * The @ref buffer_copy function may be used to copy raw bytes between
  535. * individual buffers and buffer sequences.
  536. *
  537. * In particular, when used with the @ref buffer_size, the @ref buffer_copy
  538. * function can be used to linearise a sequence of buffers. For example:
  539. *
  540. * @code vector<const_buffer> buffers = ...;
  541. *
  542. * vector<unsigned char> data(boost::asio::buffer_size(buffers));
  543. * boost::asio::buffer_copy(boost::asio::buffer(data), buffers); @endcode
  544. *
  545. * Note that @ref buffer_copy is implemented in terms of @c memcpy, and
  546. * consequently it cannot be used to copy between overlapping memory regions.
  547. *
  548. * @par Buffer Invalidation
  549. *
  550. * A buffer object does not have any ownership of the memory it refers to. It
  551. * is the responsibility of the application to ensure the memory region remains
  552. * valid until it is no longer required for an I/O operation. When the memory
  553. * is no longer available, the buffer is said to have been invalidated.
  554. *
  555. * For the boost::asio::buffer overloads that accept an argument of type
  556. * std::vector, the buffer objects returned are invalidated by any vector
  557. * operation that also invalidates all references, pointers and iterators
  558. * referring to the elements in the sequence (C++ Std, 23.2.4)
  559. *
  560. * For the boost::asio::buffer overloads that accept an argument of type
  561. * std::basic_string, the buffer objects returned are invalidated according to
  562. * the rules defined for invalidation of references, pointers and iterators
  563. * referring to elements of the sequence (C++ Std, 21.3).
  564. *
  565. * @par Buffer Arithmetic
  566. *
  567. * Buffer objects may be manipulated using simple arithmetic in a safe way
  568. * which helps prevent buffer overruns. Consider an array initialised as
  569. * follows:
  570. *
  571. * @code boost::array<char, 6> a = { 'a', 'b', 'c', 'd', 'e' }; @endcode
  572. *
  573. * A buffer object @c b1 created using:
  574. *
  575. * @code b1 = boost::asio::buffer(a); @endcode
  576. *
  577. * represents the entire array, <tt>{ 'a', 'b', 'c', 'd', 'e' }</tt>. An
  578. * optional second argument to the boost::asio::buffer function may be used to
  579. * limit the size, in bytes, of the buffer:
  580. *
  581. * @code b2 = boost::asio::buffer(a, 3); @endcode
  582. *
  583. * such that @c b2 represents the data <tt>{ 'a', 'b', 'c' }</tt>. Even if the
  584. * size argument exceeds the actual size of the array, the size of the buffer
  585. * object created will be limited to the array size.
  586. *
  587. * An offset may be applied to an existing buffer to create a new one:
  588. *
  589. * @code b3 = b1 + 2; @endcode
  590. *
  591. * where @c b3 will set to represent <tt>{ 'c', 'd', 'e' }</tt>. If the offset
  592. * exceeds the size of the existing buffer, the newly created buffer will be
  593. * empty.
  594. *
  595. * Both an offset and size may be specified to create a buffer that corresponds
  596. * to a specific range of bytes within an existing buffer:
  597. *
  598. * @code b4 = boost::asio::buffer(b1 + 1, 3); @endcode
  599. *
  600. * so that @c b4 will refer to the bytes <tt>{ 'b', 'c', 'd' }</tt>.
  601. *
  602. * @par Buffers and Scatter-Gather I/O
  603. *
  604. * To read or write using multiple buffers (i.e. scatter-gather I/O), multiple
  605. * buffer objects may be assigned into a container that supports the
  606. * MutableBufferSequence (for read) or ConstBufferSequence (for write) concepts:
  607. *
  608. * @code
  609. * char d1[128];
  610. * std::vector<char> d2(128);
  611. * boost::array<char, 128> d3;
  612. *
  613. * boost::array<mutable_buffer, 3> bufs1 = {
  614. * boost::asio::buffer(d1),
  615. * boost::asio::buffer(d2),
  616. * boost::asio::buffer(d3) };
  617. * bytes_transferred = sock.receive(bufs1);
  618. *
  619. * std::vector<const_buffer> bufs2;
  620. * bufs2.push_back(boost::asio::buffer(d1));
  621. * bufs2.push_back(boost::asio::buffer(d2));
  622. * bufs2.push_back(boost::asio::buffer(d3));
  623. * bytes_transferred = sock.send(bufs2); @endcode
  624. */
  625. /*@{*/
  626. /// Create a new modifiable buffer from an existing buffer.
  627. /**
  628. * @returns <tt>mutable_buffers_1(b)</tt>.
  629. */
  630. inline mutable_buffers_1 buffer(const mutable_buffer& b)
  631. {
  632. return mutable_buffers_1(b);
  633. }
  634. /// Create a new modifiable buffer from an existing buffer.
  635. /**
  636. * @returns A mutable_buffers_1 value equivalent to:
  637. * @code mutable_buffers_1(
  638. * buffer_cast<void*>(b),
  639. * min(buffer_size(b), max_size_in_bytes)); @endcode
  640. */
  641. inline mutable_buffers_1 buffer(const mutable_buffer& b,
  642. std::size_t max_size_in_bytes)
  643. {
  644. return mutable_buffers_1(
  645. mutable_buffer(buffer_cast<void*>(b),
  646. buffer_size(b) < max_size_in_bytes
  647. ? buffer_size(b) : max_size_in_bytes
  648. #if defined(BOOST_ASIO_ENABLE_BUFFER_DEBUGGING)
  649. , b.get_debug_check()
  650. #endif // BOOST_ASIO_ENABLE_BUFFER_DEBUGGING
  651. ));
  652. }
  653. /// Create a new non-modifiable buffer from an existing buffer.
  654. /**
  655. * @returns <tt>const_buffers_1(b)</tt>.
  656. */
  657. inline const_buffers_1 buffer(const const_buffer& b)
  658. {
  659. return const_buffers_1(b);
  660. }
  661. /// Create a new non-modifiable buffer from an existing buffer.
  662. /**
  663. * @returns A const_buffers_1 value equivalent to:
  664. * @code const_buffers_1(
  665. * buffer_cast<const void*>(b),
  666. * min(buffer_size(b), max_size_in_bytes)); @endcode
  667. */
  668. inline const_buffers_1 buffer(const const_buffer& b,
  669. std::size_t max_size_in_bytes)
  670. {
  671. return const_buffers_1(
  672. const_buffer(buffer_cast<const void*>(b),
  673. buffer_size(b) < max_size_in_bytes
  674. ? buffer_size(b) : max_size_in_bytes
  675. #if defined(BOOST_ASIO_ENABLE_BUFFER_DEBUGGING)
  676. , b.get_debug_check()
  677. #endif // BOOST_ASIO_ENABLE_BUFFER_DEBUGGING
  678. ));
  679. }
  680. /// Create a new modifiable buffer that represents the given memory range.
  681. /**
  682. * @returns <tt>mutable_buffers_1(data, size_in_bytes)</tt>.
  683. */
  684. inline mutable_buffers_1 buffer(void* data, std::size_t size_in_bytes)
  685. {
  686. return mutable_buffers_1(mutable_buffer(data, size_in_bytes));
  687. }
  688. /// Create a new non-modifiable buffer that represents the given memory range.
  689. /**
  690. * @returns <tt>const_buffers_1(data, size_in_bytes)</tt>.
  691. */
  692. inline const_buffers_1 buffer(const void* data,
  693. std::size_t size_in_bytes)
  694. {
  695. return const_buffers_1(const_buffer(data, size_in_bytes));
  696. }
  697. /// Create a new modifiable buffer that represents the given POD array.
  698. /**
  699. * @returns A mutable_buffers_1 value equivalent to:
  700. * @code mutable_buffers_1(
  701. * static_cast<void*>(data),
  702. * N * sizeof(PodType)); @endcode
  703. */
  704. template <typename PodType, std::size_t N>
  705. inline mutable_buffers_1 buffer(PodType (&data)[N])
  706. {
  707. return mutable_buffers_1(mutable_buffer(data, N * sizeof(PodType)));
  708. }
  709. /// Create a new modifiable buffer that represents the given POD array.
  710. /**
  711. * @returns A mutable_buffers_1 value equivalent to:
  712. * @code mutable_buffers_1(
  713. * static_cast<void*>(data),
  714. * min(N * sizeof(PodType), max_size_in_bytes)); @endcode
  715. */
  716. template <typename PodType, std::size_t N>
  717. inline mutable_buffers_1 buffer(PodType (&data)[N],
  718. std::size_t max_size_in_bytes)
  719. {
  720. return mutable_buffers_1(
  721. mutable_buffer(data,
  722. N * sizeof(PodType) < max_size_in_bytes
  723. ? N * sizeof(PodType) : max_size_in_bytes));
  724. }
  725. /// Create a new non-modifiable buffer that represents the given POD array.
  726. /**
  727. * @returns A const_buffers_1 value equivalent to:
  728. * @code const_buffers_1(
  729. * static_cast<const void*>(data),
  730. * N * sizeof(PodType)); @endcode
  731. */
  732. template <typename PodType, std::size_t N>
  733. inline const_buffers_1 buffer(const PodType (&data)[N])
  734. {
  735. return const_buffers_1(const_buffer(data, N * sizeof(PodType)));
  736. }
  737. /// Create a new non-modifiable buffer that represents the given POD array.
  738. /**
  739. * @returns A const_buffers_1 value equivalent to:
  740. * @code const_buffers_1(
  741. * static_cast<const void*>(data),
  742. * min(N * sizeof(PodType), max_size_in_bytes)); @endcode
  743. */
  744. template <typename PodType, std::size_t N>
  745. inline const_buffers_1 buffer(const PodType (&data)[N],
  746. std::size_t max_size_in_bytes)
  747. {
  748. return const_buffers_1(
  749. const_buffer(data,
  750. N * sizeof(PodType) < max_size_in_bytes
  751. ? N * sizeof(PodType) : max_size_in_bytes));
  752. }
  753. #if defined(BOOST_ASIO_ENABLE_ARRAY_BUFFER_WORKAROUND)
  754. // Borland C++ and Sun Studio think the overloads:
  755. //
  756. // unspecified buffer(boost::array<PodType, N>& array ...);
  757. //
  758. // and
  759. //
  760. // unspecified buffer(boost::array<const PodType, N>& array ...);
  761. //
  762. // are ambiguous. This will be worked around by using a buffer_types traits
  763. // class that contains typedefs for the appropriate buffer and container
  764. // classes, based on whether PodType is const or non-const.
  765. namespace detail {
  766. template <bool IsConst>
  767. struct buffer_types_base;
  768. template <>
  769. struct buffer_types_base<false>
  770. {
  771. typedef mutable_buffer buffer_type;
  772. typedef mutable_buffers_1 container_type;
  773. };
  774. template <>
  775. struct buffer_types_base<true>
  776. {
  777. typedef const_buffer buffer_type;
  778. typedef const_buffers_1 container_type;
  779. };
  780. template <typename PodType>
  781. struct buffer_types
  782. : public buffer_types_base<is_const<PodType>::value>
  783. {
  784. };
  785. } // namespace detail
  786. template <typename PodType, std::size_t N>
  787. inline typename detail::buffer_types<PodType>::container_type
  788. buffer(boost::array<PodType, N>& data)
  789. {
  790. typedef typename boost::asio::detail::buffer_types<PodType>::buffer_type
  791. buffer_type;
  792. typedef typename boost::asio::detail::buffer_types<PodType>::container_type
  793. container_type;
  794. return container_type(
  795. buffer_type(data.c_array(), data.size() * sizeof(PodType)));
  796. }
  797. template <typename PodType, std::size_t N>
  798. inline typename detail::buffer_types<PodType>::container_type
  799. buffer(boost::array<PodType, N>& data, std::size_t max_size_in_bytes)
  800. {
  801. typedef typename boost::asio::detail::buffer_types<PodType>::buffer_type
  802. buffer_type;
  803. typedef typename boost::asio::detail::buffer_types<PodType>::container_type
  804. container_type;
  805. return container_type(
  806. buffer_type(data.c_array(),
  807. data.size() * sizeof(PodType) < max_size_in_bytes
  808. ? data.size() * sizeof(PodType) : max_size_in_bytes));
  809. }
  810. #else // defined(BOOST_ASIO_ENABLE_ARRAY_BUFFER_WORKAROUND)
  811. /// Create a new modifiable buffer that represents the given POD array.
  812. /**
  813. * @returns A mutable_buffers_1 value equivalent to:
  814. * @code mutable_buffers_1(
  815. * data.data(),
  816. * data.size() * sizeof(PodType)); @endcode
  817. */
  818. template <typename PodType, std::size_t N>
  819. inline mutable_buffers_1 buffer(boost::array<PodType, N>& data)
  820. {
  821. return mutable_buffers_1(
  822. mutable_buffer(data.c_array(), data.size() * sizeof(PodType)));
  823. }
  824. /// Create a new modifiable buffer that represents the given POD array.
  825. /**
  826. * @returns A mutable_buffers_1 value equivalent to:
  827. * @code mutable_buffers_1(
  828. * data.data(),
  829. * min(data.size() * sizeof(PodType), max_size_in_bytes)); @endcode
  830. */
  831. template <typename PodType, std::size_t N>
  832. inline mutable_buffers_1 buffer(boost::array<PodType, N>& data,
  833. std::size_t max_size_in_bytes)
  834. {
  835. return mutable_buffers_1(
  836. mutable_buffer(data.c_array(),
  837. data.size() * sizeof(PodType) < max_size_in_bytes
  838. ? data.size() * sizeof(PodType) : max_size_in_bytes));
  839. }
  840. /// Create a new non-modifiable buffer that represents the given POD array.
  841. /**
  842. * @returns A const_buffers_1 value equivalent to:
  843. * @code const_buffers_1(
  844. * data.data(),
  845. * data.size() * sizeof(PodType)); @endcode
  846. */
  847. template <typename PodType, std::size_t N>
  848. inline const_buffers_1 buffer(boost::array<const PodType, N>& data)
  849. {
  850. return const_buffers_1(
  851. const_buffer(data.data(), data.size() * sizeof(PodType)));
  852. }
  853. /// Create a new non-modifiable buffer that represents the given POD array.
  854. /**
  855. * @returns A const_buffers_1 value equivalent to:
  856. * @code const_buffers_1(
  857. * data.data(),
  858. * min(data.size() * sizeof(PodType), max_size_in_bytes)); @endcode
  859. */
  860. template <typename PodType, std::size_t N>
  861. inline const_buffers_1 buffer(boost::array<const PodType, N>& data,
  862. std::size_t max_size_in_bytes)
  863. {
  864. return const_buffers_1(
  865. const_buffer(data.data(),
  866. data.size() * sizeof(PodType) < max_size_in_bytes
  867. ? data.size() * sizeof(PodType) : max_size_in_bytes));
  868. }
  869. #endif // defined(BOOST_ASIO_ENABLE_ARRAY_BUFFER_WORKAROUND)
  870. /// Create a new non-modifiable buffer that represents the given POD array.
  871. /**
  872. * @returns A const_buffers_1 value equivalent to:
  873. * @code const_buffers_1(
  874. * data.data(),
  875. * data.size() * sizeof(PodType)); @endcode
  876. */
  877. template <typename PodType, std::size_t N>
  878. inline const_buffers_1 buffer(const boost::array<PodType, N>& data)
  879. {
  880. return const_buffers_1(
  881. const_buffer(data.data(), data.size() * sizeof(PodType)));
  882. }
  883. /// Create a new non-modifiable buffer that represents the given POD array.
  884. /**
  885. * @returns A const_buffers_1 value equivalent to:
  886. * @code const_buffers_1(
  887. * data.data(),
  888. * min(data.size() * sizeof(PodType), max_size_in_bytes)); @endcode
  889. */
  890. template <typename PodType, std::size_t N>
  891. inline const_buffers_1 buffer(const boost::array<PodType, N>& data,
  892. std::size_t max_size_in_bytes)
  893. {
  894. return const_buffers_1(
  895. const_buffer(data.data(),
  896. data.size() * sizeof(PodType) < max_size_in_bytes
  897. ? data.size() * sizeof(PodType) : max_size_in_bytes));
  898. }
  899. #if defined(BOOST_ASIO_HAS_STD_ARRAY) || defined(GENERATING_DOCUMENTATION)
  900. /// Create a new modifiable buffer that represents the given POD array.
  901. /**
  902. * @returns A mutable_buffers_1 value equivalent to:
  903. * @code mutable_buffers_1(
  904. * data.data(),
  905. * data.size() * sizeof(PodType)); @endcode
  906. */
  907. template <typename PodType, std::size_t N>
  908. inline mutable_buffers_1 buffer(std::array<PodType, N>& data)
  909. {
  910. return mutable_buffers_1(
  911. mutable_buffer(data.data(), data.size() * sizeof(PodType)));
  912. }
  913. /// Create a new modifiable buffer that represents the given POD array.
  914. /**
  915. * @returns A mutable_buffers_1 value equivalent to:
  916. * @code mutable_buffers_1(
  917. * data.data(),
  918. * min(data.size() * sizeof(PodType), max_size_in_bytes)); @endcode
  919. */
  920. template <typename PodType, std::size_t N>
  921. inline mutable_buffers_1 buffer(std::array<PodType, N>& data,
  922. std::size_t max_size_in_bytes)
  923. {
  924. return mutable_buffers_1(
  925. mutable_buffer(data.data(),
  926. data.size() * sizeof(PodType) < max_size_in_bytes
  927. ? data.size() * sizeof(PodType) : max_size_in_bytes));
  928. }
  929. /// Create a new non-modifiable buffer that represents the given POD array.
  930. /**
  931. * @returns A const_buffers_1 value equivalent to:
  932. * @code const_buffers_1(
  933. * data.data(),
  934. * data.size() * sizeof(PodType)); @endcode
  935. */
  936. template <typename PodType, std::size_t N>
  937. inline const_buffers_1 buffer(std::array<const PodType, N>& data)
  938. {
  939. return const_buffers_1(
  940. const_buffer(data.data(), data.size() * sizeof(PodType)));
  941. }
  942. /// Create a new non-modifiable buffer that represents the given POD array.
  943. /**
  944. * @returns A const_buffers_1 value equivalent to:
  945. * @code const_buffers_1(
  946. * data.data(),
  947. * min(data.size() * sizeof(PodType), max_size_in_bytes)); @endcode
  948. */
  949. template <typename PodType, std::size_t N>
  950. inline const_buffers_1 buffer(std::array<const PodType, N>& data,
  951. std::size_t max_size_in_bytes)
  952. {
  953. return const_buffers_1(
  954. const_buffer(data.data(),
  955. data.size() * sizeof(PodType) < max_size_in_bytes
  956. ? data.size() * sizeof(PodType) : max_size_in_bytes));
  957. }
  958. /// Create a new non-modifiable buffer that represents the given POD array.
  959. /**
  960. * @returns A const_buffers_1 value equivalent to:
  961. * @code const_buffers_1(
  962. * data.data(),
  963. * data.size() * sizeof(PodType)); @endcode
  964. */
  965. template <typename PodType, std::size_t N>
  966. inline const_buffers_1 buffer(const std::array<PodType, N>& data)
  967. {
  968. return const_buffers_1(
  969. const_buffer(data.data(), data.size() * sizeof(PodType)));
  970. }
  971. /// Create a new non-modifiable buffer that represents the given POD array.
  972. /**
  973. * @returns A const_buffers_1 value equivalent to:
  974. * @code const_buffers_1(
  975. * data.data(),
  976. * min(data.size() * sizeof(PodType), max_size_in_bytes)); @endcode
  977. */
  978. template <typename PodType, std::size_t N>
  979. inline const_buffers_1 buffer(const std::array<PodType, N>& data,
  980. std::size_t max_size_in_bytes)
  981. {
  982. return const_buffers_1(
  983. const_buffer(data.data(),
  984. data.size() * sizeof(PodType) < max_size_in_bytes
  985. ? data.size() * sizeof(PodType) : max_size_in_bytes));
  986. }
  987. #endif // defined(BOOST_ASIO_HAS_STD_ARRAY) || defined(GENERATING_DOCUMENTATION)
  988. /// Create a new modifiable buffer that represents the given POD vector.
  989. /**
  990. * @returns A mutable_buffers_1 value equivalent to:
  991. * @code mutable_buffers_1(
  992. * data.size() ? &data[0] : 0,
  993. * data.size() * sizeof(PodType)); @endcode
  994. *
  995. * @note The buffer is invalidated by any vector operation that would also
  996. * invalidate iterators.
  997. */
  998. template <typename PodType, typename Allocator>
  999. inline mutable_buffers_1 buffer(std::vector<PodType, Allocator>& data)
  1000. {
  1001. return mutable_buffers_1(
  1002. mutable_buffer(data.size() ? &data[0] : 0, data.size() * sizeof(PodType)
  1003. #if defined(BOOST_ASIO_ENABLE_BUFFER_DEBUGGING)
  1004. , detail::buffer_debug_check<
  1005. typename std::vector<PodType, Allocator>::iterator
  1006. >(data.begin())
  1007. #endif // BOOST_ASIO_ENABLE_BUFFER_DEBUGGING
  1008. ));
  1009. }
  1010. /// Create a new modifiable buffer that represents the given POD vector.
  1011. /**
  1012. * @returns A mutable_buffers_1 value equivalent to:
  1013. * @code mutable_buffers_1(
  1014. * data.size() ? &data[0] : 0,
  1015. * min(data.size() * sizeof(PodType), max_size_in_bytes)); @endcode
  1016. *
  1017. * @note The buffer is invalidated by any vector operation that would also
  1018. * invalidate iterators.
  1019. */
  1020. template <typename PodType, typename Allocator>
  1021. inline mutable_buffers_1 buffer(std::vector<PodType, Allocator>& data,
  1022. std::size_t max_size_in_bytes)
  1023. {
  1024. return mutable_buffers_1(
  1025. mutable_buffer(data.size() ? &data[0] : 0,
  1026. data.size() * sizeof(PodType) < max_size_in_bytes
  1027. ? data.size() * sizeof(PodType) : max_size_in_bytes
  1028. #if defined(BOOST_ASIO_ENABLE_BUFFER_DEBUGGING)
  1029. , detail::buffer_debug_check<
  1030. typename std::vector<PodType, Allocator>::iterator
  1031. >(data.begin())
  1032. #endif // BOOST_ASIO_ENABLE_BUFFER_DEBUGGING
  1033. ));
  1034. }
  1035. /// Create a new non-modifiable buffer that represents the given POD vector.
  1036. /**
  1037. * @returns A const_buffers_1 value equivalent to:
  1038. * @code const_buffers_1(
  1039. * data.size() ? &data[0] : 0,
  1040. * data.size() * sizeof(PodType)); @endcode
  1041. *
  1042. * @note The buffer is invalidated by any vector operation that would also
  1043. * invalidate iterators.
  1044. */
  1045. template <typename PodType, typename Allocator>
  1046. inline const_buffers_1 buffer(
  1047. const std::vector<PodType, Allocator>& data)
  1048. {
  1049. return const_buffers_1(
  1050. const_buffer(data.size() ? &data[0] : 0, data.size() * sizeof(PodType)
  1051. #if defined(BOOST_ASIO_ENABLE_BUFFER_DEBUGGING)
  1052. , detail::buffer_debug_check<
  1053. typename std::vector<PodType, Allocator>::const_iterator
  1054. >(data.begin())
  1055. #endif // BOOST_ASIO_ENABLE_BUFFER_DEBUGGING
  1056. ));
  1057. }
  1058. /// Create a new non-modifiable buffer that represents the given POD vector.
  1059. /**
  1060. * @returns A const_buffers_1 value equivalent to:
  1061. * @code const_buffers_1(
  1062. * data.size() ? &data[0] : 0,
  1063. * min(data.size() * sizeof(PodType), max_size_in_bytes)); @endcode
  1064. *
  1065. * @note The buffer is invalidated by any vector operation that would also
  1066. * invalidate iterators.
  1067. */
  1068. template <typename PodType, typename Allocator>
  1069. inline const_buffers_1 buffer(
  1070. const std::vector<PodType, Allocator>& data, std::size_t max_size_in_bytes)
  1071. {
  1072. return const_buffers_1(
  1073. const_buffer(data.size() ? &data[0] : 0,
  1074. data.size() * sizeof(PodType) < max_size_in_bytes
  1075. ? data.size() * sizeof(PodType) : max_size_in_bytes
  1076. #if defined(BOOST_ASIO_ENABLE_BUFFER_DEBUGGING)
  1077. , detail::buffer_debug_check<
  1078. typename std::vector<PodType, Allocator>::const_iterator
  1079. >(data.begin())
  1080. #endif // BOOST_ASIO_ENABLE_BUFFER_DEBUGGING
  1081. ));
  1082. }
  1083. /// Create a new non-modifiable buffer that represents the given string.
  1084. /**
  1085. * @returns <tt>const_buffers_1(data.data(), data.size() * sizeof(Elem))</tt>.
  1086. *
  1087. * @note The buffer is invalidated by any non-const operation called on the
  1088. * given string object.
  1089. */
  1090. template <typename Elem, typename Traits, typename Allocator>
  1091. inline const_buffers_1 buffer(
  1092. const std::basic_string<Elem, Traits, Allocator>& data)
  1093. {
  1094. return const_buffers_1(const_buffer(data.data(), data.size() * sizeof(Elem)
  1095. #if defined(BOOST_ASIO_ENABLE_BUFFER_DEBUGGING)
  1096. , detail::buffer_debug_check<
  1097. typename std::basic_string<Elem, Traits, Allocator>::const_iterator
  1098. >(data.begin())
  1099. #endif // BOOST_ASIO_ENABLE_BUFFER_DEBUGGING
  1100. ));
  1101. }
  1102. /// Create a new non-modifiable buffer that represents the given string.
  1103. /**
  1104. * @returns A const_buffers_1 value equivalent to:
  1105. * @code const_buffers_1(
  1106. * data.data(),
  1107. * min(data.size() * sizeof(Elem), max_size_in_bytes)); @endcode
  1108. *
  1109. * @note The buffer is invalidated by any non-const operation called on the
  1110. * given string object.
  1111. */
  1112. template <typename Elem, typename Traits, typename Allocator>
  1113. inline const_buffers_1 buffer(
  1114. const std::basic_string<Elem, Traits, Allocator>& data,
  1115. std::size_t max_size_in_bytes)
  1116. {
  1117. return const_buffers_1(
  1118. const_buffer(data.data(),
  1119. data.size() * sizeof(Elem) < max_size_in_bytes
  1120. ? data.size() * sizeof(Elem) : max_size_in_bytes
  1121. #if defined(BOOST_ASIO_ENABLE_BUFFER_DEBUGGING)
  1122. , detail::buffer_debug_check<
  1123. typename std::basic_string<Elem, Traits, Allocator>::const_iterator
  1124. >(data.begin())
  1125. #endif // BOOST_ASIO_ENABLE_BUFFER_DEBUGGING
  1126. ));
  1127. }
  1128. /*@}*/
  1129. /** @defgroup buffer_copy boost::asio::buffer_copy
  1130. *
  1131. * @brief The boost::asio::buffer_copy function is used to copy bytes from a
  1132. * source buffer (or buffer sequence) to a target buffer (or buffer sequence).
  1133. *
  1134. * The @c buffer_copy function is available in two forms:
  1135. *
  1136. * @li A 2-argument form: @c buffer_copy(target, source)
  1137. *
  1138. * @li A 3-argument form: @c buffer_copy(target, source, max_bytes_to_copy)
  1139. * Both forms return the number of bytes actually copied. The number of bytes
  1140. * copied is the lesser of:
  1141. *
  1142. * @li @c buffer_size(target)
  1143. *
  1144. * @li @c buffer_size(source)
  1145. *
  1146. * @li @c If specified, @c max_bytes_to_copy.
  1147. *
  1148. * This prevents buffer overflow, regardless of the buffer sizes used in the
  1149. * copy operation.
  1150. *
  1151. * Note that @ref buffer_copy is implemented in terms of @c memcpy, and
  1152. * consequently it cannot be used to copy between overlapping memory regions.
  1153. */
  1154. /*@{*/
  1155. /// Copies bytes from a source buffer to a target buffer.
  1156. /**
  1157. * @param target A modifiable buffer representing the memory region to which
  1158. * the bytes will be copied.
  1159. *
  1160. * @param source A non-modifiable buffer representing the memory region from
  1161. * which the bytes will be copied.
  1162. *
  1163. * @returns The number of bytes copied.
  1164. *
  1165. * @note The number of bytes copied is the lesser of:
  1166. *
  1167. * @li @c buffer_size(target)
  1168. *
  1169. * @li @c buffer_size(source)
  1170. *
  1171. * This function is implemented in terms of @c memcpy, and consequently it
  1172. * cannot be used to copy between overlapping memory regions.
  1173. */
  1174. inline std::size_t buffer_copy(const mutable_buffer& target,
  1175. const const_buffer& source)
  1176. {
  1177. using namespace std; // For memcpy.
  1178. std::size_t target_size = buffer_size(target);
  1179. std::size_t source_size = buffer_size(source);
  1180. std::size_t n = target_size < source_size ? target_size : source_size;
  1181. memcpy(buffer_cast<void*>(target), buffer_cast<const void*>(source), n);
  1182. return n;
  1183. }
  1184. /// Copies bytes from a source buffer to a target buffer.
  1185. /**
  1186. * @param target A modifiable buffer representing the memory region to which
  1187. * the bytes will be copied.
  1188. *
  1189. * @param source A non-modifiable buffer representing the memory region from
  1190. * which the bytes will be copied.
  1191. *
  1192. * @returns The number of bytes copied.
  1193. *
  1194. * @note The number of bytes copied is the lesser of:
  1195. *
  1196. * @li @c buffer_size(target)
  1197. *
  1198. * @li @c buffer_size(source)
  1199. *
  1200. * This function is implemented in terms of @c memcpy, and consequently it
  1201. * cannot be used to copy between overlapping memory regions.
  1202. */
  1203. inline std::size_t buffer_copy(const mutable_buffer& target,
  1204. const const_buffers_1& source)
  1205. {
  1206. return buffer_copy(target, static_cast<const const_buffer&>(source));
  1207. }
  1208. /// Copies bytes from a source buffer to a target buffer.
  1209. /**
  1210. * @param target A modifiable buffer representing the memory region to which
  1211. * the bytes will be copied.
  1212. *
  1213. * @param source A modifiable buffer representing the memory region from which
  1214. * the bytes will be copied. The contents of the source buffer will not be
  1215. * modified.
  1216. *
  1217. * @returns The number of bytes copied.
  1218. *
  1219. * @note The number of bytes copied is the lesser of:
  1220. *
  1221. * @li @c buffer_size(target)
  1222. *
  1223. * @li @c buffer_size(source)
  1224. *
  1225. * This function is implemented in terms of @c memcpy, and consequently it
  1226. * cannot be used to copy between overlapping memory regions.
  1227. */
  1228. inline std::size_t buffer_copy(const mutable_buffer& target,
  1229. const mutable_buffer& source)
  1230. {
  1231. return buffer_copy(target, const_buffer(source));
  1232. }
  1233. /// Copies bytes from a source buffer to a target buffer.
  1234. /**
  1235. * @param target A modifiable buffer representing the memory region to which
  1236. * the bytes will be copied.
  1237. *
  1238. * @param source A modifiable buffer representing the memory region from which
  1239. * the bytes will be copied. The contents of the source buffer will not be
  1240. * modified.
  1241. *
  1242. * @returns The number of bytes copied.
  1243. *
  1244. * @note The number of bytes copied is the lesser of:
  1245. *
  1246. * @li @c buffer_size(target)
  1247. *
  1248. * @li @c buffer_size(source)
  1249. *
  1250. * This function is implemented in terms of @c memcpy, and consequently it
  1251. * cannot be used to copy between overlapping memory regions.
  1252. */
  1253. inline std::size_t buffer_copy(const mutable_buffer& target,
  1254. const mutable_buffers_1& source)
  1255. {
  1256. return buffer_copy(target, const_buffer(source));
  1257. }
  1258. /// Copies bytes from a source buffer sequence to a target buffer.
  1259. /**
  1260. * @param target A modifiable buffer representing the memory region to which
  1261. * the bytes will be copied.
  1262. *
  1263. * @param source A non-modifiable buffer sequence representing the memory
  1264. * regions from which the bytes will be copied.
  1265. *
  1266. * @returns The number of bytes copied.
  1267. *
  1268. * @note The number of bytes copied is the lesser of:
  1269. *
  1270. * @li @c buffer_size(target)
  1271. *
  1272. * @li @c buffer_size(source)
  1273. *
  1274. * This function is implemented in terms of @c memcpy, and consequently it
  1275. * cannot be used to copy between overlapping memory regions.
  1276. */
  1277. template <typename ConstBufferSequence>
  1278. std::size_t buffer_copy(const mutable_buffer& target,
  1279. const ConstBufferSequence& source)
  1280. {
  1281. std::size_t total_bytes_copied = 0;
  1282. typename ConstBufferSequence::const_iterator source_iter = source.begin();
  1283. typename ConstBufferSequence::const_iterator source_end = source.end();
  1284. for (mutable_buffer target_buffer(target);
  1285. buffer_size(target_buffer) && source_iter != source_end; ++source_iter)
  1286. {
  1287. const_buffer source_buffer(*source_iter);
  1288. std::size_t bytes_copied = buffer_copy(target_buffer, source_buffer);
  1289. total_bytes_copied += bytes_copied;
  1290. target_buffer = target_buffer + bytes_copied;
  1291. }
  1292. return total_bytes_copied;
  1293. }
  1294. /// Copies bytes from a source buffer to a target buffer.
  1295. /**
  1296. * @param target A modifiable buffer representing the memory region to which
  1297. * the bytes will be copied.
  1298. *
  1299. * @param source A non-modifiable buffer representing the memory region from
  1300. * which the bytes will be copied.
  1301. *
  1302. * @returns The number of bytes copied.
  1303. *
  1304. * @note The number of bytes copied is the lesser of:
  1305. *
  1306. * @li @c buffer_size(target)
  1307. *
  1308. * @li @c buffer_size(source)
  1309. *
  1310. * This function is implemented in terms of @c memcpy, and consequently it
  1311. * cannot be used to copy between overlapping memory regions.
  1312. */
  1313. inline std::size_t buffer_copy(const mutable_buffers_1& target,
  1314. const const_buffer& source)
  1315. {
  1316. return buffer_copy(static_cast<const mutable_buffer&>(target), source);
  1317. }
  1318. /// Copies bytes from a source buffer to a target buffer.
  1319. /**
  1320. * @param target A modifiable buffer representing the memory region to which
  1321. * the bytes will be copied.
  1322. *
  1323. * @param source A non-modifiable buffer representing the memory region from
  1324. * which the bytes will be copied.
  1325. *
  1326. * @returns The number of bytes copied.
  1327. *
  1328. * @note The number of bytes copied is the lesser of:
  1329. *
  1330. * @li @c buffer_size(target)
  1331. *
  1332. * @li @c buffer_size(source)
  1333. *
  1334. * This function is implemented in terms of @c memcpy, and consequently it
  1335. * cannot be used to copy between overlapping memory regions.
  1336. */
  1337. inline std::size_t buffer_copy(const mutable_buffers_1& target,
  1338. const const_buffers_1& source)
  1339. {
  1340. return buffer_copy(static_cast<const mutable_buffer&>(target),
  1341. static_cast<const const_buffer&>(source));
  1342. }
  1343. /// Copies bytes from a source buffer to a target buffer.
  1344. /**
  1345. * @param target A modifiable buffer representing the memory region to which
  1346. * the bytes will be copied.
  1347. *
  1348. * @param source A modifiable buffer representing the memory region from which
  1349. * the bytes will be copied. The contents of the source buffer will not be
  1350. * modified.
  1351. *
  1352. * @returns The number of bytes copied.
  1353. *
  1354. * @note The number of bytes copied is the lesser of:
  1355. *
  1356. * @li @c buffer_size(target)
  1357. *
  1358. * @li @c buffer_size(source)
  1359. *
  1360. * This function is implemented in terms of @c memcpy, and consequently it
  1361. * cannot be used to copy between overlapping memory regions.
  1362. */
  1363. inline std::size_t buffer_copy(const mutable_buffers_1& target,
  1364. const mutable_buffer& source)
  1365. {
  1366. return buffer_copy(static_cast<const mutable_buffer&>(target),
  1367. const_buffer(source));
  1368. }
  1369. /// Copies bytes from a source buffer to a target buffer.
  1370. /**
  1371. * @param target A modifiable buffer representing the memory region to which
  1372. * the bytes will be copied.
  1373. *
  1374. * @param source A modifiable buffer representing the memory region from which
  1375. * the bytes will be copied. The contents of the source buffer will not be
  1376. * modified.
  1377. *
  1378. * @returns The number of bytes copied.
  1379. *
  1380. * @note The number of bytes copied is the lesser of:
  1381. *
  1382. * @li @c buffer_size(target)
  1383. *
  1384. * @li @c buffer_size(source)
  1385. *
  1386. * This function is implemented in terms of @c memcpy, and consequently it
  1387. * cannot be used to copy between overlapping memory regions.
  1388. */
  1389. inline std::size_t buffer_copy(const mutable_buffers_1& target,
  1390. const mutable_buffers_1& source)
  1391. {
  1392. return buffer_copy(static_cast<const mutable_buffer&>(target),
  1393. const_buffer(source));
  1394. }
  1395. /// Copies bytes from a source buffer sequence to a target buffer.
  1396. /**
  1397. * @param target A modifiable buffer representing the memory region to which
  1398. * the bytes will be copied.
  1399. *
  1400. * @param source A non-modifiable buffer sequence representing the memory
  1401. * regions from which the bytes will be copied.
  1402. *
  1403. * @returns The number of bytes copied.
  1404. *
  1405. * @note The number of bytes copied is the lesser of:
  1406. *
  1407. * @li @c buffer_size(target)
  1408. *
  1409. * @li @c buffer_size(source)
  1410. *
  1411. * This function is implemented in terms of @c memcpy, and consequently it
  1412. * cannot be used to copy between overlapping memory regions.
  1413. */
  1414. template <typename ConstBufferSequence>
  1415. inline std::size_t buffer_copy(const mutable_buffers_1& target,
  1416. const ConstBufferSequence& source)
  1417. {
  1418. return buffer_copy(static_cast<const mutable_buffer&>(target), source);
  1419. }
  1420. /// Copies bytes from a source buffer to a target buffer sequence.
  1421. /**
  1422. * @param target A modifiable buffer sequence representing the memory regions to
  1423. * which the bytes will be copied.
  1424. *
  1425. * @param source A non-modifiable buffer representing the memory region from
  1426. * which the bytes will be copied.
  1427. *
  1428. * @returns The number of bytes copied.
  1429. *
  1430. * @note The number of bytes copied is the lesser of:
  1431. *
  1432. * @li @c buffer_size(target)
  1433. *
  1434. * @li @c buffer_size(source)
  1435. *
  1436. * This function is implemented in terms of @c memcpy, and consequently it
  1437. * cannot be used to copy between overlapping memory regions.
  1438. */
  1439. template <typename MutableBufferSequence>
  1440. std::size_t buffer_copy(const MutableBufferSequence& target,
  1441. const const_buffer& source)
  1442. {
  1443. std::size_t total_bytes_copied = 0;
  1444. typename MutableBufferSequence::const_iterator target_iter = target.begin();
  1445. typename MutableBufferSequence::const_iterator target_end = target.end();
  1446. for (const_buffer source_buffer(source);
  1447. buffer_size(source_buffer) && target_iter != target_end; ++target_iter)
  1448. {
  1449. mutable_buffer target_buffer(*target_iter);
  1450. std::size_t bytes_copied = buffer_copy(target_buffer, source_buffer);
  1451. total_bytes_copied += bytes_copied;
  1452. source_buffer = source_buffer + bytes_copied;
  1453. }
  1454. return total_bytes_copied;
  1455. }
  1456. /// Copies bytes from a source buffer to a target buffer sequence.
  1457. /**
  1458. * @param target A modifiable buffer sequence representing the memory regions to
  1459. * which the bytes will be copied.
  1460. *
  1461. * @param source A non-modifiable buffer representing the memory region from
  1462. * which the bytes will be copied.
  1463. *
  1464. * @returns The number of bytes copied.
  1465. *
  1466. * @note The number of bytes copied is the lesser of:
  1467. *
  1468. * @li @c buffer_size(target)
  1469. *
  1470. * @li @c buffer_size(source)
  1471. *
  1472. * This function is implemented in terms of @c memcpy, and consequently it
  1473. * cannot be used to copy between overlapping memory regions.
  1474. */
  1475. template <typename MutableBufferSequence>
  1476. inline std::size_t buffer_copy(const MutableBufferSequence& target,
  1477. const const_buffers_1& source)
  1478. {
  1479. return buffer_copy(target, static_cast<const const_buffer&>(source));
  1480. }
  1481. /// Copies bytes from a source buffer to a target buffer sequence.
  1482. /**
  1483. * @param target A modifiable buffer sequence representing the memory regions to
  1484. * which the bytes will be copied.
  1485. *
  1486. * @param source A modifiable buffer representing the memory region from which
  1487. * the bytes will be copied. The contents of the source buffer will not be
  1488. * modified.
  1489. *
  1490. * @returns The number of bytes copied.
  1491. *
  1492. * @note The number of bytes copied is the lesser of:
  1493. *
  1494. * @li @c buffer_size(target)
  1495. *
  1496. * @li @c buffer_size(source)
  1497. *
  1498. * This function is implemented in terms of @c memcpy, and consequently it
  1499. * cannot be used to copy between overlapping memory regions.
  1500. */
  1501. template <typename MutableBufferSequence>
  1502. inline std::size_t buffer_copy(const MutableBufferSequence& target,
  1503. const mutable_buffer& source)
  1504. {
  1505. return buffer_copy(target, const_buffer(source));
  1506. }
  1507. /// Copies bytes from a source buffer to a target buffer sequence.
  1508. /**
  1509. * @param target A modifiable buffer sequence representing the memory regions to
  1510. * which the bytes will be copied.
  1511. *
  1512. * @param source A modifiable buffer representing the memory region from which
  1513. * the bytes will be copied. The contents of the source buffer will not be
  1514. * modified.
  1515. *
  1516. * @returns The number of bytes copied.
  1517. *
  1518. * @note The number of bytes copied is the lesser of:
  1519. *
  1520. * @li @c buffer_size(target)
  1521. *
  1522. * @li @c buffer_size(source)
  1523. *
  1524. * This function is implemented in terms of @c memcpy, and consequently it
  1525. * cannot be used to copy between overlapping memory regions.
  1526. */
  1527. template <typename MutableBufferSequence>
  1528. inline std::size_t buffer_copy(const MutableBufferSequence& target,
  1529. const mutable_buffers_1& source)
  1530. {
  1531. return buffer_copy(target, const_buffer(source));
  1532. }
  1533. /// Copies bytes from a source buffer sequence to a target buffer sequence.
  1534. /**
  1535. * @param target A modifiable buffer sequence representing the memory regions to
  1536. * which the bytes will be copied.
  1537. *
  1538. * @param source A non-modifiable buffer sequence representing the memory
  1539. * regions from which the bytes will be copied.
  1540. *
  1541. * @returns The number of bytes copied.
  1542. *
  1543. * @note The number of bytes copied is the lesser of:
  1544. *
  1545. * @li @c buffer_size(target)
  1546. *
  1547. * @li @c buffer_size(source)
  1548. *
  1549. * This function is implemented in terms of @c memcpy, and consequently it
  1550. * cannot be used to copy between overlapping memory regions.
  1551. */
  1552. template <typename MutableBufferSequence, typename ConstBufferSequence>
  1553. std::size_t buffer_copy(const MutableBufferSequence& target,
  1554. const ConstBufferSequence& source)
  1555. {
  1556. std::size_t total_bytes_copied = 0;
  1557. typename MutableBufferSequence::const_iterator target_iter = target.begin();
  1558. typename MutableBufferSequence::const_iterator target_end = target.end();
  1559. std::size_t target_buffer_offset = 0;
  1560. typename ConstBufferSequence::const_iterator source_iter = source.begin();
  1561. typename ConstBufferSequence::const_iterator source_end = source.end();
  1562. std::size_t source_buffer_offset = 0;
  1563. while (target_iter != target_end && source_iter != source_end)
  1564. {
  1565. mutable_buffer target_buffer =
  1566. mutable_buffer(*target_iter) + target_buffer_offset;
  1567. const_buffer source_buffer =
  1568. const_buffer(*source_iter) + source_buffer_offset;
  1569. std::size_t bytes_copied = buffer_copy(target_buffer, source_buffer);
  1570. total_bytes_copied += bytes_copied;
  1571. if (bytes_copied == buffer_size(target_buffer))
  1572. {
  1573. ++target_iter;
  1574. target_buffer_offset = 0;
  1575. }
  1576. else
  1577. target_buffer_offset += bytes_copied;
  1578. if (bytes_copied == buffer_size(source_buffer))
  1579. {
  1580. ++source_iter;
  1581. source_buffer_offset = 0;
  1582. }
  1583. else
  1584. source_buffer_offset += bytes_copied;
  1585. }
  1586. return total_bytes_copied;
  1587. }
  1588. /// Copies a limited number of bytes from a source buffer to a target buffer.
  1589. /**
  1590. * @param target A modifiable buffer representing the memory region to which
  1591. * the bytes will be copied.
  1592. *
  1593. * @param source A non-modifiable buffer representing the memory region from
  1594. * which the bytes will be copied.
  1595. *
  1596. * @param max_bytes_to_copy The maximum number of bytes to be copied.
  1597. *
  1598. * @returns The number of bytes copied.
  1599. *
  1600. * @note The number of bytes copied is the lesser of:
  1601. *
  1602. * @li @c buffer_size(target)
  1603. *
  1604. * @li @c buffer_size(source)
  1605. *
  1606. * @li @c max_bytes_to_copy
  1607. *
  1608. * This function is implemented in terms of @c memcpy, and consequently it
  1609. * cannot be used to copy between overlapping memory regions.
  1610. */
  1611. inline std::size_t buffer_copy(const mutable_buffer& target,
  1612. const const_buffer& source, std::size_t max_bytes_to_copy)
  1613. {
  1614. return buffer_copy(buffer(target, max_bytes_to_copy), source);
  1615. }
  1616. /// Copies a limited number of bytes from a source buffer to a target buffer.
  1617. /**
  1618. * @param target A modifiable buffer representing the memory region to which
  1619. * the bytes will be copied.
  1620. *
  1621. * @param source A non-modifiable buffer representing the memory region from
  1622. * which the bytes will be copied.
  1623. *
  1624. * @param max_bytes_to_copy The maximum number of bytes to be copied.
  1625. *
  1626. * @returns The number of bytes copied.
  1627. *
  1628. * @note The number of bytes copied is the lesser of:
  1629. *
  1630. * @li @c buffer_size(target)
  1631. *
  1632. * @li @c buffer_size(source)
  1633. *
  1634. * @li @c max_bytes_to_copy
  1635. *
  1636. * This function is implemented in terms of @c memcpy, and consequently it
  1637. * cannot be used to copy between overlapping memory regions.
  1638. */
  1639. inline std::size_t buffer_copy(const mutable_buffer& target,
  1640. const const_buffers_1& source, std::size_t max_bytes_to_copy)
  1641. {
  1642. return buffer_copy(buffer(target, max_bytes_to_copy), source);
  1643. }
  1644. /// Copies a limited number of bytes from a source buffer to a target buffer.
  1645. /**
  1646. * @param target A modifiable buffer representing the memory region to which
  1647. * the bytes will be copied.
  1648. *
  1649. * @param source A modifiable buffer representing the memory region from which
  1650. * the bytes will be copied. The contents of the source buffer will not be
  1651. * modified.
  1652. *
  1653. * @param max_bytes_to_copy The maximum number of bytes to be copied.
  1654. *
  1655. * @returns The number of bytes copied.
  1656. *
  1657. * @note The number of bytes copied is the lesser of:
  1658. *
  1659. * @li @c buffer_size(target)
  1660. *
  1661. * @li @c buffer_size(source)
  1662. *
  1663. * @li @c max_bytes_to_copy
  1664. *
  1665. * This function is implemented in terms of @c memcpy, and consequently it
  1666. * cannot be used to copy between overlapping memory regions.
  1667. */
  1668. inline std::size_t buffer_copy(const mutable_buffer& target,
  1669. const mutable_buffer& source, std::size_t max_bytes_to_copy)
  1670. {
  1671. return buffer_copy(buffer(target, max_bytes_to_copy), source);
  1672. }
  1673. /// Copies a limited number of bytes from a source buffer to a target buffer.
  1674. /**
  1675. * @param target A modifiable buffer representing the memory region to which
  1676. * the bytes will be copied.
  1677. *
  1678. * @param source A modifiable buffer representing the memory region from which
  1679. * the bytes will be copied. The contents of the source buffer will not be
  1680. * modified.
  1681. *
  1682. * @param max_bytes_to_copy The maximum number of bytes to be copied.
  1683. *
  1684. * @returns The number of bytes copied.
  1685. *
  1686. * @note The number of bytes copied is the lesser of:
  1687. *
  1688. * @li @c buffer_size(target)
  1689. *
  1690. * @li @c buffer_size(source)
  1691. *
  1692. * @li @c max_bytes_to_copy
  1693. *
  1694. * This function is implemented in terms of @c memcpy, and consequently it
  1695. * cannot be used to copy between overlapping memory regions.
  1696. */
  1697. inline std::size_t buffer_copy(const mutable_buffer& target,
  1698. const mutable_buffers_1& source, std::size_t max_bytes_to_copy)
  1699. {
  1700. return buffer_copy(buffer(target, max_bytes_to_copy), source);
  1701. }
  1702. /// Copies a limited number of bytes from a source buffer sequence to a target
  1703. /// buffer.
  1704. /**
  1705. * @param target A modifiable buffer representing the memory region to which
  1706. * the bytes will be copied.
  1707. *
  1708. * @param source A non-modifiable buffer sequence representing the memory
  1709. * regions from which the bytes will be copied.
  1710. *
  1711. * @param max_bytes_to_copy The maximum number of bytes to be copied.
  1712. *
  1713. * @returns The number of bytes copied.
  1714. *
  1715. * @note The number of bytes copied is the lesser of:
  1716. *
  1717. * @li @c buffer_size(target)
  1718. *
  1719. * @li @c buffer_size(source)
  1720. *
  1721. * @li @c max_bytes_to_copy
  1722. *
  1723. * This function is implemented in terms of @c memcpy, and consequently it
  1724. * cannot be used to copy between overlapping memory regions.
  1725. */
  1726. template <typename ConstBufferSequence>
  1727. inline std::size_t buffer_copy(const mutable_buffer& target,
  1728. const ConstBufferSequence& source, std::size_t max_bytes_to_copy)
  1729. {
  1730. return buffer_copy(buffer(target, max_bytes_to_copy), source);
  1731. }
  1732. /// Copies a limited number of bytes from a source buffer to a target buffer.
  1733. /**
  1734. * @param target A modifiable buffer representing the memory region to which
  1735. * the bytes will be copied.
  1736. *
  1737. * @param source A non-modifiable buffer representing the memory region from
  1738. * which the bytes will be copied.
  1739. *
  1740. * @param max_bytes_to_copy The maximum number of bytes to be copied.
  1741. *
  1742. * @returns The number of bytes copied.
  1743. *
  1744. * @note The number of bytes copied is the lesser of:
  1745. *
  1746. * @li @c buffer_size(target)
  1747. *
  1748. * @li @c buffer_size(source)
  1749. *
  1750. * @li @c max_bytes_to_copy
  1751. *
  1752. * This function is implemented in terms of @c memcpy, and consequently it
  1753. * cannot be used to copy between overlapping memory regions.
  1754. */
  1755. inline std::size_t buffer_copy(const mutable_buffers_1& target,
  1756. const const_buffer& source, std::size_t max_bytes_to_copy)
  1757. {
  1758. return buffer_copy(buffer(target, max_bytes_to_copy), source);
  1759. }
  1760. /// Copies a limited number of bytes from a source buffer to a target buffer.
  1761. /**
  1762. * @param target A modifiable buffer representing the memory region to which
  1763. * the bytes will be copied.
  1764. *
  1765. * @param source A non-modifiable buffer representing the memory region from
  1766. * which the bytes will be copied.
  1767. *
  1768. * @param max_bytes_to_copy The maximum number of bytes to be copied.
  1769. *
  1770. * @returns The number of bytes copied.
  1771. *
  1772. * @note The number of bytes copied is the lesser of:
  1773. *
  1774. * @li @c buffer_size(target)
  1775. *
  1776. * @li @c buffer_size(source)
  1777. *
  1778. * @li @c max_bytes_to_copy
  1779. *
  1780. * This function is implemented in terms of @c memcpy, and consequently it
  1781. * cannot be used to copy between overlapping memory regions.
  1782. */
  1783. inline std::size_t buffer_copy(const mutable_buffers_1& target,
  1784. const const_buffers_1& source, std::size_t max_bytes_to_copy)
  1785. {
  1786. return buffer_copy(buffer(target, max_bytes_to_copy), source);
  1787. }
  1788. /// Copies a limited number of bytes from a source buffer to a target buffer.
  1789. /**
  1790. * @param target A modifiable buffer representing the memory region to which
  1791. * the bytes will be copied.
  1792. *
  1793. * @param source A modifiable buffer representing the memory region from which
  1794. * the bytes will be copied. The contents of the source buffer will not be
  1795. * modified.
  1796. *
  1797. * @param max_bytes_to_copy The maximum number of bytes to be copied.
  1798. *
  1799. * @returns The number of bytes copied.
  1800. *
  1801. * @note The number of bytes copied is the lesser of:
  1802. *
  1803. * @li @c buffer_size(target)
  1804. *
  1805. * @li @c buffer_size(source)
  1806. *
  1807. * @li @c max_bytes_to_copy
  1808. *
  1809. * This function is implemented in terms of @c memcpy, and consequently it
  1810. * cannot be used to copy between overlapping memory regions.
  1811. */
  1812. inline std::size_t buffer_copy(const mutable_buffers_1& target,
  1813. const mutable_buffer& source, std::size_t max_bytes_to_copy)
  1814. {
  1815. return buffer_copy(buffer(target, max_bytes_to_copy), source);
  1816. }
  1817. /// Copies a limited number of bytes from a source buffer to a target buffer.
  1818. /**
  1819. * @param target A modifiable buffer representing the memory region to which
  1820. * the bytes will be copied.
  1821. *
  1822. * @param source A modifiable buffer representing the memory region from which
  1823. * the bytes will be copied. The contents of the source buffer will not be
  1824. * modified.
  1825. *
  1826. * @param max_bytes_to_copy The maximum number of bytes to be copied.
  1827. *
  1828. * @returns The number of bytes copied.
  1829. *
  1830. * @note The number of bytes copied is the lesser of:
  1831. *
  1832. * @li @c buffer_size(target)
  1833. *
  1834. * @li @c buffer_size(source)
  1835. *
  1836. * @li @c max_bytes_to_copy
  1837. *
  1838. * This function is implemented in terms of @c memcpy, and consequently it
  1839. * cannot be used to copy between overlapping memory regions.
  1840. */
  1841. inline std::size_t buffer_copy(const mutable_buffers_1& target,
  1842. const mutable_buffers_1& source, std::size_t max_bytes_to_copy)
  1843. {
  1844. return buffer_copy(buffer(target, max_bytes_to_copy), source);
  1845. }
  1846. /// Copies a limited number of bytes from a source buffer sequence to a target
  1847. /// buffer.
  1848. /**
  1849. * @param target A modifiable buffer representing the memory region to which
  1850. * the bytes will be copied.
  1851. *
  1852. * @param source A non-modifiable buffer sequence representing the memory
  1853. * regions from which the bytes will be copied.
  1854. *
  1855. * @param max_bytes_to_copy The maximum number of bytes to be copied.
  1856. *
  1857. * @returns The number of bytes copied.
  1858. *
  1859. * @note The number of bytes copied is the lesser of:
  1860. *
  1861. * @li @c buffer_size(target)
  1862. *
  1863. * @li @c buffer_size(source)
  1864. *
  1865. * @li @c max_bytes_to_copy
  1866. *
  1867. * This function is implemented in terms of @c memcpy, and consequently it
  1868. * cannot be used to copy between overlapping memory regions.
  1869. */
  1870. template <typename ConstBufferSequence>
  1871. inline std::size_t buffer_copy(const mutable_buffers_1& target,
  1872. const ConstBufferSequence& source, std::size_t max_bytes_to_copy)
  1873. {
  1874. return buffer_copy(buffer(target, max_bytes_to_copy), source);
  1875. }
  1876. /// Copies a limited number of bytes from a source buffer to a target buffer
  1877. /// sequence.
  1878. /**
  1879. * @param target A modifiable buffer sequence representing the memory regions to
  1880. * which the bytes will be copied.
  1881. *
  1882. * @param source A non-modifiable buffer representing the memory region from
  1883. * which the bytes will be copied.
  1884. *
  1885. * @param max_bytes_to_copy The maximum number of bytes to be copied.
  1886. *
  1887. * @returns The number of bytes copied.
  1888. *
  1889. * @note The number of bytes copied is the lesser of:
  1890. *
  1891. * @li @c buffer_size(target)
  1892. *
  1893. * @li @c buffer_size(source)
  1894. *
  1895. * @li @c max_bytes_to_copy
  1896. *
  1897. * This function is implemented in terms of @c memcpy, and consequently it
  1898. * cannot be used to copy between overlapping memory regions.
  1899. */
  1900. template <typename MutableBufferSequence>
  1901. inline std::size_t buffer_copy(const MutableBufferSequence& target,
  1902. const const_buffer& source, std::size_t max_bytes_to_copy)
  1903. {
  1904. return buffer_copy(target, buffer(source, max_bytes_to_copy));
  1905. }
  1906. /// Copies a limited number of bytes from a source buffer to a target buffer
  1907. /// sequence.
  1908. /**
  1909. * @param target A modifiable buffer sequence representing the memory regions to
  1910. * which the bytes will be copied.
  1911. *
  1912. * @param source A non-modifiable buffer representing the memory region from
  1913. * which the bytes will be copied.
  1914. *
  1915. * @param max_bytes_to_copy The maximum number of bytes to be copied.
  1916. *
  1917. * @returns The number of bytes copied.
  1918. *
  1919. * @note The number of bytes copied is the lesser of:
  1920. *
  1921. * @li @c buffer_size(target)
  1922. *
  1923. * @li @c buffer_size(source)
  1924. *
  1925. * @li @c max_bytes_to_copy
  1926. *
  1927. * This function is implemented in terms of @c memcpy, and consequently it
  1928. * cannot be used to copy between overlapping memory regions.
  1929. */
  1930. template <typename MutableBufferSequence>
  1931. inline std::size_t buffer_copy(const MutableBufferSequence& target,
  1932. const const_buffers_1& source, std::size_t max_bytes_to_copy)
  1933. {
  1934. return buffer_copy(target, buffer(source, max_bytes_to_copy));
  1935. }
  1936. /// Copies a limited number of bytes from a source buffer to a target buffer
  1937. /// sequence.
  1938. /**
  1939. * @param target A modifiable buffer sequence representing the memory regions to
  1940. * which the bytes will be copied.
  1941. *
  1942. * @param source A modifiable buffer representing the memory region from which
  1943. * the bytes will be copied. The contents of the source buffer will not be
  1944. * modified.
  1945. *
  1946. * @param max_bytes_to_copy The maximum number of bytes to be copied.
  1947. *
  1948. * @returns The number of bytes copied.
  1949. *
  1950. * @note The number of bytes copied is the lesser of:
  1951. *
  1952. * @li @c buffer_size(target)
  1953. *
  1954. * @li @c buffer_size(source)
  1955. *
  1956. * @li @c max_bytes_to_copy
  1957. *
  1958. * This function is implemented in terms of @c memcpy, and consequently it
  1959. * cannot be used to copy between overlapping memory regions.
  1960. */
  1961. template <typename MutableBufferSequence>
  1962. inline std::size_t buffer_copy(const MutableBufferSequence& target,
  1963. const mutable_buffer& source, std::size_t max_bytes_to_copy)
  1964. {
  1965. return buffer_copy(target, buffer(source, max_bytes_to_copy));
  1966. }
  1967. /// Copies a limited number of bytes from a source buffer to a target buffer
  1968. /// sequence.
  1969. /**
  1970. * @param target A modifiable buffer sequence representing the memory regions to
  1971. * which the bytes will be copied.
  1972. *
  1973. * @param source A modifiable buffer representing the memory region from which
  1974. * the bytes will be copied. The contents of the source buffer will not be
  1975. * modified.
  1976. *
  1977. * @param max_bytes_to_copy The maximum number of bytes to be copied.
  1978. *
  1979. * @returns The number of bytes copied.
  1980. *
  1981. * @note The number of bytes copied is the lesser of:
  1982. *
  1983. * @li @c buffer_size(target)
  1984. *
  1985. * @li @c buffer_size(source)
  1986. *
  1987. * @li @c max_bytes_to_copy
  1988. *
  1989. * This function is implemented in terms of @c memcpy, and consequently it
  1990. * cannot be used to copy between overlapping memory regions.
  1991. */
  1992. template <typename MutableBufferSequence>
  1993. inline std::size_t buffer_copy(const MutableBufferSequence& target,
  1994. const mutable_buffers_1& source, std::size_t max_bytes_to_copy)
  1995. {
  1996. return buffer_copy(target, buffer(source, max_bytes_to_copy));
  1997. }
  1998. /// Copies a limited number of bytes from a source buffer sequence to a target
  1999. /// buffer sequence.
  2000. /**
  2001. * @param target A modifiable buffer sequence representing the memory regions to
  2002. * which the bytes will be copied.
  2003. *
  2004. * @param source A non-modifiable buffer sequence representing the memory
  2005. * regions from which the bytes will be copied.
  2006. *
  2007. * @param max_bytes_to_copy The maximum number of bytes to be copied.
  2008. *
  2009. * @returns The number of bytes copied.
  2010. *
  2011. * @note The number of bytes copied is the lesser of:
  2012. *
  2013. * @li @c buffer_size(target)
  2014. *
  2015. * @li @c buffer_size(source)
  2016. *
  2017. * @li @c max_bytes_to_copy
  2018. *
  2019. * This function is implemented in terms of @c memcpy, and consequently it
  2020. * cannot be used to copy between overlapping memory regions.
  2021. */
  2022. template <typename MutableBufferSequence, typename ConstBufferSequence>
  2023. std::size_t buffer_copy(const MutableBufferSequence& target,
  2024. const ConstBufferSequence& source, std::size_t max_bytes_to_copy)
  2025. {
  2026. std::size_t total_bytes_copied = 0;
  2027. typename MutableBufferSequence::const_iterator target_iter = target.begin();
  2028. typename MutableBufferSequence::const_iterator target_end = target.end();
  2029. std::size_t target_buffer_offset = 0;
  2030. typename ConstBufferSequence::const_iterator source_iter = source.begin();
  2031. typename ConstBufferSequence::const_iterator source_end = source.end();
  2032. std::size_t source_buffer_offset = 0;
  2033. while (total_bytes_copied != max_bytes_to_copy
  2034. && target_iter != target_end && source_iter != source_end)
  2035. {
  2036. mutable_buffer target_buffer =
  2037. mutable_buffer(*target_iter) + target_buffer_offset;
  2038. const_buffer source_buffer =
  2039. const_buffer(*source_iter) + source_buffer_offset;
  2040. std::size_t bytes_copied = buffer_copy(target_buffer,
  2041. source_buffer, max_bytes_to_copy - total_bytes_copied);
  2042. total_bytes_copied += bytes_copied;
  2043. if (bytes_copied == buffer_size(target_buffer))
  2044. {
  2045. ++target_iter;
  2046. target_buffer_offset = 0;
  2047. }
  2048. else
  2049. target_buffer_offset += bytes_copied;
  2050. if (bytes_copied == buffer_size(source_buffer))
  2051. {
  2052. ++source_iter;
  2053. source_buffer_offset = 0;
  2054. }
  2055. else
  2056. source_buffer_offset += bytes_copied;
  2057. }
  2058. return total_bytes_copied;
  2059. }
  2060. /*@}*/
  2061. } // namespace asio
  2062. } // namespace boost
  2063. #include <boost/asio/detail/pop_options.hpp>
  2064. #endif // BOOST_ASIO_BUFFER_HPP