source: mainline/uspace/app/tester/console/console1.c@ 0e80e40

serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 0e80e40 was a35b458, checked in by Jiří Zárevúcky <zarevucky.jiri@…>, 7 years ago

style: Remove trailing whitespace on _all_ lines, including empty ones, for particular file types.

Command used: tools/srepl '\s\+$' '' -- *.c *.h *.py *.sh *.s *.S *.ag

Currently, whitespace on empty lines is very inconsistent.
There are two basic choices: Either remove the whitespace, or keep empty lines
indented to the level of surrounding code. The former is AFAICT more common,
and also much easier to do automatically.

Alternatively, we could write script for automatic indentation, and use that
instead. However, if such a script exists, it's possible to use the indented
style locally, by having the editor apply relevant conversions on load/save,
without affecting remote repository. IMO, it makes more sense to adopt
the simpler rule.

  • Property mode set to 100644
File size: 3.9 KB
Line 
1/*
2 * Copyright (c) 2008 Jiri Svoboda
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29#include <stdio.h>
30#include <stdlib.h>
31#include <io/console.h>
32#include <io/color.h>
33#include <io/style.h>
34#include <vfs/vfs.h>
35#include <async.h>
36#include "../tester.h"
37
38static const char *color_name[] = {
39 [COLOR_BLACK] = "black",
40 [COLOR_BLUE] = "blue",
41 [COLOR_GREEN] = "green",
42 [COLOR_CYAN] = "cyan",
43 [COLOR_RED] = "red",
44 [COLOR_MAGENTA] = "magenta",
45 [COLOR_YELLOW] = "yellow",
46 [COLOR_WHITE] = "white"
47};
48
49const char *test_console1(void)
50{
51 if (!test_quiet) {
52 console_ctrl_t *console = console_init(stdin, stdout);
53
54 printf("Style test: ");
55 console_flush(console);
56 console_set_style(console, STYLE_NORMAL);
57 printf(" normal ");
58 console_flush(console);
59 console_set_style(console, STYLE_EMPHASIS);
60 printf(" emphasized ");
61 console_flush(console);
62 console_set_style(console, STYLE_INVERTED);
63 printf(" inverted ");
64 console_flush(console);
65 console_set_style(console, STYLE_SELECTED);
66 printf(" selected ");
67 console_flush(console);
68 console_set_style(console, STYLE_NORMAL);
69 printf("\n");
70
71 unsigned int i;
72 unsigned int j;
73
74 printf("\nForeground color test:\n");
75 for (j = 0; j < 2; j++) {
76 for (i = COLOR_BLACK; i <= COLOR_WHITE; i++) {
77 console_flush(console);
78 console_set_color(console, COLOR_WHITE, i,
79 j ? CATTR_BRIGHT : 0);
80 printf(" %s ", color_name[i]);
81 }
82 console_flush(console);
83 console_set_style(console, STYLE_NORMAL);
84 putchar('\n');
85 }
86
87 printf("\nBackground color test:\n");
88 for (j = 0; j < 2; j++) {
89 for (i = COLOR_BLACK; i <= COLOR_WHITE; i++) {
90 console_flush(console);
91 console_set_color(console, i, COLOR_WHITE,
92 j ? CATTR_BRIGHT : 0);
93 printf(" %s ", color_name[i]);
94 }
95 console_flush(console);
96 console_set_style(console, STYLE_NORMAL);
97 putchar('\n');
98 }
99
100 printf("\nRGB colors test:\n");
101
102 for (i = 0; i < 255; i += 16) {
103 console_flush(console);
104 console_set_rgb_color(console, i << 16, (255 - i) << 16);
105 putchar('X');
106 }
107 console_flush(console);
108 console_set_color(console, COLOR_WHITE, COLOR_BLACK, 0);
109 putchar('\n');
110
111 for (i = 0; i < 255; i += 16) {
112 console_flush(console);
113 console_set_rgb_color(console, i << 8, (255 - i) << 8);
114 putchar('X');
115 }
116 console_flush(console);
117 console_set_color(console, COLOR_WHITE, COLOR_BLACK, 0);
118 putchar('\n');
119
120 for (i = 0; i < 255; i += 16) {
121 console_flush(console);
122 console_set_rgb_color(console, i, 255 - i);
123 putchar('X');
124 }
125 console_flush(console);
126 console_set_style(console, STYLE_NORMAL);
127 putchar('\n');
128 }
129
130 return NULL;
131}
Note: See TracBrowser for help on using the repository browser.