hiperfifo.c
上传用户:coffee44
上传日期:2018-10-23
资源大小:12304k
文件大小:11k
源码类别:

TAPI编程

开发平台:

Visual C++

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