2011-03-10 05:48:02 -05:00
|
|
|
/***************************************************************************
|
2004-11-24 11:11:35 -05:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
2002-05-06 09:38:28 -04:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2016-02-11 03:42:38 -05:00
|
|
|
* Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2002-05-06 09:38:28 -04:00
|
|
|
*
|
2011-03-10 05:48:02 -05:00
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
2016-02-02 18:19:02 -05:00
|
|
|
* are also available at https://curl.haxx.se/docs/copyright.html.
|
2011-03-10 05:48:02 -05:00
|
|
|
*
|
|
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
* copies of the Software, and permit persons to whom the Software is
|
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
***************************************************************************/
|
2015-07-01 05:43:12 -04:00
|
|
|
/* <DESC>
|
|
|
|
* using the multi interface to do a multipart formpost without blocking
|
|
|
|
* </DESC>
|
|
|
|
*/
|
|
|
|
|
2002-05-06 09:38:28 -04:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
|
|
|
|
#include <curl/curl.h>
|
|
|
|
|
2010-12-17 17:34:26 -05:00
|
|
|
int main(void)
|
2002-05-06 09:38:28 -04:00
|
|
|
{
|
|
|
|
CURL *curl;
|
|
|
|
|
|
|
|
CURLM *multi_handle;
|
|
|
|
int still_running;
|
|
|
|
|
2006-05-02 05:19:31 -04:00
|
|
|
struct curl_httppost *formpost=NULL;
|
|
|
|
struct curl_httppost *lastptr=NULL;
|
2002-05-06 09:38:28 -04:00
|
|
|
struct curl_slist *headerlist=NULL;
|
2007-07-12 17:11:10 -04:00
|
|
|
static const char buf[] = "Expect:";
|
2002-05-06 09:38:28 -04:00
|
|
|
|
2010-02-14 14:40:18 -05:00
|
|
|
/* Fill in the file upload field. This makes libcurl load data from
|
2006-05-02 05:19:31 -04:00
|
|
|
the given file name when curl_easy_perform() is called. */
|
2002-05-06 09:38:28 -04:00
|
|
|
curl_formadd(&formpost,
|
|
|
|
&lastptr,
|
|
|
|
CURLFORM_COPYNAME, "sendfile",
|
|
|
|
CURLFORM_FILE, "postit2.c",
|
|
|
|
CURLFORM_END);
|
|
|
|
|
|
|
|
/* Fill in the filename field */
|
|
|
|
curl_formadd(&formpost,
|
|
|
|
&lastptr,
|
|
|
|
CURLFORM_COPYNAME, "filename",
|
|
|
|
CURLFORM_COPYCONTENTS, "postit2.c",
|
|
|
|
CURLFORM_END);
|
|
|
|
|
|
|
|
/* Fill in the submit field too, even if this is rarely needed */
|
|
|
|
curl_formadd(&formpost,
|
|
|
|
&lastptr,
|
|
|
|
CURLFORM_COPYNAME, "submit",
|
|
|
|
CURLFORM_COPYCONTENTS, "send",
|
|
|
|
CURLFORM_END);
|
|
|
|
|
|
|
|
curl = curl_easy_init();
|
|
|
|
multi_handle = curl_multi_init();
|
|
|
|
|
2015-06-08 07:22:54 -04:00
|
|
|
/* initialize custom header list (stating that Expect: 100-continue is not
|
2002-05-06 09:38:28 -04:00
|
|
|
wanted */
|
|
|
|
headerlist = curl_slist_append(headerlist, buf);
|
|
|
|
if(curl && multi_handle) {
|
|
|
|
|
|
|
|
/* what URL that receives this POST */
|
2010-10-05 09:00:19 -04:00
|
|
|
curl_easy_setopt(curl, CURLOPT_URL, "http://www.example.com/upload.cgi");
|
2008-05-22 17:20:07 -04:00
|
|
|
curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);
|
2002-05-06 09:38:28 -04:00
|
|
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headerlist);
|
|
|
|
curl_easy_setopt(curl, CURLOPT_HTTPPOST, formpost);
|
|
|
|
|
|
|
|
curl_multi_add_handle(multi_handle, curl);
|
|
|
|
|
2010-09-30 05:33:33 -04:00
|
|
|
curl_multi_perform(multi_handle, &still_running);
|
2002-05-06 09:38:28 -04:00
|
|
|
|
2012-07-23 11:34:25 -04:00
|
|
|
do {
|
2002-05-06 09:38:28 -04:00
|
|
|
struct timeval timeout;
|
|
|
|
int rc; /* select() return code */
|
2014-11-14 03:59:46 -05:00
|
|
|
CURLMcode mc; /* curl_multi_fdset() return code */
|
2002-05-06 09:38:28 -04:00
|
|
|
|
|
|
|
fd_set fdread;
|
|
|
|
fd_set fdwrite;
|
|
|
|
fd_set fdexcep;
|
2010-04-24 06:14:21 -04:00
|
|
|
int maxfd = -1;
|
2002-05-06 09:38:28 -04:00
|
|
|
|
2010-07-13 18:32:53 -04:00
|
|
|
long curl_timeo = -1;
|
|
|
|
|
2002-05-06 09:38:28 -04:00
|
|
|
FD_ZERO(&fdread);
|
|
|
|
FD_ZERO(&fdwrite);
|
|
|
|
FD_ZERO(&fdexcep);
|
|
|
|
|
|
|
|
/* set a suitable timeout to play around with */
|
|
|
|
timeout.tv_sec = 1;
|
|
|
|
timeout.tv_usec = 0;
|
|
|
|
|
2010-07-13 18:32:53 -04:00
|
|
|
curl_multi_timeout(multi_handle, &curl_timeo);
|
|
|
|
if(curl_timeo >= 0) {
|
|
|
|
timeout.tv_sec = curl_timeo / 1000;
|
|
|
|
if(timeout.tv_sec > 1)
|
|
|
|
timeout.tv_sec = 1;
|
|
|
|
else
|
|
|
|
timeout.tv_usec = (curl_timeo % 1000) * 1000;
|
|
|
|
}
|
|
|
|
|
2002-05-06 09:38:28 -04:00
|
|
|
/* get file descriptors from the transfers */
|
2014-11-14 03:59:46 -05:00
|
|
|
mc = curl_multi_fdset(multi_handle, &fdread, &fdwrite, &fdexcep, &maxfd);
|
2002-05-06 09:38:28 -04:00
|
|
|
|
2016-02-11 03:42:38 -05:00
|
|
|
if(mc != CURLM_OK) {
|
2014-11-14 03:59:46 -05:00
|
|
|
fprintf(stderr, "curl_multi_fdset() failed, code %d.\n", mc);
|
|
|
|
break;
|
|
|
|
}
|
2006-10-13 10:01:19 -04:00
|
|
|
|
2014-11-14 03:59:46 -05:00
|
|
|
/* On success the value of maxfd is guaranteed to be >= -1. We call
|
2014-11-17 02:26:03 -05:00
|
|
|
select(maxfd + 1, ...); specially in case of (maxfd == -1) there are
|
|
|
|
no fds ready yet so we call select(0, ...) --or Sleep() on Windows--
|
|
|
|
to sleep 100ms, which is the minimum suggested value in the
|
2014-11-14 03:59:46 -05:00
|
|
|
curl_multi_fdset() doc. */
|
|
|
|
|
|
|
|
if(maxfd == -1) {
|
2014-11-17 02:26:03 -05:00
|
|
|
#ifdef _WIN32
|
2014-11-14 03:59:46 -05:00
|
|
|
Sleep(100);
|
|
|
|
rc = 0;
|
2014-11-17 02:26:03 -05:00
|
|
|
#else
|
|
|
|
/* Portable sleep for platforms other than Windows. */
|
|
|
|
struct timeval wait = { 0, 100 * 1000 }; /* 100ms */
|
|
|
|
rc = select(0, NULL, NULL, NULL, &wait);
|
2014-11-14 03:59:46 -05:00
|
|
|
#endif
|
2014-11-17 02:26:03 -05:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* Note that on some platforms 'timeout' may be modified by select().
|
|
|
|
If you need access to the original value save a copy beforehand. */
|
2014-11-14 03:59:46 -05:00
|
|
|
rc = select(maxfd+1, &fdread, &fdwrite, &fdexcep, &timeout);
|
|
|
|
}
|
2002-05-06 09:38:28 -04:00
|
|
|
|
|
|
|
switch(rc) {
|
|
|
|
case -1:
|
|
|
|
/* select error */
|
|
|
|
break;
|
|
|
|
case 0:
|
|
|
|
default:
|
|
|
|
/* timeout or readable/writable sockets */
|
|
|
|
printf("perform!\n");
|
2010-09-30 05:33:33 -04:00
|
|
|
curl_multi_perform(multi_handle, &still_running);
|
2002-05-06 09:38:28 -04:00
|
|
|
printf("running: %d!\n", still_running);
|
|
|
|
break;
|
|
|
|
}
|
2012-07-23 11:34:25 -04:00
|
|
|
} while(still_running);
|
2002-05-06 09:38:28 -04:00
|
|
|
|
|
|
|
curl_multi_cleanup(multi_handle);
|
|
|
|
|
|
|
|
/* always cleanup */
|
|
|
|
curl_easy_cleanup(curl);
|
|
|
|
|
|
|
|
/* then cleanup the formpost chain */
|
|
|
|
curl_formfree(formpost);
|
|
|
|
|
|
|
|
/* free slist */
|
|
|
|
curl_slist_free_all (headerlist);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|