Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame^] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Arnaldo Carvalho de Melo | 5575536 | 2010-08-08 19:48:31 -0300 | [diff] [blame] | 2 | #include <stdio.h> |
| 3 | #include <stdlib.h> |
Arnaldo Carvalho de Melo | 4610e41 | 2011-10-26 12:04:37 -0200 | [diff] [blame] | 4 | #include <string.h> |
Arnaldo Carvalho de Melo | 5575536 | 2010-08-08 19:48:31 -0300 | [diff] [blame] | 5 | |
Arnaldo Carvalho de Melo | 1e6dd07 | 2010-08-10 15:58:50 -0300 | [diff] [blame] | 6 | #include "../debug.h" |
Arnaldo Carvalho de Melo | 5575536 | 2010-08-08 19:48:31 -0300 | [diff] [blame] | 7 | #include "helpline.h" |
Arnaldo Carvalho de Melo | 5c35d69 | 2011-02-09 11:38:43 -0200 | [diff] [blame] | 8 | #include "ui.h" |
Arnaldo Carvalho de Melo | 175729f | 2016-07-07 11:38:09 -0300 | [diff] [blame] | 9 | #include "../util.h" |
Arnaldo Carvalho de Melo | 5575536 | 2010-08-08 19:48:31 -0300 | [diff] [blame] | 10 | |
Arnaldo Carvalho de Melo | 4610e41 | 2011-10-26 12:04:37 -0200 | [diff] [blame] | 11 | char ui_helpline__current[512]; |
| 12 | |
Namhyung Kim | e6e9046 | 2012-08-16 17:14:50 +0900 | [diff] [blame] | 13 | static void nop_helpline__pop(void) |
| 14 | { |
| 15 | } |
| 16 | |
Irina Tirdea | 1d037ca | 2012-09-11 01:15:03 +0300 | [diff] [blame] | 17 | static void nop_helpline__push(const char *msg __maybe_unused) |
Namhyung Kim | e6e9046 | 2012-08-16 17:14:50 +0900 | [diff] [blame] | 18 | { |
| 19 | } |
| 20 | |
Namhyung Kim | b56e533 | 2012-11-15 01:47:41 +0900 | [diff] [blame] | 21 | static int nop_helpline__show(const char *fmt __maybe_unused, |
| 22 | va_list ap __maybe_unused) |
| 23 | { |
| 24 | return 0; |
| 25 | } |
| 26 | |
Namhyung Kim | e6e9046 | 2012-08-16 17:14:50 +0900 | [diff] [blame] | 27 | static struct ui_helpline default_helpline_fns = { |
| 28 | .pop = nop_helpline__pop, |
| 29 | .push = nop_helpline__push, |
Namhyung Kim | b56e533 | 2012-11-15 01:47:41 +0900 | [diff] [blame] | 30 | .show = nop_helpline__show, |
Namhyung Kim | e6e9046 | 2012-08-16 17:14:50 +0900 | [diff] [blame] | 31 | }; |
| 32 | |
| 33 | struct ui_helpline *helpline_fns = &default_helpline_fns; |
| 34 | |
| 35 | void ui_helpline__pop(void) |
| 36 | { |
| 37 | helpline_fns->pop(); |
| 38 | } |
| 39 | |
Arnaldo Carvalho de Melo | 5575536 | 2010-08-08 19:48:31 -0300 | [diff] [blame] | 40 | void ui_helpline__push(const char *msg) |
| 41 | { |
Namhyung Kim | e6e9046 | 2012-08-16 17:14:50 +0900 | [diff] [blame] | 42 | helpline_fns->push(msg); |
Arnaldo Carvalho de Melo | 5575536 | 2010-08-08 19:48:31 -0300 | [diff] [blame] | 43 | } |
| 44 | |
Arnaldo Carvalho de Melo | 59e8fe3 | 2010-08-10 15:44:20 -0300 | [diff] [blame] | 45 | void ui_helpline__vpush(const char *fmt, va_list ap) |
Arnaldo Carvalho de Melo | 5575536 | 2010-08-08 19:48:31 -0300 | [diff] [blame] | 46 | { |
| 47 | char *s; |
| 48 | |
| 49 | if (vasprintf(&s, fmt, ap) < 0) |
| 50 | vfprintf(stderr, fmt, ap); |
| 51 | else { |
| 52 | ui_helpline__push(s); |
| 53 | free(s); |
| 54 | } |
| 55 | } |
| 56 | |
| 57 | void ui_helpline__fpush(const char *fmt, ...) |
| 58 | { |
| 59 | va_list ap; |
| 60 | |
| 61 | va_start(ap, fmt); |
| 62 | ui_helpline__vpush(fmt, ap); |
| 63 | va_end(ap); |
| 64 | } |
| 65 | |
| 66 | void ui_helpline__puts(const char *msg) |
| 67 | { |
| 68 | ui_helpline__pop(); |
| 69 | ui_helpline__push(msg); |
| 70 | } |
Namhyung Kim | b56e533 | 2012-11-15 01:47:41 +0900 | [diff] [blame] | 71 | |
| 72 | int ui_helpline__vshow(const char *fmt, va_list ap) |
| 73 | { |
| 74 | return helpline_fns->show(fmt, ap); |
| 75 | } |
Arnaldo Carvalho de Melo | 9484b86 | 2016-11-25 15:48:25 -0300 | [diff] [blame] | 76 | |
| 77 | void ui_helpline__printf(const char *fmt, ...) |
| 78 | { |
| 79 | va_list ap; |
| 80 | |
| 81 | ui_helpline__pop(); |
| 82 | va_start(ap, fmt); |
| 83 | ui_helpline__vpush(fmt, ap); |
| 84 | va_end(ap); |
| 85 | } |