pipes.hpp 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317
  1. // pipes.hpp --------------------------------------------------------------//
  2. // Copyright 2016 Klemens D. Morgenstern
  3. // Copyright 2016 Andrey Semashev
  4. // Distributed under the Boost Software License, Version 1.0.
  5. // See http://www.boost.org/LICENSE_1_0.txt
  6. #ifndef BOOST_DETAIL_WINAPI_PIPES_HPP_
  7. #define BOOST_DETAIL_WINAPI_PIPES_HPP_
  8. #include <boost/detail/winapi/basic_types.hpp>
  9. #include <boost/detail/winapi/config.hpp>
  10. #include <boost/detail/winapi/overlapped.hpp>
  11. #include <boost/predef/platform.h>
  12. #ifdef BOOST_HAS_PRAGMA_ONCE
  13. #pragma once
  14. #endif
  15. #if BOOST_PLAT_WINDOWS_DESKTOP
  16. #if !defined( BOOST_USE_WINDOWS_H )
  17. extern "C" {
  18. BOOST_SYMBOL_IMPORT boost::detail::winapi::BOOL_ WINAPI ImpersonateNamedPipeClient(
  19. boost::detail::winapi::HANDLE_ hNamedPipe);
  20. BOOST_SYMBOL_IMPORT boost::detail::winapi::BOOL_ WINAPI CreatePipe(
  21. boost::detail::winapi::PHANDLE_ hReadPipe,
  22. boost::detail::winapi::PHANDLE_ hWritePipe,
  23. _SECURITY_ATTRIBUTES* lpPipeAttributes,
  24. boost::detail::winapi::DWORD_ nSize);
  25. BOOST_SYMBOL_IMPORT boost::detail::winapi::BOOL_ WINAPI ConnectNamedPipe(
  26. boost::detail::winapi::HANDLE_ hNamedPipe,
  27. _OVERLAPPED* lpOverlapped);
  28. BOOST_SYMBOL_IMPORT boost::detail::winapi::BOOL_ WINAPI DisconnectNamedPipe(
  29. boost::detail::winapi::HANDLE_ hNamedPipe);
  30. BOOST_SYMBOL_IMPORT boost::detail::winapi::BOOL_ WINAPI SetNamedPipeHandleState(
  31. boost::detail::winapi::HANDLE_ hNamedPipe,
  32. boost::detail::winapi::LPDWORD_ lpMode,
  33. boost::detail::winapi::LPDWORD_ lpMaxCollectionCount,
  34. boost::detail::winapi::LPDWORD_ lpCollectDataTimeout);
  35. BOOST_SYMBOL_IMPORT boost::detail::winapi::BOOL_ WINAPI PeekNamedPipe(
  36. boost::detail::winapi::HANDLE_ hNamedPipe,
  37. boost::detail::winapi::LPVOID_ lpBuffer,
  38. boost::detail::winapi::DWORD_ nBufferSize,
  39. boost::detail::winapi::LPDWORD_ lpBytesRead,
  40. boost::detail::winapi::LPDWORD_ lpTotalBytesAvail,
  41. boost::detail::winapi::LPDWORD_ lpBytesLeftThisMessage);
  42. BOOST_SYMBOL_IMPORT boost::detail::winapi::BOOL_ WINAPI TransactNamedPipe(
  43. boost::detail::winapi::HANDLE_ hNamedPipe,
  44. boost::detail::winapi::LPVOID_ lpInBuffer,
  45. boost::detail::winapi::DWORD_ nInBufferSize,
  46. boost::detail::winapi::LPVOID_ lpOutBuffer,
  47. boost::detail::winapi::DWORD_ nOutBufferSize,
  48. boost::detail::winapi::LPDWORD_ lpBytesRead,
  49. _OVERLAPPED* lpOverlapped);
  50. #if !defined( BOOST_NO_ANSI_APIS )
  51. BOOST_SYMBOL_IMPORT boost::detail::winapi::HANDLE_ WINAPI CreateNamedPipeA(
  52. boost::detail::winapi::LPCSTR_ lpName,
  53. boost::detail::winapi::DWORD_ dwOpenMode,
  54. boost::detail::winapi::DWORD_ dwPipeMode,
  55. boost::detail::winapi::DWORD_ nMaxInstances,
  56. boost::detail::winapi::DWORD_ nOutBufferSize,
  57. boost::detail::winapi::DWORD_ nInBufferSize,
  58. boost::detail::winapi::DWORD_ nDefaultTimeOut,
  59. _SECURITY_ATTRIBUTES *lpSecurityAttributes);
  60. BOOST_SYMBOL_IMPORT boost::detail::winapi::BOOL_ WINAPI WaitNamedPipeA(
  61. boost::detail::winapi::LPCSTR_ lpNamedPipeName,
  62. boost::detail::winapi::DWORD_ nTimeOut);
  63. #endif // !defined( BOOST_NO_ANSI_APIS )
  64. BOOST_SYMBOL_IMPORT boost::detail::winapi::HANDLE_ WINAPI CreateNamedPipeW(
  65. boost::detail::winapi::LPCWSTR_ lpName,
  66. boost::detail::winapi::DWORD_ dwOpenMode,
  67. boost::detail::winapi::DWORD_ dwPipeMode,
  68. boost::detail::winapi::DWORD_ nMaxInstances,
  69. boost::detail::winapi::DWORD_ nOutBufferSize,
  70. boost::detail::winapi::DWORD_ nInBufferSize,
  71. boost::detail::winapi::DWORD_ nDefaultTimeOut,
  72. _SECURITY_ATTRIBUTES* lpSecurityAttributes);
  73. BOOST_SYMBOL_IMPORT boost::detail::winapi::BOOL_ WINAPI WaitNamedPipeW(
  74. boost::detail::winapi::LPCWSTR_ lpNamedPipeName,
  75. boost::detail::winapi::DWORD_ nTimeOut);
  76. #if BOOST_USE_WINAPI_VERSION >= BOOST_WINAPI_VERSION_WIN6
  77. #if !defined( BOOST_NO_ANSI_APIS )
  78. BOOST_SYMBOL_IMPORT boost::detail::winapi::BOOL_ WINAPI GetNamedPipeClientComputerNameA(
  79. boost::detail::winapi::HANDLE_ Pipe,
  80. boost::detail::winapi::LPSTR_ ClientComputerName,
  81. boost::detail::winapi::ULONG_ ClientComputerNameLength);
  82. #endif // !defined( BOOST_NO_ANSI_APIS )
  83. BOOST_SYMBOL_IMPORT boost::detail::winapi::BOOL_ WINAPI GetNamedPipeClientComputerNameW(
  84. boost::detail::winapi::HANDLE_ Pipe,
  85. boost::detail::winapi::LPWSTR_ ClientComputerName,
  86. boost::detail::winapi::ULONG_ ClientComputerNameLength);
  87. #endif
  88. } // extern "C"
  89. #endif // !defined( BOOST_USE_WINDOWS_H )
  90. namespace boost {
  91. namespace detail {
  92. namespace winapi {
  93. #if defined( BOOST_USE_WINDOWS_H )
  94. const DWORD_ PIPE_ACCESS_DUPLEX_ = PIPE_ACCESS_DUPLEX;
  95. const DWORD_ PIPE_ACCESS_INBOUND_ = PIPE_ACCESS_INBOUND;
  96. const DWORD_ PIPE_ACCESS_OUTBOUND_ = PIPE_ACCESS_OUTBOUND;
  97. const DWORD_ PIPE_TYPE_BYTE_ = PIPE_TYPE_BYTE;
  98. const DWORD_ PIPE_TYPE_MESSAGE_ = PIPE_TYPE_MESSAGE;
  99. const DWORD_ PIPE_READMODE_BYTE_ = PIPE_READMODE_BYTE;
  100. const DWORD_ PIPE_READMODE_MESSAGE_ = PIPE_READMODE_MESSAGE;
  101. const DWORD_ PIPE_WAIT_ = PIPE_WAIT;
  102. const DWORD_ PIPE_NOWAIT_ = PIPE_NOWAIT;
  103. const DWORD_ PIPE_UNLIMITED_INSTANCES_ = PIPE_UNLIMITED_INSTANCES;
  104. const DWORD_ NMPWAIT_USE_DEFAULT_WAIT_ = NMPWAIT_USE_DEFAULT_WAIT;
  105. const DWORD_ NMPWAIT_NOWAIT_ = NMPWAIT_NOWAIT;
  106. const DWORD_ NMPWAIT_WAIT_FOREVER_ = NMPWAIT_WAIT_FOREVER;
  107. #else // defined( BOOST_USE_WINDOWS_H )
  108. const DWORD_ PIPE_ACCESS_DUPLEX_ = 0x00000003;
  109. const DWORD_ PIPE_ACCESS_INBOUND_ = 0x00000001;
  110. const DWORD_ PIPE_ACCESS_OUTBOUND_ = 0x00000002;
  111. const DWORD_ PIPE_TYPE_BYTE_ = 0x00000000;
  112. const DWORD_ PIPE_TYPE_MESSAGE_ = 0x00000004;
  113. const DWORD_ PIPE_READMODE_BYTE_ = 0x00000000;
  114. const DWORD_ PIPE_READMODE_MESSAGE_ = 0x00000002;
  115. const DWORD_ PIPE_WAIT_ = 0x00000000;
  116. const DWORD_ PIPE_NOWAIT_ = 0x00000001;
  117. const DWORD_ PIPE_UNLIMITED_INSTANCES_ = 255u;
  118. const DWORD_ NMPWAIT_USE_DEFAULT_WAIT_ = 0x00000000;
  119. const DWORD_ NMPWAIT_NOWAIT_ = 0x00000001;
  120. const DWORD_ NMPWAIT_WAIT_FOREVER_ = 0xFFFFFFFF;
  121. #endif // defined( BOOST_USE_WINDOWS_H )
  122. // These constants are not defined in Windows SDK prior to 7.0A
  123. const DWORD_ PIPE_ACCEPT_REMOTE_CLIENTS_ = 0x00000000;
  124. const DWORD_ PIPE_REJECT_REMOTE_CLIENTS_ = 0x00000008;
  125. using ::ImpersonateNamedPipeClient;
  126. using ::DisconnectNamedPipe;
  127. using ::SetNamedPipeHandleState;
  128. using ::PeekNamedPipe;
  129. #if !defined( BOOST_NO_ANSI_APIS )
  130. using ::WaitNamedPipeA;
  131. #endif
  132. using ::WaitNamedPipeW;
  133. #if BOOST_USE_WINAPI_VERSION >= BOOST_WINAPI_VERSION_WIN6
  134. #if !defined( BOOST_NO_ANSI_APIS )
  135. using ::GetNamedPipeClientComputerNameA;
  136. #endif // !defined( BOOST_NO_ANSI_APIS )
  137. using ::GetNamedPipeClientComputerNameW;
  138. #endif // BOOST_USE_WINAPI_VERSION >= BOOST_WINAPI_VERSION_WIN6
  139. BOOST_FORCEINLINE BOOL_ CreatePipe(PHANDLE_ hReadPipe, PHANDLE_ hWritePipe, LPSECURITY_ATTRIBUTES_ lpPipeAttributes, DWORD_ nSize)
  140. {
  141. return ::CreatePipe(hReadPipe, hWritePipe, reinterpret_cast< ::_SECURITY_ATTRIBUTES* >(lpPipeAttributes), nSize);
  142. }
  143. BOOST_FORCEINLINE BOOL_ ConnectNamedPipe(HANDLE_ hNamedPipe, LPOVERLAPPED_ lpOverlapped)
  144. {
  145. return ::ConnectNamedPipe(hNamedPipe, reinterpret_cast< ::_OVERLAPPED* >(lpOverlapped));
  146. }
  147. BOOST_FORCEINLINE BOOL_ TransactNamedPipe(HANDLE_ hNamedPipe, LPVOID_ lpInBuffer, DWORD_ nInBufferSize, LPVOID_ lpOutBuffer, DWORD_ nOutBufferSize, LPDWORD_ lpBytesRead, LPOVERLAPPED_ lpOverlapped)
  148. {
  149. return ::TransactNamedPipe(hNamedPipe, lpInBuffer, nInBufferSize, lpOutBuffer, nOutBufferSize, lpBytesRead, reinterpret_cast< ::_OVERLAPPED* >(lpOverlapped));
  150. }
  151. #if !defined( BOOST_NO_ANSI_APIS )
  152. BOOST_FORCEINLINE HANDLE_ CreateNamedPipeA(
  153. LPCSTR_ lpName,
  154. DWORD_ dwOpenMode,
  155. DWORD_ dwPipeMode,
  156. DWORD_ nMaxInstances,
  157. DWORD_ nOutBufferSize,
  158. DWORD_ nInBufferSize,
  159. DWORD_ nDefaultTimeOut,
  160. LPSECURITY_ATTRIBUTES_ lpSecurityAttributes)
  161. {
  162. return ::CreateNamedPipeA(
  163. lpName,
  164. dwOpenMode,
  165. dwPipeMode,
  166. nMaxInstances,
  167. nOutBufferSize,
  168. nInBufferSize,
  169. nDefaultTimeOut,
  170. reinterpret_cast< ::_SECURITY_ATTRIBUTES* >(lpSecurityAttributes));
  171. }
  172. BOOST_FORCEINLINE HANDLE_ create_named_pipe(
  173. LPCSTR_ lpName,
  174. DWORD_ dwOpenMode,
  175. DWORD_ dwPipeMode,
  176. DWORD_ nMaxInstances,
  177. DWORD_ nOutBufferSize,
  178. DWORD_ nInBufferSize,
  179. DWORD_ nDefaultTimeOut,
  180. LPSECURITY_ATTRIBUTES_ lpSecurityAttributes)
  181. {
  182. return ::CreateNamedPipeA(
  183. lpName,
  184. dwOpenMode,
  185. dwPipeMode,
  186. nMaxInstances,
  187. nOutBufferSize,
  188. nInBufferSize,
  189. nDefaultTimeOut,
  190. reinterpret_cast< ::_SECURITY_ATTRIBUTES* >(lpSecurityAttributes));
  191. }
  192. #endif // !defined( BOOST_NO_ANSI_APIS )
  193. BOOST_FORCEINLINE HANDLE_ CreateNamedPipeW(
  194. LPCWSTR_ lpName,
  195. DWORD_ dwOpenMode,
  196. DWORD_ dwPipeMode,
  197. DWORD_ nMaxInstances,
  198. DWORD_ nOutBufferSize,
  199. DWORD_ nInBufferSize,
  200. DWORD_ nDefaultTimeOut,
  201. LPSECURITY_ATTRIBUTES_ lpSecurityAttributes)
  202. {
  203. return ::CreateNamedPipeW(
  204. lpName,
  205. dwOpenMode,
  206. dwPipeMode,
  207. nMaxInstances,
  208. nOutBufferSize,
  209. nInBufferSize,
  210. nDefaultTimeOut,
  211. reinterpret_cast< ::_SECURITY_ATTRIBUTES* >(lpSecurityAttributes));
  212. }
  213. BOOST_FORCEINLINE HANDLE_ create_named_pipe(
  214. LPCWSTR_ lpName,
  215. DWORD_ dwOpenMode,
  216. DWORD_ dwPipeMode,
  217. DWORD_ nMaxInstances,
  218. DWORD_ nOutBufferSize,
  219. DWORD_ nInBufferSize,
  220. DWORD_ nDefaultTimeOut,
  221. LPSECURITY_ATTRIBUTES_ lpSecurityAttributes)
  222. {
  223. return ::CreateNamedPipeW(
  224. lpName,
  225. dwOpenMode,
  226. dwPipeMode,
  227. nMaxInstances,
  228. nOutBufferSize,
  229. nInBufferSize,
  230. nDefaultTimeOut,
  231. reinterpret_cast< ::_SECURITY_ATTRIBUTES* >(lpSecurityAttributes));
  232. }
  233. #if !defined( BOOST_NO_ANSI_APIS )
  234. BOOST_FORCEINLINE BOOL_ wait_named_pipe(LPCSTR_ lpNamedPipeName, DWORD_ nTimeOut)
  235. {
  236. return ::WaitNamedPipeA(lpNamedPipeName, nTimeOut);
  237. }
  238. #endif //BOOST_NO_ANSI_APIS
  239. BOOST_FORCEINLINE BOOL_ wait_named_pipe(LPCWSTR_ lpNamedPipeName, DWORD_ nTimeOut)
  240. {
  241. return ::WaitNamedPipeW(lpNamedPipeName, nTimeOut);
  242. }
  243. #if BOOST_USE_WINAPI_VERSION >= BOOST_WINAPI_VERSION_WIN6
  244. #if !defined( BOOST_NO_ANSI_APIS )
  245. BOOST_FORCEINLINE BOOL_ get_named_pipe_client_computer_name(HANDLE_ Pipe, LPSTR_ ClientComputerName, ULONG_ ClientComputerNameLength)
  246. {
  247. return ::GetNamedPipeClientComputerNameA(Pipe, ClientComputerName, ClientComputerNameLength);
  248. }
  249. #endif // !defined( BOOST_NO_ANSI_APIS )
  250. BOOST_FORCEINLINE BOOL_ get_named_pipe_client_computer_name(HANDLE_ Pipe, LPWSTR_ ClientComputerName, ULONG_ ClientComputerNameLength)
  251. {
  252. return ::GetNamedPipeClientComputerNameW(Pipe, ClientComputerName, ClientComputerNameLength);
  253. }
  254. #endif // BOOST_USE_WINAPI_VERSION >= BOOST_WINAPI_VERSION_WIN6
  255. }
  256. }
  257. }
  258. #endif // BOOST_PLAT_WINDOWS_DESKTOP
  259. #endif // BOOST_DETAIL_WINAPI_PIPES_HPP_