hiperfifo.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418
  1. /***************************************************************************
  2. * _ _ ____ _
  3. * Project ___| | | | _ \| |
  4. * / __| | | | |_) | |
  5. * | (__| |_| | _ <| |___
  6. * \___|\___/|_| \_\_____|
  7. *
  8. * Copyright (C) 1998 - 2011, 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 http://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. /* Example application source code using the multi socket interface to
  23. download many files at once.
  24. Written by Jeff Pohlmeyer
  25. Requires libevent and a (POSIX?) system that has mkfifo().
  26. This is an adaptation of libcurl's "hipev.c" and libevent's "event-test.c"
  27. sample programs.
  28. When running, the program creates the named pipe "hiper.fifo"
  29. Whenever there is input into the fifo, the program reads the input as a list
  30. of URL's and creates some new easy handles to fetch each URL via the
  31. curl_multi "hiper" API.
  32. Thus, you can try a single URL:
  33. % echo http://www.yahoo.com > hiper.fifo
  34. Or a whole bunch of them:
  35. % cat my-url-list > hiper.fifo
  36. The fifo buffer is handled almost instantly, so you can even add more URL's
  37. while the previous requests are still being downloaded.
  38. Note:
  39. For the sake of simplicity, URL length is limited to 1023 char's !
  40. This is purely a demo app, all retrieved data is simply discarded by the write
  41. callback.
  42. */
  43. #include <stdio.h>
  44. #include <string.h>
  45. #include <stdlib.h>
  46. #include <sys/time.h>
  47. #include <time.h>
  48. #include <unistd.h>
  49. #include <sys/poll.h>
  50. #include <curl/curl.h>
  51. #include <event.h>
  52. #include <fcntl.h>
  53. #include <sys/stat.h>
  54. #include <errno.h>
  55. #define MSG_OUT stdout /* Send info to stdout, change to stderr if you want */
  56. /* Global information, common to all connections */
  57. typedef struct _GlobalInfo {
  58. struct event fifo_event;
  59. struct event timer_event;
  60. CURLM *multi;
  61. int still_running;
  62. FILE* input;
  63. } GlobalInfo;
  64. /* Information associated with a specific easy handle */
  65. typedef struct _ConnInfo {
  66. CURL *easy;
  67. char *url;
  68. GlobalInfo *global;
  69. char error[CURL_ERROR_SIZE];
  70. } ConnInfo;
  71. /* Information associated with a specific socket */
  72. typedef struct _SockInfo {
  73. curl_socket_t sockfd;
  74. CURL *easy;
  75. int action;
  76. long timeout;
  77. struct event ev;
  78. int evset;
  79. GlobalInfo *global;
  80. } SockInfo;
  81. /* Update the event timer after curl_multi library calls */
  82. static int multi_timer_cb(CURLM *multi, long timeout_ms, GlobalInfo *g)
  83. {
  84. struct timeval timeout;
  85. (void)multi; /* unused */
  86. timeout.tv_sec = timeout_ms/1000;
  87. timeout.tv_usec = (timeout_ms%1000)*1000;
  88. fprintf(MSG_OUT, "multi_timer_cb: Setting timeout to %ld ms\n", timeout_ms);
  89. evtimer_add(&g->timer_event, &timeout);
  90. return 0;
  91. }
  92. /* Die if we get a bad CURLMcode somewhere */
  93. static void mcode_or_die(const char *where, CURLMcode code)
  94. {
  95. if ( CURLM_OK != code ) {
  96. const char *s;
  97. switch (code) {
  98. case CURLM_CALL_MULTI_PERFORM: s="CURLM_CALL_MULTI_PERFORM"; break;
  99. case CURLM_BAD_HANDLE: s="CURLM_BAD_HANDLE"; break;
  100. case CURLM_BAD_EASY_HANDLE: s="CURLM_BAD_EASY_HANDLE"; break;
  101. case CURLM_OUT_OF_MEMORY: s="CURLM_OUT_OF_MEMORY"; break;
  102. case CURLM_INTERNAL_ERROR: s="CURLM_INTERNAL_ERROR"; break;
  103. case CURLM_UNKNOWN_OPTION: s="CURLM_UNKNOWN_OPTION"; break;
  104. case CURLM_LAST: s="CURLM_LAST"; break;
  105. default: s="CURLM_unknown";
  106. break;
  107. case CURLM_BAD_SOCKET: s="CURLM_BAD_SOCKET";
  108. fprintf(MSG_OUT, "ERROR: %s returns %s\n", where, s);
  109. /* ignore this error */
  110. return;
  111. }
  112. fprintf(MSG_OUT, "ERROR: %s returns %s\n", where, s);
  113. exit(code);
  114. }
  115. }
  116. /* Check for completed transfers, and remove their easy handles */
  117. static void check_multi_info(GlobalInfo *g)
  118. {
  119. char *eff_url;
  120. CURLMsg *msg;
  121. int msgs_left;
  122. ConnInfo *conn;
  123. CURL *easy;
  124. CURLcode res;
  125. fprintf(MSG_OUT, "REMAINING: %d\n", g->still_running);
  126. while ((msg = curl_multi_info_read(g->multi, &msgs_left))) {
  127. if (msg->msg == CURLMSG_DONE) {
  128. easy = msg->easy_handle;
  129. res = msg->data.result;
  130. curl_easy_getinfo(easy, CURLINFO_PRIVATE, &conn);
  131. curl_easy_getinfo(easy, CURLINFO_EFFECTIVE_URL, &eff_url);
  132. fprintf(MSG_OUT, "DONE: %s => (%d) %s\n", eff_url, res, conn->error);
  133. curl_multi_remove_handle(g->multi, easy);
  134. free(conn->url);
  135. curl_easy_cleanup(easy);
  136. free(conn);
  137. }
  138. }
  139. }
  140. /* Called by libevent when we get action on a multi socket */
  141. static void event_cb(int fd, short kind, void *userp)
  142. {
  143. GlobalInfo *g = (GlobalInfo*) userp;
  144. CURLMcode rc;
  145. int action =
  146. (kind & EV_READ ? CURL_CSELECT_IN : 0) |
  147. (kind & EV_WRITE ? CURL_CSELECT_OUT : 0);
  148. rc = curl_multi_socket_action(g->multi, fd, action, &g->still_running);
  149. mcode_or_die("event_cb: curl_multi_socket_action", rc);
  150. check_multi_info(g);
  151. if ( g->still_running <= 0 ) {
  152. fprintf(MSG_OUT, "last transfer done, kill timeout\n");
  153. if (evtimer_pending(&g->timer_event, NULL)) {
  154. evtimer_del(&g->timer_event);
  155. }
  156. }
  157. }
  158. /* Called by libevent when our timeout expires */
  159. static void timer_cb(int fd, short kind, void *userp)
  160. {
  161. GlobalInfo *g = (GlobalInfo *)userp;
  162. CURLMcode rc;
  163. (void)fd;
  164. (void)kind;
  165. rc = curl_multi_socket_action(g->multi,
  166. CURL_SOCKET_TIMEOUT, 0, &g->still_running);
  167. mcode_or_die("timer_cb: curl_multi_socket_action", rc);
  168. check_multi_info(g);
  169. }
  170. /* Clean up the SockInfo structure */
  171. static void remsock(SockInfo *f)
  172. {
  173. if (f) {
  174. if (f->evset)
  175. event_del(&f->ev);
  176. free(f);
  177. }
  178. }
  179. /* Assign information to a SockInfo structure */
  180. static void setsock(SockInfo*f, curl_socket_t s, CURL*e, int act, GlobalInfo*g)
  181. {
  182. int kind =
  183. (act&CURL_POLL_IN?EV_READ:0)|(act&CURL_POLL_OUT?EV_WRITE:0)|EV_PERSIST;
  184. f->sockfd = s;
  185. f->action = act;
  186. f->easy = e;
  187. if (f->evset)
  188. event_del(&f->ev);
  189. event_set(&f->ev, f->sockfd, kind, event_cb, g);
  190. f->evset=1;
  191. event_add(&f->ev, NULL);
  192. }
  193. /* Initialize a new SockInfo structure */
  194. static void addsock(curl_socket_t s, CURL *easy, int action, GlobalInfo *g) {
  195. SockInfo *fdp = calloc(sizeof(SockInfo), 1);
  196. fdp->global = g;
  197. setsock(fdp, s, easy, action, g);
  198. curl_multi_assign(g->multi, s, fdp);
  199. }
  200. /* CURLMOPT_SOCKETFUNCTION */
  201. static int sock_cb(CURL *e, curl_socket_t s, int what, void *cbp, void *sockp)
  202. {
  203. GlobalInfo *g = (GlobalInfo*) cbp;
  204. SockInfo *fdp = (SockInfo*) sockp;
  205. const char *whatstr[]={ "none", "IN", "OUT", "INOUT", "REMOVE" };
  206. fprintf(MSG_OUT,
  207. "socket callback: s=%d e=%p what=%s ", s, e, whatstr[what]);
  208. if (what == CURL_POLL_REMOVE) {
  209. fprintf(MSG_OUT, "\n");
  210. remsock(fdp);
  211. }
  212. else {
  213. if (!fdp) {
  214. fprintf(MSG_OUT, "Adding data: %s\n", whatstr[what]);
  215. addsock(s, e, what, g);
  216. }
  217. else {
  218. fprintf(MSG_OUT,
  219. "Changing action from %s to %s\n",
  220. whatstr[fdp->action], whatstr[what]);
  221. setsock(fdp, s, e, what, g);
  222. }
  223. }
  224. return 0;
  225. }
  226. /* CURLOPT_WRITEFUNCTION */
  227. static size_t write_cb(void *ptr, size_t size, size_t nmemb, void *data)
  228. {
  229. size_t realsize = size * nmemb;
  230. ConnInfo *conn = (ConnInfo*) data;
  231. (void)ptr;
  232. (void)conn;
  233. return realsize;
  234. }
  235. /* CURLOPT_PROGRESSFUNCTION */
  236. static int prog_cb (void *p, double dltotal, double dlnow, double ult,
  237. double uln)
  238. {
  239. ConnInfo *conn = (ConnInfo *)p;
  240. (void)ult;
  241. (void)uln;
  242. fprintf(MSG_OUT, "Progress: %s (%g/%g)\n", conn->url, dlnow, dltotal);
  243. return 0;
  244. }
  245. /* Create a new easy handle, and add it to the global curl_multi */
  246. static void new_conn(char *url, GlobalInfo *g )
  247. {
  248. ConnInfo *conn;
  249. CURLMcode rc;
  250. conn = calloc(1, sizeof(ConnInfo));
  251. memset(conn, 0, sizeof(ConnInfo));
  252. conn->error[0]='\0';
  253. conn->easy = curl_easy_init();
  254. if (!conn->easy) {
  255. fprintf(MSG_OUT, "curl_easy_init() failed, exiting!\n");
  256. exit(2);
  257. }
  258. conn->global = g;
  259. conn->url = strdup(url);
  260. curl_easy_setopt(conn->easy, CURLOPT_URL, conn->url);
  261. curl_easy_setopt(conn->easy, CURLOPT_WRITEFUNCTION, write_cb);
  262. curl_easy_setopt(conn->easy, CURLOPT_WRITEDATA, &conn);
  263. curl_easy_setopt(conn->easy, CURLOPT_VERBOSE, 1L);
  264. curl_easy_setopt(conn->easy, CURLOPT_ERRORBUFFER, conn->error);
  265. curl_easy_setopt(conn->easy, CURLOPT_PRIVATE, conn);
  266. curl_easy_setopt(conn->easy, CURLOPT_NOPROGRESS, 0L);
  267. curl_easy_setopt(conn->easy, CURLOPT_PROGRESSFUNCTION, prog_cb);
  268. curl_easy_setopt(conn->easy, CURLOPT_PROGRESSDATA, conn);
  269. fprintf(MSG_OUT,
  270. "Adding easy %p to multi %p (%s)\n", conn->easy, g->multi, url);
  271. rc = curl_multi_add_handle(g->multi, conn->easy);
  272. mcode_or_die("new_conn: curl_multi_add_handle", rc);
  273. /* note that the add_handle() will set a time-out to trigger very soon so
  274. that the necessary socket_action() call will be called by this app */
  275. }
  276. /* This gets called whenever data is received from the fifo */
  277. static void fifo_cb(int fd, short event, void *arg)
  278. {
  279. char s[1024];
  280. long int rv=0;
  281. int n=0;
  282. GlobalInfo *g = (GlobalInfo *)arg;
  283. (void)fd; /* unused */
  284. (void)event; /* unused */
  285. do {
  286. s[0]='\0';
  287. rv=fscanf(g->input, "%1023s%n", s, &n);
  288. s[n]='\0';
  289. if ( n && s[0] ) {
  290. new_conn(s,arg); /* if we read a URL, go get it! */
  291. } else break;
  292. } while ( rv != EOF);
  293. }
  294. /* Create a named pipe and tell libevent to monitor it */
  295. static int init_fifo (GlobalInfo *g)
  296. {
  297. struct stat st;
  298. static const char *fifo = "hiper.fifo";
  299. curl_socket_t sockfd;
  300. fprintf(MSG_OUT, "Creating named pipe \"%s\"\n", fifo);
  301. if (lstat (fifo, &st) == 0) {
  302. if ((st.st_mode & S_IFMT) == S_IFREG) {
  303. errno = EEXIST;
  304. perror("lstat");
  305. exit (1);
  306. }
  307. }
  308. unlink(fifo);
  309. if (mkfifo (fifo, 0600) == -1) {
  310. perror("mkfifo");
  311. exit (1);
  312. }
  313. sockfd = open(fifo, O_RDWR | O_NONBLOCK, 0);
  314. if (sockfd == -1) {
  315. perror("open");
  316. exit (1);
  317. }
  318. g->input = fdopen(sockfd, "r");
  319. fprintf(MSG_OUT, "Now, pipe some URL's into > %s\n", fifo);
  320. event_set(&g->fifo_event, sockfd, EV_READ | EV_PERSIST, fifo_cb, g);
  321. event_add(&g->fifo_event, NULL);
  322. return (0);
  323. }
  324. int main(int argc, char **argv)
  325. {
  326. GlobalInfo g;
  327. (void)argc;
  328. (void)argv;
  329. memset(&g, 0, sizeof(GlobalInfo));
  330. event_init();
  331. init_fifo(&g);
  332. g.multi = curl_multi_init();
  333. evtimer_set(&g.timer_event, timer_cb, &g);
  334. /* setup the generic multi interface options we want */
  335. curl_multi_setopt(g.multi, CURLMOPT_SOCKETFUNCTION, sock_cb);
  336. curl_multi_setopt(g.multi, CURLMOPT_SOCKETDATA, &g);
  337. curl_multi_setopt(g.multi, CURLMOPT_TIMERFUNCTION, multi_timer_cb);
  338. curl_multi_setopt(g.multi, CURLMOPT_TIMERDATA, &g);
  339. /* we don't call any curl_multi_socket*() function yet as we have no handles
  340. added! */
  341. event_dispatch();
  342. curl_multi_cleanup(g.multi);
  343. return 0;
  344. }