foolio 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (261) hide show
  1. data/.gitignore +22 -0
  2. data/Gemfile +4 -0
  3. data/LICENSE +22 -0
  4. data/README.md +29 -0
  5. data/Rakefile +21 -0
  6. data/examples/timer.rb +20 -0
  7. data/ext/foolio/extconf.rb +34 -0
  8. data/ext/foolio/foolio_ext.c +921 -0
  9. data/ext/foolio/gen.rb +50 -0
  10. data/ext/foolio/make_table.rb +12 -0
  11. data/ext/foolio/templ +243 -0
  12. data/ext/libuv/.gitignore +33 -0
  13. data/ext/libuv/.mailmap +13 -0
  14. data/ext/libuv/.travis.yml +9 -0
  15. data/ext/libuv/AUTHORS +61 -0
  16. data/ext/libuv/LICENSE +44 -0
  17. data/ext/libuv/Makefile +71 -0
  18. data/ext/libuv/README.md +90 -0
  19. data/ext/libuv/common.gypi +178 -0
  20. data/ext/libuv/gyp_uv +73 -0
  21. data/ext/libuv/include/uv-private/eio.h +403 -0
  22. data/ext/libuv/include/uv-private/ev.h +838 -0
  23. data/ext/libuv/include/uv-private/ngx-queue.h +108 -0
  24. data/ext/libuv/include/uv-private/tree.h +768 -0
  25. data/ext/libuv/include/uv-private/uv-unix.h +324 -0
  26. data/ext/libuv/include/uv-private/uv-win.h +517 -0
  27. data/ext/libuv/include/uv.h +1838 -0
  28. data/ext/libuv/src/fs-poll.c +235 -0
  29. data/ext/libuv/src/inet.c +293 -0
  30. data/ext/libuv/src/unix/async.c +148 -0
  31. data/ext/libuv/src/unix/core.c +696 -0
  32. data/ext/libuv/src/unix/cygwin.c +83 -0
  33. data/ext/libuv/src/unix/darwin.c +342 -0
  34. data/ext/libuv/src/unix/dl.c +83 -0
  35. data/ext/libuv/src/unix/eio/Changes +63 -0
  36. data/ext/libuv/src/unix/eio/LICENSE +36 -0
  37. data/ext/libuv/src/unix/eio/Makefile.am +15 -0
  38. data/ext/libuv/src/unix/eio/aclocal.m4 +8957 -0
  39. data/ext/libuv/src/unix/eio/autogen.sh +3 -0
  40. data/ext/libuv/src/unix/eio/config.h.in +86 -0
  41. data/ext/libuv/src/unix/eio/config_cygwin.h +80 -0
  42. data/ext/libuv/src/unix/eio/config_darwin.h +141 -0
  43. data/ext/libuv/src/unix/eio/config_freebsd.h +81 -0
  44. data/ext/libuv/src/unix/eio/config_linux.h +94 -0
  45. data/ext/libuv/src/unix/eio/config_netbsd.h +81 -0
  46. data/ext/libuv/src/unix/eio/config_openbsd.h +137 -0
  47. data/ext/libuv/src/unix/eio/config_sunos.h +84 -0
  48. data/ext/libuv/src/unix/eio/configure.ac +22 -0
  49. data/ext/libuv/src/unix/eio/demo.c +194 -0
  50. data/ext/libuv/src/unix/eio/ecb.h +370 -0
  51. data/ext/libuv/src/unix/eio/eio.3 +3428 -0
  52. data/ext/libuv/src/unix/eio/eio.c +2593 -0
  53. data/ext/libuv/src/unix/eio/eio.pod +969 -0
  54. data/ext/libuv/src/unix/eio/libeio.m4 +195 -0
  55. data/ext/libuv/src/unix/eio/xthread.h +164 -0
  56. data/ext/libuv/src/unix/error.c +105 -0
  57. data/ext/libuv/src/unix/ev/Changes +388 -0
  58. data/ext/libuv/src/unix/ev/LICENSE +36 -0
  59. data/ext/libuv/src/unix/ev/Makefile.am +18 -0
  60. data/ext/libuv/src/unix/ev/Makefile.in +771 -0
  61. data/ext/libuv/src/unix/ev/README +58 -0
  62. data/ext/libuv/src/unix/ev/aclocal.m4 +8957 -0
  63. data/ext/libuv/src/unix/ev/autogen.sh +6 -0
  64. data/ext/libuv/src/unix/ev/config.guess +1526 -0
  65. data/ext/libuv/src/unix/ev/config.h.in +125 -0
  66. data/ext/libuv/src/unix/ev/config.sub +1658 -0
  67. data/ext/libuv/src/unix/ev/config_cygwin.h +123 -0
  68. data/ext/libuv/src/unix/ev/config_darwin.h +122 -0
  69. data/ext/libuv/src/unix/ev/config_freebsd.h +120 -0
  70. data/ext/libuv/src/unix/ev/config_linux.h +141 -0
  71. data/ext/libuv/src/unix/ev/config_netbsd.h +120 -0
  72. data/ext/libuv/src/unix/ev/config_openbsd.h +126 -0
  73. data/ext/libuv/src/unix/ev/config_sunos.h +122 -0
  74. data/ext/libuv/src/unix/ev/configure +13037 -0
  75. data/ext/libuv/src/unix/ev/configure.ac +18 -0
  76. data/ext/libuv/src/unix/ev/depcomp +630 -0
  77. data/ext/libuv/src/unix/ev/ev++.h +816 -0
  78. data/ext/libuv/src/unix/ev/ev.3 +5311 -0
  79. data/ext/libuv/src/unix/ev/ev.c +3925 -0
  80. data/ext/libuv/src/unix/ev/ev.pod +5243 -0
  81. data/ext/libuv/src/unix/ev/ev_epoll.c +266 -0
  82. data/ext/libuv/src/unix/ev/ev_kqueue.c +235 -0
  83. data/ext/libuv/src/unix/ev/ev_poll.c +148 -0
  84. data/ext/libuv/src/unix/ev/ev_port.c +179 -0
  85. data/ext/libuv/src/unix/ev/ev_select.c +310 -0
  86. data/ext/libuv/src/unix/ev/ev_vars.h +203 -0
  87. data/ext/libuv/src/unix/ev/ev_win32.c +153 -0
  88. data/ext/libuv/src/unix/ev/ev_wrap.h +196 -0
  89. data/ext/libuv/src/unix/ev/event.c +402 -0
  90. data/ext/libuv/src/unix/ev/event.h +170 -0
  91. data/ext/libuv/src/unix/ev/install-sh +294 -0
  92. data/ext/libuv/src/unix/ev/libev.m4 +39 -0
  93. data/ext/libuv/src/unix/ev/ltmain.sh +8413 -0
  94. data/ext/libuv/src/unix/ev/missing +336 -0
  95. data/ext/libuv/src/unix/ev/mkinstalldirs +111 -0
  96. data/ext/libuv/src/unix/freebsd.c +326 -0
  97. data/ext/libuv/src/unix/fs.c +739 -0
  98. data/ext/libuv/src/unix/internal.h +188 -0
  99. data/ext/libuv/src/unix/kqueue.c +120 -0
  100. data/ext/libuv/src/unix/linux/inotify.c +239 -0
  101. data/ext/libuv/src/unix/linux/linux-core.c +557 -0
  102. data/ext/libuv/src/unix/linux/syscalls.c +388 -0
  103. data/ext/libuv/src/unix/linux/syscalls.h +124 -0
  104. data/ext/libuv/src/unix/loop-watcher.c +62 -0
  105. data/ext/libuv/src/unix/loop.c +94 -0
  106. data/ext/libuv/src/unix/netbsd.c +108 -0
  107. data/ext/libuv/src/unix/openbsd.c +295 -0
  108. data/ext/libuv/src/unix/pipe.c +259 -0
  109. data/ext/libuv/src/unix/poll.c +114 -0
  110. data/ext/libuv/src/unix/process.c +495 -0
  111. data/ext/libuv/src/unix/signal.c +269 -0
  112. data/ext/libuv/src/unix/stream.c +990 -0
  113. data/ext/libuv/src/unix/sunos.c +481 -0
  114. data/ext/libuv/src/unix/tcp.c +393 -0
  115. data/ext/libuv/src/unix/thread.c +251 -0
  116. data/ext/libuv/src/unix/timer.c +136 -0
  117. data/ext/libuv/src/unix/tty.c +145 -0
  118. data/ext/libuv/src/unix/udp.c +659 -0
  119. data/ext/libuv/src/unix/uv-eio.c +107 -0
  120. data/ext/libuv/src/unix/uv-eio.h +13 -0
  121. data/ext/libuv/src/uv-common.c +380 -0
  122. data/ext/libuv/src/uv-common.h +170 -0
  123. data/ext/libuv/src/win/async.c +100 -0
  124. data/ext/libuv/src/win/atomicops-inl.h +56 -0
  125. data/ext/libuv/src/win/core.c +278 -0
  126. data/ext/libuv/src/win/dl.c +86 -0
  127. data/ext/libuv/src/win/error.c +155 -0
  128. data/ext/libuv/src/win/fs-event.c +510 -0
  129. data/ext/libuv/src/win/fs.c +1948 -0
  130. data/ext/libuv/src/win/getaddrinfo.c +365 -0
  131. data/ext/libuv/src/win/handle-inl.h +149 -0
  132. data/ext/libuv/src/win/handle.c +154 -0
  133. data/ext/libuv/src/win/internal.h +343 -0
  134. data/ext/libuv/src/win/loop-watcher.c +122 -0
  135. data/ext/libuv/src/win/pipe.c +1672 -0
  136. data/ext/libuv/src/win/poll.c +616 -0
  137. data/ext/libuv/src/win/process-stdio.c +500 -0
  138. data/ext/libuv/src/win/process.c +1013 -0
  139. data/ext/libuv/src/win/req-inl.h +220 -0
  140. data/ext/libuv/src/win/req.c +25 -0
  141. data/ext/libuv/src/win/signal.c +57 -0
  142. data/ext/libuv/src/win/stream-inl.h +67 -0
  143. data/ext/libuv/src/win/stream.c +167 -0
  144. data/ext/libuv/src/win/tcp.c +1394 -0
  145. data/ext/libuv/src/win/thread.c +372 -0
  146. data/ext/libuv/src/win/threadpool.c +74 -0
  147. data/ext/libuv/src/win/timer.c +224 -0
  148. data/ext/libuv/src/win/tty.c +1799 -0
  149. data/ext/libuv/src/win/udp.c +716 -0
  150. data/ext/libuv/src/win/util.c +864 -0
  151. data/ext/libuv/src/win/winapi.c +132 -0
  152. data/ext/libuv/src/win/winapi.h +4452 -0
  153. data/ext/libuv/src/win/winsock.c +557 -0
  154. data/ext/libuv/src/win/winsock.h +171 -0
  155. data/ext/libuv/test/benchmark-async-pummel.c +97 -0
  156. data/ext/libuv/test/benchmark-async.c +137 -0
  157. data/ext/libuv/test/benchmark-fs-stat.c +135 -0
  158. data/ext/libuv/test/benchmark-getaddrinfo.c +94 -0
  159. data/ext/libuv/test/benchmark-list.h +127 -0
  160. data/ext/libuv/test/benchmark-loop-count.c +88 -0
  161. data/ext/libuv/test/benchmark-million-timers.c +65 -0
  162. data/ext/libuv/test/benchmark-ping-pongs.c +213 -0
  163. data/ext/libuv/test/benchmark-pound.c +324 -0
  164. data/ext/libuv/test/benchmark-pump.c +462 -0
  165. data/ext/libuv/test/benchmark-sizes.c +44 -0
  166. data/ext/libuv/test/benchmark-spawn.c +162 -0
  167. data/ext/libuv/test/benchmark-tcp-write-batch.c +140 -0
  168. data/ext/libuv/test/benchmark-thread.c +64 -0
  169. data/ext/libuv/test/benchmark-udp-packet-storm.c +247 -0
  170. data/ext/libuv/test/blackhole-server.c +118 -0
  171. data/ext/libuv/test/dns-server.c +321 -0
  172. data/ext/libuv/test/echo-server.c +378 -0
  173. data/ext/libuv/test/fixtures/empty_file +0 -0
  174. data/ext/libuv/test/fixtures/load_error.node +1 -0
  175. data/ext/libuv/test/run-benchmarks.c +64 -0
  176. data/ext/libuv/test/run-tests.c +138 -0
  177. data/ext/libuv/test/runner-unix.c +295 -0
  178. data/ext/libuv/test/runner-unix.h +36 -0
  179. data/ext/libuv/test/runner-win.c +285 -0
  180. data/ext/libuv/test/runner-win.h +42 -0
  181. data/ext/libuv/test/runner.c +355 -0
  182. data/ext/libuv/test/runner.h +159 -0
  183. data/ext/libuv/test/task.h +112 -0
  184. data/ext/libuv/test/test-async.c +118 -0
  185. data/ext/libuv/test/test-callback-order.c +76 -0
  186. data/ext/libuv/test/test-callback-stack.c +203 -0
  187. data/ext/libuv/test/test-connection-fail.c +148 -0
  188. data/ext/libuv/test/test-cwd-and-chdir.c +64 -0
  189. data/ext/libuv/test/test-delayed-accept.c +188 -0
  190. data/ext/libuv/test/test-dlerror.c +58 -0
  191. data/ext/libuv/test/test-error.c +59 -0
  192. data/ext/libuv/test/test-fail-always.c +29 -0
  193. data/ext/libuv/test/test-fs-event.c +474 -0
  194. data/ext/libuv/test/test-fs-poll.c +146 -0
  195. data/ext/libuv/test/test-fs.c +1843 -0
  196. data/ext/libuv/test/test-get-currentexe.c +63 -0
  197. data/ext/libuv/test/test-get-loadavg.c +36 -0
  198. data/ext/libuv/test/test-get-memory.c +38 -0
  199. data/ext/libuv/test/test-getaddrinfo.c +122 -0
  200. data/ext/libuv/test/test-getsockname.c +342 -0
  201. data/ext/libuv/test/test-hrtime.c +54 -0
  202. data/ext/libuv/test/test-idle.c +81 -0
  203. data/ext/libuv/test/test-ipc-send-recv.c +209 -0
  204. data/ext/libuv/test/test-ipc.c +620 -0
  205. data/ext/libuv/test/test-list.h +427 -0
  206. data/ext/libuv/test/test-loop-handles.c +336 -0
  207. data/ext/libuv/test/test-multiple-listen.c +102 -0
  208. data/ext/libuv/test/test-mutexes.c +63 -0
  209. data/ext/libuv/test/test-pass-always.c +28 -0
  210. data/ext/libuv/test/test-ping-pong.c +253 -0
  211. data/ext/libuv/test/test-pipe-bind-error.c +140 -0
  212. data/ext/libuv/test/test-pipe-connect-error.c +96 -0
  213. data/ext/libuv/test/test-platform-output.c +87 -0
  214. data/ext/libuv/test/test-poll-close.c +72 -0
  215. data/ext/libuv/test/test-poll.c +573 -0
  216. data/ext/libuv/test/test-process-title.c +49 -0
  217. data/ext/libuv/test/test-ref.c +338 -0
  218. data/ext/libuv/test/test-run-once.c +48 -0
  219. data/ext/libuv/test/test-semaphore.c +111 -0
  220. data/ext/libuv/test/test-shutdown-close.c +103 -0
  221. data/ext/libuv/test/test-shutdown-eof.c +183 -0
  222. data/ext/libuv/test/test-signal.c +162 -0
  223. data/ext/libuv/test/test-spawn.c +863 -0
  224. data/ext/libuv/test/test-stdio-over-pipes.c +246 -0
  225. data/ext/libuv/test/test-tcp-bind-error.c +191 -0
  226. data/ext/libuv/test/test-tcp-bind6-error.c +154 -0
  227. data/ext/libuv/test/test-tcp-close-while-connecting.c +80 -0
  228. data/ext/libuv/test/test-tcp-close.c +129 -0
  229. data/ext/libuv/test/test-tcp-connect-error-after-write.c +95 -0
  230. data/ext/libuv/test/test-tcp-connect-error.c +70 -0
  231. data/ext/libuv/test/test-tcp-connect-timeout.c +85 -0
  232. data/ext/libuv/test/test-tcp-connect6-error.c +68 -0
  233. data/ext/libuv/test/test-tcp-flags.c +51 -0
  234. data/ext/libuv/test/test-tcp-shutdown-after-write.c +131 -0
  235. data/ext/libuv/test/test-tcp-unexpected-read.c +113 -0
  236. data/ext/libuv/test/test-tcp-write-error.c +168 -0
  237. data/ext/libuv/test/test-tcp-write-to-half-open-connection.c +135 -0
  238. data/ext/libuv/test/test-tcp-writealot.c +170 -0
  239. data/ext/libuv/test/test-thread.c +183 -0
  240. data/ext/libuv/test/test-threadpool.c +57 -0
  241. data/ext/libuv/test/test-timer-again.c +141 -0
  242. data/ext/libuv/test/test-timer.c +152 -0
  243. data/ext/libuv/test/test-tty.c +110 -0
  244. data/ext/libuv/test/test-udp-dgram-too-big.c +86 -0
  245. data/ext/libuv/test/test-udp-ipv6.c +156 -0
  246. data/ext/libuv/test/test-udp-multicast-join.c +139 -0
  247. data/ext/libuv/test/test-udp-multicast-ttl.c +86 -0
  248. data/ext/libuv/test/test-udp-options.c +86 -0
  249. data/ext/libuv/test/test-udp-send-and-recv.c +208 -0
  250. data/ext/libuv/test/test-util.c +97 -0
  251. data/ext/libuv/test/test-walk-handles.c +77 -0
  252. data/ext/libuv/uv.gyp +375 -0
  253. data/ext/libuv/vcbuild.bat +105 -0
  254. data/foolio.gemspec +18 -0
  255. data/lib/foolio.rb +9 -0
  256. data/lib/foolio/handle.rb +27 -0
  257. data/lib/foolio/listener.rb +26 -0
  258. data/lib/foolio/loop.rb +79 -0
  259. data/lib/foolio/stream.rb +109 -0
  260. data/lib/foolio/version.rb +3 -0
  261. metadata +309 -0
