- 论坛徽章:
- 0
|
对这个例子做个简单的注解,就很明白了。

- Download ftpget.c
- /***************************************************************************
- * _ _ ____ _
- * Project ___| | | | _ \| |
- * / __| | | | |_) | |
- * | (__| |_| | _ <| |___
- * \___|\___/|_| \_\_____|
- *
- * Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al.
- *
- * This software is licensed as described in the file COPYING, which
- * you should have received as part of this distribution. The terms
- * are also available at http://curl.haxx.se/docs/copyright.html.
- *
- * 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.
- *
- ***************************************************************************/
- #include <stdio.h>
- #include <curl/curl.h>
- /*
- * This is an example showing how to get a single file from an FTP server.
- * It delays the actual destination file creation until the first write
- * callback so that it won't create an empty file in case the remote file
- * doesn't exist or something else fails.
- */
- //结构体,用来存储当前应用的私有数据,这个数据结构会被存储在该应用对应的会话流中
- struct FtpFile
- {
- const char *filename;
- FILE *stream;
- };
- //写回调函数,当ftp 数据到来时,curl 会调用 开发者初始化时传入的这个回调函数进行数据处理
- static size_t my_fwrite(void *buffer, size_t size, size_t nmemb, void *stream)
- {
- //首先从流中拿出来我们自己定义得私有数据
- struct FtpFile *out=(struct FtpFile *)stream;
- //如果是第一次调用(文件还没创建),创建文件
- if(out && !out->stream) {
- /* open file for writing */
- out->stream=fopen(out->filename, "wb");
- if(!out->stream)
- return -1; /* failure, can't open file to write */
- }
- //不是第一次调用,直接写入数据就行了
- return fwrite(buffer, size, nmemb, out->stream);
- }
- int main(void)
- {
- CURL *curl;
- CURLcode res;
- //私有数据结构初始化,文件名称和文件指针
- struct FtpFile ftpfile={
- "curl.tar.gz", /* name to store the file as if succesful */
- NULL
- };
-
- //初始化部分
- curl_global_init(CURL_GLOBAL_DEFAULT);
- //获取句柄
- curl = curl_easy_init();
-
- //下面是参数设置过程
- if(curl) {
- /*
- * You better replace the URL with one that works!
- */
- //设置 URL 参数
- curl_easy_setopt(curl, CURLOPT_URL,
- "ftp://ftp.example.com/pub/www/utilities/curl/curl-7.9.2.tar.gz");
- /* Define our callback to get called when there's data to be written */
- //设置写回调函数
- curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, my_fwrite);
- /* Set a pointer to our struct to pass to the callback */
- //设置私有数据,ftpfile 这个结构会被存储到 curl 对应的流中,方便我们在回调函数中使用
- curl_easy_setopt(curl, CURLOPT_WRITEDATA, &ftpfile);
-
- /* Switch on full protocol/debug output */
- //打印信息
- curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);
-
- //执行任务
- res = curl_easy_perform(curl);
-
- /* always cleanup */
- //释放资源
- curl_easy_cleanup(curl);
-
- if(CURLE_OK != res) {
- /* we failed */
- fprintf(stderr, "curl told us %d\n", res);
- }
- }
- //关闭文件
- if(ftpfile.stream)
- fclose(ftpfile.stream); /* close the local file */
- //全局释放资源
- curl_global_cleanup();
-
- return 0;
- }
复制代码 |
|