-
Notifications
You must be signed in to change notification settings - Fork 25
/
progress.h
108 lines (84 loc) · 3.2 KB
/
progress.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/*
* progress.h
* $Id: progress.h,v 1.11 2006/09/01 17:20:50 bobi Exp $
*
* Copyright 2004 Bobi B., [email protected]
*
* This file is part of hdl_dump.
*
* hdl_dump is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* hdl_dump is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with hdl_dump; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#if !defined(_PROGRESS_H)
#define _PROGRESS_H
#include "config.h"
#include <time.h>
C_START
/*
* the shorter that is, the faster it will respond to the changes,
* however it will be more inacurate;
* heavily depends on the distance between and height of measurements;
* # measures of 1MB each => track last # megabytes
*/
#define PG_HIST_SIZE 10
/* high-resolution timers support */
#define HIGHRES_TO_SEC 1000000 /* microseconds */
#if defined(_BUILD_WIN32) && !defined(_BUILD_WINE)
#include <windows.h>
typedef LARGE_INTEGER highres_time_t;
#endif
#if defined(_BUILD_UNIX) || defined(_BUILD_WINE)
#include <sys/time.h>
typedef struct timeval highres_time_t;
#endif
void highres_time(/*@out@*/ highres_time_t *cl);
u_int64_t highres_time_val(const highres_time_t *cl);
typedef struct progress_type progress_t;
/* returns 0 to continue, other to interrupt */
typedef int (*progress_cb_t)(progress_t *, void *);
/* TODO: check overflow with big files */
struct progress_type
{ /* "private" */
u_int64_t start_, elapsed_; /* highres_time_val */
u_int64_t offset_; /* of the current block, absolute */
progress_cb_t progress_cb_;
/*@dependent@*/ void *progress_data_;
int last_elapsed_; /* last time when the estimated has been calculated */
/* history/histogram to track current speed */
struct hist_t
{
u_int32_t how_much;
u_int64_t when; /* highres_time_val */
} history_[PG_HIST_SIZE];
u_int32_t hist_pos_;
u_int64_t hist_sum_; /* = select sum (how_much) from history_ */
/* last major values when callback has been called */
int call_pc_completed_, call_elapsed_, call_estimated_, call_remaining_;
/* "public" */
u_int64_t total, curr; /* in bytes */
long avg_bps, curr_bps; /* avg and curr bps (since the begining) */
int pc_completed; /* in % */
int elapsed, estimated, remaining; /* in seconds or -1 */
char elapsed_text[20], estimated_text[20], remaining_text[20];
};
progress_t *pgs_alloc(progress_cb_t progress_cb,
void *data);
void pgs_free(progress_t *pgs);
void pgs_prepare(progress_t *pgs,
u_int64_t total);
void pgs_chunk_complete(progress_t *pgs);
int pgs_update(progress_t *pgs,
u_int64_t curr);
C_END
#endif /* _PROGRESS_H defined? */