Coverage Report

Created: 2026-09-01 07:00

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/curl/lib/progress.c
Line
Count
Source
1
/***************************************************************************
2
 *                                  _   _ ____  _
3
 *  Project                     ___| | | |  _ \| |
4
 *                             / __| | | | |_) | |
5
 *                            | (__| |_| |  _ <| |___
6
 *                             \___|\___/|_| \_\_____|
7
 *
8
 * Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
9
 *
10
 * This software is licensed as described in the file COPYING, which
11
 * you should have received as part of this distribution. The terms
12
 * are also available at https://curl.se/docs/copyright.html.
13
 *
14
 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15
 * copies of the Software, and permit persons to whom the Software is
16
 * furnished to do so, under the terms of the COPYING file.
17
 *
18
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19
 * KIND, either express or implied.
20
 *
21
 * SPDX-License-Identifier: curl
22
 *
23
 ***************************************************************************/
24
#include "curl_setup.h"
25
26
#include "urldata.h"
27
#include "curl_trc.h"
28
#include "multiif.h"
29
#include "progress.h"
30
#include "transfer.h"
31
#include "curlx/strcopy.h"
32
33
#ifndef CURL_DISABLE_PROGRESS_METER
34
/* Provide a string that is 7 letters long (plus the zero byte).
35
36
   @unittest 1636 */
37
UNITTEST void time2str(char *r, size_t rsize, curl_off_t seconds);
38
UNITTEST void time2str(char *r, size_t rsize, curl_off_t seconds)
39
1.69k
{
40
1.69k
  curl_off_t h;
41
1.69k
  if(seconds <= 0) {
42
1.69k
    curlx_strcopy(r, rsize, STRCONST("       "));
43
1.69k
    return;
44
1.69k
  }
45
0
  h = seconds / 3600;
46
0
  if(h <= 99) {
47
0
    curl_off_t m = (seconds - (h * 3600)) / 60;
48
0
    if(h <= 9) {
49
0
      curl_off_t s = (seconds - (h * 3600)) - (m * 60);
50
0
      if(h)
51
0
        curl_msnprintf(r, rsize, "%" FMT_OFF_T ":%02" FMT_OFF_T ":"
52
0
                       "%02" FMT_OFF_T, h, m, s);
53
0
      else
54
0
        curl_msnprintf(r, rsize, "  %02" FMT_OFF_T ":%02" FMT_OFF_T, m, s);
55
0
    }
56
0
    else
57
0
      curl_msnprintf(r, rsize, "%" FMT_OFF_T "h %02" FMT_OFF_T "m", h, m);
58
0
  }
59
0
  else {
60
0
    curl_off_t d = seconds / 86400;
61
0
    h = (seconds - (d * 86400)) / 3600;
62
0
    if(d <= 99)
63
0
      curl_msnprintf(r, rsize, "%2" FMT_OFF_T "d %02" FMT_OFF_T "h", d, h);
64
0
    else if(d <= 999)
65
0
      curl_msnprintf(r, rsize, "%6" FMT_OFF_T "d", d);
66
0
    else { /* more than 999 days */
67
0
      curl_off_t m = d / 30;
68
0
      if(m <= 999)
69
0
        curl_msnprintf(r, rsize, "%6" FMT_OFF_T "m", m);
70
0
      else { /* more than 999 months */
71
0
        curl_off_t y = d / 365;
72
0
        if(y <= 99999)
73
0
          curl_msnprintf(r, rsize, "%6" FMT_OFF_T "y", y);
74
0
        else
75
0
          curlx_strcopy(r, rsize, STRCONST(">99999y"));
76
0
      }
77
0
    }
78
0
  }
79
0
}
80
81
/* The point of this function would be to return a string of the input data,
82
   but never longer than 6 columns (+ one zero byte).
83
   Add suffix k, M, G when suitable...
84
85
   @unittest 1636 */
