Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Arnaldo Carvalho de Melo | 34cea7f | 2010-08-08 19:56:47 -0300 | [diff] [blame] | 2 | #ifndef _PERF_UI_PROGRESS_H_ |
| 3 | #define _PERF_UI_PROGRESS_H_ 1 |
| 4 | |
Borislav Petkov | d944c4e | 2014-04-25 21:31:02 +0200 | [diff] [blame] | 5 | #include <linux/types.h> |
Arnaldo Carvalho de Melo | 34cea7f | 2010-08-08 19:56:47 -0300 | [diff] [blame] | 6 | |
Arnaldo Carvalho de Melo | 4d3001f | 2013-10-23 15:40:38 -0300 | [diff] [blame] | 7 | void ui_progress__finish(void); |
Arnaldo Carvalho de Melo | 48000a1 | 2014-12-17 17:24:45 -0300 | [diff] [blame] | 8 | |
Arnaldo Carvalho de Melo | 4d3001f | 2013-10-23 15:40:38 -0300 | [diff] [blame] | 9 | struct ui_progress { |
| 10 | const char *title; |
| 11 | u64 curr, next, step, total; |
Jiri Olsa | 8233822 | 2017-09-08 14:05:10 +0200 | [diff] [blame] | 12 | bool size; |
Arnaldo Carvalho de Melo | 4d3001f | 2013-10-23 15:40:38 -0300 | [diff] [blame] | 13 | }; |
Arnaldo Carvalho de Melo | 48000a1 | 2014-12-17 17:24:45 -0300 | [diff] [blame] | 14 | |
Jiri Olsa | 8233822 | 2017-09-08 14:05:10 +0200 | [diff] [blame] | 15 | void __ui_progress__init(struct ui_progress *p, u64 total, |
| 16 | const char *title, bool size); |
| 17 | |
| 18 | #define ui_progress__init(p, total, title) \ |
| 19 | __ui_progress__init(p, total, title, false) |
| 20 | |
| 21 | #define ui_progress__init_size(p, total, title) \ |
| 22 | __ui_progress__init(p, total, title, true) |
| 23 | |
Arnaldo Carvalho de Melo | 4d3001f | 2013-10-23 15:40:38 -0300 | [diff] [blame] | 24 | void ui_progress__update(struct ui_progress *p, u64 adv); |
| 25 | |
Arnaldo Carvalho de Melo | 4779a2e | 2013-10-23 14:08:48 -0300 | [diff] [blame] | 26 | struct ui_progress_ops { |
Jiri Olsa | 25cc4eb | 2017-09-08 14:05:09 +0200 | [diff] [blame] | 27 | void (*init)(struct ui_progress *p); |
Arnaldo Carvalho de Melo | 4d3001f | 2013-10-23 15:40:38 -0300 | [diff] [blame] | 28 | void (*update)(struct ui_progress *p); |
Namhyung Kim | a5580f3 | 2012-11-13 22:30:34 +0900 | [diff] [blame] | 29 | void (*finish)(void); |
Namhyung Kim | 688f2f5 | 2012-11-13 22:30:32 +0900 | [diff] [blame] | 30 | }; |
| 31 | |
Arnaldo Carvalho de Melo | 4779a2e | 2013-10-23 14:08:48 -0300 | [diff] [blame] | 32 | extern struct ui_progress_ops *ui_progress__ops; |
Namhyung Kim | 688f2f5 | 2012-11-13 22:30:32 +0900 | [diff] [blame] | 33 | |
Arnaldo Carvalho de Melo | 34cea7f | 2010-08-08 19:56:47 -0300 | [diff] [blame] | 34 | #endif |