2011-03-10 05:48:02 -05:00
|
|
|
/***************************************************************************
|
2004-11-02 03:26:55 -05:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
2001-05-15 09:03:53 -04:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2015-06-18 05:38:54 -04:00
|
|
|
* Copyright (C) 1998 - 2015, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2001-05-15 09:03:53 -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-06-18 05:38:54 -04: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 09:03:53 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2005-10-10 16:58:18 -04:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2001-05-15 09:03:53 -04:00
|
|
|
|
|
|
|
#include <curl/curl.h>
|
|
|
|
|
|
|
|
struct MemoryStruct {
|
|
|
|
char *memory;
|
|
|
|
size_t size;
|
|
|
|
};
|
|
|
|
|
2007-07-16 17:22:12 -04:00
|
|
|
static size_t
|
2011-09-07 16:43:28 -04:00
|
|
|
WriteMemoryCallback(void *contents, size_t size, size_t nmemb, void *userp)
|
2001-05-15 09:03:53 -04:00
|
|
|
{
|
2005-02-04 18:53:12 -05:00
|
|
|
size_t realsize = size * nmemb;
|
2011-09-07 16:43:28 -04:00
|
|
|
struct MemoryStruct *mem = (struct MemoryStruct *)userp;
|
2004-11-02 03:26:55 -05:00
|
|
|
|
2010-09-14 16:52:04 -04:00
|
|
|
mem->memory = realloc(mem->memory, mem->size + realsize + 1);
|
2013-02-24 12:17:30 -05:00
|
|
|
if(mem->memory == NULL) {
|
2010-09-14 16:52:04 -04:00
|
|
|
/* out of memory! */
|
|
|
|
printf("not enough memory (realloc returned NULL)\n");
|
2013-02-24 12:17:30 -05:00
|
|
|
return 0;
|
2001-05-15 09:03:53 -04:00
|
|
|
}
|
2010-09-14 16:52:04 -04:00
|
|
|
|
2011-09-07 16:43:28 -04:00
|
|
|
memcpy(&(mem->memory[mem->size]), contents, realsize);
|
2010-09-14 16:52:04 -04:00
|
|
|
mem->size += realsize;
|
|
|
|
mem->memory[mem->size] = 0;
|
|
|
|
|
2001-05-15 09:03:53 -04:00
|
|
|
return realsize;
|
|
|
|
}
|
|
|
|
|
2010-12-17 17:34:26 -05:00
|
|
|
int main(void)
|
2001-05-15 09:03:53 -04:00
|
|
|
{
|
2001-05-15 09:04:53 -04:00
|
|
|
CURL *curl_handle;
|
2013-02-24 12:17:30 -05:00
|
|
|
CURLcode res;
|
2001-05-15 09:03:53 -04:00
|
|
|
|
|
|
|
struct MemoryStruct chunk;
|
|
|
|
|
2010-09-14 16:52:04 -04:00
|
|
|
chunk.memory = malloc(1); /* will be grown as needed by the realloc above */
|
2001-05-15 09:03:53 -04:00
|
|
|
chunk.size = 0; /* no data at this point */
|
|
|
|
|
2003-11-19 03:19:20 -05:00
|
|
|
curl_global_init(CURL_GLOBAL_ALL);
|
|
|
|
|
2001-05-15 09:03:53 -04:00
|
|
|
/* init the curl session */
|
|
|
|
curl_handle = curl_easy_init();
|
|
|
|
|
|
|
|
/* specify URL to get */
|
2010-10-05 09:00:19 -04:00
|
|
|
curl_easy_setopt(curl_handle, CURLOPT_URL, "http://www.example.com/");
|
2001-05-15 09:03:53 -04: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 09:13:19 -05:00
|
|
|
curl_easy_setopt(curl_handle, CURLOPT_WRITEDATA, (void *)&chunk);
|
2001-05-15 09:03:53 -04:00
|
|
|
|
2004-05-19 05:09:31 -04:00
|
|
|
/* some servers don't like requests that are made without a user-agent
|
2004-05-19 05:08:19 -04:00
|
|
|
field, so we provide one */
|
|
|
|
curl_easy_setopt(curl_handle, CURLOPT_USERAGENT, "libcurl-agent/1.0");
|
|
|
|
|
2001-05-15 09:03:53 -04:00
|
|
|
/* get it! */
|
2013-02-24 12:17:30 -05: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 09:03:53 -04:00
|
|
|
|
|
|
|
/* cleanup curl stuff */
|
|
|
|
curl_easy_cleanup(curl_handle);
|
|
|
|
|
2015-03-11 12:41:01 -04:00
|
|
|
free(chunk.memory);
|
2005-10-10 16:58:18 -04:00
|
|
|
|
2007-11-06 23:53:37 -05:00
|
|
|
/* we're done with libcurl, so clean it up */
|
|
|
|
curl_global_cleanup();
|
|
|
|
|
2001-05-15 09:03:53 -04:00
|
|
|
return 0;
|
|
|
|
}
|