1 /* progress.c - emit progress status lines
2 * Copyright (C) 2003, 2006 Free Software Foundation, Inc.
4 * This file is part of GnuPG.
6 * GnuPG is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * GnuPG is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
33 /* Create a new context for use with the progress filter. We need to
34 allocate such contexts on the heap because there is no guarantee
35 that at the end of a function the filter has already been popped
36 off. In general this will happen but with malformed packets it is
37 possible that a filter has not yet reached the end-of-stream when
38 the function has done all processing. Checking in each function
39 that end-of-stream has been reached would be to cumbersome.
41 What we also do is to shortcut the progress handler by having this
42 function return NULL if progress information has not been
45 progress_filter_context_t
*
46 new_progress_context (void)
48 progress_filter_context_t
*pfx
;
50 if (!opt
.enable_progress_filter
)
53 if (!is_status_enabled ())
56 pfx
= xcalloc (1, sizeof *pfx
);
62 /* Release a progress filter context. Passing NULL is explicitly
63 allowed and a no-op. */
65 release_progress_context (progress_filter_context_t
*pfx
)
69 assert (pfx
->refcount
);
70 if ( --pfx
->refcount
)
78 * The filter is used to report progress to the user.
81 progress_filter (void *opaque
, int control
,
82 IOBUF a
, byte
*buf
, size_t *ret_len
)
85 progress_filter_context_t
*pfx
= opaque
;
87 if (control
== IOBUFCTRL_INIT
)
93 pfx
->last_time
= make_timestamp ();
95 sprintf (buffer
, "%.20s ? %lu %lu",
96 pfx
->what
? pfx
->what
: "?",
99 write_status_text (STATUS_PROGRESS
, buffer
);
101 else if (control
== IOBUFCTRL_UNDERFLOW
)
103 u32 timestamp
= make_timestamp ();
104 int len
= iobuf_read (a
, buf
, *ret_len
);
116 if ((len
== -1 && pfx
->offset
!= pfx
->last
)
117 || timestamp
- pfx
->last_time
> 0)
121 sprintf (buffer
, "%.20s ? %lu %lu",
122 pfx
->what
? pfx
->what
: "?",
125 write_status_text (STATUS_PROGRESS
, buffer
);
127 pfx
->last
= pfx
->offset
;
128 pfx
->last_time
= timestamp
;
131 else if (control
== IOBUFCTRL_FREE
)
133 release_progress_context (pfx
);
135 else if (control
== IOBUFCTRL_DESC
)
136 *(char**)buf
= "progress_filter";
141 handle_progress (progress_filter_context_t
*pfx
, IOBUF inp
, const char *name
)
148 assert (opt
.enable_progress_filter
);
149 assert (is_status_enabled ());
151 if ( !iobuf_is_pipe_filename (name
) && *name
)
152 filesize
= iobuf_get_filelength (inp
, NULL
);
153 else if (opt
.set_filesize
)
154 filesize
= opt
.set_filesize
;
156 /* register the progress filter */
157 pfx
->what
= xstrdup (name
? name
: "stdin");
158 pfx
->total
= filesize
;
160 iobuf_push_filter (inp
, progress_filter
, pfx
);