86
UNITTEST char *max6out(curl_off_t bytes, char *max6, size_t mlen);
87
UNITTEST char *max6out(curl_off_t bytes, char *max6, size_t mlen)
88
3.39k
{
89
  /* a signed 64-bit value is 8192 petabytes maximum, shown as
90
     8.0E (exabytes)*/
91
3.39k
  if(bytes < 100000)
92
3.00k
    curl_msnprintf(max6, mlen, "%6" CURL_FORMAT_CURL_OFF_T, bytes);
93
381
  else {
94
381
    static const char unit[] = { 'k', 'M', 'G', 'T', 'P', 'E', 0 };
95
381
    int k = 0;
96
381
    curl_off_t nbytes;
97
381
    curl_off_t rest;
98
563
    do {
99
563
      nbytes = bytes / 1024;
100
563
      if(nbytes < 1000)
101
381
        break;
102
182
      bytes = nbytes;
103
182
      k++;
104
182
      DEBUGASSERT(unit[k]);
105
182
    } while(unit[k]);
106
381
    rest = bytes % 1024;
107
381
    if(nbytes <= 99)
108
      /* xx.yyU */
109
204
      curl_msnprintf(max6, mlen, "%2" CURL_FORMAT_CURL_OFF_T
110
204
                     ".%02" CURL_FORMAT_CURL_OFF_T "%c", nbytes,
111
204
                     rest * 100 / 1024, unit[k]);
112
177
    else
113
      /* xxx.yU */
114
177
      curl_msnprintf(max6, mlen, "%3" CURL_FORMAT_CURL_OFF_T
115
177
                     ".%" CURL_FORMAT_CURL_OFF_T "%c", nbytes,
116
177
                     rest * 10 / 1024, unit[k]);
117
381
  }
118
3.39k
  return max6;
119
3.39k
}
120
#endif
121
122
static void pgrs_speedinit(struct Curl_easy *data)
123
6.83k
{
124
6.83k
  memset(&data->state.keeps_speed, 0, sizeof(struct curltime));
125
6.83k
}
126
127
/*
128
 * @unittest 1606
129
 */
130
UNITTEST CURLcode pgrs_speedcheck(struct Curl_easy *data,
131
                                  const struct curltime *pnow);
132
UNITTEST CURLcode pgrs_speedcheck(struct Curl_easy *data,
133
                                  const struct curltime *pnow)
134
2.63k
{
135
2.63k
  if(!data->set.low_speed_time || !data->set.low_speed_limit ||
136
60
     Curl_xfer_recv_is_paused(data) || Curl_xfer_send_is_paused(data))
137
    /* A paused transfer is not qualified for speed checks */
138
2.57k
    return CURLE_OK;
139
140
60
  if(data->progress.current_speed >= 0) {
141
60
    if(data->progress.current_speed < data->set.low_speed_limit) {
142
50
      if(!data->state.keeps_speed.tv_sec)
143
        /* under the limit at this moment */
144
18
        data->state.keeps_speed = *pnow;
145
32
      else {
146
        /* how long has it been under the limit */
147
32
        timediff_t howlong =
148
32
          curlx_ptimediff_ms(pnow, &data->state.keeps_speed);
149
150
32
        if(howlong >= data->set.low_speed_time * 1000) {
151
          /* too long */
152
0
          failf(data, "Operation too slow. Less than %" FMT_OFF_T
153
0
                " bytes/sec transferred the last %u seconds",
154
0
                data->set.low_speed_limit, data->set.low_speed_time);
155
0
          return CURLE_OPERATION_TIMEDOUT;
156
0
        }
157
32
      }
158
50
    }
159
10
    else
160
      /* faster right now */
161
10
      data->state.keeps_speed.tv_sec = 0;
162
60
  }
163
164
  /* since low speed limit is enabled, set the expire timer to make this
165
     connection's speed get checked again in a second */
166
60
  Curl_expire(data, 1000, EXPIRE_SPEEDCHECK);
167
168
60
  return CURLE_OK;
169
60
}
170
171
const struct curltime *Curl_pgrs_now(struct Curl_easy *data)
172
355k
{
173
355k
  curlx_pnow(&data->progress.now);
174
355k
  return &data->progress.now;
175
355k
}
176
177
/* New proposed interface, 9th of February 2000:
178
179
   pgrsStartNow() - sets start time
180
   pgrsSetDownloadSize(x) - known expected download size
181
   pgrsSetUploadSize(x) - known expected upload size
182
   pgrsSetDownloadCounter() - amount of data currently downloaded
183
   pgrsSetUploadCounter() - amount of data currently uploaded
184
   pgrsUpdate() - show progress
185
   pgrsDone() - transfer complete
186
 */
