2016-05-02 13:29:21 +08:00
|
|
|
// Generic output functions.
|
2005-09-20 21:26:39 +08:00
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2016-05-02 13:29:21 +08:00
|
|
|
#include <stdlib.h>
|
2005-09-20 21:26:39 +08:00
|
|
|
#include <string.h>
|
|
|
|
#if HAVE_NCURSES_H
|
|
|
|
#include <ncurses.h>
|
2014-12-07 16:41:15 +08:00
|
|
|
#elif HAVE_NCURSES_CURSES_H
|
|
|
|
#include <ncurses/curses.h>
|
2005-09-20 21:26:39 +08:00
|
|
|
#else
|
|
|
|
#include <curses.h>
|
|
|
|
#endif
|
2006-01-19 20:22:07 +08:00
|
|
|
#if HAVE_TERM_H
|
2005-09-20 21:26:39 +08:00
|
|
|
#include <term.h>
|
2006-01-19 20:22:07 +08:00
|
|
|
#elif HAVE_NCURSES_TERM_H
|
|
|
|
#include <ncurses/term.h>
|
|
|
|
#endif
|
2015-07-25 23:14:25 +08:00
|
|
|
#include <limits.h>
|
2016-05-02 13:29:21 +08:00
|
|
|
#include <wchar.h>
|
|
|
|
#include <memory>
|
2015-07-25 23:14:25 +08:00
|
|
|
#include <string>
|
2016-04-21 14:00:54 +08:00
|
|
|
#include <vector>
|
2006-02-28 21:17:16 +08:00
|
|
|
|
2016-05-02 13:29:21 +08:00
|
|
|
#include "color.h"
|
2005-09-20 21:26:39 +08:00
|
|
|
#include "common.h"
|
2016-06-02 11:03:50 +08:00
|
|
|
#include "env.h"
|
2016-05-02 13:29:21 +08:00
|
|
|
#include "fallback.h" // IWYU pragma: keep
|
2005-09-20 21:26:39 +08:00
|
|
|
#include "output.h"
|
2016-05-02 13:29:21 +08:00
|
|
|
#include "wutil.h" // IWYU pragma: keep
|
2005-09-20 21:26:39 +08:00
|
|
|
|
2012-11-19 08:30:30 +08:00
|
|
|
static int writeb_internal(char c);
|
2006-02-16 22:21:00 +08:00
|
|
|
|
2016-05-02 13:29:21 +08:00
|
|
|
/// The function used for output.
|
2016-05-29 13:28:26 +08:00
|
|
|
static int (*out)(char c) = writeb_internal;
|
2006-02-16 21:40:25 +08:00
|
|
|
|
2016-05-02 13:29:21 +08:00
|
|
|
/// Whether term256 and term24bit are supported.
|
2014-09-20 06:37:31 +08:00
|
|
|
static color_support_t color_support = 0;
|
2012-03-06 02:44:08 +08:00
|
|
|
|
2016-05-02 13:29:21 +08:00
|
|
|
void output_set_writer(int (*writer)(char)) {
|
|
|
|
CHECK(writer, );
|
2012-11-19 08:30:30 +08:00
|
|
|
out = writer;
|
2006-02-16 21:40:25 +08:00
|
|
|
}
|
|
|
|
|
2016-05-02 13:29:21 +08:00
|
|
|
int (*output_get_writer())(char) { return out; }
|
2006-10-02 00:02:58 +08:00
|
|
|
|
2016-06-13 02:22:31 +08:00
|
|
|
// Returns true if we think the term256 support is "native" as opposed to forced.
|
2016-06-13 02:34:35 +08:00
|
|
|
static bool term256_support_is_native(void) { return max_colors >= 256; }
|
2012-03-06 05:39:01 +08:00
|
|
|
|
2016-07-19 23:01:01 +08:00
|
|
|
color_support_t output_get_color_support(void) { return color_support; }
|
2012-03-06 02:44:08 +08:00
|
|
|
|
2016-05-02 13:29:21 +08:00
|
|
|
void output_set_color_support(color_support_t val) { color_support = val; }
|
2012-02-13 10:05:59 +08:00
|
|
|
|
2016-05-02 13:29:21 +08:00
|
|
|
unsigned char index_for_color(rgb_color_t c) {
|
|
|
|
if (c.is_named() || !(output_get_color_support() & color_support_term256)) {
|
2012-02-13 10:05:59 +08:00
|
|
|
return c.to_name_index();
|
|
|
|
}
|
2016-05-05 06:19:47 +08:00
|
|
|
return c.to_term256_index();
|
2012-02-13 10:05:59 +08:00
|
|
|
}
|
|
|
|
|
2016-05-02 13:29:21 +08:00
|
|
|
static bool write_color_escape(char *todo, unsigned char idx, bool is_fg) {
|
2012-03-06 05:39:01 +08:00
|
|
|
bool result = false;
|
2016-05-02 13:29:21 +08:00
|
|
|
if (idx < 16 || term256_support_is_native()) {
|
2016-06-13 02:22:31 +08:00
|
|
|
// Use tparm to emit color escape.
|
2012-11-19 08:30:30 +08:00
|
|
|
writembs(tparm(todo, idx));
|
2012-03-06 05:39:01 +08:00
|
|
|
result = true;
|
2016-05-02 13:29:21 +08:00
|
|
|
} else {
|
|
|
|
// We are attempting to bypass the term here. Generate the ANSI escape sequence ourself.
|
2016-06-13 02:22:31 +08:00
|
|
|
char buff[128] = "";
|
|
|
|
snprintf(buff, sizeof buff, "\x1b[%d;5;%dm", is_fg ? 38 : 48, idx);
|
2012-11-18 18:23:22 +08:00
|
|
|
|
2012-04-01 08:24:11 +08:00
|
|
|
int (*writer)(char) = output_get_writer();
|
2016-05-02 13:29:21 +08:00
|
|
|
if (writer) {
|
|
|
|
for (size_t i = 0; buff[i]; i++) {
|
2012-04-01 08:24:11 +08:00
|
|
|
writer(buff[i]);
|
|
|
|
}
|
|
|
|
}
|
2012-11-18 18:23:22 +08:00
|
|
|
|
2012-03-06 05:39:01 +08:00
|
|
|
result = true;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2016-05-02 13:29:21 +08:00
|
|
|
static bool write_foreground_color(unsigned char idx) {
|
|
|
|
if (set_a_foreground && set_a_foreground[0]) {
|
2014-09-20 09:44:18 +08:00
|
|
|
return write_color_escape(set_a_foreground, idx, true);
|
2016-05-02 13:29:21 +08:00
|
|
|
} else if (set_foreground && set_foreground[0]) {
|
2014-09-20 09:44:18 +08:00
|
|
|
return write_color_escape(set_foreground, idx, true);
|
2012-03-06 05:39:01 +08:00
|
|
|
}
|
2016-05-05 06:19:47 +08:00
|
|
|
return false;
|
2012-03-06 05:39:01 +08:00
|
|
|
}
|
|
|
|
|
2016-05-02 13:29:21 +08:00
|
|
|
static bool write_background_color(unsigned char idx) {
|
|
|
|
if (set_a_background && set_a_background[0]) {
|
2014-09-20 09:44:18 +08:00
|
|
|
return write_color_escape(set_a_background, idx, false);
|
2016-05-02 13:29:21 +08:00
|
|
|
} else if (set_background && set_background[0]) {
|
2014-09-20 09:44:18 +08:00
|
|
|
return write_color_escape(set_background, idx, false);
|
2012-03-06 05:39:01 +08:00
|
|
|
}
|
2016-05-05 06:19:47 +08:00
|
|
|
return false;
|
2012-03-06 05:39:01 +08:00
|
|
|
}
|
|
|
|
|
2016-05-02 13:29:21 +08:00
|
|
|
void write_color(rgb_color_t color, bool is_fg) {
|
|
|
|
bool supports_term24bit = !!(output_get_color_support() & color_support_term24bit);
|
|
|
|
if (!supports_term24bit || !color.is_rgb()) {
|
|
|
|
// Indexed or non-24 bit color.
|
2014-09-20 09:44:18 +08:00
|
|
|
unsigned char idx = index_for_color(color);
|
|
|
|
(is_fg ? write_foreground_color : write_background_color)(idx);
|
2016-05-02 13:29:21 +08:00
|
|
|
} else {
|
|
|
|
// 24 bit! No tparm here, just ANSI escape sequences.
|
|
|
|
// Foreground: ^[38;2;<r>;<g>;<b>m
|
|
|
|
// Background: ^[48;2;<r>;<g>;<b>m
|
2014-09-20 09:44:18 +08:00
|
|
|
color24_t rgb = color.to_color24();
|
|
|
|
char buff[128];
|
2016-05-29 13:28:26 +08:00
|
|
|
snprintf(buff, sizeof buff, "\x1b[%d;2;%u;%u;%um", is_fg ? 38 : 48, rgb.rgb[0], rgb.rgb[1],
|
2016-05-02 13:29:21 +08:00
|
|
|
rgb.rgb[2]);
|
2014-09-20 09:44:18 +08:00
|
|
|
int (*writer)(char) = output_get_writer();
|
2016-05-02 13:29:21 +08:00
|
|
|
if (writer) {
|
|
|
|
for (size_t i = 0; buff[i]; i++) {
|
2014-09-20 09:44:18 +08:00
|
|
|
writer(buff[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-03-06 05:39:01 +08:00
|
|
|
|
2016-05-02 13:29:21 +08:00
|
|
|
void set_color(rgb_color_t c, rgb_color_t c2) {
|
2012-02-13 10:05:59 +08:00
|
|
|
#if 0
|
|
|
|
wcstring tmp = c.description();
|
|
|
|
wcstring tmp2 = c2.description();
|
|
|
|
printf("set_color %ls : %ls\n", tmp.c_str(), tmp2.c_str());
|
2012-11-18 18:23:22 +08:00
|
|
|
#endif
|
2012-02-12 09:07:56 +08:00
|
|
|
ASSERT_IS_MAIN_THREAD();
|
2012-11-18 18:23:22 +08:00
|
|
|
|
2012-02-12 09:07:56 +08:00
|
|
|
const rgb_color_t normal = rgb_color_t::normal();
|
|
|
|
static rgb_color_t last_color = rgb_color_t::normal();
|
2012-11-19 08:30:30 +08:00
|
|
|
static rgb_color_t last_color2 = rgb_color_t::normal();
|
2016-05-02 13:29:21 +08:00
|
|
|
static int was_bold = 0;
|
|
|
|
static int was_underline = 0;
|
|
|
|
int bg_set = 0, last_bg_set = 0;
|
2012-11-19 08:30:30 +08:00
|
|
|
|
|
|
|
int is_bold = 0;
|
|
|
|
int is_underline = 0;
|
|
|
|
|
2016-05-02 13:29:21 +08:00
|
|
|
// Test if we have at least basic support for setting fonts, colors and related bits - otherwise
|
|
|
|
// just give up...
|
|
|
|
if (!exit_attribute_mode) {
|
2012-11-19 08:30:30 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
is_bold |= c.is_bold();
|
|
|
|
is_bold |= c2.is_bold();
|
|
|
|
|
|
|
|
is_underline |= c.is_underline();
|
|
|
|
is_underline |= c2.is_underline();
|
|
|
|
|
2016-05-02 13:29:21 +08:00
|
|
|
if (c.is_reset() || c2.is_reset()) {
|
2012-11-19 08:30:30 +08:00
|
|
|
c = c2 = normal;
|
2016-05-02 13:29:21 +08:00
|
|
|
was_bold = 0;
|
|
|
|
was_underline = 0;
|
|
|
|
// If we exit attibute mode, we must first set a color, or previously coloured text might
|
|
|
|
// lose it's color. Terminals are weird...
|
2012-03-06 05:39:01 +08:00
|
|
|
write_foreground_color(0);
|
2012-11-19 08:30:30 +08:00
|
|
|
writembs(exit_attribute_mode);
|
|
|
|
return;
|
|
|
|
}
|
2012-11-18 18:23:22 +08:00
|
|
|
|
2016-05-02 13:29:21 +08:00
|
|
|
if (was_bold && !is_bold) {
|
|
|
|
// Only way to exit bold mode is a reset of all attributes.
|
2012-11-19 08:30:30 +08:00
|
|
|
writembs(exit_attribute_mode);
|
|
|
|
last_color = normal;
|
|
|
|
last_color2 = normal;
|
2016-05-02 13:29:21 +08:00
|
|
|
was_bold = 0;
|
|
|
|
was_underline = 0;
|
2012-11-18 18:23:22 +08:00
|
|
|
}
|
2012-11-19 08:30:30 +08:00
|
|
|
|
2016-05-02 13:29:21 +08:00
|
|
|
if (!last_color2.is_normal() && !last_color2.is_reset()) {
|
2016-04-05 07:55:40 +08:00
|
|
|
// Background was set.
|
|
|
|
last_bg_set = 1;
|
2012-11-18 18:23:22 +08:00
|
|
|
}
|
|
|
|
|
2016-05-02 13:29:21 +08:00
|
|
|
if (!c2.is_normal()) {
|
2016-04-05 07:55:40 +08:00
|
|
|
// Background is set.
|
|
|
|
bg_set = 1;
|
2016-05-02 13:29:21 +08:00
|
|
|
if (c == c2) c = (c2 == rgb_color_t::white()) ? rgb_color_t::black() : rgb_color_t::white();
|
2012-11-19 08:30:30 +08:00
|
|
|
}
|
2012-11-18 18:23:22 +08:00
|
|
|
|
2016-05-02 13:29:21 +08:00
|
|
|
if ((enter_bold_mode != 0) && (strlen(enter_bold_mode) > 0)) {
|
|
|
|
if (bg_set && !last_bg_set) {
|
|
|
|
// Background color changed and is set, so we enter bold mode to make reading easier.
|
|
|
|
// This means bold mode is _always_ on when the background color is set.
|
2012-11-19 08:30:30 +08:00
|
|
|
writembs(enter_bold_mode);
|
|
|
|
}
|
2016-05-02 13:29:21 +08:00
|
|
|
if (!bg_set && last_bg_set) {
|
|
|
|
// Background color changed and is no longer set, so we exit bold mode.
|
2012-11-19 08:30:30 +08:00
|
|
|
writembs(exit_attribute_mode);
|
2016-05-02 13:29:21 +08:00
|
|
|
was_bold = 0;
|
|
|
|
was_underline = 0;
|
|
|
|
// We don't know if exit_attribute_mode resets colors, so we set it to something known.
|
|
|
|
if (write_foreground_color(0)) {
|
|
|
|
last_color = rgb_color_t::black();
|
2012-11-19 08:30:30 +08:00
|
|
|
}
|
|
|
|
}
|
2012-11-18 18:23:22 +08:00
|
|
|
}
|
2012-11-19 08:30:30 +08:00
|
|
|
|
2016-05-02 13:29:21 +08:00
|
|
|
if (last_color != c) {
|
|
|
|
if (c.is_normal()) {
|
2012-11-19 08:30:30 +08:00
|
|
|
write_foreground_color(0);
|
|
|
|
writembs(exit_attribute_mode);
|
|
|
|
|
|
|
|
last_color2 = rgb_color_t::normal();
|
2016-05-02 13:29:21 +08:00
|
|
|
was_bold = 0;
|
|
|
|
was_underline = 0;
|
|
|
|
} else if (!c.is_special()) {
|
2014-09-20 09:44:18 +08:00
|
|
|
write_color(c, true /* foreground */);
|
2012-11-19 08:30:30 +08:00
|
|
|
}
|
2012-11-18 18:23:22 +08:00
|
|
|
}
|
|
|
|
|
2012-11-19 08:30:30 +08:00
|
|
|
last_color = c;
|
2012-11-18 18:23:22 +08:00
|
|
|
|
2016-05-02 13:29:21 +08:00
|
|
|
if (last_color2 != c2) {
|
|
|
|
if (c2.is_normal()) {
|
2012-03-06 05:39:01 +08:00
|
|
|
write_background_color(0);
|
2012-11-18 18:23:22 +08:00
|
|
|
|
2012-11-19 08:30:30 +08:00
|
|
|
writembs(exit_attribute_mode);
|
2016-05-02 13:29:21 +08:00
|
|
|
if (!last_color.is_normal()) {
|
2014-09-20 09:44:18 +08:00
|
|
|
write_color(last_color, true /* foreground */);
|
2012-11-19 08:30:30 +08:00
|
|
|
}
|
2012-11-18 18:23:22 +08:00
|
|
|
|
2016-05-02 13:29:21 +08:00
|
|
|
was_bold = 0;
|
|
|
|
was_underline = 0;
|
2012-11-19 08:30:30 +08:00
|
|
|
last_color2 = c2;
|
2016-05-02 13:29:21 +08:00
|
|
|
} else if (!c2.is_special()) {
|
2014-09-20 09:44:18 +08:00
|
|
|
write_color(c2, false /* not foreground */);
|
2012-11-19 08:30:30 +08:00
|
|
|
last_color2 = c2;
|
|
|
|
}
|
2012-11-18 18:23:22 +08:00
|
|
|
}
|
|
|
|
|
2016-05-02 13:29:21 +08:00
|
|
|
// Lastly, we set bold mode and underline mode correctly.
|
|
|
|
if ((enter_bold_mode != 0) && (strlen(enter_bold_mode) > 0) && !bg_set) {
|
|
|
|
if (is_bold && !was_bold) {
|
|
|
|
if (enter_bold_mode) {
|
2012-11-19 08:30:30 +08:00
|
|
|
writembs(tparm(enter_bold_mode));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
was_bold = is_bold;
|
2012-11-18 18:23:22 +08:00
|
|
|
}
|
|
|
|
|
2016-05-02 13:29:21 +08:00
|
|
|
if (was_underline && !is_underline) {
|
2012-11-19 08:30:30 +08:00
|
|
|
writembs(exit_underline_mode);
|
|
|
|
}
|
2012-11-18 18:23:22 +08:00
|
|
|
|
2016-05-02 13:29:21 +08:00
|
|
|
if (!was_underline && is_underline) {
|
2012-11-19 08:30:30 +08:00
|
|
|
writembs(enter_underline_mode);
|
|
|
|
}
|
|
|
|
was_underline = is_underline;
|
2012-02-12 09:07:56 +08:00
|
|
|
}
|
2005-10-13 22:08:33 +08:00
|
|
|
|
2016-05-02 13:29:21 +08:00
|
|
|
/// Default output method, simply calls write() on stdout.
|
2016-05-29 13:28:26 +08:00
|
|
|
static int writeb_internal(char c) { // cppcheck
|
2012-11-19 08:30:30 +08:00
|
|
|
write_loop(1, &c, 1);
|
|
|
|
return 0;
|
2006-02-16 22:21:00 +08:00
|
|
|
}
|
|
|
|
|
2016-05-02 13:29:21 +08:00
|
|
|
int writeb(tputs_arg_t b) {
|
2012-11-19 08:30:30 +08:00
|
|
|
out(b);
|
|
|
|
return 0;
|
2006-02-16 21:40:25 +08:00
|
|
|
}
|
|
|
|
|
2016-05-02 13:29:21 +08:00
|
|
|
int writech(wint_t ch) {
|
|
|
|
char buff[MB_LEN_MAX + 1];
|
2016-03-11 10:17:39 +08:00
|
|
|
size_t len;
|
2012-11-19 08:30:30 +08:00
|
|
|
|
2016-05-02 13:29:21 +08:00
|
|
|
if (ch >= ENCODE_DIRECT_BASE && ch < ENCODE_DIRECT_BASE + 256) {
|
2012-11-19 08:30:30 +08:00
|
|
|
buff[0] = ch - ENCODE_DIRECT_BASE;
|
2016-03-11 10:17:39 +08:00
|
|
|
len = 1;
|
2016-05-02 13:29:21 +08:00
|
|
|
} else if (MB_CUR_MAX == 1) // single-byte locale (C/POSIX/ISO-8859)
|
2016-03-11 10:17:39 +08:00
|
|
|
{
|
|
|
|
// If `wc` contains a wide character we emit a question-mark.
|
2016-05-02 13:29:21 +08:00
|
|
|
if (ch & ~0xFF) {
|
2016-03-11 10:17:39 +08:00
|
|
|
ch = '?';
|
|
|
|
}
|
|
|
|
buff[0] = ch;
|
|
|
|
len = 1;
|
2016-05-02 13:29:21 +08:00
|
|
|
} else {
|
2016-03-11 10:17:39 +08:00
|
|
|
mbstate_t state = {};
|
|
|
|
len = wcrtomb(buff, ch, &state);
|
2016-05-02 13:29:21 +08:00
|
|
|
if (len == (size_t)-1) {
|
2016-03-11 10:17:39 +08:00
|
|
|
return 1;
|
2012-11-19 08:30:30 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-02 13:29:21 +08:00
|
|
|
for (size_t i = 0; i < len; i++) {
|
2012-11-19 08:30:30 +08:00
|
|
|
out(buff[i]);
|
|
|
|
}
|
|
|
|
return 0;
|
2005-09-20 21:26:39 +08:00
|
|
|
}
|
|
|
|
|
2016-05-02 13:29:21 +08:00
|
|
|
void writestr(const wchar_t *str) {
|
|
|
|
CHECK(str, );
|
2012-11-18 18:23:22 +08:00
|
|
|
|
2016-05-02 13:29:21 +08:00
|
|
|
if (MB_CUR_MAX == 1) // single-byte locale (C/POSIX/ISO-8859)
|
2016-03-11 10:17:39 +08:00
|
|
|
{
|
2016-05-02 13:29:21 +08:00
|
|
|
while (*str) {
|
|
|
|
writech(*str++);
|
2016-03-11 10:17:39 +08:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
2012-11-18 18:23:22 +08:00
|
|
|
|
2016-03-11 10:17:39 +08:00
|
|
|
size_t len = wcstombs(0, str, 0); // figure amount of space needed
|
2016-05-02 13:29:21 +08:00
|
|
|
if (len == (size_t)-1) {
|
2012-11-19 08:30:30 +08:00
|
|
|
debug(1, L"Tried to print invalid wide character string");
|
|
|
|
return;
|
|
|
|
}
|
2012-11-18 18:23:22 +08:00
|
|
|
|
2016-03-11 10:17:39 +08:00
|
|
|
// Convert the string.
|
2012-11-19 08:30:30 +08:00
|
|
|
len++;
|
2012-02-08 14:44:10 +08:00
|
|
|
char *buffer, static_buffer[256];
|
|
|
|
if (len <= sizeof static_buffer)
|
|
|
|
buffer = static_buffer;
|
|
|
|
else
|
|
|
|
buffer = new char[len];
|
2012-11-18 18:23:22 +08:00
|
|
|
|
2016-05-02 13:29:21 +08:00
|
|
|
wcstombs(buffer, str, len);
|
2012-11-18 18:23:22 +08:00
|
|
|
|
2016-05-02 13:29:21 +08:00
|
|
|
// Write the string.
|
|
|
|
for (char *pos = buffer; *pos; pos++) {
|
2012-11-19 08:30:30 +08:00
|
|
|
out(*pos);
|
|
|
|
}
|
2012-11-18 18:23:22 +08:00
|
|
|
|
2016-05-02 13:29:21 +08:00
|
|
|
if (buffer != static_buffer) delete[] buffer;
|
2005-09-20 21:26:39 +08:00
|
|
|
}
|
|
|
|
|
2016-05-02 13:29:21 +08:00
|
|
|
rgb_color_t best_color(const std::vector<rgb_color_t> &candidates, color_support_t support) {
|
|
|
|
if (candidates.empty()) {
|
2014-11-10 08:42:35 +08:00
|
|
|
return rgb_color_t::none();
|
|
|
|
}
|
2016-05-02 13:29:21 +08:00
|
|
|
|
2014-11-10 08:42:35 +08:00
|
|
|
rgb_color_t first_rgb = rgb_color_t::none(), first_named = rgb_color_t::none();
|
2016-05-02 13:29:21 +08:00
|
|
|
for (size_t i = 0; i < candidates.size(); i++) {
|
2014-11-10 08:42:35 +08:00
|
|
|
const rgb_color_t &color = candidates.at(i);
|
2016-05-02 13:29:21 +08:00
|
|
|
if (first_rgb.is_none() && color.is_rgb()) {
|
2014-11-10 08:42:35 +08:00
|
|
|
first_rgb = color;
|
|
|
|
}
|
2016-05-02 13:29:21 +08:00
|
|
|
if (first_named.is_none() && color.is_named()) {
|
2014-11-10 08:42:35 +08:00
|
|
|
first_named = color;
|
|
|
|
}
|
|
|
|
}
|
2016-05-02 13:29:21 +08:00
|
|
|
// If we have both RGB and named colors, then prefer rgb if term256 is supported.
|
2014-11-10 08:42:35 +08:00
|
|
|
rgb_color_t result = rgb_color_t::none();
|
2016-05-02 13:29:21 +08:00
|
|
|
bool has_term256 = !!(support & color_support_term256);
|
|
|
|
if ((!first_rgb.is_none() && has_term256) || first_named.is_none()) {
|
2014-11-10 08:42:35 +08:00
|
|
|
result = first_rgb;
|
2016-05-02 13:29:21 +08:00
|
|
|
} else {
|
2014-11-10 08:42:35 +08:00
|
|
|
result = first_named;
|
|
|
|
}
|
2016-05-02 13:29:21 +08:00
|
|
|
if (result.is_none()) {
|
2014-11-10 08:42:35 +08:00
|
|
|
result = candidates.at(0);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2016-05-02 13:29:21 +08:00
|
|
|
// This code should be refactored to enable sharing with builtin_set_color.
|
|
|
|
rgb_color_t parse_color(const wcstring &val, bool is_background) {
|
|
|
|
int is_bold = 0;
|
|
|
|
int is_underline = 0;
|
2012-11-18 18:23:22 +08:00
|
|
|
|
2012-02-14 01:52:17 +08:00
|
|
|
std::vector<rgb_color_t> candidates;
|
2012-11-18 18:23:22 +08:00
|
|
|
|
2012-02-12 09:07:56 +08:00
|
|
|
wcstring_list_t el;
|
2012-11-19 08:30:30 +08:00
|
|
|
tokenize_variable_array(val, el);
|
2012-11-18 18:23:22 +08:00
|
|
|
|
2016-05-02 13:29:21 +08:00
|
|
|
for (size_t j = 0; j < el.size(); j++) {
|
2012-02-12 09:07:56 +08:00
|
|
|
const wcstring &next = el.at(j);
|
|
|
|
wcstring color_name;
|
2016-05-02 13:29:21 +08:00
|
|
|
if (is_background) {
|
|
|
|
// Look for something like "--background=red".
|
2012-02-12 09:07:56 +08:00
|
|
|
const wcstring prefix = L"--background=";
|
2016-05-02 13:29:21 +08:00
|
|
|
if (string_prefixes_string(prefix, next)) {
|
2012-02-12 09:07:56 +08:00
|
|
|
color_name = wcstring(next, prefix.size());
|
|
|
|
}
|
2016-05-02 13:29:21 +08:00
|
|
|
} else {
|
2012-02-12 09:07:56 +08:00
|
|
|
if (next == L"--bold" || next == L"-o")
|
|
|
|
is_bold = true;
|
|
|
|
else if (next == L"--underline" || next == L"-u")
|
|
|
|
is_underline = true;
|
|
|
|
else
|
|
|
|
color_name = next;
|
|
|
|
}
|
2012-11-18 18:23:22 +08:00
|
|
|
|
2016-05-02 13:29:21 +08:00
|
|
|
if (!color_name.empty()) {
|
2012-02-14 01:52:17 +08:00
|
|
|
rgb_color_t color = rgb_color_t(color_name);
|
2016-05-02 13:29:21 +08:00
|
|
|
if (!color.is_none()) {
|
2012-02-14 01:52:17 +08:00
|
|
|
candidates.push_back(color);
|
2012-02-13 10:05:59 +08:00
|
|
|
}
|
2012-02-12 09:07:56 +08:00
|
|
|
}
|
|
|
|
}
|
2014-11-10 08:42:35 +08:00
|
|
|
rgb_color_t result = best_color(candidates, output_get_color_support());
|
2016-05-02 13:29:21 +08:00
|
|
|
|
|
|
|
if (result.is_none()) result = rgb_color_t::normal();
|
2012-11-18 18:23:22 +08:00
|
|
|
|
2012-02-14 01:52:17 +08:00
|
|
|
result.set_bold(is_bold);
|
|
|
|
result.set_underline(is_underline);
|
2012-11-18 18:23:22 +08:00
|
|
|
|
2012-02-13 10:05:59 +08:00
|
|
|
#if 0
|
|
|
|
wcstring desc = result.description();
|
|
|
|
printf("Parsed %ls from %ls (%s)\n", desc.c_str(), val.c_str(), is_background ? "background" : "foreground");
|
|
|
|
#endif
|
2012-11-18 18:23:22 +08:00
|
|
|
|
2012-02-12 09:07:56 +08:00
|
|
|
return result;
|
2005-09-20 21:26:39 +08:00
|
|
|
}
|
2007-09-09 22:04:36 +08:00
|
|
|
|
2016-05-02 13:29:21 +08:00
|
|
|
void writembs_check(char *mbs, const char *mbs_name, const char *file, long line) {
|
|
|
|
if (mbs != NULL) {
|
2014-05-10 05:37:23 +08:00
|
|
|
tputs(mbs, 1, &writeb);
|
2016-05-02 13:29:21 +08:00
|
|
|
} else {
|
2016-06-02 11:03:50 +08:00
|
|
|
env_var_t term = env_get_string(L"TERM");
|
2016-05-02 13:29:21 +08:00
|
|
|
debug(0, _(L"Tried to use terminfo string %s on line %ld of %s, which is undefined in "
|
|
|
|
L"terminal of type \"%ls\". Please report this error to %s"),
|
2016-06-02 11:03:50 +08:00
|
|
|
mbs_name, line, file, term.c_str(), PACKAGE_BUGREPORT);
|
2014-05-10 05:37:23 +08:00
|
|
|
}
|
|
|
|
}
|