multi-uv.c 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. /***************************************************************************
  2. * _ _ ____ _
  3. * Project ___| | | | _ \| |
  4. * / __| | | | |_) | |
  5. * | (__| |_| | _ <| |___
  6. * \___|\___/|_| \_\_____|
  7. *
  8. * Copyright (C) 1998 - 2018, Daniel Stenberg, <daniel@haxx.se>, et al.
  9. *
  10. * This software is licensed as described in the file COPYING, which
  11. * you should have received as part of this distribution. The terms
  12. * are also available at https://curl.haxx.se/docs/copyright.html.
  13. *
  14. * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  15. * copies of the Software, and permit persons to whom the Software is
  16. * furnished to do so, under the terms of the COPYING file.
  17. *
  18. * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  19. * KIND, either express or implied.
  20. *
  21. ***************************************************************************/
  22. /* <DESC>
  23. * multi_socket API using libuv
  24. * </DESC>
  25. */
  26. /* Example application using the multi socket interface to download multiple
  27. files in parallel, powered by libuv.
  28. Requires libuv and (of course) libcurl.
  29. See https://nikhilm.github.io/uvbook/ for more information on libuv.
  30. */
  31. #include <stdio.h>
  32. #include <stdlib.h>
  33. #include <uv.h>
  34. #include <curl/curl.h>
  35. uv_loop_t *loop;
  36. CURLM *curl_handle;
  37. uv_timer_t timeout;
  38. typedef struct curl_context_s {
  39. uv_poll_t poll_handle;
  40. curl_socket_t sockfd;
  41. } curl_context_t;
  42. static curl_context_t* create_curl_context(curl_socket_t sockfd)
  43. {
  44. curl_context_t *context;
  45. context = (curl_context_t *) malloc(sizeof(*context));
  46. context->sockfd = sockfd;
  47. uv_poll_init_socket(loop, &context->poll_handle, sockfd);
  48. context->poll_handle.data = context;
  49. return context;
  50. }
  51. static void curl_close_cb(uv_handle_t *handle)
  52. {
  53. curl_context_t *context = (curl_context_t *) handle->data;
  54. free(context);
  55. }
  56. static void destroy_curl_context(curl_context_t *context)
  57. {
  58. uv_close((uv_handle_t *) &context->poll_handle, curl_close_cb);
  59. }
  60. static void add_download(const char *url, int num)
  61. {
  62. char filename[50];
  63. FILE *file;
  64. CURL *handle;
  65. snprintf(filename, 50, "%d.download", num);
  66. file = fopen(filename, "wb");
  67. if(!file) {
  68. fprintf(stderr, "Error opening %s\n", filename);
  69. return;
  70. }
  71. handle = curl_easy_init();
  72. curl_easy_setopt(handle, CURLOPT_WRITEDATA, file);
  73. curl_easy_setopt(handle, CURLOPT_PRIVATE, file);
  74. curl_easy_setopt(handle, CURLOPT_URL, url);
  75. curl_multi_add_handle(curl_handle, handle);
  76. fprintf(stderr, "Added download %s -> %s\n", url, filename);
  77. }
  78. static void check_multi_info(void)
  79. {
  80. char *done_url;
  81. CURLMsg *message;
  82. int pending;
  83. CURL *easy_handle;
  84. FILE *file;
  85. while((message = curl_multi_info_read(curl_handle, &pending))) {
  86. switch(message->msg) {
  87. case CURLMSG_DONE:
  88. /* Do not use message data after calling curl_multi_remove_handle() and
  89. curl_easy_cleanup(). As per curl_multi_info_read() docs:
  90. "WARNING: The data the returned pointer points to will not survive
  91. calling curl_multi_cleanup, curl_multi_remove_handle or
  92. curl_easy_cleanup." */
  93. easy_handle = message->easy_handle;
  94. curl_easy_getinfo(easy_handle, CURLINFO_EFFECTIVE_URL, &done_url);
  95. curl_easy_getinfo(easy_handle, CURLINFO_PRIVATE, &file);
  96. printf("%s DONE\n", done_url);
  97. curl_multi_remove_handle(curl_handle, easy_handle);
  98. curl_easy_cleanup(easy_handle);
  99. if(file) {
  100. fclose(file);
  101. }
  102. break;
  103. default:
  104. fprintf(stderr, "CURLMSG default\n");
  105. break;
  106. }
  107. }
  108. }
  109. static void curl_perform(uv_poll_t *req, int status, int events)
  110. {
  111. int running_handles;
  112. int flags = 0;
  113. curl_context_t *context;
  114. if(events & UV_READABLE)
  115. flags |= CURL_CSELECT_IN;
  116. if(events & UV_WRITABLE)
  117. flags |= CURL_CSELECT_OUT;
  118. context = (curl_context_t *) req->data;
  119. curl_multi_socket_action(curl_handle, context->sockfd, flags,
  120. &running_handles);
  121. check_multi_info();
  122. }
  123. static void on_timeout(uv_timer_t *req)
  124. {
  125. int running_handles;
  126. curl_multi_socket_action(curl_handle, CURL_SOCKET_TIMEOUT, 0,
  127. &running_handles);
  128. check_multi_info();
  129. }
  130. static int start_timeout(CURLM *multi, long timeout_ms, void *userp)
  131. {
  132. if(timeout_ms < 0) {
  133. uv_timer_stop(&timeout);
  134. }
  135. else {
  136. if(timeout_ms == 0)
  137. timeout_ms = 1; /* 0 means directly call socket_action, but we'll do it
  138. in a bit */
  139. uv_timer_start(&timeout, on_timeout, timeout_ms, 0);
  140. }
  141. return 0;
  142. }
  143. static int handle_socket(CURL *easy, curl_socket_t s, int action, void *userp,
  144. void *socketp)
  145. {
  146. curl_context_t *curl_context;
  147. int events = 0;
  148. switch(action) {
  149. case CURL_POLL_IN:
  150. case CURL_POLL_OUT:
  151. case CURL_POLL_INOUT:
  152. curl_context = socketp ?
  153. (curl_context_t *) socketp : create_curl_context(s);
  154. curl_multi_assign(curl_handle, s, (void *) curl_context);
  155. if(action != CURL_POLL_IN)
  156. events |= UV_WRITABLE;
  157. if(action != CURL_POLL_OUT)
  158. events |= UV_READABLE;
  159. uv_poll_start(&curl_context->poll_handle, events, curl_perform);
  160. break;
  161. case CURL_POLL_REMOVE:
  162. if(socketp) {
  163. uv_poll_stop(&((curl_context_t*)socketp)->poll_handle);
  164. destroy_curl_context((curl_context_t*) socketp);
  165. curl_multi_assign(curl_handle, s, NULL);
  166. }
  167. break;
  168. default:
  169. abort();
  170. }
  171. return 0;
  172. }
  173. int main(int argc, char **argv)
  174. {
  175. loop = uv_default_loop();
  176. if(argc <= 1)
  177. return 0;
  178. if(curl_global_init(CURL_GLOBAL_ALL)) {
  179. fprintf(stderr, "Could not init curl\n");
  180. return 1;
  181. }
  182. uv_timer_init(loop, &timeout);
  183. curl_handle = curl_multi_init();
  184. curl_multi_setopt(curl_handle, CURLMOPT_SOCKETFUNCTION, handle_socket);
  185. curl_multi_setopt(curl_handle, CURLMOPT_TIMERFUNCTION, start_timeout);
  186. while(argc-- > 1) {
  187. add_download(argv[argc], argc);
  188. }
  189. uv_run(loop, UV_RUN_DEFAULT);
  190. curl_multi_cleanup(curl_handle);
  191. return 0;
  192. }