color.c 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. /* Color setup.
  2. Interface functions.
  3. Copyright (C) 1994, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
  4. 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
  5. Written by:
  6. Andrew Borodin <aborodin@vmail.ru>, 2009
  7. Slava Zanko <slavazanko@gmail.com>, 2009
  8. Egmont Koblinger <egmont@gmail.com>, 2010
  9. This program is free software; you can redistribute it and/or modify
  10. it under the terms of the GNU General Public License as published by
  11. the Free Software Foundation; either version 2 of the License, or
  12. (at your option) any later version.
  13. This program is distributed in the hope that it will be useful,
  14. but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. GNU General Public License for more details.
  17. You should have received a copy of the GNU General Public License
  18. along with this program; if not, write to the Free Software
  19. Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
  20. /** \file color.c
  21. * \brief Source: color setup
  22. */
  23. #include <config.h>
  24. #include <stdio.h>
  25. #include <stdlib.h>
  26. #include <string.h>
  27. #include <sys/types.h> /* size_t */
  28. #include "lib/global.h"
  29. #include "tty.h"
  30. #include "color.h"
  31. #include "color-internal.h"
  32. /*** global variables ****************************************************************************/
  33. char *command_line_colors = NULL;
  34. static char *tty_color_defaults__fg = NULL;
  35. static char *tty_color_defaults__bg = NULL;
  36. static char *tty_color_defaults__attrs = NULL;
  37. /* Set if we are actually using colors */
  38. gboolean use_colors = FALSE;
  39. /*** file scope macro definitions ****************************************************************/
  40. /*** file scope type declarations ****************************************************************/
  41. /*** file scope variables ************************************************************************/
  42. static GHashTable *mc_tty_color__hashtable = NULL;
  43. /*** file scope functions ************************************************************************/
  44. /* --------------------------------------------------------------------------------------------- */
  45. static gboolean
  46. tty_color_free_condition_cb (gpointer key, gpointer value, gpointer user_data)
  47. {
  48. gboolean is_temp_color;
  49. tty_color_pair_t *mc_color_pair;
  50. (void) key;
  51. is_temp_color = user_data != NULL;
  52. mc_color_pair = (tty_color_pair_t *) value;
  53. return (mc_color_pair->is_temp == is_temp_color);
  54. }
  55. /* --------------------------------------------------------------------------------------------- */
  56. static void
  57. tty_color_free_all (gboolean is_temp_color)
  58. {
  59. g_hash_table_foreach_remove (mc_tty_color__hashtable, tty_color_free_condition_cb,
  60. is_temp_color ? GINT_TO_POINTER (1) : NULL);
  61. }
  62. /* --------------------------------------------------------------------------------------------- */
  63. static gboolean
  64. tty_color_get_next_cpn_cb (gpointer key, gpointer value, gpointer user_data)
  65. {
  66. size_t cp;
  67. tty_color_pair_t *mc_color_pair;
  68. (void) key;
  69. cp = GPOINTER_TO_INT (user_data);
  70. mc_color_pair = (tty_color_pair_t *) value;
  71. return (cp == mc_color_pair->pair_index);
  72. }
  73. /* --------------------------------------------------------------------------------------------- */
  74. static size_t
  75. tty_color_get_next__color_pair_number (void)
  76. {
  77. const size_t cp_count = g_hash_table_size (mc_tty_color__hashtable);
  78. size_t cp;
  79. for (cp = 0; cp < cp_count; cp++)
  80. if (g_hash_table_find (mc_tty_color__hashtable, tty_color_get_next_cpn_cb,
  81. GINT_TO_POINTER (cp)) == NULL)
  82. break;
  83. return cp;
  84. }
  85. /* --------------------------------------------------------------------------------------------- */
  86. /*** public functions ****************************************************************************/
  87. /* --------------------------------------------------------------------------------------------- */
  88. void
  89. tty_init_colors (gboolean disable, gboolean force)
  90. {
  91. tty_color_init_lib (disable, force);
  92. mc_tty_color__hashtable = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, g_free);
  93. }
  94. /* --------------------------------------------------------------------------------------------- */
  95. void
  96. tty_colors_done (void)
  97. {
  98. tty_color_deinit_lib ();
  99. g_free (tty_color_defaults__fg);
  100. g_free (tty_color_defaults__bg);
  101. g_free (tty_color_defaults__attrs);
  102. g_hash_table_destroy (mc_tty_color__hashtable);
  103. }
  104. /* --------------------------------------------------------------------------------------------- */
  105. gboolean
  106. tty_use_colors (void)
  107. {
  108. return use_colors;
  109. }
  110. /* --------------------------------------------------------------------------------------------- */
  111. int
  112. tty_try_alloc_color_pair2 (const char *fg, const char *bg, const char *attrs,
  113. gboolean is_temp_color)
  114. {
  115. gchar *color_pair;
  116. tty_color_pair_t *mc_color_pair;
  117. int ifg, ibg, attr;
  118. if (fg == NULL || !strcmp (fg, "base"))
  119. fg = tty_color_defaults__fg;
  120. if (bg == NULL || !strcmp (bg, "base"))
  121. bg = tty_color_defaults__bg;
  122. if (attrs == NULL || !strcmp (attrs, "base"))
  123. attrs = tty_color_defaults__attrs;
  124. ifg = tty_color_get_index_by_name (fg);
  125. ibg = tty_color_get_index_by_name (bg);
  126. attr = tty_attr_get_bits (attrs);
  127. color_pair = g_strdup_printf ("%d.%d.%d", ifg, ibg, attr);
  128. if (color_pair == NULL)
  129. return 0;
  130. mc_color_pair =
  131. (tty_color_pair_t *) g_hash_table_lookup (mc_tty_color__hashtable, (gpointer) color_pair);
  132. if (mc_color_pair != NULL)
  133. {
  134. g_free (color_pair);
  135. return mc_color_pair->pair_index;
  136. }
  137. mc_color_pair = g_try_new0 (tty_color_pair_t, 1);
  138. if (mc_color_pair == NULL)
  139. {
  140. g_free (color_pair);
  141. return 0;
  142. }
  143. mc_color_pair->is_temp = is_temp_color;
  144. mc_color_pair->ifg = ifg;
  145. mc_color_pair->ibg = ibg;
  146. mc_color_pair->attr = attr;
  147. mc_color_pair->pair_index = tty_color_get_next__color_pair_number ();
  148. tty_color_try_alloc_pair_lib (mc_color_pair);
  149. g_hash_table_insert (mc_tty_color__hashtable, (gpointer) color_pair, (gpointer) mc_color_pair);
  150. return mc_color_pair->pair_index;
  151. }
  152. /* --------------------------------------------------------------------------------------------- */
  153. int
  154. tty_try_alloc_color_pair (const char *fg, const char *bg, const char *attrs)
  155. {
  156. return tty_try_alloc_color_pair2 (fg, bg, attrs, TRUE);
  157. }
  158. /* --------------------------------------------------------------------------------------------- */
  159. void
  160. tty_color_free_all_tmp (void)
  161. {
  162. tty_color_free_all (TRUE);
  163. }
  164. /* --------------------------------------------------------------------------------------------- */
  165. void
  166. tty_color_free_all_non_tmp (void)
  167. {
  168. tty_color_free_all (FALSE);
  169. }
  170. /* --------------------------------------------------------------------------------------------- */
  171. void
  172. tty_color_set_defaults (const char *fgcolor, const char *bgcolor, const char *attrs)
  173. {
  174. g_free (tty_color_defaults__fg);
  175. g_free (tty_color_defaults__bg);
  176. g_free (tty_color_defaults__attrs);
  177. tty_color_defaults__fg = (fgcolor != NULL) ? g_strdup (fgcolor) : NULL;
  178. tty_color_defaults__bg = (bgcolor != NULL) ? g_strdup (bgcolor) : NULL;
  179. tty_color_defaults__attrs = (attrs != NULL) ? g_strdup (attrs) : NULL;
  180. }
  181. /* --------------------------------------------------------------------------------------------- */