187
188
int Curl_pgrsDone(struct Curl_easy *data)
189
1.94k
{
190
1.94k
  int rc;
191
1.94k
  data->progress.delta.lastshow_us = -1;
192
1.94k
  rc = Curl_pgrsUpdate(data); /* the final (forced) update */
193
1.94k
  if(rc)
194
0
    return rc;
195
196
1.94k
  if(!data->progress.hide && !data->progress.callback)
197
    /* only output if we do not use a progress callback and we are not
198
     * hidden */
199
116
    curl_mfprintf(data->set.err, "\n");
200
201
1.94k
  return 0;
202
1.94k
}
203
204
void Curl_pgrsReset(struct Curl_easy *data)
205
6.83k
{
206
6.83k
  Curl_pgrsSetUploadCounter(data, 0);
207
6.83k
  data->progress.dl.cur_size = 0;
208
6.83k
  Curl_pgrsSetUploadSize(data, -1);
209
6.83k
  Curl_pgrsSetDownloadSize(data, -1);
210
6.83k
  data->progress.speeder_c = 0; /* reset speed records */
211
6.83k
  data->progress.deliver = 0;
212
6.83k
  pgrs_speedinit(data);
213
6.83k
}
214
215
/* reset the known transfer sizes */
216
void Curl_pgrsResetTransferSizes(struct Curl_easy *data)
217
7.49k
{
218
7.49k
  Curl_pgrsSetDownloadSize(data, -1);
219
7.49k
  Curl_pgrsSetUploadSize(data, -1);
220
7.49k
}
221
222
void Curl_pgrsRecvPause(struct Curl_easy *data, bool enable)
223
0
{
224
0
  if(!enable) {
225
0
    data->progress.speeder_c = 0; /* reset speed records */
226
0
    pgrs_speedinit(data); /* reset low speed measurements */
227
0
  }
228
0
}
229
230
void Curl_pgrsSendPause(struct Curl_easy *data, bool enable)
231
0
{
232
0
  if(!enable) {
233
0
    data->progress.speeder_c = 0; /* reset speed records */
234
0
    pgrs_speedinit(data); /* reset low speed measurements */
235
0
  }
236
0
}
237
238
#ifdef CURLVERBOSE
239
static const char * const pgrs_timer_names[] = {
240
  "PGRS-NONE",
241
  "PGRS-STARTOP",
242
  "PGRS-STARTSINGLE",
243
  "PGRS-POSTQUEUE",
244
  "PGRS-NAMELOOKUP",
245
  "PGRS-CONNECT",
246
  "PGRS-APPCONNECT",
247
  "PGRS-PRETRANSFER",
248
  "PGRS-STARTTRANSFER",
249
  "PGRS-POSTRANSFER",
250
  "PGRS-REDIRECT",
251
};
252
253
static const char *pgrs_timer_name(timerid timer)
254
0
{
255
0
  if((size_t)timer < CURL_ARRAYSIZE(pgrs_timer_names))
256
0
    return pgrs_timer_names[(size_t)timer];
257
0
  return "?";
258
0
}
259
#endif /* CURLVERBOSE */
260
261
/*
262
 * Curl_pgrsTimeWas(). Store the timestamp time at the given label.
263
 */
264
void Curl_pgrsTimeWas(struct Curl_easy *data, timerid timer,
265
                      struct curltime timestamp)
