2011-03-10 18:48:02 +08:00
|
|
|
/***************************************************************************
|
2004-11-02 16:26:55 +08:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
2001-05-15 21:03:53 +08:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2015-06-18 17:38:54 +08:00
|
|
|
* Copyright (C) 1998 - 2015, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2001-05-15 21:03:53 +08:00
|
|
|
*
|
2011-03-10 18:48:02 +08: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-03 07:19:02 +08:00
|
|
|
* are also available at https://curl.haxx.se/docs/copyright.html.
|
2011-03-10 18:48:02 +08: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-06-18 17:38:54 +08:00
|
|
|
/* <DESC>
|
|
|
|
* Shows how the write callback function can be used to download data into a
|
|
|
|
* chunk of memory instead of storing it in a file.
|
|
|
|
* </DESC>
|
2001-05-15 21:03:53 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2005-10-11 04:58:18 +08:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2001-05-15 21:03:53 +08:00
|
|
|
|
|
|
|
#include <curl/curl.h>
|
|
|
|
|
|
|
|
struct MemoryStruct {
|
|
|
|
char *memory;
|
|
|
|
size_t size;
|
|
|
|
};
|
|
|
|
|
2007-07-17 05:22:12 +08:00
|
|
|
static size_t
|
2011-09-08 04:43:28 +08:00
|
|
|
WriteMemoryCallback(void *contents, size_t size, size_t nmemb, void *userp)
|
2001-05-15 21:03:53 +08:00
|
|
|
{
|
2005-02-05 07:53:12 +08:00
|
|
|
size_t realsize = size * nmemb;
|
2011-09-08 04:43:28 +08:00
|
|
|
struct MemoryStruct *mem = (struct MemoryStruct *)userp;
|
2004-11-02 16:26:55 +08:00
|
|
|
|
2010-09-15 04:52:04 +08:00
|
|
|
mem->memory = realloc(mem->memory, mem->size + realsize + 1);
|
2013-02-25 01:17:30 +08:00
|
|
|
if(mem->memory == NULL) {
|
2010-09-15 04:52:04 +08:00
|
|
|
/* out of memory! */
|
|
|
|
printf("not enough memory (realloc returned NULL)\n");
|
2013-02-25 01:17:30 +08:00
|
|
|
return 0;
|
2001-05-15 21:03:53 +08:00
|
|
|
}
|
2010-09-15 04:52:04 +08:00
|
|
|
|
2011-09-08 04:43:28 +08:00
|
|
|
memcpy(&(mem->memory[mem->size]), contents, realsize);
|
2010-09-15 04:52:04 +08:00
|
|
|
mem->size += realsize;
|
|
|
|
mem->memory[mem->size] = 0;
|
|
|
|
|
2001-05-15 21:03:53 +08:00
|
|
|
return realsize;
|
|
|
|
}
|
|
|
|
|
2010-12-18 06:34:26 +08:00
|
|
|
int main(void)
|
2001-05-15 21:03:53 +08:00
|
|
|
{
|
2001-05-15 21:04:53 +08:00
|
|
|
CURL *curl_handle;
|
2013-02-25 01:17:30 +08:00
|
|
|
CURLcode res;
|
2001-05-15 21:03:53 +08:00
|
|
|
|
|
|
|
struct MemoryStruct chunk;
|
|
|
|
|
2010-09-15 04:52:04 +08:00
|
|
|
chunk.memory = malloc(1); /* will be grown as needed by the realloc above */
|
2001-05-15 21:03:53 +08:00
|
|
|
chunk.size = 0; /* no data at this point */
|
|
|
|
|
2003-11-19 16:19:20 +08:00
|
|
|
curl_global_init(CURL_GLOBAL_ALL);
|
|
|
|
|
2001-05-15 21:03:53 +08:00
|
|
|
/* init the curl session */
|
|
|
|
curl_handle = curl_easy_init();
|
|
|
|
|
|
|
|
/* specify URL to get */
|
2010-10-05 21:00:19 +08:00
|
|
|
curl_easy_setopt(curl_handle, CURLOPT_URL, "http://www.example.com/");
|
2001-05-15 21:03:53 +08:00
|
|
|
|
|
|
|
/* send all data to this function */
|
|
|
|
curl_easy_setopt(curl_handle, CURLOPT_WRITEFUNCTION, WriteMemoryCallback);
|
|
|
|
|
|
|
|
/* we pass our 'chunk' struct to the callback function */
|
2003-12-08 22:13:19 +08:00
|
|
|
curl_easy_setopt(curl_handle, CURLOPT_WRITEDATA, (void *)&chunk);
|
2001-05-15 21:03:53 +08:00
|
|
|
|
2004-05-19 17:09:31 +08:00
|
|
|
/* some servers don't like requests that are made without a user-agent
|
2004-05-19 17:08:19 +08:00
|
|
|
field, so we provide one */
|
|
|
|
curl_easy_setopt(curl_handle, CURLOPT_USERAGENT, "libcurl-agent/1.0");
|
|
|
|
|
2001-05-15 21:03:53 +08:00
|
|
|
/* get it! */
|
2013-02-25 01:17:30 +08:00
|
|
|
res = curl_easy_perform(curl_handle);
|
|
|
|
|
|
|
|
/* check for errors */
|
|
|
|
if(res != CURLE_OK) {
|
|
|
|
fprintf(stderr, "curl_easy_perform() failed: %s\n",
|
|
|
|
curl_easy_strerror(res));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/*
|
|
|
|
* Now, our chunk.memory points to a memory block that is chunk.size
|
|
|
|
* bytes big and contains the remote file.
|
|
|
|
*
|
|
|
|
* Do something nice with it!
|
|
|
|
*/
|
|
|
|
|
|
|
|
printf("%lu bytes retrieved\n", (long)chunk.size);
|
|
|
|
}
|
2001-05-15 21:03:53 +08:00
|
|
|
|
|
|
|
/* cleanup curl stuff */
|
|
|
|
curl_easy_cleanup(curl_handle);
|
|
|
|
|
2015-03-12 00:41:01 +08:00
|
|
|
free(chunk.memory);
|
2005-10-11 04:58:18 +08:00
|
|
|
|
2007-11-07 12:53:37 +08:00
|
|
|
/* we're done with libcurl, so clean it up */
|
|
|
|
curl_global_cleanup();
|
|
|
|
|
2001-05-15 21:03:53 +08:00
|
|
|
return 0;
|
|
|
|
}
|