1 /* -*- c-file-style: "linux" -*-
3 * Copyright (C) 1996-2000 by Andrew Tridgell
4 * Copyright (C) Paul Mackerras 1996
5 * Copyright (C) 2001, 2002 by Martin Pool <mbp@samba.org>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 extern struct stats stats
;
27 #define PROGRESS_HISTORY_SECS 5
35 struct progress_history
{
40 static struct progress_history ph_start
;
41 static struct progress_history ph_list
[PROGRESS_HISTORY_SECS
];
42 static int newest_hpos
, oldest_hpos
;
44 static unsigned long msdiff(struct timeval
*t1
, struct timeval
*t2
)
46 return (t2
->tv_sec
- t1
->tv_sec
) * 1000L
47 + (t2
->tv_usec
- t1
->tv_usec
) / 1000;
52 * @param ofs Current position in file
53 * @param size Total size of file
54 * @param is_last True if this is the last time progress will be
55 * printed for this file, so we should output a newline. (Not
56 * necessarily the same as all bytes being received.)
58 static void rprint_progress(OFF_T ofs
, OFF_T size
, struct timeval
*now
,
63 int pct
= ofs
== size
? 100 : (int) (100.0 * ofs
/ size
);
66 int remain_h
, remain_m
, remain_s
;
69 /* Compute stats based on the starting info. */
70 if (!ph_start
.time
.tv_sec
71 || !(diff
= msdiff(&ph_start
.time
, now
)))
73 rate
= (double) (ofs
- ph_start
.ofs
) * 1000.0 / diff
/ 1024.0;
74 /* Switch to total time taken for our last update. */
75 remain
= (double) diff
/ 1000.0;
77 /* Compute stats based on recent progress. */
78 if (!(diff
= msdiff(&ph_list
[oldest_hpos
].time
, now
)))
80 rate
= (double) (ofs
- ph_list
[oldest_hpos
].ofs
) * 1000.0
82 remain
= rate
? (double) (size
- ofs
) / rate
/ 1000.0 : 0.0;
85 if (rate
> 1024*1024) {
86 rate
/= 1024.0 * 1024.0;
88 } else if (rate
> 1024) {
95 remain_s
= (int) remain
% 60;
96 remain_m
= (int) (remain
/ 60.0) % 60;
97 remain_h
= (int) (remain
/ 3600.0);
100 snprintf(eol
, sizeof eol
, " (%d, %.1f%% of %d)\n",
101 stats
.num_transferred_files
,
102 (float)((stats
.current_file_index
+1) * 100)
107 rprintf(FINFO
, "%12.0f %3d%% %7.2f%s %4d:%02d:%02d%s",
108 (double) ofs
, pct
, rate
, units
,
109 remain_h
, remain_m
, remain_s
, eol
);
112 void end_progress(OFF_T size
)
116 gettimeofday(&now
, NULL
);
117 rprint_progress(size
, size
, &now
, True
);
119 memset(&ph_start
, 0, sizeof ph_start
);
122 void show_progress(OFF_T ofs
, OFF_T size
)
125 #if defined HAVE_GETPGRP && defined HAVE_TCGETPGRP
126 static pid_t pgrp
= -1;
133 #if defined HAVE_GETPGRP && defined HAVE_TCGETPGRP
135 pgrp
= getpgrp(GETPGRP_ARG
);
138 gettimeofday(&now
, NULL
);
140 if (!ph_start
.time
.tv_sec
) {
143 /* Try to guess the real starting time when the sender started
144 * to send us data by using the time we last received some data
145 * in the last file (if it was recent enough). */
146 if (msdiff(&ph_list
[newest_hpos
].time
, &now
) <= 1500) {
147 ph_start
.time
= ph_list
[newest_hpos
].time
;
150 ph_start
.time
.tv_sec
= now
.tv_sec
;
151 ph_start
.time
.tv_usec
= now
.tv_usec
;
155 for (i
= 0; i
< PROGRESS_HISTORY_SECS
; i
++)
156 ph_list
[i
] = ph_start
;
159 if (msdiff(&ph_list
[newest_hpos
].time
, &now
) < 1000)
162 newest_hpos
= oldest_hpos
;
163 oldest_hpos
= (oldest_hpos
+ 1) % PROGRESS_HISTORY_SECS
;
164 ph_list
[newest_hpos
].time
.tv_sec
= now
.tv_sec
;
165 ph_list
[newest_hpos
].time
.tv_usec
= now
.tv_usec
;
166 ph_list
[newest_hpos
].ofs
= ofs
;
169 #if defined HAVE_GETPGRP && defined HAVE_TCGETPGRP
170 tc_pgrp
= tcgetpgrp(STDOUT_FILENO
);
171 if (tc_pgrp
!= pgrp
&& tc_pgrp
!= -1)
175 rprint_progress(ofs
, size
, &now
, False
);