266
71.4k
{
267
71.4k
  timediff_t *delta = NULL;
268
269
71.4k
  switch(timer) {
270
0
  default:
271
0
  case TIMER_NONE:
272
    /* mistake filter */
273
0
    break;
274
13.2k
  case TIMER_STARTOP:
275
    /* This is set at the start of a transfer */
276
13.2k
    data->progress.delta.startop_us =
277
13.2k
      curlx_ptimediff_us(&timestamp, &data->progress.start);
278
13.2k
    data->progress.delta.startqueue_us = data->progress.delta.startop_us;
279
13.2k
    break;
280
7.49k
  case TIMER_STARTSINGLE:
281
    /* This is set at the start of each single transfer */
282
7.49k
    data->progress.delta.startsingle_us =
283
7.49k
      curlx_ptimediff_us(&timestamp, &data->progress.start);
284
7.49k
    data->progress.startransfer_added = FALSE;
285
7.49k
    break;
286
5.79k
  case TIMER_POSTQUEUE:
287
    /* Queue time is accumulative from all involved redirects */
288
5.79k
    data->progress.total.queued_us +=
289
5.79k
      curlx_ptimediff_us(&timestamp, &data->progress.start) -
290
5.79k
      data->progress.delta.startqueue_us;
291
5.79k
    break;
292
5.79k
  case TIMER_NAMELOOKUP:
293
5.79k
    delta = &data->progress.total.nslookup_us;
294
5.79k
    break;
295
5.68k
  case TIMER_CONNECT:
296
5.68k
    delta = &data->progress.total.connect_us;
297
5.68k
    break;
298
0
  case TIMER_APPCONNECT:
299
0
    delta = &data->progress.total.appconnect_us;
300
0
    break;
301
11.3k
  case TIMER_PRETRANSFER:
302
11.3k
    delta = &data->progress.total.pretransfer_us;
303
11.3k
    break;
304
10.9k
  case TIMER_STARTTRANSFER:
305
    /* prevent updating t_starttransfer unless:
306
     *   1. this is the first time we are setting t_starttransfer
307
     *   2. a redirect has occurred since the last time t_starttransfer was set
308
     * This prevents repeated invocations of the function from incorrectly
309
     * changing the t_starttransfer time.
310
     */
311
10.9k
    if(data->progress.startransfer_added) {
312
94
      CURL_TRC_M(data, "[%s] ignored", pgrs_timer_name(timer));
313
94
      return;
314
94
    }
315
10.8k
    data->progress.startransfer_added = TRUE;
316
10.8k
    delta = &data->progress.total.starttransfer_us;
317
10.8k
    break;
318
11.1k
  case TIMER_POSTRANSFER:
319
11.1k
    delta = &data->progress.total.posttransfer_us;
320
11.1k
    break;
321
0
  case TIMER_REDIRECT:
322
0
    data->progress.delta.startredirect_us =
323
0
      curlx_ptimediff_us(&timestamp, &data->progress.start);
324
    /* transfer starts queueing again */
325
0
    data->progress.delta.startqueue_us =
326
0
      data->progress.delta.startredirect_us;
327
0
    break;
328
71.4k
  }
329
71.3k
  if(delta) {
330
44.7k
    timediff_t us = curlx_ptimediff_us(&timestamp, &data->progress.start) -
331
44.7k
                    data->progress.delta.startsingle_us;
332
44.7k
    if(us < 1)
333
0
      us = 1; /* make sure at least one microsecond passed */
334
44.7k
    *delta += us;
335
44.7k
    CURL_TRC_M(data, "[%s] added %" FMT_TIMEDIFF_T "us",
336
44.7k
               pgrs_timer_name(timer), us);
337
44.7k
  }
338
26.5k
  else
339
26.5k
    CURL_TRC_M(data, "[%s] set", pgrs_timer_name(timer));
340
71.3k
}
341
342
/*
343
 * Curl_pgrsTime(). Store the current time at the given label. This fetches a
344
 * fresh "now" and returns it.
345
 *
346
 * @unittest: 1399
347
 */
348
void Curl_pgrsTime(struct Curl_easy *data, timerid timer)
349
65.7k
{
350
65.7k
  Curl_pgrsTimeWas(data, timer, *Curl_pgrs_now(data));
351
65.7k
}
352
353
void Curl_pgrsStart(struct Curl_easy *data, const struct curltime *pnow)
354
7.49k
{
355
7.49k
  struct Progress *p = &data->progress;
356
357
7.49k
  if(!pnow)
358
7.49k
    pnow = Curl_pgrs_now(data);
359
7.49k
  p->speeder_c = 0; /* reset the progress meter display */
360
7.49k
  p->start = *pnow;
361
7.49k
  memset(&p->delta, 0, sizeof(p->delta));
362
7.49k
  memset(&p->total, 0, sizeof(p->total));
363
7.49k
  p->startransfer_added = FALSE;
364
7.49k
  p->dl.cur_size = 0;
365
7.49k
  p->ul.cur_size = 0;
366
  /* the sizes are unknown at start */
367
7.49k
  p->dl_size_known = FALSE;
368
7.49k
  p->ul_size_known = FALSE;
369
7.49k
}
370
371
/* check that the 'delta' amount of bytes are okay to deliver to the
372
   application, or return error if not. */
373
CURLcode Curl_pgrs_deliver_check(struct Curl_easy *data, size_t delta)
374
1.64k
{
375
1.64k
  if(data->set.max_filesize &&
376
304
     ((curl_off_t)delta > data->set.max_filesize - data->progress.deliver)) {
377
1
    failf(data, "Would have exceeded max file size");
378
1
    return CURLE_FILESIZE_EXCEEDED;
379
1
  }
380
1.63k
  return CURLE_OK;
381
1.64k
}
382
383
/* this counts how much data is delivered to the application, which
384
   in compressed cases may differ from downloaded amount */
