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

TAPI编程

开发平台:

Visual C++

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