对于文件下载libcurl的控制台进度条(libcurl console progress bar

2019-07-29 09:38发布

在这里我实现的代码从服务器下载文件。 它的工作的罚款。 现在,我想我自己的进度条函数计算等杂物每秒等等秒的数据速率,从而从一些数据, 在这里我发现使用卷曲进度条选项的一种方式。 我们如何才能启用该选项。 我完全同意这件事。

我把下面我的代码。 这里在此代码my_progress_func调用频繁按curl库时间间隔。 我想改变这个间隔时间,并使其为1秒。 是否有可能使用到设置curl库的一些选项curl库?

我想打电话给这个my_progress_func每隔1秒后功能。

代码:

#include <stdio.h>
#include <curl/curl.h>

long test =0;

struct FtpFile {
  const char *filename;
  FILE *stream;
  long iAppend;
};

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, out->iAppend ? "ab":"wb");
    if(!out->stream)
      return -1; /* failure, can't open file to write */
  }
  out->iAppend += nmemb;
  return fwrite(buffer, size, nmemb, out->stream);
}

int my_progress_func(void *bar,
                     double t, /* dltotal */ 
                     double d, /* dlnow */ 
                     double ultotal,
                     double ulnow)
{
    printf("%f : %f \n", d, t);

  return 0;
}

int main(void)
{
  CURL *curl;
  CURLcode res;
  int c;

  struct FtpFile ftpfile={
    "dev.zip", /* name to store the file as if succesful */
    NULL,
  };

  curl_global_init(CURL_GLOBAL_DEFAULT);

  curl = curl_easy_init();
  if(curl) {
    curl_easy_setopt(curl, CURLOPT_URL,
                     "sftp://root:xyz_@192.170.10.1/mnt/xyz.tar");


    curl_easy_setopt(curl, CURLOPT_TIMEOUT, 120L);


    /* 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 */
    curl_easy_setopt(curl, CURLOPT_WRITEDATA, &ftpfile);


    curl_easy_setopt(curl, CURLOPT_FTPPORT, "-");

    /* Switch on full protocol/debug output */

    curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);

    curl_easy_setopt(curl, CURLOPT_NOPROGRESS, 0L);
    curl_easy_setopt(curl, CURLOPT_PROGRESSFUNCTION, my_progress_func);

    res = curl_easy_perform(curl);

    printf("res is %d\n, data get %ld\n", res, ftpfile.iAppend);


    ///Retry upto 100 times it timeout or connection drop occur
    for (c = 0; (res != CURLE_OK) && (c < 100); c++) {



        curl_easy_setopt(curl, CURLOPT_RESUME_FROM , ftpfile.iAppend);
        res = curl_easy_perform(curl);
        if(res == CURLE_OK) c =0;
        printf("%d res is %d\n, data get %ld\n",c, res, ftpfile.iAppend);

    }
    /* always cleanup */
    curl_easy_cleanup(curl);
  }
  if(ftpfile.stream)
    fclose(ftpfile.stream); /* close the local file */
  curl_global_cleanup();
   return 0;
}

Answer 1:

据卷曲文档: http://curl.haxx.se/libcurl/c/curl_easy_setopt.html

函数指针应与发现curl_progress_callback原型。 该函数获得由libcurl的,而不是在操作期间它的内部等效与频繁的间隔(每一次大致第二或更早)不管是否正在将数据转移或不被调用。 传递给回调未知/未使用的参数值将被设置为零(比如,如果你只下载数据,上传大小将保持0)。 返回从该回调非零值将导致libcurl的中止转移和返回CURLE_ABORTED_BY_CALLBACK。

如果它调用过于频繁,那么你可以使用的时间()和静止无功限制这个,是这样的:

static time_t prevtime;
time_t currtime;
double dif;
static int first = 1;
if(first) {
    time(&prevtime);
    first = 0;
}
time(&currtime);
dif = difftime(currtime, prevtime);
if(dif < 1.0)
    return;
prevtime = currtime;

显然,你运行的卷曲可能不完全一秒钟再次调用此函数的风险。



文章来源: libcurl console progress bar for file download
标签: c libcurl