385
void Curl_pgrs_deliver_inc(struct Curl_easy *data, size_t delta)
386
1.63k
{
387
1.63k
  data->progress.deliver += delta;
388
1.63k
}
389
390
void Curl_pgrs_download_inc(struct Curl_easy *data, size_t delta)
391
890
{
392
890
  if(delta) {
393
890
    data->progress.dl.cur_size += delta;
394
890
    Curl_rlimit_drain(&data->progress.dl.rlimit, delta, NULL);
395
890
  }
396
890
}
397
398
void Curl_pgrs_upload_inc(struct Curl_easy *data, size_t delta)
399
1.12k
{
400
1.12k
  if(delta) {
401
1.12k
    data->progress.ul.cur_size += delta;
402
1.12k
    Curl_rlimit_drain(&data->progress.ul.rlimit, delta, NULL);
403
1.12k
  }
404
1.12k
}
405
406
/*
407
 * Set the number of uploaded bytes so far.
408
 */
409
void Curl_pgrsSetUploadCounter(struct Curl_easy *data, curl_off_t size)
410
6.83k
{
411
6.83k
  data->progress.ul.cur_size = size;
412
6.83k
}
413
414
void Curl_pgrsSetDownloadSize(struct Curl_easy *data, curl_off_t size)
415
14.3k
{
416
14.3k
  if(size >= 0) {
417
0
    data->progress.dl.total_size = size;
418
0
    data->progress.dl_size_known = TRUE;
419
0
  }
420
14.3k
  else {
421
14.3k
    data->progress.dl.total_size = 0;
422
14.3k
    data->progress.dl_size_known = FALSE;
423
14.3k
  }
424
14.3k
}
425
426
void Curl_pgrsSetUploadSize(struct Curl_easy *data, curl_off_t size)
427
14.8k
{
428
14.8k
  if(size >= 0) {
429
505
    data->progress.ul.total_size = size;
430
505
    data->progress.ul_size_known = TRUE;
431
505
  }
432
14.3k
  else {
433
14.3k
    data->progress.ul.total_size = 0;
434
14.3k
    data->progress.ul_size_known = FALSE;
435
14.3k
  }
436
14.8k
}
437
438
void Curl_pgrsEarlyData(struct Curl_easy *data, curl_off_t sent)
439
0
{
440
0
  data->progress.earlydata_sent = sent;
441
0
}
442
443
/* returns the average speed in bytes / second */
444
static curl_off_t trspeed(curl_off_t size, /* number of bytes */
445
                          curl_off_t us)   /* microseconds */
446
151k
{
447
151k
  if(us < 1)
448
0
    return size * 1000000;
449
151k
  else if(size < CURL_OFF_T_MAX / 1000000)
450
151k
    return (size * 1000000) / us;
451
0
  else if(us >= 1000000)
452
0
    return size / (us / 1000000);
453
0
  else
454
0
    return CURL_OFF_T_MAX;
455
151k
}
456
457
/* returns TRUE if it is time to show the progress meter */
458
static bool progress_calc(struct Curl_easy *data,
459
                          const struct curltime *pnow)
