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

TAPI编程

开发平台:

Visual C++

  1. /*****************************************************************************
  2.  *                                  _   _ ____  _
  3.  *  Project                     ___| | | |  _ | |
  4.  *                             / __| | | | |_) | |
  5.  *                            | (__| |_| |  _ <| |___
  6.  *                             ___|___/|_| ______|
  7.  *
  8.  * $Id: multi-app.c,v 1.9 2008-05-22 21:20:09 danf Exp $
  9.  *
  10.  * This is an example application source code using the multi interface.
  11.  */
  12. #include <stdio.h>
  13. #include <string.h>
  14. /* somewhat unix-specific */
  15. #include <sys/time.h>
  16. #include <unistd.h>
  17. /* curl stuff */
  18. #include <curl/curl.h>
  19. /*
  20.  * Download a HTTP file and upload an FTP file simultaneously.
  21.  */
  22. #define HANDLECOUNT 2   /* Number of simultaneous transfers */
  23. #define HTTP_HANDLE 0   /* Index for the HTTP transfer */
  24. #define FTP_HANDLE 1    /* Index for the FTP transfer */
  25. int main(int argc, char **argv)
  26. {
  27.   CURL *handles[HANDLECOUNT];
  28.   CURLM *multi_handle;
  29.   int still_running; /* keep number of running handles */
  30.   int i;
  31.   CURLMsg *msg; /* for picking up messages with the transfer status */
  32.   int msgs_left; /* how many messages are left */
  33.   /* Allocate one CURL handle per transfer */
  34.   for (i=0; i<HANDLECOUNT; i++)
  35.       handles[i] = curl_easy_init();
  36.   /* set the options (I left out a few, you'll get the point anyway) */
  37.   curl_easy_setopt(handles[HTTP_HANDLE], CURLOPT_URL, "http://website.com");
  38.   curl_easy_setopt(handles[FTP_HANDLE], CURLOPT_URL, "ftp://ftpsite.com");
  39.   curl_easy_setopt(handles[FTP_HANDLE], CURLOPT_UPLOAD, 1L);
  40.   /* init a multi stack */
  41.   multi_handle = curl_multi_init();
  42.   /* add the individual transfers */
  43.   for (i=0; i<HANDLECOUNT; i++)
  44.       curl_multi_add_handle(multi_handle, handles[i]);
  45.   /* we start some action by calling perform right away */
  46.   while(CURLM_CALL_MULTI_PERFORM ==
  47.         curl_multi_perform(multi_handle, &still_running));
  48.   while(still_running) {
  49.     struct timeval timeout;
  50.     int rc; /* select() return code */
  51.     fd_set fdread;
  52.     fd_set fdwrite;
  53.     fd_set fdexcep;
  54.     int maxfd;
  55.     FD_ZERO(&fdread);
  56.     FD_ZERO(&fdwrite);
  57.     FD_ZERO(&fdexcep);
  58.     /* set a suitable timeout to play around with */
  59.     timeout.tv_sec = 1;
  60.     timeout.tv_usec = 0;
  61.     /* get file descriptors from the transfers */
  62.     curl_multi_fdset(multi_handle, &fdread, &fdwrite, &fdexcep, &maxfd);
  63.     /* In a real-world program you OF COURSE check the return code of the
  64.        function calls, *and* you make sure that maxfd is bigger than -1 so
  65.        that the call to select() below makes sense! */
  66.     rc = select(maxfd+1, &fdread, &fdwrite, &fdexcep, &timeout);
  67.     switch(rc) {
  68.     case -1:
  69.       /* select error */
  70.       break;
  71.     case 0:
  72.       /* timeout, do something else */
  73.       break;
  74.     default:
  75.       /* one or more of curl's file descriptors say there's data to read
  76.          or write */
  77.       while(CURLM_CALL_MULTI_PERFORM ==
  78.             curl_multi_perform(multi_handle, &still_running));
  79.       break;
  80.     }
  81.   }
  82.   /* See how the transfers went */
  83.   while ((msg = curl_multi_info_read(multi_handle, &msgs_left))) {
  84.     if (msg->msg == CURLMSG_DONE) {
  85.        int idx, found = 0;
  86.        /* Find out which handle this message is about */
  87.        for (idx=0; (!found && (idx<HANDLECOUNT)); idx++) found = (msg->easy_handle == handles[idx]);
  88.        switch (idx) {
  89.          case HTTP_HANDLE:
  90.            printf("HTTP transfer completed with status %dn", msg->data.result);
  91.            break;
  92.          case FTP_HANDLE:
  93.            printf("FTP transfer completed with status %dn", msg->data.result);
  94.            break;
  95.        }
  96.     }
  97.   }
  98.   curl_multi_cleanup(multi_handle);
  99.   /* Free the CURL handles */
  100.   for (i=0; i<HANDLECOUNT; i++)
  101.       curl_easy_cleanup(handles[i]);
  102.   return 0;
  103. }