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 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384
|
/**
* @file
* Progress Bar Window
*
* @authors
* Copyright (C) 2022-2023 Richard Russon <rich@flatcap.org>
*
* @copyright
* This program 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.
*
* This program 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
* this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* @page progress_window Progress Bar Window
*
* Progress Bar Window
*
* ## Windows
*
* | Name | Type | See Also |
* | :-------------- | :------------ | :-------------------- |
* | Progress Window | WT_STATUS_BAR | progress_window_new() |
*
* **Parent**
* - @ref gui_msgcont
*
* **Children**
*
* None.
*
* ## Data
* - #ProgressWindowData
*
* The Progress Bar Window stores its data (#ProgressWindowData) in MuttWindow::wdata.
*
* ## Events
*
* Once constructed, it is controlled by the following events:
*
* | Event Type | Handler |
* | :-------------------- | :-------------------- |
* | MuttWindow::recalc() | sb_recalc() |
* | MuttWindow::repaint() | sb_repaint() |
*/
#include "config.h"
#include <stdarg.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
#include "mutt/lib.h"
#include "gui/lib.h"
#include "color/lib.h"
#include "expando/lib.h"
#include "muttlib.h"
#include "wdata.h"
/**
* message_bar - Draw a colourful progress bar
* @param win Window to draw on
* @param percent %age complete
* @param fmt printf(1)-like formatting string
* @param ... Arguments to formatting string
*/
static void message_bar(struct MuttWindow *win, int percent, const char *fmt, ...)
{
if (!fmt || !win || !win->wdata)
return;
va_list ap;
char buf[1024] = { 0 };
struct Buffer *buf2 = buf_pool_get();
int w = (percent * win->state.cols) / 100;
size_t l;
va_start(ap, fmt);
vsnprintf(buf, sizeof(buf), fmt, ap);
l = mutt_strwidth(buf);
va_end(ap);
format_string(buf2, 0, win->state.cols - 2, JUSTIFY_LEFT, 0, buf, sizeof(buf), false);
mutt_window_move(win, 0, 0);
if ((percent != -1) && simple_color_is_set(MT_COLOR_PROGRESS))
{
if (l < w)
{
/* The string fits within the colour bar */
mutt_curses_set_normal_backed_color_by_id(MT_COLOR_PROGRESS);
mutt_window_addstr(win, buf_string(buf2));
w -= l;
while (w-- > 0)
{
mutt_window_addch(win, ' ');
}
mutt_curses_set_color_by_id(MT_COLOR_NORMAL);
}
else
{
/* The string is too long for the colour bar */
int off = mutt_wstr_trunc(buf_string(buf2), buf2->dsize, w, NULL);
char ch = buf_at(buf2, off);
buf2->data[off] = '\0';
mutt_curses_set_normal_backed_color_by_id(MT_COLOR_PROGRESS);
mutt_window_addstr(win, buf_string(buf2));
buf2->data[off] = ch;
mutt_curses_set_color_by_id(MT_COLOR_NORMAL);
mutt_window_addstr(win, buf2->data + off);
}
}
else
{
mutt_window_addstr(win, buf_string(buf2));
}
mutt_window_clrtoeol(win);
buf_pool_release(&buf2);
}
/**
* progress_window_recalc - Recalculate the Progress Bar - Implements MuttWindow::recalc() - @ingroup window_recalc
*/
static int progress_window_recalc(struct MuttWindow *win)
{
if (!win || !win->wdata)
return -1;
struct ProgressWindowData *wdata = win->wdata;
wdata->display_pos = wdata->update_pos;
wdata->display_time = wdata->update_time;
if (wdata->is_bytes)
{
struct Buffer *pretty = buf_pool_get();
mutt_str_pretty_size(pretty, wdata->display_pos);
mutt_str_copy(wdata->pretty_pos, buf_string(pretty), sizeof(wdata->pretty_pos));
buf_pool_release(&pretty);
}
if ((wdata->update_percent < 0) && (wdata->size != 0))
wdata->display_percent = 100 * wdata->display_pos / wdata->size;
else
wdata->display_percent = wdata->update_percent;
win->actions |= WA_REPAINT;
return 0;
}
/**
* progress_window_repaint - Repaint the Progress Bar - Implements MuttWindow::repaint() - @ingroup window_repaint
*/
static int progress_window_repaint(struct MuttWindow *win)
{
if (!win || !win->wdata)
return -1;
struct ProgressWindowData *wdata = win->wdata;
if (wdata->msg[0] == '\0')
return 0;
if (wdata->size == 0)
{
if (wdata->display_percent >= 0)
{
if (wdata->is_bytes)
{
/* L10N: Progress bar: `%s` loading text, `%s` pretty size (e.g. 4.6K),
`%d` is the number, `%%` is the percent symbol.
`%d` and `%%` may be reordered, or space inserted, if you wish. */
message_bar(wdata->win, wdata->display_percent, _("%s %s (%d%%)"),
wdata->msg, wdata->pretty_pos, wdata->display_percent);
}
else
{
/* L10N: Progress bar: `%s` loading text, `%zu` position,
`%d` is the number, `%%` is the percent symbol.
`%d` and `%%` may be reordered, or space inserted, if you wish. */
message_bar(wdata->win, wdata->display_percent, _("%s %zu (%d%%)"),
wdata->msg, wdata->display_pos, wdata->display_percent);
}
}
else
{
if (wdata->is_bytes)
{
/* L10N: Progress bar: `%s` loading text, `%s` position/size */
message_bar(wdata->win, -1, _("%s %s"), wdata->msg, wdata->pretty_pos);
}
else
{
/* L10N: Progress bar: `%s` loading text, `%zu` position */
message_bar(wdata->win, -1, _("%s %zu"), wdata->msg, wdata->display_pos);
}
}
}
else
{
if (wdata->is_bytes)
{
/* L10N: Progress bar: `%s` loading text, `%s/%s` position/size,
`%d` is the number, `%%` is the percent symbol.
`%d` and `%%` may be reordered, or space inserted, if you wish. */
message_bar(wdata->win, wdata->display_percent, _("%s %s/%s (%d%%)"),
wdata->msg, wdata->pretty_pos, wdata->pretty_size, wdata->display_percent);
}
else
{
/* L10N: Progress bar: `%s` loading text, `%zu/%zu` position/size,
`%d` is the number, `%%` is the percent symbol.
`%d` and `%%` may be reordered, or space inserted, if you wish. */
message_bar(wdata->win, wdata->display_percent, _("%s %zu/%zu (%d%%)"),
wdata->msg, wdata->display_pos, wdata->size, wdata->display_percent);
}
}
return 0;
}
/**
* percent_needs_update - Do we need to update, given the current percentage?
* @param wdata Private data
* @param percent Updated percentage
* @retval true Progress needs an update
*/
static bool percent_needs_update(const struct ProgressWindowData *wdata, int percent)
{
return (percent > wdata->display_percent);
}
/**
* pos_needs_update - Do we need to update, given the current pos?
* @param wdata Private data
* @param pos Current pos
* @retval true Progress needs an update
*/
static bool pos_needs_update(const struct ProgressWindowData *wdata, long pos)
{
const unsigned shift = wdata->is_bytes ? 10 : 0;
return pos >= (wdata->display_pos + (wdata->size_inc << shift));
}
/**
* time_needs_update - Do we need to update, given the current time?
* @param wdata Private data
* @param now Time
* @retval true Progress needs an update
*/
static bool time_needs_update(const struct ProgressWindowData *wdata, size_t now)
{
if (wdata->time_inc == 0)
return true;
if (now < wdata->display_time)
return true;
const size_t elapsed = (now - wdata->display_time);
return (wdata->time_inc < elapsed);
}
/**
* progress_window_update - Update the Progress Bar Window
* @param win Window to draw on
* @param pos Position, or count
* @param percent Percentage complete
* @retval true Screen update is needed
*/
bool progress_window_update(struct MuttWindow *win, size_t pos, int percent)
{
if (!win || !win->wdata)
return false;
struct ProgressWindowData *wdata = win->wdata;
if (percent >= 0)
{
if (!percent_needs_update(wdata, percent))
return false;
}
else
{
if (!pos_needs_update(wdata, pos))
return false;
}
const uint64_t now = mutt_date_now_ms();
if (!time_needs_update(wdata, now))
return false;
wdata->update_pos = pos;
wdata->update_percent = percent;
wdata->update_time = now;
win->actions |= WA_RECALC;
return true;
}
/**
* progress_window_new - Create a new Progress Bar Window
* @param size Expected number of records or size of traffic
* @param size_inc Size increment (step size)
* @param time_inc Time increment
* @param is_bytes true if measuring bytes
* @retval ptr New Progress Window
*/
struct MuttWindow *progress_window_new(size_t size, size_t size_inc,
size_t time_inc, bool is_bytes)
{
if (size_inc == 0) // The user has disabled the progress bar
return NULL;
struct MuttWindow *win = mutt_window_new(WT_STATUS_BAR, MUTT_WIN_ORIENT_VERTICAL,
MUTT_WIN_SIZE_FIXED,
MUTT_WIN_SIZE_UNLIMITED, 1);
win->recalc = progress_window_recalc;
win->repaint = progress_window_repaint;
struct ProgressWindowData *wdata = progress_wdata_new();
wdata->win = win;
wdata->size = size;
wdata->size_inc = size_inc;
wdata->time_inc = time_inc;
wdata->is_bytes = is_bytes;
if (is_bytes)
{
struct Buffer *pretty = buf_pool_get();
mutt_str_pretty_size(pretty, size);
mutt_str_copy(wdata->pretty_size, buf_string(pretty), sizeof(wdata->pretty_size));
buf_pool_release(&pretty);
}
win->wdata = wdata;
win->wdata_free = progress_wdata_free;
return win;
}
/**
* progress_window_set_message - Set the progress message
* @param win Window to draw on
* @param fmt printf format string
* @param ap printf arguments
*/
void progress_window_set_message(struct MuttWindow *win, const char *fmt, va_list ap)
{
if (!win || !win->wdata || !fmt)
return;
struct ProgressWindowData *wdata = win->wdata;
vsnprintf(wdata->msg, sizeof(wdata->msg), fmt, ap);
win->actions |= WA_RECALC;
}
/**
* progress_window_set_size - Set the progress size
* @param win Window to draw on
* @param size New size
*/
void progress_window_set_size(struct MuttWindow *win, size_t size)
{
if (!win || !win->wdata)
return;
struct ProgressWindowData *wdata = win->wdata;
wdata->size = size;
wdata->display_pos = 0;
wdata->display_percent = 0;
wdata->display_time = 0;
win->actions |= WA_RECALC;
}
|