460
75.9k
{
461
75.9k
  struct Progress * const p = &data->progress;
462
75.9k
  int i_next, i_oldest, i_latest;
463
75.9k
  timediff_t duration_us, elapsed_us;
464
75.9k
  curl_off_t amount;
465
466
  /* The time spent so far (from the start) in microseconds */
467
75.9k
  elapsed_us = curlx_ptimediff_us(pnow, &p->start);
468
75.9k
  p->total.spent_us = elapsed_us;
469
75.9k
  p->dl.speed = trspeed(p->dl.cur_size, p->total.spent_us);
470
75.9k
  p->ul.speed = trspeed(p->ul.cur_size, p->total.spent_us);
471
472
75.9k
  if(!p->speeder_c) { /* no previous record exists */
473
6.58k
    p->speed_amount[0] = p->dl.cur_size + p->ul.cur_size;
474
6.58k
    p->speed_time[0] = elapsed_us;
475
6.58k
    p->speeder_c++;
476
    /* use the overall average at the start */
477
6.58k
    p->current_speed = p->ul.speed + p->dl.speed;
478
6.58k
    p->delta.lastshow_us = elapsed_us;
479
6.58k
    return TRUE;
480
6.58k
  }
481
  /* We have at least one record now. Where to put the next and
482
   * where is the latest one? */
483
69.3k
  i_next = p->speeder_c % CURL_SPEED_RECORDS;
484
69.3k
  i_latest = (i_next > 0) ? (i_next - 1) : (CURL_SPEED_RECORDS - 1);
485
486
  /* Make a new record only when some time has passed.
487
   * Too frequent calls otherwise ruin the history. */
488
69.3k
  if((elapsed_us - p->speed_time[i_latest]) >= (1000 * 1000)) {
489
0
    p->speeder_c++;
490
0
    i_latest = i_next;
491
0
    p->speed_amount[i_latest] = p->dl.cur_size + p->ul.cur_size;
492
0
    p->speed_time[i_latest] = elapsed_us;
493
0
  }
494
69.3k
  else if(data->req.done) {
495
    /* When a transfer is done, and we did not have a current speed
496
     * already, update the last record. Otherwise, stay at the speed
497
     * we have. The last chunk of data, when rate limiting, would increase
498
     * reported speed since it no longer measures a full second. */
499
2.45k
    if(!p->current_speed) {
500
2.33k
      p->speed_amount[i_latest] = p->dl.cur_size + p->ul.cur_size;
501
2.33k
      p->speed_time[i_latest] = elapsed_us;
502
2.33k
    }
503
2.45k
  }
504
66.8k
  else {
505
    /* transfer ongoing, wait for more time to pass. */
506
66.8k
    return FALSE;
507
66.8k
  }
508
509
2.45k
  i_oldest = (p->speeder_c < CURL_SPEED_RECORDS) ? 0 :
510
2.45k
             ((i_latest + 1) % CURL_SPEED_RECORDS);
511
512
  /* How much we transferred between oldest and current records */
513
2.45k
  amount = p->speed_amount[i_latest] - p->speed_amount[i_oldest];
514
  /* How long this took */
515
2.45k
  duration_us = p->speed_time[i_latest] - p->speed_time[i_oldest];
516
2.45k
  if(duration_us <= 0)
517
2.45k
    duration_us = 1;
518
519
2.45k
  if(amount > (CURL_OFF_T_MAX / 1000000)) {
520
    /* the 'amount' value is bigger than would fit in 64 bits if
521
       multiplied with 1000000, so we use the double math for this */
522
0
    p->current_speed =
523
0
      (curl_off_t)(((double)amount * 1000000.0) / (double)duration_us);
524
0
  }
525
2.45k
  else {
526
2.45k
    p->current_speed = amount * 1000000 / duration_us;
527
2.45k
  }
528
529
2.45k
  if((p->delta.lastshow_us >= 0) && !data->req.done &&
530
0
     ((elapsed_us - p->delta.lastshow_us) < (1000 * 1000)))
531
0
    return FALSE;
532
2.45k
  p->delta.lastshow_us = elapsed_us;
533
2.45k
  return TRUE;
534
2.45k
}
535
536
#ifndef CURL_DISABLE_PROGRESS_METER
537
538
struct pgrs_estimate {
539
  curl_off_t secs;
540
  curl_off_t percent;
541
};
542
543
static curl_off_t pgrs_est_percent(curl_off_t total, curl_off_t cur)
544
871
{
545
871
  if(total > 10000)
546
139
    return cur / (total / 100);
547
732
  else if(total > 0)
548
579
    return (cur * 100) / total;
549
153
  return 0;
550
871
}
551
552
static void pgrs_estimates(struct pgrs_dir *d,
553
                           bool total_known,
554
                           struct pgrs_estimate *est)
