uv.h 65 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842
  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. /* See https://github.com/libuv/libuv#documentation for documentation. */
  22. #ifndef UV_H
  23. #define UV_H
  24. /* Include KWSys Large File Support configuration. */
  25. #include <cmsys/Configure.h>
  26. #ifdef __cplusplus
  27. extern "C" {
  28. #endif
  29. #if defined(BUILDING_UV_SHARED) && defined(USING_UV_SHARED)
  30. #error "Define either BUILDING_UV_SHARED or USING_UV_SHARED, not both."
  31. #endif
  32. #ifdef _WIN32
  33. /* Windows - set up dll import/export decorators. */
  34. # if defined(BUILDING_UV_SHARED)
  35. /* Building shared library. */
  36. # define UV_EXTERN __declspec(dllexport)
  37. # elif defined(USING_UV_SHARED)
  38. /* Using shared library. */
  39. # define UV_EXTERN __declspec(dllimport)
  40. # else
  41. /* Building static library. */
  42. # define UV_EXTERN /* nothing */
  43. # endif
  44. #elif __GNUC__ >= 4
  45. # define UV_EXTERN __attribute__((visibility("default")))
  46. #else
  47. # define UV_EXTERN /* nothing */
  48. #endif
  49. #include "uv/errno.h"
  50. #include "uv/version.h"
  51. #include <stddef.h>
  52. #include <stdio.h>
  53. #if defined(_MSC_VER) && _MSC_VER < 1600
  54. # include "uv/stdint-msvc2008.h"
  55. #else
  56. # include <stdint.h>
  57. #endif
  58. #if defined(_WIN32)
  59. # include "uv/win.h"
  60. #else
  61. # include "uv/unix.h"
  62. #endif
  63. /* Expand this list if necessary. */
  64. #define UV_ERRNO_MAP(XX) \
  65. XX(E2BIG, "argument list too long") \
  66. XX(EACCES, "permission denied") \
  67. XX(EADDRINUSE, "address already in use") \
  68. XX(EADDRNOTAVAIL, "address not available") \
  69. XX(EAFNOSUPPORT, "address family not supported") \
  70. XX(EAGAIN, "resource temporarily unavailable") \
  71. XX(EAI_ADDRFAMILY, "address family not supported") \
  72. XX(EAI_AGAIN, "temporary failure") \
  73. XX(EAI_BADFLAGS, "bad ai_flags value") \
  74. XX(EAI_BADHINTS, "invalid value for hints") \
  75. XX(EAI_CANCELED, "request canceled") \
  76. XX(EAI_FAIL, "permanent failure") \
  77. XX(EAI_FAMILY, "ai_family not supported") \
  78. XX(EAI_MEMORY, "out of memory") \
  79. XX(EAI_NODATA, "no address") \
  80. XX(EAI_NONAME, "unknown node or service") \
  81. XX(EAI_OVERFLOW, "argument buffer overflow") \
  82. XX(EAI_PROTOCOL, "resolved protocol is unknown") \
  83. XX(EAI_SERVICE, "service not available for socket type") \
  84. XX(EAI_SOCKTYPE, "socket type not supported") \
  85. XX(EALREADY, "connection already in progress") \
  86. XX(EBADF, "bad file descriptor") \
  87. XX(EBUSY, "resource busy or locked") \
  88. XX(ECANCELED, "operation canceled") \
  89. XX(ECHARSET, "invalid Unicode character") \
  90. XX(ECONNABORTED, "software caused connection abort") \
  91. XX(ECONNREFUSED, "connection refused") \
  92. XX(ECONNRESET, "connection reset by peer") \
  93. XX(EDESTADDRREQ, "destination address required") \
  94. XX(EEXIST, "file already exists") \
  95. XX(EFAULT, "bad address in system call argument") \
  96. XX(EFBIG, "file too large") \
  97. XX(EHOSTUNREACH, "host is unreachable") \
  98. XX(EINTR, "interrupted system call") \
  99. XX(EINVAL, "invalid argument") \
  100. XX(EIO, "i/o error") \
  101. XX(EISCONN, "socket is already connected") \
  102. XX(EISDIR, "illegal operation on a directory") \
  103. XX(ELOOP, "too many symbolic links encountered") \
  104. XX(EMFILE, "too many open files") \
  105. XX(EMSGSIZE, "message too long") \
  106. XX(ENAMETOOLONG, "name too long") \
  107. XX(ENETDOWN, "network is down") \
  108. XX(ENETUNREACH, "network is unreachable") \
  109. XX(ENFILE, "file table overflow") \
  110. XX(ENOBUFS, "no buffer space available") \
  111. XX(ENODEV, "no such device") \
  112. XX(ENOENT, "no such file or directory") \
  113. XX(ENOMEM, "not enough memory") \
  114. XX(ENONET, "machine is not on the network") \
  115. XX(ENOPROTOOPT, "protocol not available") \
  116. XX(ENOSPC, "no space left on device") \
  117. XX(ENOSYS, "function not implemented") \
  118. XX(ENOTCONN, "socket is not connected") \
  119. XX(ENOTDIR, "not a directory") \
  120. XX(ENOTEMPTY, "directory not empty") \
  121. XX(ENOTSOCK, "socket operation on non-socket") \
  122. XX(ENOTSUP, "operation not supported on socket") \
  123. XX(EPERM, "operation not permitted") \
  124. XX(EPIPE, "broken pipe") \
  125. XX(EPROTO, "protocol error") \
  126. XX(EPROTONOSUPPORT, "protocol not supported") \
  127. XX(EPROTOTYPE, "protocol wrong type for socket") \
  128. XX(ERANGE, "result too large") \
  129. XX(EROFS, "read-only file system") \
  130. XX(ESHUTDOWN, "cannot send after transport endpoint shutdown") \
  131. XX(ESPIPE, "invalid seek") \
  132. XX(ESRCH, "no such process") \
  133. XX(ETIMEDOUT, "connection timed out") \
  134. XX(ETXTBSY, "text file is busy") \
  135. XX(EXDEV, "cross-device link not permitted") \
  136. XX(UNKNOWN, "unknown error") \
  137. XX(EOF, "end of file") \
  138. XX(ENXIO, "no such device or address") \
  139. XX(EMLINK, "too many links") \
  140. XX(EHOSTDOWN, "host is down") \
  141. XX(EREMOTEIO, "remote I/O error") \
  142. XX(ENOTTY, "inappropriate ioctl for device") \
  143. XX(EFTYPE, "inappropriate file type or format") \
  144. XX(EILSEQ, "illegal byte sequence") \
  145. #define UV_HANDLE_TYPE_MAP(XX) \
  146. XX(ASYNC, async) \
  147. XX(CHECK, check) \
  148. XX(FS_EVENT, fs_event) \
  149. XX(FS_POLL, fs_poll) \
  150. XX(HANDLE, handle) \
  151. XX(IDLE, idle) \
  152. XX(NAMED_PIPE, pipe) \
  153. XX(POLL, poll) \
  154. XX(PREPARE, prepare) \
  155. XX(PROCESS, process) \
  156. XX(STREAM, stream) \
  157. XX(TCP, tcp) \
  158. XX(TIMER, timer) \
  159. XX(TTY, tty) \
  160. XX(UDP, udp) \
  161. XX(SIGNAL, signal) \
  162. #define UV_REQ_TYPE_MAP(XX) \
  163. XX(REQ, req) \
  164. XX(CONNECT, connect) \
  165. XX(WRITE, write) \
  166. XX(SHUTDOWN, shutdown) \
  167. XX(UDP_SEND, udp_send) \
  168. XX(FS, fs) \
  169. XX(WORK, work) \
  170. XX(GETADDRINFO, getaddrinfo) \
  171. XX(GETNAMEINFO, getnameinfo) \
  172. XX(RANDOM, random) \
  173. typedef enum {
  174. #define XX(code, _) UV_ ## code = UV__ ## code,
  175. UV_ERRNO_MAP(XX)
  176. #undef XX
  177. UV_ERRNO_MAX = UV__EOF - 1
  178. } uv_errno_t;
  179. typedef enum {
  180. UV_UNKNOWN_HANDLE = 0,
  181. #define XX(uc, lc) UV_##uc,
  182. UV_HANDLE_TYPE_MAP(XX)
  183. #undef XX
  184. UV_FILE,
  185. UV_HANDLE_TYPE_MAX
  186. } uv_handle_type;
  187. typedef enum {
  188. UV_UNKNOWN_REQ = 0,
  189. #define XX(uc, lc) UV_##uc,
  190. UV_REQ_TYPE_MAP(XX)
  191. #undef XX
  192. UV_REQ_TYPE_PRIVATE
  193. UV_REQ_TYPE_MAX
  194. } uv_req_type;
  195. /* Handle types. */
  196. typedef struct uv_loop_s uv_loop_t;
  197. typedef struct uv_handle_s uv_handle_t;
  198. typedef struct uv_dir_s uv_dir_t;
  199. typedef struct uv_stream_s uv_stream_t;
  200. typedef struct uv_tcp_s uv_tcp_t;
  201. typedef struct uv_udp_s uv_udp_t;
  202. typedef struct uv_pipe_s uv_pipe_t;
  203. typedef struct uv_tty_s uv_tty_t;
  204. typedef struct uv_poll_s uv_poll_t;
  205. typedef struct uv_timer_s uv_timer_t;
  206. typedef struct uv_prepare_s uv_prepare_t;
  207. typedef struct uv_check_s uv_check_t;
  208. typedef struct uv_idle_s uv_idle_t;
  209. typedef struct uv_async_s uv_async_t;
  210. typedef struct uv_process_s uv_process_t;
  211. typedef struct uv_fs_event_s uv_fs_event_t;
  212. typedef struct uv_fs_poll_s uv_fs_poll_t;
  213. typedef struct uv_signal_s uv_signal_t;
  214. /* Request types. */
  215. typedef struct uv_req_s uv_req_t;
  216. typedef struct uv_getaddrinfo_s uv_getaddrinfo_t;
  217. typedef struct uv_getnameinfo_s uv_getnameinfo_t;
  218. typedef struct uv_shutdown_s uv_shutdown_t;
  219. typedef struct uv_write_s uv_write_t;
  220. typedef struct uv_connect_s uv_connect_t;
  221. typedef struct uv_udp_send_s uv_udp_send_t;
  222. typedef struct uv_fs_s uv_fs_t;
  223. typedef struct uv_work_s uv_work_t;
  224. typedef struct uv_random_s uv_random_t;
  225. /* None of the above. */
  226. typedef struct uv_env_item_s uv_env_item_t;
  227. typedef struct uv_cpu_info_s uv_cpu_info_t;
  228. typedef struct uv_interface_address_s uv_interface_address_t;
  229. typedef struct uv_dirent_s uv_dirent_t;
  230. typedef struct uv_passwd_s uv_passwd_t;
  231. typedef struct uv_utsname_s uv_utsname_t;
  232. typedef struct uv_statfs_s uv_statfs_t;
  233. typedef enum {
  234. UV_LOOP_BLOCK_SIGNAL = 0,
  235. UV_METRICS_IDLE_TIME
  236. } uv_loop_option;
  237. typedef enum {
  238. UV_RUN_DEFAULT = 0,
  239. UV_RUN_ONCE,
  240. UV_RUN_NOWAIT
  241. } uv_run_mode;
  242. UV_EXTERN unsigned int uv_version(void);
  243. UV_EXTERN const char* uv_version_string(void);
  244. typedef void* (*uv_malloc_func)(size_t size);
  245. typedef void* (*uv_realloc_func)(void* ptr, size_t size);
  246. typedef void* (*uv_calloc_func)(size_t count, size_t size);
  247. typedef void (*uv_free_func)(void* ptr);
  248. UV_EXTERN void uv_library_shutdown(void);
  249. UV_EXTERN int uv_replace_allocator(uv_malloc_func malloc_func,
  250. uv_realloc_func realloc_func,
  251. uv_calloc_func calloc_func,
  252. uv_free_func free_func);
  253. UV_EXTERN uv_loop_t* uv_default_loop(void);
  254. UV_EXTERN int uv_loop_init(uv_loop_t* loop);
  255. UV_EXTERN int uv_loop_close(uv_loop_t* loop);
  256. /*
  257. * NOTE:
  258. * This function is DEPRECATED (to be removed after 0.12), users should
  259. * allocate the loop manually and use uv_loop_init instead.
  260. */
  261. UV_EXTERN uv_loop_t* uv_loop_new(void);
  262. /*
  263. * NOTE:
  264. * This function is DEPRECATED (to be removed after 0.12). Users should use
  265. * uv_loop_close and free the memory manually instead.
  266. */
  267. UV_EXTERN void uv_loop_delete(uv_loop_t*);
  268. UV_EXTERN size_t uv_loop_size(void);
  269. UV_EXTERN int uv_loop_alive(const uv_loop_t* loop);
  270. UV_EXTERN int uv_loop_configure(uv_loop_t* loop, uv_loop_option option, ...);
  271. UV_EXTERN int uv_loop_fork(uv_loop_t* loop);
  272. UV_EXTERN int uv_run(uv_loop_t*, uv_run_mode mode);
  273. UV_EXTERN void uv_stop(uv_loop_t*);
  274. UV_EXTERN void uv_ref(uv_handle_t*);
  275. UV_EXTERN void uv_unref(uv_handle_t*);
  276. UV_EXTERN int uv_has_ref(const uv_handle_t*);
  277. UV_EXTERN void uv_update_time(uv_loop_t*);
  278. UV_EXTERN uint64_t uv_now(const uv_loop_t*);
  279. UV_EXTERN int uv_backend_fd(const uv_loop_t*);
  280. UV_EXTERN int uv_backend_timeout(const uv_loop_t*);
  281. typedef void (*uv_alloc_cb)(uv_handle_t* handle,
  282. size_t suggested_size,
  283. uv_buf_t* buf);
  284. typedef void (*uv_read_cb)(uv_stream_t* stream,
  285. ssize_t nread,
  286. const uv_buf_t* buf);
  287. typedef void (*uv_write_cb)(uv_write_t* req, int status);
  288. typedef void (*uv_connect_cb)(uv_connect_t* req, int status);
  289. typedef void (*uv_shutdown_cb)(uv_shutdown_t* req, int status);
  290. typedef void (*uv_connection_cb)(uv_stream_t* server, int status);
  291. typedef void (*uv_close_cb)(uv_handle_t* handle);
  292. typedef void (*uv_poll_cb)(uv_poll_t* handle, int status, int events);
  293. typedef void (*uv_timer_cb)(uv_timer_t* handle);
  294. typedef void (*uv_async_cb)(uv_async_t* handle);
  295. typedef void (*uv_prepare_cb)(uv_prepare_t* handle);
  296. typedef void (*uv_check_cb)(uv_check_t* handle);
  297. typedef void (*uv_idle_cb)(uv_idle_t* handle);
  298. typedef void (*uv_exit_cb)(uv_process_t*, int64_t exit_status, int term_signal);
  299. typedef void (*uv_walk_cb)(uv_handle_t* handle, void* arg);
  300. typedef void (*uv_fs_cb)(uv_fs_t* req);
  301. typedef void (*uv_work_cb)(uv_work_t* req);
  302. typedef void (*uv_after_work_cb)(uv_work_t* req, int status);
  303. typedef void (*uv_getaddrinfo_cb)(uv_getaddrinfo_t* req,
  304. int status,
  305. struct addrinfo* res);
  306. typedef void (*uv_getnameinfo_cb)(uv_getnameinfo_t* req,
  307. int status,
  308. const char* hostname,
  309. const char* service);
  310. typedef void (*uv_random_cb)(uv_random_t* req,
  311. int status,
  312. void* buf,
  313. size_t buflen);
  314. typedef struct {
  315. long tv_sec;
  316. long tv_nsec;
  317. } uv_timespec_t;
  318. typedef struct {
  319. uint64_t st_dev;
  320. uint64_t st_mode;
  321. uint64_t st_nlink;
  322. uint64_t st_uid;
  323. uint64_t st_gid;
  324. uint64_t st_rdev;
  325. uint64_t st_ino;
  326. uint64_t st_size;
  327. uint64_t st_blksize;
  328. uint64_t st_blocks;
  329. uint64_t st_flags;
  330. uint64_t st_gen;
  331. uv_timespec_t st_atim;
  332. uv_timespec_t st_mtim;
  333. uv_timespec_t st_ctim;
  334. uv_timespec_t st_birthtim;
  335. } uv_stat_t;
  336. typedef void (*uv_fs_event_cb)(uv_fs_event_t* handle,
  337. const char* filename,
  338. int events,
  339. int status);
  340. typedef void (*uv_fs_poll_cb)(uv_fs_poll_t* handle,
  341. int status,
  342. const uv_stat_t* prev,
  343. const uv_stat_t* curr);
  344. typedef void (*uv_signal_cb)(uv_signal_t* handle, int signum);
  345. typedef enum {
  346. UV_LEAVE_GROUP = 0,
  347. UV_JOIN_GROUP
  348. } uv_membership;
  349. UV_EXTERN int uv_translate_sys_error(int sys_errno);
  350. UV_EXTERN const char* uv_strerror(int err);
  351. UV_EXTERN char* uv_strerror_r(int err, char* buf, size_t buflen);
  352. UV_EXTERN const char* uv_err_name(int err);
  353. UV_EXTERN char* uv_err_name_r(int err, char* buf, size_t buflen);
  354. #define UV_REQ_FIELDS \
  355. /* public */ \
  356. void* data; \
  357. /* read-only */ \
  358. uv_req_type type; \
  359. /* private */ \
  360. void* reserved[6]; \
  361. UV_REQ_PRIVATE_FIELDS \
  362. /* Abstract base class of all requests. */
  363. struct uv_req_s {
  364. UV_REQ_FIELDS
  365. };
  366. /* Platform-specific request types. */
  367. UV_PRIVATE_REQ_TYPES
  368. UV_EXTERN int uv_shutdown(uv_shutdown_t* req,
  369. uv_stream_t* handle,
  370. uv_shutdown_cb cb);
  371. struct uv_shutdown_s {
  372. UV_REQ_FIELDS
  373. uv_stream_t* handle;
  374. uv_shutdown_cb cb;
  375. UV_SHUTDOWN_PRIVATE_FIELDS
  376. };
  377. #define UV_HANDLE_FIELDS \
  378. /* public */ \
  379. void* data; \
  380. /* read-only */ \
  381. uv_loop_t* loop; \
  382. uv_handle_type type; \
  383. /* private */ \
  384. uv_close_cb close_cb; \
  385. void* handle_queue[2]; \
  386. union { \
  387. int fd; \
  388. void* reserved[4]; \
  389. } u; \
  390. UV_HANDLE_PRIVATE_FIELDS \
  391. /* The abstract base class of all handles. */
  392. struct uv_handle_s {
  393. UV_HANDLE_FIELDS
  394. };
  395. UV_EXTERN size_t uv_handle_size(uv_handle_type type);
  396. UV_EXTERN uv_handle_type uv_handle_get_type(const uv_handle_t* handle);
  397. UV_EXTERN const char* uv_handle_type_name(uv_handle_type type);
  398. UV_EXTERN void* uv_handle_get_data(const uv_handle_t* handle);
  399. UV_EXTERN uv_loop_t* uv_handle_get_loop(const uv_handle_t* handle);
  400. UV_EXTERN void uv_handle_set_data(uv_handle_t* handle, void* data);
  401. UV_EXTERN size_t uv_req_size(uv_req_type type);
  402. UV_EXTERN void* uv_req_get_data(const uv_req_t* req);
  403. UV_EXTERN void uv_req_set_data(uv_req_t* req, void* data);
  404. UV_EXTERN uv_req_type uv_req_get_type(const uv_req_t* req);
  405. UV_EXTERN const char* uv_req_type_name(uv_req_type type);
  406. UV_EXTERN int uv_is_active(const uv_handle_t* handle);
  407. UV_EXTERN void uv_walk(uv_loop_t* loop, uv_walk_cb walk_cb, void* arg);
  408. /* Helpers for ad hoc debugging, no API/ABI stability guaranteed. */
  409. UV_EXTERN void uv_print_all_handles(uv_loop_t* loop, FILE* stream);
  410. UV_EXTERN void uv_print_active_handles(uv_loop_t* loop, FILE* stream);
  411. UV_EXTERN void uv_close(uv_handle_t* handle, uv_close_cb close_cb);
  412. UV_EXTERN int uv_send_buffer_size(uv_handle_t* handle, int* value);
  413. UV_EXTERN int uv_recv_buffer_size(uv_handle_t* handle, int* value);
  414. UV_EXTERN int uv_fileno(const uv_handle_t* handle, uv_os_fd_t* fd);
  415. UV_EXTERN uv_buf_t uv_buf_init(char* base, unsigned int len);
  416. #define UV_STREAM_FIELDS \
  417. /* number of bytes queued for writing */ \
  418. size_t write_queue_size; \
  419. uv_alloc_cb alloc_cb; \
  420. uv_read_cb read_cb; \
  421. /* private */ \
  422. UV_STREAM_PRIVATE_FIELDS
  423. /*
  424. * uv_stream_t is a subclass of uv_handle_t.
  425. *
  426. * uv_stream is an abstract class.
  427. *
  428. * uv_stream_t is the parent class of uv_tcp_t, uv_pipe_t and uv_tty_t.
  429. */
  430. struct uv_stream_s {
  431. UV_HANDLE_FIELDS
  432. UV_STREAM_FIELDS
  433. };
  434. UV_EXTERN size_t uv_stream_get_write_queue_size(const uv_stream_t* stream);
  435. UV_EXTERN int uv_listen(uv_stream_t* stream, int backlog, uv_connection_cb cb);
  436. UV_EXTERN int uv_accept(uv_stream_t* server, uv_stream_t* client);
  437. UV_EXTERN int uv_read_start(uv_stream_t*,
  438. uv_alloc_cb alloc_cb,
  439. uv_read_cb read_cb);
  440. UV_EXTERN int uv_read_stop(uv_stream_t*);
  441. UV_EXTERN int uv_write(uv_write_t* req,
  442. uv_stream_t* handle,
  443. const uv_buf_t bufs[],
  444. unsigned int nbufs,
  445. uv_write_cb cb);
  446. UV_EXTERN int uv_write2(uv_write_t* req,
  447. uv_stream_t* handle,
  448. const uv_buf_t bufs[],
  449. unsigned int nbufs,
  450. uv_stream_t* send_handle,
  451. uv_write_cb cb);
  452. UV_EXTERN int uv_try_write(uv_stream_t* handle,
  453. const uv_buf_t bufs[],
  454. unsigned int nbufs);
  455. /* uv_write_t is a subclass of uv_req_t. */
  456. struct uv_write_s {
  457. UV_REQ_FIELDS
  458. uv_write_cb cb;
  459. uv_stream_t* send_handle; /* TODO: make private and unix-only in v2.x. */
  460. uv_stream_t* handle;
  461. UV_WRITE_PRIVATE_FIELDS
  462. };
  463. UV_EXTERN int uv_is_readable(const uv_stream_t* handle);
  464. UV_EXTERN int uv_is_writable(const uv_stream_t* handle);
  465. UV_EXTERN int uv_stream_set_blocking(uv_stream_t* handle, int blocking);
  466. UV_EXTERN int uv_is_closing(const uv_handle_t* handle);
  467. /*
  468. * uv_tcp_t is a subclass of uv_stream_t.
  469. *
  470. * Represents a TCP stream or TCP server.
  471. */
  472. struct uv_tcp_s {
  473. UV_HANDLE_FIELDS
  474. UV_STREAM_FIELDS
  475. UV_TCP_PRIVATE_FIELDS
  476. };
  477. UV_EXTERN int uv_tcp_init(uv_loop_t*, uv_tcp_t* handle);
  478. UV_EXTERN int uv_tcp_init_ex(uv_loop_t*, uv_tcp_t* handle, unsigned int flags);
  479. UV_EXTERN int uv_tcp_open(uv_tcp_t* handle, uv_os_sock_t sock);
  480. UV_EXTERN int uv_tcp_nodelay(uv_tcp_t* handle, int enable);
  481. UV_EXTERN int uv_tcp_keepalive(uv_tcp_t* handle,
  482. int enable,
  483. unsigned int delay);
  484. UV_EXTERN int uv_tcp_simultaneous_accepts(uv_tcp_t* handle, int enable);
  485. enum uv_tcp_flags {
  486. /* Used with uv_tcp_bind, when an IPv6 address is used. */
  487. UV_TCP_IPV6ONLY = 1
  488. };
  489. UV_EXTERN int uv_tcp_bind(uv_tcp_t* handle,
  490. const struct sockaddr* addr,
  491. unsigned int flags);
  492. UV_EXTERN int uv_tcp_getsockname(const uv_tcp_t* handle,
  493. struct sockaddr* name,
  494. int* namelen);
  495. UV_EXTERN int uv_tcp_getpeername(const uv_tcp_t* handle,
  496. struct sockaddr* name,
  497. int* namelen);
  498. UV_EXTERN int uv_tcp_close_reset(uv_tcp_t* handle, uv_close_cb close_cb);
  499. UV_EXTERN int uv_tcp_connect(uv_connect_t* req,
  500. uv_tcp_t* handle,
  501. const struct sockaddr* addr,
  502. uv_connect_cb cb);
  503. /* uv_connect_t is a subclass of uv_req_t. */
  504. struct uv_connect_s {
  505. UV_REQ_FIELDS
  506. uv_connect_cb cb;
  507. uv_stream_t* handle;
  508. UV_CONNECT_PRIVATE_FIELDS
  509. };
  510. /*
  511. * UDP support.
  512. */
  513. enum uv_udp_flags {
  514. /* Disables dual stack mode. */
  515. UV_UDP_IPV6ONLY = 1,
  516. /*
  517. * Indicates message was truncated because read buffer was too small. The
  518. * remainder was discarded by the OS. Used in uv_udp_recv_cb.
  519. */
  520. UV_UDP_PARTIAL = 2,
  521. /*
  522. * Indicates if SO_REUSEADDR will be set when binding the handle.
  523. * This sets the SO_REUSEPORT socket flag on the BSDs and OS X. On other
  524. * Unix platforms, it sets the SO_REUSEADDR flag. What that means is that
  525. * multiple threads or processes can bind to the same address without error
  526. * (provided they all set the flag) but only the last one to bind will receive
  527. * any traffic, in effect "stealing" the port from the previous listener.
  528. */
  529. UV_UDP_REUSEADDR = 4,
  530. /*
  531. * Indicates that the message was received by recvmmsg, so the buffer provided
  532. * must not be freed by the recv_cb callback.
  533. */
  534. UV_UDP_MMSG_CHUNK = 8,
  535. /*
  536. * Indicates that the buffer provided has been fully utilized by recvmmsg and
  537. * that it should now be freed by the recv_cb callback. When this flag is set
  538. * in uv_udp_recv_cb, nread will always be 0 and addr will always be NULL.
  539. */
  540. UV_UDP_MMSG_FREE = 16,
  541. /*
  542. * Indicates that recvmmsg should be used, if available.
  543. */
  544. UV_UDP_RECVMMSG = 256
  545. };
  546. typedef void (*uv_udp_send_cb)(uv_udp_send_t* req, int status);
  547. typedef void (*uv_udp_recv_cb)(uv_udp_t* handle,
  548. ssize_t nread,
  549. const uv_buf_t* buf,
  550. const struct sockaddr* addr,
  551. unsigned flags);
  552. /* uv_udp_t is a subclass of uv_handle_t. */
  553. struct uv_udp_s {
  554. UV_HANDLE_FIELDS
  555. /* read-only */
  556. /*
  557. * Number of bytes queued for sending. This field strictly shows how much
  558. * information is currently queued.
  559. */
  560. size_t send_queue_size;
  561. /*
  562. * Number of send requests currently in the queue awaiting to be processed.
  563. */
  564. size_t send_queue_count;
  565. UV_UDP_PRIVATE_FIELDS
  566. };
  567. /* uv_udp_send_t is a subclass of uv_req_t. */
  568. struct uv_udp_send_s {
  569. UV_REQ_FIELDS
  570. uv_udp_t* handle;
  571. uv_udp_send_cb cb;
  572. UV_UDP_SEND_PRIVATE_FIELDS
  573. };
  574. UV_EXTERN int uv_udp_init(uv_loop_t*, uv_udp_t* handle);
  575. UV_EXTERN int uv_udp_init_ex(uv_loop_t*, uv_udp_t* handle, unsigned int flags);
  576. UV_EXTERN int uv_udp_open(uv_udp_t* handle, uv_os_sock_t sock);
  577. UV_EXTERN int uv_udp_bind(uv_udp_t* handle,
  578. const struct sockaddr* addr,
  579. unsigned int flags);
  580. UV_EXTERN int uv_udp_connect(uv_udp_t* handle, const struct sockaddr* addr);
  581. UV_EXTERN int uv_udp_getpeername(const uv_udp_t* handle,
  582. struct sockaddr* name,
  583. int* namelen);
  584. UV_EXTERN int uv_udp_getsockname(const uv_udp_t* handle,
  585. struct sockaddr* name,
  586. int* namelen);
  587. UV_EXTERN int uv_udp_set_membership(uv_udp_t* handle,
  588. const char* multicast_addr,
  589. const char* interface_addr,
  590. uv_membership membership);
  591. UV_EXTERN int uv_udp_set_source_membership(uv_udp_t* handle,
  592. const char* multicast_addr,
  593. const char* interface_addr,
  594. const char* source_addr,
  595. uv_membership membership);
  596. UV_EXTERN int uv_udp_set_multicast_loop(uv_udp_t* handle, int on);
  597. UV_EXTERN int uv_udp_set_multicast_ttl(uv_udp_t* handle, int ttl);
  598. UV_EXTERN int uv_udp_set_multicast_interface(uv_udp_t* handle,
  599. const char* interface_addr);
  600. UV_EXTERN int uv_udp_set_broadcast(uv_udp_t* handle, int on);
  601. UV_EXTERN int uv_udp_set_ttl(uv_udp_t* handle, int ttl);
  602. UV_EXTERN int uv_udp_send(uv_udp_send_t* req,
  603. uv_udp_t* handle,
  604. const uv_buf_t bufs[],
  605. unsigned int nbufs,
  606. const struct sockaddr* addr,
  607. uv_udp_send_cb send_cb);
  608. UV_EXTERN int uv_udp_try_send(uv_udp_t* handle,
  609. const uv_buf_t bufs[],
  610. unsigned int nbufs,
  611. const struct sockaddr* addr);
  612. UV_EXTERN int uv_udp_recv_start(uv_udp_t* handle,
  613. uv_alloc_cb alloc_cb,
  614. uv_udp_recv_cb recv_cb);
  615. UV_EXTERN int uv_udp_using_recvmmsg(const uv_udp_t* handle);
  616. UV_EXTERN int uv_udp_recv_stop(uv_udp_t* handle);
  617. UV_EXTERN size_t uv_udp_get_send_queue_size(const uv_udp_t* handle);
  618. UV_EXTERN size_t uv_udp_get_send_queue_count(const uv_udp_t* handle);
  619. /*
  620. * uv_tty_t is a subclass of uv_stream_t.
  621. *
  622. * Representing a stream for the console.
  623. */
  624. struct uv_tty_s {
  625. UV_HANDLE_FIELDS
  626. UV_STREAM_FIELDS
  627. UV_TTY_PRIVATE_FIELDS
  628. };
  629. typedef enum {
  630. /* Initial/normal terminal mode */
  631. UV_TTY_MODE_NORMAL,
  632. /* Raw input mode (On Windows, ENABLE_WINDOW_INPUT is also enabled) */
  633. UV_TTY_MODE_RAW,
  634. /* Binary-safe I/O mode for IPC (Unix-only) */
  635. UV_TTY_MODE_IO
  636. } uv_tty_mode_t;
  637. typedef enum {
  638. /*
  639. * The console supports handling of virtual terminal sequences
  640. * (Windows10 new console, ConEmu)
  641. */
  642. UV_TTY_SUPPORTED,
  643. /* The console cannot process the virtual terminal sequence. (Legacy
  644. * console)
  645. */
  646. UV_TTY_UNSUPPORTED
  647. } uv_tty_vtermstate_t;
  648. UV_EXTERN int uv_tty_init(uv_loop_t*, uv_tty_t*, uv_file fd, int readable);
  649. UV_EXTERN int uv_tty_set_mode(uv_tty_t*, uv_tty_mode_t mode);
  650. UV_EXTERN int uv_tty_reset_mode(void);
  651. UV_EXTERN int uv_tty_get_winsize(uv_tty_t*, int* width, int* height);
  652. UV_EXTERN void uv_tty_set_vterm_state(uv_tty_vtermstate_t state);
  653. UV_EXTERN int uv_tty_get_vterm_state(uv_tty_vtermstate_t* state);
  654. #ifdef __cplusplus
  655. extern "C++" {
  656. inline int uv_tty_set_mode(uv_tty_t* handle, int mode) {
  657. return uv_tty_set_mode(handle, static_cast<uv_tty_mode_t>(mode));
  658. }
  659. }
  660. #endif
  661. UV_EXTERN uv_handle_type uv_guess_handle(uv_file file);
  662. /*
  663. * uv_pipe_t is a subclass of uv_stream_t.
  664. *
  665. * Representing a pipe stream or pipe server. On Windows this is a Named
  666. * Pipe. On Unix this is a Unix domain socket.
  667. */
  668. struct uv_pipe_s {
  669. UV_HANDLE_FIELDS
  670. UV_STREAM_FIELDS
  671. int ipc; /* non-zero if this pipe is used for passing handles */
  672. UV_PIPE_PRIVATE_FIELDS
  673. };
  674. UV_EXTERN int uv_pipe_init(uv_loop_t*, uv_pipe_t* handle, int ipc);
  675. UV_EXTERN int uv_pipe_open(uv_pipe_t*, uv_file file);
  676. UV_EXTERN int uv_pipe_bind(uv_pipe_t* handle, const char* name);
  677. UV_EXTERN void uv_pipe_connect(uv_connect_t* req,
  678. uv_pipe_t* handle,
  679. const char* name,
  680. uv_connect_cb cb);
  681. UV_EXTERN int uv_pipe_getsockname(const uv_pipe_t* handle,
  682. char* buffer,
  683. size_t* size);
  684. UV_EXTERN int uv_pipe_getpeername(const uv_pipe_t* handle,
  685. char* buffer,
  686. size_t* size);
  687. UV_EXTERN void uv_pipe_pending_instances(uv_pipe_t* handle, int count);
  688. UV_EXTERN int uv_pipe_pending_count(uv_pipe_t* handle);
  689. UV_EXTERN uv_handle_type uv_pipe_pending_type(uv_pipe_t* handle);
  690. UV_EXTERN int uv_pipe_chmod(uv_pipe_t* handle, int flags);
  691. struct uv_poll_s {
  692. UV_HANDLE_FIELDS
  693. uv_poll_cb poll_cb;
  694. UV_POLL_PRIVATE_FIELDS
  695. };
  696. enum uv_poll_event {
  697. UV_READABLE = 1,
  698. UV_WRITABLE = 2,
  699. UV_DISCONNECT = 4,
  700. UV_PRIORITIZED = 8
  701. };
  702. UV_EXTERN int uv_poll_init(uv_loop_t* loop, uv_poll_t* handle, int fd);
  703. UV_EXTERN int uv_poll_init_socket(uv_loop_t* loop,
  704. uv_poll_t* handle,
  705. uv_os_sock_t socket);
  706. UV_EXTERN int uv_poll_start(uv_poll_t* handle, int events, uv_poll_cb cb);
  707. UV_EXTERN int uv_poll_stop(uv_poll_t* handle);
  708. struct uv_prepare_s {
  709. UV_HANDLE_FIELDS
  710. UV_PREPARE_PRIVATE_FIELDS
  711. };
  712. UV_EXTERN int uv_prepare_init(uv_loop_t*, uv_prepare_t* prepare);
  713. UV_EXTERN int uv_prepare_start(uv_prepare_t* prepare, uv_prepare_cb cb);
  714. UV_EXTERN int uv_prepare_stop(uv_prepare_t* prepare);
  715. struct uv_check_s {
  716. UV_HANDLE_FIELDS
  717. UV_CHECK_PRIVATE_FIELDS
  718. };
  719. UV_EXTERN int uv_check_init(uv_loop_t*, uv_check_t* check);
  720. UV_EXTERN int uv_check_start(uv_check_t* check, uv_check_cb cb);
  721. UV_EXTERN int uv_check_stop(uv_check_t* check);
  722. struct uv_idle_s {
  723. UV_HANDLE_FIELDS
  724. UV_IDLE_PRIVATE_FIELDS
  725. };
  726. UV_EXTERN int uv_idle_init(uv_loop_t*, uv_idle_t* idle);
  727. UV_EXTERN int uv_idle_start(uv_idle_t* idle, uv_idle_cb cb);
  728. UV_EXTERN int uv_idle_stop(uv_idle_t* idle);
  729. struct uv_async_s {
  730. UV_HANDLE_FIELDS
  731. UV_ASYNC_PRIVATE_FIELDS
  732. };
  733. UV_EXTERN int uv_async_init(uv_loop_t*,
  734. uv_async_t* async,
  735. uv_async_cb async_cb);
  736. UV_EXTERN int uv_async_send(uv_async_t* async);
  737. /*
  738. * uv_timer_t is a subclass of uv_handle_t.
  739. *
  740. * Used to get woken up at a specified time in the future.
  741. */
  742. struct uv_timer_s {
  743. UV_HANDLE_FIELDS
  744. UV_TIMER_PRIVATE_FIELDS
  745. };
  746. UV_EXTERN int uv_timer_init(uv_loop_t*, uv_timer_t* handle);
  747. UV_EXTERN int uv_timer_start(uv_timer_t* handle,
  748. uv_timer_cb cb,
  749. uint64_t timeout,
  750. uint64_t repeat);
  751. UV_EXTERN int uv_timer_stop(uv_timer_t* handle);
  752. UV_EXTERN int uv_timer_again(uv_timer_t* handle);
  753. UV_EXTERN void uv_timer_set_repeat(uv_timer_t* handle, uint64_t repeat);
  754. UV_EXTERN uint64_t uv_timer_get_repeat(const uv_timer_t* handle);
  755. UV_EXTERN uint64_t uv_timer_get_due_in(const uv_timer_t* handle);
  756. /*
  757. * uv_getaddrinfo_t is a subclass of uv_req_t.
  758. *
  759. * Request object for uv_getaddrinfo.
  760. */
  761. struct uv_getaddrinfo_s {
  762. UV_REQ_FIELDS
  763. /* read-only */
  764. uv_loop_t* loop;
  765. /* struct addrinfo* addrinfo is marked as private, but it really isn't. */
  766. UV_GETADDRINFO_PRIVATE_FIELDS
  767. };
  768. UV_EXTERN int uv_getaddrinfo(uv_loop_t* loop,
  769. uv_getaddrinfo_t* req,
  770. uv_getaddrinfo_cb getaddrinfo_cb,
  771. const char* node,
  772. const char* service,
  773. const struct addrinfo* hints);
  774. UV_EXTERN void uv_freeaddrinfo(struct addrinfo* ai);
  775. /*
  776. * uv_getnameinfo_t is a subclass of uv_req_t.
  777. *
  778. * Request object for uv_getnameinfo.
  779. */
  780. struct uv_getnameinfo_s {
  781. UV_REQ_FIELDS
  782. /* read-only */
  783. uv_loop_t* loop;
  784. /* host and service are marked as private, but they really aren't. */
  785. UV_GETNAMEINFO_PRIVATE_FIELDS
  786. };
  787. UV_EXTERN int uv_getnameinfo(uv_loop_t* loop,
  788. uv_getnameinfo_t* req,
  789. uv_getnameinfo_cb getnameinfo_cb,
  790. const struct sockaddr* addr,
  791. int flags);
  792. /* uv_spawn() options. */
  793. typedef enum {
  794. UV_IGNORE = 0x00,
  795. UV_CREATE_PIPE = 0x01,
  796. UV_INHERIT_FD = 0x02,
  797. UV_INHERIT_STREAM = 0x04,
  798. /*
  799. * When UV_CREATE_PIPE is specified, UV_READABLE_PIPE and UV_WRITABLE_PIPE
  800. * determine the direction of flow, from the child process' perspective. Both
  801. * flags may be specified to create a duplex data stream.
  802. */
  803. UV_READABLE_PIPE = 0x10,
  804. UV_WRITABLE_PIPE = 0x20,
  805. /*
  806. * Open the child pipe handle in overlapped mode on Windows.
  807. * On Unix it is silently ignored.
  808. */
  809. UV_OVERLAPPED_PIPE = 0x40
  810. } uv_stdio_flags;
  811. typedef struct uv_stdio_container_s {
  812. uv_stdio_flags flags;
  813. union {
  814. uv_stream_t* stream;
  815. int fd;
  816. } data;
  817. } uv_stdio_container_t;
  818. typedef struct uv_process_options_s {
  819. uv_exit_cb exit_cb; /* Called after the process exits. */
  820. const char* file; /* Path to program to execute. */
  821. /*
  822. * Command line arguments. args[0] should be the path to the program. On
  823. * Windows this uses CreateProcess which concatenates the arguments into a
  824. * string this can cause some strange errors. See the note at
  825. * windows_verbatim_arguments.
  826. */
  827. char** args;
  828. /*
  829. * This will be set as the environ variable in the subprocess. If this is
  830. * NULL then the parents environ will be used.
  831. */
  832. char** env;
  833. /*
  834. * If non-null this represents a directory the subprocess should execute
  835. * in. Stands for current working directory.
  836. */
  837. const char* cwd;
  838. /*
  839. * Various flags that control how uv_spawn() behaves. See the definition of
  840. * `enum uv_process_flags` below.
  841. */
  842. unsigned int flags;
  843. /*
  844. * The `stdio` field points to an array of uv_stdio_container_t structs that
  845. * describe the file descriptors that will be made available to the child
  846. * process. The convention is that stdio[0] points to stdin, fd 1 is used for
  847. * stdout, and fd 2 is stderr.
  848. *
  849. * Note that on windows file descriptors greater than 2 are available to the
  850. * child process only if the child processes uses the MSVCRT runtime.
  851. */
  852. int stdio_count;
  853. uv_stdio_container_t* stdio;
  854. /*
  855. * Libuv can change the child process' user/group id. This happens only when
  856. * the appropriate bits are set in the flags fields. This is not supported on
  857. * windows; uv_spawn() will fail and set the error to UV_ENOTSUP.
  858. */
  859. uv_uid_t uid;
  860. uv_gid_t gid;
  861. /*
  862. Libuv can set the child process' CPU affinity mask. This happens when
  863. `cpumask` is non-NULL. It must point to an array of char values
  864. of length `cpumask_size`, whose value must be at least that returned by
  865. uv_cpumask_size(). Each byte in the mask can be either zero (false)
  866. or non-zero (true) to indicate whether the corresponding processor at
  867. that index is included.
  868. If enabled on an unsupported platform, uv_spawn() will fail with
  869. UV_ENOTSUP.
  870. */
  871. char* cpumask;
  872. size_t cpumask_size;
  873. } uv_process_options_t;
  874. /*
  875. * These are the flags that can be used for the uv_process_options.flags field.
  876. */
  877. enum uv_process_flags {
  878. /*
  879. * Set the child process' user id. The user id is supplied in the `uid` field
  880. * of the options struct. This does not work on windows; setting this flag
  881. * will cause uv_spawn() to fail.
  882. */
  883. UV_PROCESS_SETUID = (1 << 0),
  884. /*
  885. * Set the child process' group id. The user id is supplied in the `gid`
  886. * field of the options struct. This does not work on windows; setting this
  887. * flag will cause uv_spawn() to fail.
  888. */
  889. UV_PROCESS_SETGID = (1 << 1),
  890. /*
  891. * Do not wrap any arguments in quotes, or perform any other escaping, when
  892. * converting the argument list into a command line string. This option is
  893. * only meaningful on Windows systems. On Unix it is silently ignored.
  894. */
  895. UV_PROCESS_WINDOWS_VERBATIM_ARGUMENTS = (1 << 2),
  896. /*
  897. * Spawn the child process in a detached state - this will make it a process
  898. * group leader, and will effectively enable the child to keep running after
  899. * the parent exits. Note that the child process will still keep the
  900. * parent's event loop alive unless the parent process calls uv_unref() on
  901. * the child's process handle.
  902. */
  903. UV_PROCESS_DETACHED = (1 << 3),
  904. /*
  905. * Hide the subprocess window that would normally be created. This option is
  906. * only meaningful on Windows systems. On Unix it is silently ignored.
  907. */
  908. UV_PROCESS_WINDOWS_HIDE = (1 << 4),
  909. /*
  910. * Hide the subprocess console window that would normally be created. This
  911. * option is only meaningful on Windows systems. On Unix it is silently
  912. * ignored.
  913. */
  914. UV_PROCESS_WINDOWS_HIDE_CONSOLE = (1 << 5),
  915. /*
  916. * Hide the subprocess GUI window that would normally be created. This
  917. * option is only meaningful on Windows systems. On Unix it is silently
  918. * ignored.
  919. */
  920. UV_PROCESS_WINDOWS_HIDE_GUI = (1 << 6)
  921. };
  922. /*
  923. * uv_process_t is a subclass of uv_handle_t.
  924. */
  925. struct uv_process_s {
  926. UV_HANDLE_FIELDS
  927. uv_exit_cb exit_cb;
  928. int pid;
  929. UV_PROCESS_PRIVATE_FIELDS
  930. };
  931. UV_EXTERN int uv_spawn(uv_loop_t* loop,
  932. uv_process_t* handle,
  933. const uv_process_options_t* options);
  934. UV_EXTERN int uv_process_kill(uv_process_t*, int signum);
  935. UV_EXTERN int uv_kill(int pid, int signum);
  936. UV_EXTERN uv_pid_t uv_process_get_pid(const uv_process_t*);
  937. /*
  938. * uv_work_t is a subclass of uv_req_t.
  939. */
  940. struct uv_work_s {
  941. UV_REQ_FIELDS
  942. uv_loop_t* loop;
  943. uv_work_cb work_cb;
  944. uv_after_work_cb after_work_cb;
  945. UV_WORK_PRIVATE_FIELDS
  946. };
  947. UV_EXTERN int uv_queue_work(uv_loop_t* loop,
  948. uv_work_t* req,
  949. uv_work_cb work_cb,
  950. uv_after_work_cb after_work_cb);
  951. UV_EXTERN int uv_cancel(uv_req_t* req);
  952. struct uv_cpu_times_s {
  953. uint64_t user; /* milliseconds */
  954. uint64_t nice; /* milliseconds */
  955. uint64_t sys; /* milliseconds */
  956. uint64_t idle; /* milliseconds */
  957. uint64_t irq; /* milliseconds */
  958. };
  959. struct uv_cpu_info_s {
  960. char* model;
  961. int speed;
  962. struct uv_cpu_times_s cpu_times;
  963. };
  964. struct uv_interface_address_s {
  965. char* name;
  966. char phys_addr[6];
  967. int is_internal;
  968. union {
  969. struct sockaddr_in address4;
  970. struct sockaddr_in6 address6;
  971. } address;
  972. union {
  973. struct sockaddr_in netmask4;
  974. struct sockaddr_in6 netmask6;
  975. } netmask;
  976. };
  977. struct uv_passwd_s {
  978. char* username;
  979. long uid;
  980. long gid;
  981. char* shell;
  982. char* homedir;
  983. };
  984. struct uv_utsname_s {
  985. char sysname[256];
  986. char release[256];
  987. char version[256];
  988. char machine[256];
  989. /* This struct does not contain the nodename and domainname fields present in
  990. the utsname type. domainname is a GNU extension. Both fields are referred
  991. to as meaningless in the docs. */
  992. };
  993. struct uv_statfs_s {
  994. uint64_t f_type;
  995. uint64_t f_bsize;
  996. uint64_t f_blocks;
  997. uint64_t f_bfree;
  998. uint64_t f_bavail;
  999. uint64_t f_files;
  1000. uint64_t f_ffree;
  1001. uint64_t f_spare[4];
  1002. };
  1003. typedef enum {
  1004. UV_DIRENT_UNKNOWN,
  1005. UV_DIRENT_FILE,
  1006. UV_DIRENT_DIR,
  1007. UV_DIRENT_LINK,
  1008. UV_DIRENT_FIFO,
  1009. UV_DIRENT_SOCKET,
  1010. UV_DIRENT_CHAR,
  1011. UV_DIRENT_BLOCK
  1012. } uv_dirent_type_t;
  1013. struct uv_dirent_s {
  1014. const char* name;
  1015. uv_dirent_type_t type;
  1016. };
  1017. UV_EXTERN char** uv_setup_args(int argc, char** argv);
  1018. UV_EXTERN int uv_get_process_title(char* buffer, size_t size);
  1019. UV_EXTERN int uv_set_process_title(const char* title);
  1020. UV_EXTERN int uv_resident_set_memory(size_t* rss);
  1021. UV_EXTERN int uv_uptime(double* uptime);
  1022. UV_EXTERN uv_os_fd_t uv_get_osfhandle(int fd);
  1023. UV_EXTERN int uv_open_osfhandle(uv_os_fd_t os_fd);
  1024. typedef struct {
  1025. long tv_sec;
  1026. long tv_usec;
  1027. } uv_timeval_t;
  1028. typedef struct {
  1029. int64_t tv_sec;
  1030. int32_t tv_usec;
  1031. } uv_timeval64_t;
  1032. typedef struct {
  1033. uv_timeval_t ru_utime; /* user CPU time used */
  1034. uv_timeval_t ru_stime; /* system CPU time used */
  1035. uint64_t ru_maxrss; /* maximum resident set size */
  1036. uint64_t ru_ixrss; /* integral shared memory size */
  1037. uint64_t ru_idrss; /* integral unshared data size */
  1038. uint64_t ru_isrss; /* integral unshared stack size */
  1039. uint64_t ru_minflt; /* page reclaims (soft page faults) */
  1040. uint64_t ru_majflt; /* page faults (hard page faults) */
  1041. uint64_t ru_nswap; /* swaps */
  1042. uint64_t ru_inblock; /* block input operations */
  1043. uint64_t ru_oublock; /* block output operations */
  1044. uint64_t ru_msgsnd; /* IPC messages sent */
  1045. uint64_t ru_msgrcv; /* IPC messages received */
  1046. uint64_t ru_nsignals; /* signals received */
  1047. uint64_t ru_nvcsw; /* voluntary context switches */
  1048. uint64_t ru_nivcsw; /* involuntary context switches */
  1049. } uv_rusage_t;
  1050. UV_EXTERN int uv_getrusage(uv_rusage_t* rusage);
  1051. UV_EXTERN int uv_os_homedir(char* buffer, size_t* size);
  1052. UV_EXTERN int uv_os_tmpdir(char* buffer, size_t* size);
  1053. UV_EXTERN int uv_os_get_passwd(uv_passwd_t* pwd);
  1054. UV_EXTERN void uv_os_free_passwd(uv_passwd_t* pwd);
  1055. UV_EXTERN uv_pid_t uv_os_getpid(void);
  1056. UV_EXTERN uv_pid_t uv_os_getppid(void);
  1057. #if defined(__PASE__)
  1058. /* On IBM i PASE, the highest process priority is -10 */
  1059. # define UV_PRIORITY_LOW 39 /* RUNPTY(99) */
  1060. # define UV_PRIORITY_BELOW_NORMAL 15 /* RUNPTY(50) */
  1061. # define UV_PRIORITY_NORMAL 0 /* RUNPTY(20) */
  1062. # define UV_PRIORITY_ABOVE_NORMAL -4 /* RUNTY(12) */
  1063. # define UV_PRIORITY_HIGH -7 /* RUNPTY(6) */
  1064. # define UV_PRIORITY_HIGHEST -10 /* RUNPTY(1) */
  1065. #else
  1066. # define UV_PRIORITY_LOW 19
  1067. # define UV_PRIORITY_BELOW_NORMAL 10
  1068. # define UV_PRIORITY_NORMAL 0
  1069. # define UV_PRIORITY_ABOVE_NORMAL -7
  1070. # define UV_PRIORITY_HIGH -14
  1071. # define UV_PRIORITY_HIGHEST -20
  1072. #endif
  1073. UV_EXTERN int uv_os_getpriority(uv_pid_t pid, int* priority);
  1074. UV_EXTERN int uv_os_setpriority(uv_pid_t pid, int priority);
  1075. UV_EXTERN int uv_cpu_info(uv_cpu_info_t** cpu_infos, int* count);
  1076. UV_EXTERN void uv_free_cpu_info(uv_cpu_info_t* cpu_infos, int count);
  1077. UV_EXTERN int uv_cpumask_size(void);
  1078. UV_EXTERN int uv_interface_addresses(uv_interface_address_t** addresses,
  1079. int* count);
  1080. UV_EXTERN void uv_free_interface_addresses(uv_interface_address_t* addresses,
  1081. int count);
  1082. struct uv_env_item_s {
  1083. char* name;
  1084. char* value;
  1085. };
  1086. UV_EXTERN int uv_os_environ(uv_env_item_t** envitems, int* count);
  1087. UV_EXTERN void uv_os_free_environ(uv_env_item_t* envitems, int count);
  1088. UV_EXTERN int uv_os_getenv(const char* name, char* buffer, size_t* size);
  1089. UV_EXTERN int uv_os_setenv(const char* name, const char* value);
  1090. UV_EXTERN int uv_os_unsetenv(const char* name);
  1091. #ifdef MAXHOSTNAMELEN
  1092. # define UV_MAXHOSTNAMESIZE (MAXHOSTNAMELEN + 1)
  1093. #else
  1094. /*
  1095. Fallback for the maximum hostname size, including the null terminator. The
  1096. Windows gethostname() documentation states that 256 bytes will always be
  1097. large enough to hold the null-terminated hostname.
  1098. */
  1099. # define UV_MAXHOSTNAMESIZE 256
  1100. #endif
  1101. UV_EXTERN int uv_os_gethostname(char* buffer, size_t* size);
  1102. UV_EXTERN int uv_os_uname(uv_utsname_t* buffer);
  1103. UV_EXTERN uint64_t uv_metrics_idle_time(uv_loop_t* loop);
  1104. typedef enum {
  1105. UV_FS_UNKNOWN = -1,
  1106. UV_FS_CUSTOM,
  1107. UV_FS_OPEN,
  1108. UV_FS_CLOSE,
  1109. UV_FS_READ,
  1110. UV_FS_WRITE,
  1111. UV_FS_SENDFILE,
  1112. UV_FS_STAT,
  1113. UV_FS_LSTAT,
  1114. UV_FS_FSTAT,
  1115. UV_FS_FTRUNCATE,
  1116. UV_FS_UTIME,
  1117. UV_FS_FUTIME,
  1118. UV_FS_ACCESS,
  1119. UV_FS_CHMOD,
  1120. UV_FS_FCHMOD,
  1121. UV_FS_FSYNC,
  1122. UV_FS_FDATASYNC,
  1123. UV_FS_UNLINK,
  1124. UV_FS_RMDIR,
  1125. UV_FS_MKDIR,
  1126. UV_FS_MKDTEMP,
  1127. UV_FS_RENAME,
  1128. UV_FS_SCANDIR,
  1129. UV_FS_LINK,
  1130. UV_FS_SYMLINK,
  1131. UV_FS_READLINK,
  1132. UV_FS_CHOWN,
  1133. UV_FS_FCHOWN,
  1134. UV_FS_REALPATH,
  1135. UV_FS_COPYFILE,
  1136. UV_FS_LCHOWN,
  1137. UV_FS_OPENDIR,
  1138. UV_FS_READDIR,
  1139. UV_FS_CLOSEDIR,
  1140. UV_FS_STATFS,
  1141. UV_FS_MKSTEMP,
  1142. UV_FS_LUTIME
  1143. } uv_fs_type;
  1144. struct uv_dir_s {
  1145. uv_dirent_t* dirents;
  1146. size_t nentries;
  1147. void* reserved[4];
  1148. UV_DIR_PRIVATE_FIELDS
  1149. };
  1150. /* uv_fs_t is a subclass of uv_req_t. */
  1151. struct uv_fs_s {
  1152. UV_REQ_FIELDS
  1153. uv_fs_type fs_type;
  1154. uv_loop_t* loop;
  1155. uv_fs_cb cb;
  1156. ssize_t result;
  1157. void* ptr;
  1158. const char* path;
  1159. uv_stat_t statbuf; /* Stores the result of uv_fs_stat() and uv_fs_fstat(). */
  1160. UV_FS_PRIVATE_FIELDS
  1161. };
  1162. UV_EXTERN uv_fs_type uv_fs_get_type(const uv_fs_t*);
  1163. UV_EXTERN ssize_t uv_fs_get_result(const uv_fs_t*);
  1164. UV_EXTERN int uv_fs_get_system_error(const uv_fs_t*);
  1165. UV_EXTERN void* uv_fs_get_ptr(const uv_fs_t*);
  1166. UV_EXTERN const char* uv_fs_get_path(const uv_fs_t*);
  1167. UV_EXTERN uv_stat_t* uv_fs_get_statbuf(uv_fs_t*);
  1168. UV_EXTERN void uv_fs_req_cleanup(uv_fs_t* req);
  1169. UV_EXTERN int uv_fs_close(uv_loop_t* loop,
  1170. uv_fs_t* req,
  1171. uv_file file,
  1172. uv_fs_cb cb);
  1173. UV_EXTERN int uv_fs_open(uv_loop_t* loop,
  1174. uv_fs_t* req,
  1175. const char* path,
  1176. int flags,
  1177. int mode,
  1178. uv_fs_cb cb);
  1179. UV_EXTERN int uv_fs_read(uv_loop_t* loop,
  1180. uv_fs_t* req,
  1181. uv_file file,
  1182. const uv_buf_t bufs[],
  1183. unsigned int nbufs,
  1184. int64_t offset,
  1185. uv_fs_cb cb);
  1186. UV_EXTERN int uv_fs_unlink(uv_loop_t* loop,
  1187. uv_fs_t* req,
  1188. const char* path,
  1189. uv_fs_cb cb);
  1190. UV_EXTERN int uv_fs_write(uv_loop_t* loop,
  1191. uv_fs_t* req,
  1192. uv_file file,
  1193. const uv_buf_t bufs[],
  1194. unsigned int nbufs,
  1195. int64_t offset,
  1196. uv_fs_cb cb);
  1197. /*
  1198. * This flag can be used with uv_fs_copyfile() to return an error if the
  1199. * destination already exists.
  1200. */
  1201. #define UV_FS_COPYFILE_EXCL 0x0001
  1202. /*
  1203. * This flag can be used with uv_fs_copyfile() to attempt to create a reflink.
  1204. * If copy-on-write is not supported, a fallback copy mechanism is used.
  1205. */
  1206. #define UV_FS_COPYFILE_FICLONE 0x0002
  1207. /*
  1208. * This flag can be used with uv_fs_copyfile() to attempt to create a reflink.
  1209. * If copy-on-write is not supported, an error is returned.
  1210. */
  1211. #define UV_FS_COPYFILE_FICLONE_FORCE 0x0004
  1212. UV_EXTERN int uv_fs_copyfile(uv_loop_t* loop,
  1213. uv_fs_t* req,
  1214. const char* path,
  1215. const char* new_path,
  1216. int flags,
  1217. uv_fs_cb cb);
  1218. UV_EXTERN int uv_fs_mkdir(uv_loop_t* loop,
  1219. uv_fs_t* req,
  1220. const char* path,
  1221. int mode,
  1222. uv_fs_cb cb);
  1223. UV_EXTERN int uv_fs_mkdtemp(uv_loop_t* loop,
  1224. uv_fs_t* req,
  1225. const char* tpl,
  1226. uv_fs_cb cb);
  1227. UV_EXTERN int uv_fs_mkstemp(uv_loop_t* loop,
  1228. uv_fs_t* req,
  1229. const char* tpl,
  1230. uv_fs_cb cb);
  1231. UV_EXTERN int uv_fs_rmdir(uv_loop_t* loop,
  1232. uv_fs_t* req,
  1233. const char* path,
  1234. uv_fs_cb cb);
  1235. UV_EXTERN int uv_fs_scandir(uv_loop_t* loop,
  1236. uv_fs_t* req,
  1237. const char* path,
  1238. int flags,
  1239. uv_fs_cb cb);
  1240. UV_EXTERN int uv_fs_scandir_next(uv_fs_t* req,
  1241. uv_dirent_t* ent);
  1242. UV_EXTERN int uv_fs_opendir(uv_loop_t* loop,
  1243. uv_fs_t* req,
  1244. const char* path,
  1245. uv_fs_cb cb);
  1246. UV_EXTERN int uv_fs_readdir(uv_loop_t* loop,
  1247. uv_fs_t* req,
  1248. uv_dir_t* dir,
  1249. uv_fs_cb cb);
  1250. UV_EXTERN int uv_fs_closedir(uv_loop_t* loop,
  1251. uv_fs_t* req,
  1252. uv_dir_t* dir,
  1253. uv_fs_cb cb);
  1254. UV_EXTERN int uv_fs_stat(uv_loop_t* loop,
  1255. uv_fs_t* req,
  1256. const char* path,
  1257. uv_fs_cb cb);
  1258. UV_EXTERN int uv_fs_fstat(uv_loop_t* loop,
  1259. uv_fs_t* req,
  1260. uv_file file,
  1261. uv_fs_cb cb);
  1262. UV_EXTERN int uv_fs_rename(uv_loop_t* loop,
  1263. uv_fs_t* req,
  1264. const char* path,
  1265. const char* new_path,
  1266. uv_fs_cb cb);
  1267. UV_EXTERN int uv_fs_fsync(uv_loop_t* loop,
  1268. uv_fs_t* req,
  1269. uv_file file,
  1270. uv_fs_cb cb);
  1271. UV_EXTERN int uv_fs_fdatasync(uv_loop_t* loop,
  1272. uv_fs_t* req,
  1273. uv_file file,
  1274. uv_fs_cb cb);
  1275. UV_EXTERN int uv_fs_ftruncate(uv_loop_t* loop,
  1276. uv_fs_t* req,
  1277. uv_file file,
  1278. int64_t offset,
  1279. uv_fs_cb cb);
  1280. UV_EXTERN int uv_fs_sendfile(uv_loop_t* loop,
  1281. uv_fs_t* req,
  1282. uv_file out_fd,
  1283. uv_file in_fd,
  1284. int64_t in_offset,
  1285. size_t length,
  1286. uv_fs_cb cb);
  1287. UV_EXTERN int uv_fs_access(uv_loop_t* loop,
  1288. uv_fs_t* req,
  1289. const char* path,
  1290. int mode,
  1291. uv_fs_cb cb);
  1292. UV_EXTERN int uv_fs_chmod(uv_loop_t* loop,
  1293. uv_fs_t* req,
  1294. const char* path,
  1295. int mode,
  1296. uv_fs_cb cb);
  1297. UV_EXTERN int uv_fs_utime(uv_loop_t* loop,
  1298. uv_fs_t* req,
  1299. const char* path,
  1300. double atime,
  1301. double mtime,
  1302. uv_fs_cb cb);
  1303. UV_EXTERN int uv_fs_futime(uv_loop_t* loop,
  1304. uv_fs_t* req,
  1305. uv_file file,
  1306. double atime,
  1307. double mtime,
  1308. uv_fs_cb cb);
  1309. UV_EXTERN int uv_fs_lutime(uv_loop_t* loop,
  1310. uv_fs_t* req,
  1311. const char* path,
  1312. double atime,
  1313. double mtime,
  1314. uv_fs_cb cb);
  1315. UV_EXTERN int uv_fs_lstat(uv_loop_t* loop,
  1316. uv_fs_t* req,
  1317. const char* path,
  1318. uv_fs_cb cb);
  1319. UV_EXTERN int uv_fs_link(uv_loop_t* loop,
  1320. uv_fs_t* req,
  1321. const char* path,
  1322. const char* new_path,
  1323. uv_fs_cb cb);
  1324. /*
  1325. * This flag can be used with uv_fs_symlink() on Windows to specify whether
  1326. * path argument points to a directory.
  1327. */
  1328. #define UV_FS_SYMLINK_DIR 0x0001
  1329. /*
  1330. * This flag can be used with uv_fs_symlink() on Windows to specify whether
  1331. * the symlink is to be created using junction points.
  1332. */
  1333. #define UV_FS_SYMLINK_JUNCTION 0x0002
  1334. UV_EXTERN int uv_fs_symlink(uv_loop_t* loop,
  1335. uv_fs_t* req,
  1336. const char* path,
  1337. const char* new_path,
  1338. int flags,
  1339. uv_fs_cb cb);
  1340. UV_EXTERN int uv_fs_readlink(uv_loop_t* loop,
  1341. uv_fs_t* req,
  1342. const char* path,
  1343. uv_fs_cb cb);
  1344. UV_EXTERN int uv_fs_realpath(uv_loop_t* loop,
  1345. uv_fs_t* req,
  1346. const char* path,
  1347. uv_fs_cb cb);
  1348. UV_EXTERN int uv_fs_fchmod(uv_loop_t* loop,
  1349. uv_fs_t* req,
  1350. uv_file file,
  1351. int mode,
  1352. uv_fs_cb cb);
  1353. UV_EXTERN int uv_fs_chown(uv_loop_t* loop,
  1354. uv_fs_t* req,
  1355. const char* path,
  1356. uv_uid_t uid,
  1357. uv_gid_t gid,
  1358. uv_fs_cb cb);
  1359. UV_EXTERN int uv_fs_fchown(uv_loop_t* loop,
  1360. uv_fs_t* req,
  1361. uv_file file,
  1362. uv_uid_t uid,
  1363. uv_gid_t gid,
  1364. uv_fs_cb cb);
  1365. UV_EXTERN int uv_fs_lchown(uv_loop_t* loop,
  1366. uv_fs_t* req,
  1367. const char* path,
  1368. uv_uid_t uid,
  1369. uv_gid_t gid,
  1370. uv_fs_cb cb);
  1371. UV_EXTERN int uv_fs_statfs(uv_loop_t* loop,
  1372. uv_fs_t* req,
  1373. const char* path,
  1374. uv_fs_cb cb);
  1375. enum uv_fs_event {
  1376. UV_RENAME = 1,
  1377. UV_CHANGE = 2
  1378. };
  1379. struct uv_fs_event_s {
  1380. UV_HANDLE_FIELDS
  1381. /* private */
  1382. char* path;
  1383. UV_FS_EVENT_PRIVATE_FIELDS
  1384. };
  1385. /*
  1386. * uv_fs_stat() based polling file watcher.
  1387. */
  1388. struct uv_fs_poll_s {
  1389. UV_HANDLE_FIELDS
  1390. /* Private, don't touch. */
  1391. void* poll_ctx;
  1392. };
  1393. UV_EXTERN int uv_fs_poll_init(uv_loop_t* loop, uv_fs_poll_t* handle);
  1394. UV_EXTERN int uv_fs_poll_start(uv_fs_poll_t* handle,
  1395. uv_fs_poll_cb poll_cb,
  1396. const char* path,
  1397. unsigned int interval);
  1398. UV_EXTERN int uv_fs_poll_stop(uv_fs_poll_t* handle);
  1399. UV_EXTERN int uv_fs_poll_getpath(uv_fs_poll_t* handle,
  1400. char* buffer,
  1401. size_t* size);
  1402. struct uv_signal_s {
  1403. UV_HANDLE_FIELDS
  1404. uv_signal_cb signal_cb;
  1405. int signum;
  1406. UV_SIGNAL_PRIVATE_FIELDS
  1407. };
  1408. UV_EXTERN int uv_signal_init(uv_loop_t* loop, uv_signal_t* handle);
  1409. UV_EXTERN int uv_signal_start(uv_signal_t* handle,
  1410. uv_signal_cb signal_cb,
  1411. int signum);
  1412. UV_EXTERN int uv_signal_start_oneshot(uv_signal_t* handle,
  1413. uv_signal_cb signal_cb,
  1414. int signum);
  1415. UV_EXTERN int uv_signal_stop(uv_signal_t* handle);
  1416. UV_EXTERN void uv_loadavg(double avg[3]);
  1417. /*
  1418. * Flags to be passed to uv_fs_event_start().
  1419. */
  1420. enum uv_fs_event_flags {
  1421. /*
  1422. * By default, if the fs event watcher is given a directory name, we will
  1423. * watch for all events in that directory. This flags overrides this behavior
  1424. * and makes fs_event report only changes to the directory entry itself. This
  1425. * flag does not affect individual files watched.
  1426. * This flag is currently not implemented yet on any backend.
  1427. */
  1428. UV_FS_EVENT_WATCH_ENTRY = 1,
  1429. /*
  1430. * By default uv_fs_event will try to use a kernel interface such as inotify
  1431. * or kqueue to detect events. This may not work on remote filesystems such
  1432. * as NFS mounts. This flag makes fs_event fall back to calling stat() on a
  1433. * regular interval.
  1434. * This flag is currently not implemented yet on any backend.
  1435. */
  1436. UV_FS_EVENT_STAT = 2,
  1437. /*
  1438. * By default, event watcher, when watching directory, is not registering
  1439. * (is ignoring) changes in it's subdirectories.
  1440. * This flag will override this behaviour on platforms that support it.
  1441. */
  1442. UV_FS_EVENT_RECURSIVE = 4
  1443. };
  1444. UV_EXTERN int uv_fs_event_init(uv_loop_t* loop, uv_fs_event_t* handle);
  1445. UV_EXTERN int uv_fs_event_start(uv_fs_event_t* handle,
  1446. uv_fs_event_cb cb,
  1447. const char* path,
  1448. unsigned int flags);
  1449. UV_EXTERN int uv_fs_event_stop(uv_fs_event_t* handle);
  1450. UV_EXTERN int uv_fs_event_getpath(uv_fs_event_t* handle,
  1451. char* buffer,
  1452. size_t* size);
  1453. UV_EXTERN int uv_ip4_addr(const char* ip, int port, struct sockaddr_in* addr);
  1454. UV_EXTERN int uv_ip6_addr(const char* ip, int port, struct sockaddr_in6* addr);
  1455. UV_EXTERN int uv_ip4_name(const struct sockaddr_in* src, char* dst, size_t size);
  1456. UV_EXTERN int uv_ip6_name(const struct sockaddr_in6* src, char* dst, size_t size);
  1457. UV_EXTERN int uv_inet_ntop(int af, const void* src, char* dst, size_t size);
  1458. UV_EXTERN int uv_inet_pton(int af, const char* src, void* dst);
  1459. struct uv_random_s {
  1460. UV_REQ_FIELDS
  1461. /* read-only */
  1462. uv_loop_t* loop;
  1463. /* private */
  1464. int status;
  1465. void* buf;
  1466. size_t buflen;
  1467. uv_random_cb cb;
  1468. struct uv__work work_req;
  1469. };
  1470. UV_EXTERN int uv_random(uv_loop_t* loop,
  1471. uv_random_t* req,
  1472. void *buf,
  1473. size_t buflen,
  1474. unsigned flags, /* For future extension; must be 0. */
  1475. uv_random_cb cb);
  1476. #if defined(IF_NAMESIZE)
  1477. # define UV_IF_NAMESIZE (IF_NAMESIZE + 1)
  1478. #elif defined(IFNAMSIZ)
  1479. # define UV_IF_NAMESIZE (IFNAMSIZ + 1)
  1480. #else
  1481. # define UV_IF_NAMESIZE (16 + 1)
  1482. #endif
  1483. UV_EXTERN int uv_if_indextoname(unsigned int ifindex,
  1484. char* buffer,
  1485. size_t* size);
  1486. UV_EXTERN int uv_if_indextoiid(unsigned int ifindex,
  1487. char* buffer,
  1488. size_t* size);
  1489. UV_EXTERN int uv_exepath(char* buffer, size_t* size);
  1490. UV_EXTERN int uv_cwd(char* buffer, size_t* size);
  1491. UV_EXTERN int uv_chdir(const char* dir);
  1492. UV_EXTERN uint64_t uv_get_free_memory(void);
  1493. UV_EXTERN uint64_t uv_get_total_memory(void);
  1494. UV_EXTERN uint64_t uv_get_constrained_memory(void);
  1495. UV_EXTERN uint64_t uv_hrtime(void);
  1496. UV_EXTERN void uv_sleep(unsigned int msec);
  1497. UV_EXTERN void uv_disable_stdio_inheritance(void);
  1498. UV_EXTERN int uv_dlopen(const char* filename, uv_lib_t* lib);
  1499. UV_EXTERN void uv_dlclose(uv_lib_t* lib);
  1500. UV_EXTERN int uv_dlsym(uv_lib_t* lib, const char* name, void** ptr);
  1501. UV_EXTERN const char* uv_dlerror(const uv_lib_t* lib);
  1502. UV_EXTERN int uv_mutex_init(uv_mutex_t* handle);
  1503. UV_EXTERN int uv_mutex_init_recursive(uv_mutex_t* handle);
  1504. UV_EXTERN void uv_mutex_destroy(uv_mutex_t* handle);
  1505. UV_EXTERN void uv_mutex_lock(uv_mutex_t* handle);
  1506. UV_EXTERN int uv_mutex_trylock(uv_mutex_t* handle);
  1507. UV_EXTERN void uv_mutex_unlock(uv_mutex_t* handle);
  1508. UV_EXTERN int uv_rwlock_init(uv_rwlock_t* rwlock);
  1509. UV_EXTERN void uv_rwlock_destroy(uv_rwlock_t* rwlock);
  1510. UV_EXTERN void uv_rwlock_rdlock(uv_rwlock_t* rwlock);
  1511. UV_EXTERN int uv_rwlock_tryrdlock(uv_rwlock_t* rwlock);
  1512. UV_EXTERN void uv_rwlock_rdunlock(uv_rwlock_t* rwlock);
  1513. UV_EXTERN void uv_rwlock_wrlock(uv_rwlock_t* rwlock);
  1514. UV_EXTERN int uv_rwlock_trywrlock(uv_rwlock_t* rwlock);
  1515. UV_EXTERN void uv_rwlock_wrunlock(uv_rwlock_t* rwlock);
  1516. UV_EXTERN int uv_sem_init(uv_sem_t* sem, unsigned int value);
  1517. UV_EXTERN void uv_sem_destroy(uv_sem_t* sem);
  1518. UV_EXTERN void uv_sem_post(uv_sem_t* sem);
  1519. UV_EXTERN void uv_sem_wait(uv_sem_t* sem);
  1520. UV_EXTERN int uv_sem_trywait(uv_sem_t* sem);
  1521. UV_EXTERN int uv_cond_init(uv_cond_t* cond);
  1522. UV_EXTERN void uv_cond_destroy(uv_cond_t* cond);
  1523. UV_EXTERN void uv_cond_signal(uv_cond_t* cond);
  1524. UV_EXTERN void uv_cond_broadcast(uv_cond_t* cond);
  1525. UV_EXTERN int uv_barrier_init(uv_barrier_t* barrier, unsigned int count);
  1526. UV_EXTERN void uv_barrier_destroy(uv_barrier_t* barrier);
  1527. UV_EXTERN int uv_barrier_wait(uv_barrier_t* barrier);
  1528. UV_EXTERN void uv_cond_wait(uv_cond_t* cond, uv_mutex_t* mutex);
  1529. UV_EXTERN int uv_cond_timedwait(uv_cond_t* cond,
  1530. uv_mutex_t* mutex,
  1531. uint64_t timeout);
  1532. UV_EXTERN void uv_once(uv_once_t* guard, void (*callback)(void));
  1533. UV_EXTERN int uv_key_create(uv_key_t* key);
  1534. UV_EXTERN void uv_key_delete(uv_key_t* key);
  1535. UV_EXTERN void* uv_key_get(uv_key_t* key);
  1536. UV_EXTERN void uv_key_set(uv_key_t* key, void* value);
  1537. UV_EXTERN int uv_gettimeofday(uv_timeval64_t* tv);
  1538. typedef void (*uv_thread_cb)(void* arg);
  1539. UV_EXTERN int uv_thread_create(uv_thread_t* tid, uv_thread_cb entry, void* arg);
  1540. typedef enum {
  1541. UV_THREAD_NO_FLAGS = 0x00,
  1542. UV_THREAD_HAS_STACK_SIZE = 0x01
  1543. } uv_thread_create_flags;
  1544. struct uv_thread_options_s {
  1545. unsigned int flags;
  1546. size_t stack_size;
  1547. /* More fields may be added at any time. */
  1548. };
  1549. typedef struct uv_thread_options_s uv_thread_options_t;
  1550. UV_EXTERN int uv_thread_create_ex(uv_thread_t* tid,
  1551. const uv_thread_options_t* params,
  1552. uv_thread_cb entry,
  1553. void* arg);
  1554. UV_EXTERN uv_thread_t uv_thread_self(void);
  1555. UV_EXTERN int uv_thread_join(uv_thread_t *tid);
  1556. UV_EXTERN int uv_thread_equal(const uv_thread_t* t1, const uv_thread_t* t2);
  1557. /* The presence of these unions force similar struct layout. */
  1558. #define XX(_, name) uv_ ## name ## _t name;
  1559. union uv_any_handle {
  1560. UV_HANDLE_TYPE_MAP(XX)
  1561. };
  1562. union uv_any_req {
  1563. UV_REQ_TYPE_MAP(XX)
  1564. };
  1565. #undef XX
  1566. struct uv_loop_s {
  1567. /* User data - use this for whatever. */
  1568. void* data;
  1569. /* Loop reference counting. */
  1570. unsigned int active_handles;
  1571. void* handle_queue[2];
  1572. union {
  1573. void* unused;
  1574. unsigned int count;
  1575. } active_reqs;
  1576. /* Internal storage for future extensions. */
  1577. void* internal_fields;
  1578. /* Internal flag to signal loop stop. */
  1579. unsigned int stop_flag;
  1580. UV_LOOP_PRIVATE_FIELDS
  1581. };
  1582. UV_EXTERN void* uv_loop_get_data(const uv_loop_t*);
  1583. UV_EXTERN void uv_loop_set_data(uv_loop_t*, void* data);
  1584. /* Don't export the private CPP symbols. */
  1585. #undef UV_HANDLE_TYPE_PRIVATE
  1586. #undef UV_REQ_TYPE_PRIVATE
  1587. #undef UV_REQ_PRIVATE_FIELDS
  1588. #undef UV_STREAM_PRIVATE_FIELDS
  1589. #undef UV_TCP_PRIVATE_FIELDS
  1590. #undef UV_PREPARE_PRIVATE_FIELDS
  1591. #undef UV_CHECK_PRIVATE_FIELDS
  1592. #undef UV_IDLE_PRIVATE_FIELDS
  1593. #undef UV_ASYNC_PRIVATE_FIELDS
  1594. #undef UV_TIMER_PRIVATE_FIELDS
  1595. #undef UV_GETADDRINFO_PRIVATE_FIELDS
  1596. #undef UV_GETNAMEINFO_PRIVATE_FIELDS
  1597. #undef UV_FS_REQ_PRIVATE_FIELDS
  1598. #undef UV_WORK_PRIVATE_FIELDS
  1599. #undef UV_FS_EVENT_PRIVATE_FIELDS
  1600. #undef UV_SIGNAL_PRIVATE_FIELDS
  1601. #undef UV_LOOP_PRIVATE_FIELDS
  1602. #undef UV_LOOP_PRIVATE_PLATFORM_FIELDS
  1603. #undef UV__ERR
  1604. #ifdef __cplusplus
  1605. }
  1606. #endif
  1607. #endif /* UV_H */