@@ -0,0 +1,154 @@
1
+ /* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
2
+ *
3
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
4
+ * of this software and associated documentation files (the "Software"), to
5
+ * deal in the Software without restriction, including without limitation the
6
+ * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
7
+ * sell copies of the Software, and to permit persons to whom the Software is
8
+ * furnished to do so, subject to the following conditions:
9
+ *
10
+ * The above copyright notice and this permission notice shall be included in
11
+ * all copies or substantial portions of the Software.
12
+ *
13
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
18
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
19
+ * IN THE SOFTWARE.
20
+ */
21
+
22
+ #include <assert.h>
23
+ #include <io.h>
24
+
25
+ #include "uv.h"
26
+ #include "internal.h"
27
+ #include "handle-inl.h"
28
+
29
+
30
+ uv_handle_type uv_guess_handle(uv_file file) {
31
+ HANDLE handle;
32
+ DWORD mode;
33
+
34
+ if (file < 0) {
35
+ return UV_UNKNOWN_HANDLE;
36
+ }
37
+
38
+ handle = (HANDLE) _get_osfhandle(file);
39
+
40
+ switch (GetFileType(handle)) {
41
+ case FILE_TYPE_CHAR:
42
+ if (GetConsoleMode(handle, &mode)) {
43
+ return UV_TTY;
44
+ } else {
45
+ return UV_FILE;
46
+ }
47
+
48
+ case FILE_TYPE_PIPE:
49
+ return UV_NAMED_PIPE;
50
+
51
+ case FILE_TYPE_DISK:
52
+ return UV_FILE;
53
+
54
+ default:
55
+ return UV_UNKNOWN_HANDLE;
56
+ }
57
+ }
58
+
59
+
60
+ int uv_is_active(const uv_handle_t* handle) {
61
+ return (handle->flags & UV__HANDLE_ACTIVE) &&
62
+ !(handle->flags & UV_HANDLE_CLOSING);
63
+ }
64
+
65
+
66
+ void uv_close(uv_handle_t* handle, uv_close_cb cb) {
67
+ uv_loop_t* loop = handle->loop;
68
+
69
+ if (handle->flags & UV_HANDLE_CLOSING) {
70
+ assert(0);
71
+ return;
72
+ }
73
+
74
+ handle->flags |= UV_HANDLE_CLOSING;
75
+ handle->close_cb = cb;
76
+
77
+ /* Handle-specific close actions */
78
+ switch (handle->type) {
79
+ case UV_TCP:
80
+ uv_tcp_close(loop, (uv_tcp_t*)handle);
81
+ return;
82
+
83
+ case UV_NAMED_PIPE:
84
+ uv_pipe_close(loop, (uv_pipe_t*) handle);
85
+ return;
86
+
87
+ case UV_TTY:
88
+ uv_tty_close((uv_tty_t*) handle);
89
+ return;
90
+
91
+ case UV_UDP:
92
+ uv_udp_close(loop, (uv_udp_t*) handle);
93
+ return;
94
+
95
+ case UV_POLL:
96
+ uv_poll_close(loop, (uv_poll_t*) handle);
97
+ return;
98
+
99
+ case UV_TIMER:
100
+ uv_timer_stop((uv_timer_t*)handle);
101
+ uv__handle_start(handle);
102
+ uv_want_endgame(loop, handle);
103
+ return;
104
+
105
+ case UV_PREPARE:
106
+ uv_prepare_stop((uv_prepare_t*)handle);
107
+ uv__handle_start(handle);
108
+ uv_want_endgame(loop, handle);
109
+ return;
110
+
111
+ case UV_CHECK:
112
+ uv_check_stop((uv_check_t*)handle);
113
+ uv__handle_start(handle);
114
+ uv_want_endgame(loop, handle);
115
+ return;
116
+
117
+ case UV_IDLE:
118
+ uv_idle_stop((uv_idle_t*)handle);
119
+ uv__handle_start(handle);
120
+ uv_want_endgame(loop, handle);
121
+ return;
122
+
123
+ case UV_ASYNC:
124
+ uv_async_close(loop, (uv_async_t*) handle);
125
+ return;
126
+
127
+ case UV_PROCESS:
128
+ uv_process_close(loop, (uv_process_t*) handle);
129
+ return;
130
+
131
+ case UV_FS_EVENT:
132
+ uv_fs_event_close(loop, (uv_fs_event_t*) handle);
133
+ return;
134
+
135
+ case UV_FS_POLL:
136
+ uv__fs_poll_close((uv_fs_poll_t*) handle);
137
+ uv__handle_start(handle);
138
+ uv_want_endgame(loop, handle);
139
+ return;
140
+
141
+ case UV_SIGNAL:
142
+ uv_signal_close(loop, (uv_signal_t*) handle);
143
+ return;
144
+
145
+ default:
146
+ /* Not supported */
147
+ abort();
148
+ }
149
+ }
150
+
151
+
152
+ int uv_is_closing(const uv_handle_t* handle) {
153
+ return handle->flags & (UV_HANDLE_CLOSING | UV_HANDLE_CLOSED);
154
+ }
@@ -0,0 +1,343 @@
1
+ /* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
2
+ *
3
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
4
+ * of this software and associated documentation files (the "Software"), to
5
+ * deal in the Software without restriction, including without limitation the
6
+ * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
7
+ * sell copies of the Software, and to permit persons to whom the Software is
8
+ * furnished to do so, subject to the following conditions:
9
+ *
10
+ * The above copyright notice and this permission notice shall be included in
11
+ * all copies or substantial portions of the Software.
12
+ *
13
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
18
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
19
+ * IN THE SOFTWARE.
20
+ */
21
+
22
+ #ifndef UV_WIN_INTERNAL_H_
23
+ #define UV_WIN_INTERNAL_H_
24
+
25
+ #include "uv.h"
26
+ #include "../uv-common.h"
27
+
28
+ #include "tree.h"
29
+ #include "winapi.h"
30
+ #include "winsock.h"
31
+
32
+
33
+ /*
34
+ * Handles
35
+ * (also see handle-inl.h)
36
+ */
37
+
38
+ /* Used by all handles. */
39
+ #define UV_HANDLE_CLOSING 0x00000001
40
+ #define UV_HANDLE_CLOSED 0x00000002
41
+ #define UV_HANDLE_ENDGAME_QUEUED 0x00000004
42
+ #define UV_HANDLE_ACTIVE 0x00000010
43
+
44
+ /* uv-common.h: #define UV__HANDLE_ACTIVE 0x00000040 */
45
+ /* uv-common.h: #define UV__HANDLE_REF 0x00000020 */
46
+ /* reserved: #define UV_HANDLE_INTERNAL 0x00000080 */
47
+
48
+ /* Used by streams and UDP handles. */
49
+ #define UV_HANDLE_READING 0x00000100
50
+ #define UV_HANDLE_BOUND 0x00000200
51
+ #define UV_HANDLE_BIND_ERROR 0x00000400
52
+ #define UV_HANDLE_LISTENING 0x00000800
53
+ #define UV_HANDLE_CONNECTION 0x00001000
54
+ #define UV_HANDLE_CONNECTED 0x00002000
55
+ #define UV_HANDLE_EOF 0x00004000
56
+ #define UV_HANDLE_SHUTTING 0x00008000
57
+ #define UV_HANDLE_SHUT 0x00010000
58
+ #define UV_HANDLE_READ_PENDING 0x00020000
59
+ #define UV_HANDLE_SYNC_BYPASS_IOCP 0x00040000
60
+ #define UV_HANDLE_ZERO_READ 0x00080000
61
+ #define UV_HANDLE_EMULATE_IOCP 0x00100000
62
+
63
+ /* Only used by uv_tcp_t handles. */
64
+ #define UV_HANDLE_IPV6 0x01000000
65
+ #define UV_HANDLE_TCP_NODELAY 0x02000000
66
+ #define UV_HANDLE_TCP_KEEPALIVE 0x04000000
67
+ #define UV_HANDLE_TCP_SINGLE_ACCEPT 0x08000000
68
+ #define UV_HANDLE_TCP_ACCEPT_STATE_CHANGING 0x10000000
69
+ #define UV_HANDLE_TCP_SOCKET_CLOSED 0x20000000
70
+ #define UV_HANDLE_SHARED_TCP_SOCKET 0x40000000
71
+
72
+ /* Only used by uv_pipe_t handles. */
73
+ #define UV_HANDLE_NON_OVERLAPPED_PIPE 0x01000000
74
+ #define UV_HANDLE_PIPESERVER 0x02000000
75
+
76
+ /* Only used by uv_tty_t handles. */
77
+ #define UV_HANDLE_TTY_RAW 0x01000000
78
+ #define UV_HANDLE_TTY_SAVED_POSITION 0x02000000
79
+ #define UV_HANDLE_TTY_SAVED_ATTRIBUTES 0x04000000
80
+
81
+ /* Only used by uv_poll_t handles. */
82
+ #define UV_HANDLE_POLL_SLOW 0x02000000
83
+
84
+
85
+ /*
86
+ * Requests: see req-inl.h
87
+ */
88
+
89
+
90
+ /*
91
+ * Streams: see stream-inl.h
92
+ */
93
+
94
+
95
+ /*
96
+ * TCP
97
+ */
98
+ int uv_tcp_listen(uv_tcp_t* handle, int backlog, uv_connection_cb cb);
99
+ int uv_tcp_accept(uv_tcp_t* server, uv_tcp_t* client);
100
+ int uv_tcp_read_start(uv_tcp_t* handle, uv_alloc_cb alloc_cb,
101
+ uv_read_cb read_cb);
102
+ int uv_tcp_write(uv_loop_t* loop, uv_write_t* req, uv_tcp_t* handle,
103
+ uv_buf_t bufs[], int bufcnt, uv_write_cb cb);
104
+
105
+ void uv_process_tcp_read_req(uv_loop_t* loop, uv_tcp_t* handle, uv_req_t* req);
106
+ void uv_process_tcp_write_req(uv_loop_t* loop, uv_tcp_t* handle,
107
+ uv_write_t* req);
108
+ void uv_process_tcp_accept_req(uv_loop_t* loop, uv_tcp_t* handle,
109
+ uv_req_t* req);
110
+ void uv_process_tcp_connect_req(uv_loop_t* loop, uv_tcp_t* handle,
111
+ uv_connect_t* req);
112
+
113
+ void uv_tcp_close(uv_loop_t* loop, uv_tcp_t* tcp);
114
+ void uv_tcp_endgame(uv_loop_t* loop, uv_tcp_t* handle);
115
+
116
+ int uv_tcp_import(uv_tcp_t* tcp, WSAPROTOCOL_INFOW* socket_protocol_info,
117
+ int tcp_connection);
118
+
119
+ int uv_tcp_duplicate_socket(uv_tcp_t* handle, int pid,
120
+ LPWSAPROTOCOL_INFOW protocol_info);
121
+
122
+
123
+ /*
124
+ * UDP
125
+ */
126
+ void uv_process_udp_recv_req(uv_loop_t* loop, uv_udp_t* handle, uv_req_t* req);
127
+ void uv_process_udp_send_req(uv_loop_t* loop, uv_udp_t* handle,
128
+ uv_udp_send_t* req);
129
+
130
+ void uv_udp_close(uv_loop_t* loop, uv_udp_t* handle);
131
+ void uv_udp_endgame(uv_loop_t* loop, uv_udp_t* handle);
132
+
133
+
134
+ /*
135
+ * Pipes
136
+ */
137
+ uv_err_t uv_stdio_pipe_server(uv_loop_t* loop, uv_pipe_t* handle, DWORD access,
138
+ char* name, size_t nameSize);
139
+
140
+ int uv_pipe_listen(uv_pipe_t* handle, int backlog, uv_connection_cb cb);
141
+ int uv_pipe_accept(uv_pipe_t* server, uv_stream_t* client);
142
+ int uv_pipe_read_start(uv_pipe_t* handle, uv_alloc_cb alloc_cb,
143
+ uv_read_cb read_cb);
144
+ int uv_pipe_read2_start(uv_pipe_t* handle, uv_alloc_cb alloc_cb,
145
+ uv_read2_cb read_cb);
146
+ int uv_pipe_write(uv_loop_t* loop, uv_write_t* req, uv_pipe_t* handle,
147
+ uv_buf_t bufs[], int bufcnt, uv_write_cb cb);
148
+ int uv_pipe_write2(uv_loop_t* loop, uv_write_t* req, uv_pipe_t* handle,
149
+ uv_buf_t bufs[], int bufcnt, uv_stream_t* send_handle, uv_write_cb cb);
150
+
151
+ void uv_process_pipe_read_req(uv_loop_t* loop, uv_pipe_t* handle,
152
+ uv_req_t* req);
153
+ void uv_process_pipe_write_req(uv_loop_t* loop, uv_pipe_t* handle,
154
+ uv_write_t* req);
155
+ void uv_process_pipe_accept_req(uv_loop_t* loop, uv_pipe_t* handle,
156
+ uv_req_t* raw_req);
157
+ void uv_process_pipe_connect_req(uv_loop_t* loop, uv_pipe_t* handle,
158
+ uv_connect_t* req);
159
+ void uv_process_pipe_shutdown_req(uv_loop_t* loop, uv_pipe_t* handle,
160
+ uv_shutdown_t* req);
161
+
162
+ void uv_pipe_close(uv_loop_t* loop, uv_pipe_t* handle);
163
+ void uv_pipe_cleanup(uv_loop_t* loop, uv_pipe_t* handle);
164
+ void uv_pipe_endgame(uv_loop_t* loop, uv_pipe_t* handle);
165
+
166
+
167
+ /*
168
+ * TTY
169
+ */
170
+ void uv_console_init();
171
+
172
+ int uv_tty_read_start(uv_tty_t* handle, uv_alloc_cb alloc_cb,
173
+ uv_read_cb read_cb);
174
+ int uv_tty_read_stop(uv_tty_t* handle);
175
+ int uv_tty_write(uv_loop_t* loop, uv_write_t* req, uv_tty_t* handle,
176
+ uv_buf_t bufs[], int bufcnt, uv_write_cb cb);
177
+ void uv_tty_close(uv_tty_t* handle);
178
+
179
+ void uv_process_tty_read_req(uv_loop_t* loop, uv_tty_t* handle,
180
+ uv_req_t* req);
181
+ void uv_process_tty_write_req(uv_loop_t* loop, uv_tty_t* handle,
182
+ uv_write_t* req);
183
+ /* TODO: remove me */
184
+ void uv_process_tty_accept_req(uv_loop_t* loop, uv_tty_t* handle,
185
+ uv_req_t* raw_req);
186
+ /* TODO: remove me */
187
+ void uv_process_tty_connect_req(uv_loop_t* loop, uv_tty_t* handle,
188
+ uv_connect_t* req);
189
+
190
+ void uv_tty_endgame(uv_loop_t* loop, uv_tty_t* handle);
191
+
192
+
193
+ /*
194
+ * Poll watchers
195
+ */
196
+ void uv_process_poll_req(uv_loop_t* loop, uv_poll_t* handle,
197
+ uv_req_t* req);
198
+
199
+ void uv_poll_close(uv_loop_t* loop, uv_poll_t* handle);
200
+ void uv_poll_endgame(uv_loop_t* loop, uv_poll_t* handle);
201
+
202
+
203
+ /*
204
+ * Timers
205
+ */
206
+ void uv_timer_endgame(uv_loop_t* loop, uv_timer_t* handle);
207
+
208
+ DWORD uv_get_poll_timeout(uv_loop_t* loop);
209
+ void uv_process_timers(uv_loop_t* loop);
210
+
211
+
212
+ /*
213
+ * Loop watchers
214
+ */
215
+ void uv_loop_watcher_endgame(uv_loop_t* loop, uv_handle_t* handle);
216
+
217
+ void uv_prepare_invoke(uv_loop_t* loop);
218
+ void uv_check_invoke(uv_loop_t* loop);
219
+ void uv_idle_invoke(uv_loop_t* loop);
220
+
221
+ void uv__once_init();
222
+
223
+
224
+ /*
225
+ * Async watcher
226
+ */
227
+ void uv_async_close(uv_loop_t* loop, uv_async_t* handle);
228
+ void uv_async_endgame(uv_loop_t* loop, uv_async_t* handle);
229
+
230
+ void uv_process_async_wakeup_req(uv_loop_t* loop, uv_async_t* handle,
231
+ uv_req_t* req);
232
+
233
+
234
+ /*
235
+ * Spawn
236
+ */
237
+ void uv_process_proc_exit(uv_loop_t* loop, uv_process_t* handle);
238
+ void uv_process_close(uv_loop_t* loop, uv_process_t* handle);
239
+ void uv_process_endgame(uv_loop_t* loop, uv_process_t* handle);
240
+
241
+
242
+ /*
243
+ * Getaddrinfo
244
+ */
245
+ void uv_process_getaddrinfo_req(uv_loop_t* loop, uv_getaddrinfo_t* req);
246
+
247
+
248
+ /*
249
+ * FS
250
+ */
251
+ void uv_fs_init();
252
+ void uv_process_fs_req(uv_loop_t* loop, uv_fs_t* req);
253
+
254
+
255
+ /*
256
+ * Threadpool
257
+ */
258
+ void uv_process_work_req(uv_loop_t* loop, uv_work_t* req);
259
+
260
+
261
+ /*
262
+ * FS Event
263
+ */
264
+ void uv_process_fs_event_req(uv_loop_t* loop, uv_req_t* req,
265
+ uv_fs_event_t* handle);
266
+ void uv_fs_event_close(uv_loop_t* loop, uv_fs_event_t* handle);
267
+ void uv_fs_event_endgame(uv_loop_t* loop, uv_fs_event_t* handle);
268
+
269
+
270
+ /*
271
+ * Stat poller.
272
+ */
273
+ void uv__fs_poll_endgame(uv_loop_t* loop, uv_fs_poll_t* handle);
274
+
275
+
276
+ /*
277
+ * Signals.
278
+ */
279
+ void uv_signal_close(uv_loop_t* loop, uv_signal_t* handle);
280
+ void uv_signal_endgame(uv_loop_t* loop, uv_signal_t* handle);
281
+
282
+
283
+ /*
284
+ * Utilities.
285
+ */
286
+ void uv__util_init();
287
+
288
+ int uv_parent_pid();
289
+ void uv_fatal_error(const int errorno, const char* syscall);
290
+ uv_err_code uv_translate_sys_error(int sys_errno);
291
+
292
+
293
+ /*
294
+ * Process stdio handles.
295
+ */
296
+ uv_err_t uv__stdio_create(uv_loop_t* loop, uv_process_options_t* options,
297
+ BYTE** buffer_ptr);
298
+ void uv__stdio_destroy(BYTE* buffer);
299
+ void uv__stdio_noinherit(BYTE* buffer);
300
+ int uv__stdio_verify(BYTE* buffer, WORD size);
301
+ WORD uv__stdio_size(BYTE* buffer);
302
+ HANDLE uv__stdio_handle(BYTE* buffer, int fd);
303
+
304
+
305
+ /*
306
+ * Winapi and ntapi utility functions
307
+ */
308
+ void uv_winapi_init();
309
+
310
+
311
+ /*
312
+ * Winsock utility functions
313
+ */
314
+ void uv_winsock_init();
315
+
316
+ int uv_ntstatus_to_winsock_error(NTSTATUS status);
317
+
318
+ BOOL uv_get_acceptex_function(SOCKET socket, LPFN_ACCEPTEX* target);
319
+ BOOL uv_get_connectex_function(SOCKET socket, LPFN_CONNECTEX* target);
320
+
321
+ int WSAAPI uv_wsarecv_workaround(SOCKET socket, WSABUF* buffers,
322
+ DWORD buffer_count, DWORD* bytes, DWORD* flags, WSAOVERLAPPED *overlapped,
323
+ LPWSAOVERLAPPED_COMPLETION_ROUTINE completion_routine);
324
+ int WSAAPI uv_wsarecvfrom_workaround(SOCKET socket, WSABUF* buffers,
325
+ DWORD buffer_count, DWORD* bytes, DWORD* flags, struct sockaddr* addr,
326
+ int* addr_len, WSAOVERLAPPED *overlapped,
327
+ LPWSAOVERLAPPED_COMPLETION_ROUTINE completion_routine);
328
+
329
+ int WSAAPI uv_msafd_poll(SOCKET socket, AFD_POLL_INFO* info,
330
+ OVERLAPPED* overlapped);
331
+
332
+ /* Whether ipv6 is supported */
333
+ extern int uv_allow_ipv6;
334
+
335
+ /* Whether there are any non-IFS LSPs stacked on TCP */
336
+ extern int uv_tcp_non_ifs_lsp_ipv4;
337
+ extern int uv_tcp_non_ifs_lsp_ipv6;
338
+
339
+ /* Ip address used to bind to any port at any interface */
340
+ extern struct sockaddr_in uv_addr_ip4_any_;
341
+ extern struct sockaddr_in6 uv_addr_ip6_any_;
342
+
343
+ #endif /* UV_WIN_INTERNAL_H_ */