555
1.13k
{
556
1.13k
  est->secs = 0;
557
1.13k
  est->percent = 0;
558
1.13k
  if(total_known && (d->speed > 0)) {
559
306
    est->secs = d->total_size / d->speed;
560
306
    est->percent = pgrs_est_percent(d->total_size, d->cur_size);
561
306
  }
562
1.13k
}
563
564
static void progress_meter(struct Curl_easy *data)
565
565
{
566
565
  struct Progress *p = &data->progress;
567
565
  char max6[6][7];
568
565
  struct pgrs_estimate dl_estm;
569
565
  struct pgrs_estimate ul_estm;
570
565
  struct pgrs_estimate total_estm;
571
565
  curl_off_t total_cur_size;
572
565
  curl_off_t total_expected_size;
573
565
  curl_off_t dl_size;
574
565
  char time_left[8];
575
565
  char time_total[8];
576
565
  char time_spent[8];
577
565
  curl_off_t cur_secs = (curl_off_t)p->total.spent_us / 1000000;
578
579
565
  if(!p->headers_out) {
580
123
    if(data->state.resume_from) {
581
16
      curl_mfprintf(data->set.err,
582
16
                    "** Resuming transfer from byte position %" FMT_OFF_T "\n",
583
16
                    data->state.resume_from);
584
16
    }
585
123
    curl_mfprintf(data->set.err,
586
123
                  "  %% Total    %% Received %% Xferd  Average Speed  "
587
123
                  "Time    Time    Time   Current\n"
588
123
                  "                                 Dload  Upload  "
589
123
                  "Total   Spent   Left   Speed\n");
590
123
    p->headers_out = TRUE; /* headers are shown */
591
123
  }
592
593
  /* Figure out the estimated time of arrival for upload and download */
594
565
  pgrs_estimates(&p->ul, (bool)p->ul_size_known, &ul_estm);
595
565
  pgrs_estimates(&p->dl, (bool)p->dl_size_known, &dl_estm);
596
597
  /* Since both happen at the same time, total expected duration is max. */
598
565
  total_estm.secs = CURLMAX(ul_estm.secs, dl_estm.secs);
599
  /* create the three time strings */
600
565
  time2str(time_left, sizeof(time_left),
601
565
           total_estm.secs > 0 ? (total_estm.secs - cur_secs) : 0);
602
565
  time2str(time_total, sizeof(time_total), total_estm.secs);
603
565
  time2str(time_spent, sizeof(time_spent), cur_secs);
604
605
  /* Get the total amount of data expected to get transferred */
606
565
  total_expected_size = p->ul_size_known ? p->ul.total_size : p->ul.cur_size;
607
608
565
  dl_size = p->dl_size_known ? p->dl.total_size : p->dl.cur_size;
609
610
  /* integer overflow check */
611
565
  if((CURL_OFF_T_MAX - total_expected_size) < dl_size)
612
0
    total_expected_size = CURL_OFF_T_MAX; /* capped */
613
565
  else
614
565
    total_expected_size += dl_size;
615
616
  /* We have transferred this much so far */
617
565
  total_cur_size = p->dl.cur_size + p->ul.cur_size;
618
619
  /* Get the percentage of data transferred so far */
620
565
  total_estm.percent = pgrs_est_percent(total_expected_size, total_cur_size);
621
622
565
  curl_mfprintf(data->set.err,
623
565
                "\r"
624
565
                "%3" FMT_OFF_T " %s "
625
565
                "%3" FMT_OFF_T " %s "
626
565
                "%3" FMT_OFF_T " %s %s %s %s %s %s %s",
627
565
                total_estm.percent, /* 3 letters */    /* total % */
628
565
                max6out(total_expected_size, max6[2],
629
565
                        sizeof(max6[2])),              /* total size */
630
565
                dl_estm.percent, /* 3 letters */       /* rcvd % */
631
565
                max6out(p->dl.cur_size, max6[0],
632
565
                        sizeof(max6[0])),              /* rcvd size */
633
565
                ul_estm.percent, /* 3 letters */       /* xfer % */
634
565
                max6out(p->ul.cur_size, max6[1],
635
565
                        sizeof(max6[1])),              /* xfer size */
636
565
                max6out(p->dl.speed, max6[3],
637
565
                        sizeof(max6[3])),              /* avrg dl speed */
638
565
                max6out(p->ul.speed, max6[4],
639
565
                        sizeof(max6[4])),              /* avrg ul speed */
640
565
                time_total,    /* 7 letters */         /* total time */
641
565
                time_spent,    /* 7 letters */         /* time spent */
642
565
                time_left,     /* 7 letters */         /* time left */
643
565
                max6out(p->current_speed, max6[5],
644
565
                        sizeof(max6[5]))               /* current speed */
645
565
    );
646
647
  /* we flush the output stream to make it appear as soon as possible */
648
565
  fflush(data->set.err);
649
565
}
650
#else /* CURL_DISABLE_PROGRESS_METER */
651
#define progress_meter(x) Curl_nop_stmt
652
#endif
653
654
/*
655
 * Curl_pgrsUpdate() returns 0 for success or the value returned by the
656
 * progress callback!
657
 */
658
static CURLcode pgrsupdate(struct Curl_easy *data, bool showprogress)
659
74.1k
{
660
74.1k
  if(!data->progress.hide) {
661
1.22k
    int rc;
662
1.22k
    if(data->set.fxferinfo) {
663
      /* There is a callback set, call that */
664
0
      struct Curl_mapi_guard guard;
665
0
      CURL_CBAPI_START(&guard, data, easy_fxferinfo);
666
0
      rc = data->set.fxferinfo(data->set.progress_client,
667
0
                               data->progress.dl.total_size,
668
0
                               data->progress.dl.cur_size,
669
0
                               data->progress.ul.total_size,
670
0
                               data->progress.ul.cur_size);
671
0
      CURL_CBAPI_END(&guard);
672
0
      if(rc != CURL_PROGRESSFUNC_CONTINUE) {
673
0
        if(rc) {
674
0
          failf(data, "Callback aborted");
675
0
          return CURLE_ABORTED_BY_CALLBACK;
676
0
        }
677
0
        return CURLE_OK;
678
0
      }
679
0
    }
680
1.22k
    else if(data->set.fprogress) {
681
      /* The older deprecated callback is set, call that */
682
0
      struct Curl_mapi_guard guard;
683
0
      CURL_CBAPI_START(&guard, data, easy_fprogress);
684
0
      rc = data->set.fprogress(data->set.progress_client,
685
0
                               (double)data->progress.dl.total_size,
686
0
                               (double)data->progress.dl.cur_size,
687
0
                               (double)data->progress.ul.total_size,
688
0
                               (double)data->progress.ul.cur_size);
689
0
      CURL_CBAPI_END(&guard);
690
0
      if(rc != CURL_PROGRESSFUNC_CONTINUE) {
691
0
        if(rc) {
692
0
          failf(data, "Callback aborted");
693
0
          return CURLE_ABORTED_BY_CALLBACK;
694
0
        }
695
0
        return CURLE_OK;
696
0
      }
697
0
    }
698
699
1.22k
    if(showprogress)
700
565
      progress_meter(data);
701
1.22k
  }
702
703
74.1k
  return CURLE_OK;
704
74.1k
}
705
706
static CURLcode pgrs_update(struct Curl_easy *data,
707
                            const struct curltime *pnow)
708
74.1k
{
709
74.1k
  bool showprogress = progress_calc(data, pnow);
710
74.1k
  return pgrsupdate(data, showprogress);
711
74.1k
}
712
713
CURLcode Curl_pgrsUpdate(struct Curl_easy *data)
714
63.9k
{
715
63.9k
  return pgrs_update(data, Curl_pgrs_now(data));
716
63.9k
}
717
718
CURLcode Curl_pgrsUpdateX(struct Curl_easy *data,
719
                          const struct curltime *pnow)
720
6.84k
{
721
6.84k
  return pgrs_update(data, pnow);
722
6.84k
}
723
724
CURLcode Curl_pgrsCheck(struct Curl_easy *data)
725
3.43k
{
726
3.43k
  CURLcode result;
727
728
3.43k
  result = pgrs_update(data, Curl_pgrs_now(data));
729
3.43k
  if(!result && !data->req.done)
730
2.63k
    result = pgrs_speedcheck(data, Curl_pgrs_now(data));
731
3.43k
  return result;
732
3.43k
}
733
734
/*
735
 * Update all progress, do not do progress meter/callbacks.
736
 */
737
void Curl_pgrsUpdate_nometer(struct Curl_easy *data)
738
1.70k
{
739
1.70k
  (void)progress_calc(data, Curl_pgrs_now(data));
740
1.70k
}
741
742
void Curl_pgrsCompleted(struct Curl_easy *data)
743
11.1k
{
744
11.1k
  struct Progress * const p = &data->progress;
745
11.1k
  p->total.spent_us = curlx_ptimediff_us(Curl_pgrs_now(data), &p->start);
746
11.1k
}
747
748
timediff_t Curl_pgrs_since_ms(struct Curl_easy *data,
749
                              const struct curltime *pnow,
750
                              timerid timer)
751
74.1k
{
752
74.1k
  if(!pnow)
753
97
    pnow = Curl_pgrs_now(data);
754
74.1k
  switch(timer) {
755
40.6k
  case TIMER_STARTOP:
756
40.6k
    return (curlx_ptimediff_us(pnow, &data->progress.start) -
757
40.6k
            data->progress.delta.startop_us) / 1000;
758
33.5k
  case TIMER_STARTSINGLE:
759
33.5k
    return (curlx_ptimediff_us(pnow, &data->progress.start) -
760
33.5k
            data->progress.delta.startsingle_us) / 1000;
761
0
  default:
762
0
    DEBUGASSERT(0);
763
0
    return 0;
764
74.1k
  }
765
74.1k
}