source: fmtext.c @ 30da473

release-1.10release-1.7release-1.8release-1.9
Last change on this file since 30da473 was 30da473, checked in by David Benjamin <davidben@mit.edu>, 14 years ago
Expand tabs before applying OWL_TAB This is a partial fix to #90. Messages with tabs still do not correctly tab in the default style, if the intent is to begin column counts after the 4-space indent. But, if the style does give us tabs, BarnOwl should correctly draw them from the style. Expanding them here both deals with owl_fmtext_truncate_cols not understanding tabs and tabs getting confused by the OWL_TAB indent. A full fix should expand tabs in the style layer, taking markup into account.
  • Property mode set to 100644
File size: 27.2 KB
RevLine 
[7d4fbcd]1#include "owl.h"
2#include <stdlib.h>
3#include <string.h>
4
[b2b0773]5/* initialize an fmtext with no data */
[5789230]6void owl_fmtext_init_null(owl_fmtext *f)
7{
[9866c3a]8  f->textlen = 0;
9  f->bufflen = 5;
10  f->textbuff = owl_malloc(5);
11  f->textbuff[0] = 0;
12  f->default_attrs = OWL_FMTEXT_ATTR_NONE;
13  f->default_fgcolor = OWL_COLOR_DEFAULT;
[c55ad84]14  f->default_bgcolor = OWL_COLOR_DEFAULT;
[7d4fbcd]15}
16
[a387d12e]17/* Clear the data from an fmtext, but don't deallocate memory. This
18   fmtext can then be appended to again. */
19void owl_fmtext_clear(owl_fmtext *f)
20{
[9866c3a]21  f->textlen = 0;
22  f->textbuff[0] = 0;
23  f->default_attrs = OWL_FMTEXT_ATTR_NONE;
24  f->default_fgcolor = OWL_COLOR_DEFAULT;
[c55ad84]25  f->default_bgcolor = OWL_COLOR_DEFAULT;
[7d4fbcd]26}
27
[e9c6fc8]28static void _owl_fmtext_realloc(owl_fmtext *f, int newlen)
[a387d12e]29{
30    if(newlen + 1 > f->bufflen) {
[9866c3a]31      f->textbuff = owl_realloc(f->textbuff, newlen + 1);
[a387d12e]32      f->bufflen = newlen+1;
33  }
34}
35
[c1522ec]36int owl_fmtext_is_format_char(gunichar c)
[9866c3a]37{
38  if ((c & ~OWL_FMTEXT_UC_ATTR_MASK) == OWL_FMTEXT_UC_ATTR) return 1;
39  if ((c & ~(OWL_FMTEXT_UC_ALLCOLOR_MASK)) == OWL_FMTEXT_UC_COLOR_BASE) return 1;
40  return 0;
41}
[b2b0773]42/* append text to the end of 'f' with attribute 'attr' and color
43 * 'color'
44 */
[e19eb97]45void owl_fmtext_append_attr(owl_fmtext *f, const char *text, char attr, short fgcolor, short bgcolor)
[5789230]46{
[9866c3a]47  char attrbuff[6];
48  int newlen, a = 0, fg = 0, bg = 0;
49 
50  if (attr != OWL_FMTEXT_ATTR_NONE) a=1;
51  if (fgcolor != OWL_COLOR_DEFAULT) fg=1;
52  if (bgcolor != OWL_COLOR_DEFAULT) bg=1;
53
54  /* Plane-16 characters in UTF-8 are 4 bytes long. */
55  newlen = strlen(f->textbuff) + strlen(text) + (8 * (a + fg + bg));
[a387d12e]56  _owl_fmtext_realloc(f, newlen);
[9866c3a]57
58  /* Set attributes */
[6c171f1]59  if (a)
60    strncat(f->textbuff, attrbuff,
61            g_unichar_to_utf8(OWL_FMTEXT_UC_ATTR | attr, attrbuff));
62  if (fg)
63    strncat(f->textbuff, attrbuff,
64            g_unichar_to_utf8(OWL_FMTEXT_UC_FGCOLOR | fgcolor, attrbuff));
65  if (bg)
66    strncat(f->textbuff, attrbuff,
67            g_unichar_to_utf8(OWL_FMTEXT_UC_BGCOLOR | bgcolor, attrbuff));
[a387d12e]68 
[7d4fbcd]69  strcat(f->textbuff, text);
[9866c3a]70
71  /* Reset attributes */
72  if (bg) strcat(f->textbuff, OWL_FMTEXT_UTF8_BGDEFAULT);
73  if (fg) strcat(f->textbuff, OWL_FMTEXT_UTF8_FGDEFAULT);
74  if (a)  strcat(f->textbuff, OWL_FMTEXT_UTF8_ATTR_NONE);
[7d4fbcd]75  f->textlen=newlen;
76}
77
[b2b0773]78/* Append normal, uncolored text 'text' to 'f' */
[e19eb97]79void owl_fmtext_append_normal(owl_fmtext *f, const char *text)
[5789230]80{
[8fa9562]81  owl_fmtext_append_attr(f, text, OWL_FMTEXT_ATTR_NONE, OWL_COLOR_DEFAULT, OWL_COLOR_DEFAULT);
[7d4fbcd]82}
83
[1490327]84/* Append normal, uncolored text specified by format string to 'f' */
[e19eb97]85void owl_fmtext_appendf_normal(owl_fmtext *f, const char *fmt, ...)
[1490327]86{
87  va_list ap;
88  char *buff;
89
90  va_start(ap, fmt);
91  buff = g_strdup_vprintf(fmt, ap);
92  va_end(ap);
93  if (!buff)
94    return;
95  owl_fmtext_append_attr(f, buff, OWL_FMTEXT_ATTR_NONE, OWL_COLOR_DEFAULT, OWL_COLOR_DEFAULT);
[1a01720]96  owl_free(buff);
[1490327]97}
98
[b2b0773]99/* Append normal text 'text' to 'f' with color 'color' */
[e19eb97]100void owl_fmtext_append_normal_color(owl_fmtext *f, const char *text, int fgcolor, int bgcolor)
[5789230]101{
[8fa9562]102  owl_fmtext_append_attr(f, text, OWL_FMTEXT_ATTR_NONE, fgcolor, bgcolor);
[7d4fbcd]103}
104
[b2b0773]105/* Append bold text 'text' to 'f' */
[e19eb97]106void owl_fmtext_append_bold(owl_fmtext *f, const char *text)
[5789230]107{
[8fa9562]108  owl_fmtext_append_attr(f, text, OWL_FMTEXT_ATTR_BOLD, OWL_COLOR_DEFAULT, OWL_COLOR_DEFAULT);
[7d4fbcd]109}
110
[b2b0773]111/* Append reverse video text 'text' to 'f' */
[e19eb97]112void owl_fmtext_append_reverse(owl_fmtext *f, const char *text)
[5789230]113{
[8fa9562]114  owl_fmtext_append_attr(f, text, OWL_FMTEXT_ATTR_REVERSE, OWL_COLOR_DEFAULT, OWL_COLOR_DEFAULT);
[7d4fbcd]115}
116
[b2b0773]117/* Append reversed and bold, uncolored text 'text' to 'f' */
[e19eb97]118void owl_fmtext_append_reversebold(owl_fmtext *f, const char *text)
[5789230]119{
[8fa9562]120  owl_fmtext_append_attr(f, text, OWL_FMTEXT_ATTR_REVERSE | OWL_FMTEXT_ATTR_BOLD, OWL_COLOR_DEFAULT, OWL_COLOR_DEFAULT);
[7d4fbcd]121}
122
[9866c3a]123/* Add the attribute 'attr' to the default atts for the text in 'f' */
124void owl_fmtext_addattr(owl_fmtext *f, char attr)
[5789230]125{
[7d4fbcd]126  /* add the attribute to all text */
[9866c3a]127  f->default_attrs |= attr;
[7d4fbcd]128}
129
[9866c3a]130/* Set the default foreground color for this fmtext to 'color'.
131 * Only affects text that is colored default.
[b2b0773]132 */
[5789230]133void owl_fmtext_colorize(owl_fmtext *f, int color)
134{
[9866c3a]135  f->default_fgcolor = color;
[8fa9562]136}
137
[9866c3a]138/* Set the default foreground color for this fmtext to 'color'.
139 * Only affects text that is colored default.
140 */
[8fa9562]141void owl_fmtext_colorizebg(owl_fmtext *f, int color)
142{
[9866c3a]143  f->default_bgcolor = color;
144}
[7d4fbcd]145
[9866c3a]146/* Internal function. Parse attrbute character. */
[e9c6fc8]147static void _owl_fmtext_update_attributes(gunichar c, char *attr, short *fgcolor, short *bgcolor)
[9866c3a]148{
149  if ((c & OWL_FMTEXT_UC_ATTR) == OWL_FMTEXT_UC_ATTR) {
150    *attr = c & OWL_FMTEXT_UC_ATTR_MASK;
151  }
[6f6330b]152  else if ((c & OWL_FMTEXT_UC_COLOR_BASE) == OWL_FMTEXT_UC_COLOR_BASE) {
153    if ((c & OWL_FMTEXT_UC_BGCOLOR) == OWL_FMTEXT_UC_BGCOLOR) {
154      *bgcolor = (c == OWL_FMTEXT_UC_BGDEFAULT
155                  ? OWL_COLOR_DEFAULT
156                  : c & OWL_FMTEXT_UC_COLOR_MASK);
157    }
158    else if ((c & OWL_FMTEXT_UC_FGCOLOR) == OWL_FMTEXT_UC_FGCOLOR) {
159      *fgcolor = (c == OWL_FMTEXT_UC_FGDEFAULT
160                  ? OWL_COLOR_DEFAULT
161                  : c & OWL_FMTEXT_UC_COLOR_MASK);
162    }
[7d4fbcd]163  }
164}
165
[9866c3a]166/* Internal function. Scan for attribute characters. */
[e9c6fc8]167static void _owl_fmtext_scan_attributes(const owl_fmtext *f, int start, char *attr, short *fgcolor, short *bgcolor)
[9866c3a]168{
[e19eb97]169  const char *p;
[9866c3a]170  p = strchr(f->textbuff, OWL_FMTEXT_UC_STARTBYTE_UTF8);
171  while (p && p < f->textbuff + start) {
172    _owl_fmtext_update_attributes(g_utf8_get_char(p), attr, fgcolor, bgcolor);
173    p = strchr(p+1, OWL_FMTEXT_UC_STARTBYTE_UTF8);
174  }
175} 
176
[e0e0e5a]177/* Internal function.  Append text from 'in' between index 'start'
178 * inclusive and 'stop' exclusive, to the end of 'f'. This function
179 * works with bytes.
[b2b0773]180 */
[e9c6fc8]181static void _owl_fmtext_append_fmtext(owl_fmtext *f, const owl_fmtext *in, int start, int stop)
[9866c3a]182{
183  char attrbuff[6];
184  int newlen, a = 0, fg = 0, bg = 0;
185  char attr = 0;
186  short fgcolor = OWL_COLOR_DEFAULT;
187  short bgcolor = OWL_COLOR_DEFAULT;
188
189  _owl_fmtext_scan_attributes(in, start, &attr, &fgcolor, &bgcolor);
190  if (attr != OWL_FMTEXT_ATTR_NONE) a=1;
191  if (fgcolor != OWL_COLOR_DEFAULT) fg=1;
192  if (bgcolor != OWL_COLOR_DEFAULT) bg=1;
193
194  /* We will reset to defaults after appending the text. We may need
195     to set initial attributes. */
[e0e0e5a]196  newlen=strlen(f->textbuff)+(stop-start) + (4 * (a + fg + bg)) + 12;
[a387d12e]197  _owl_fmtext_realloc(f, newlen);
[7d4fbcd]198
[6c171f1]199  if (a)
200    strncat(f->textbuff, attrbuff,
201            g_unichar_to_utf8(OWL_FMTEXT_UC_ATTR | attr, attrbuff));
202  if (fg)
203    strncat(f->textbuff, attrbuff,
204            g_unichar_to_utf8(OWL_FMTEXT_UC_FGCOLOR | fgcolor, attrbuff));
205  if (bg)
206    strncat(f->textbuff, attrbuff,
207            g_unichar_to_utf8(OWL_FMTEXT_UC_BGCOLOR | bgcolor, attrbuff));
[9866c3a]208
[e0e0e5a]209  strncat(f->textbuff, in->textbuff+start, stop-start);
[9866c3a]210
211  /* Reset attributes */
212  strcat(f->textbuff, OWL_FMTEXT_UTF8_BGDEFAULT);
213  strcat(f->textbuff, OWL_FMTEXT_UTF8_FGDEFAULT);
214  strcat(f->textbuff, OWL_FMTEXT_UTF8_ATTR_NONE);
215
[7d4fbcd]216  f->textbuff[newlen]='\0';
217  f->textlen=newlen;
218}
219
[b2b0773]220/* append fmtext 'in' to 'f' */
[075ba92]221void owl_fmtext_append_fmtext(owl_fmtext *f, const owl_fmtext *in)
[5789230]222{
223  _owl_fmtext_append_fmtext(f, in, 0, in->textlen);
224
225}
226
[b2b0773]227/* Append 'nspaces' number of spaces to the end of 'f' */
[5789230]228void owl_fmtext_append_spaces(owl_fmtext *f, int nspaces)
229{
[7d4fbcd]230  int i;
231  for (i=0; i<nspaces; i++) {
232    owl_fmtext_append_normal(f, " ");
233  }
234}
235
[b2b0773]236/* Return a plain version of the fmtext.  Caller is responsible for
237 * freeing the return
238 */
[075ba92]239char *owl_fmtext_print_plain(const owl_fmtext *f)
[5789230]240{
[5376a95]241  return owl_strip_format_chars(f->textbuff);
[e1c4636]242}
243
[e9c6fc8]244static void _owl_fmtext_wattrset(WINDOW *w, int attrs)
[9866c3a]245{
246  wattrset(w, A_NORMAL);
247  if (attrs & OWL_FMTEXT_ATTR_BOLD) wattron(w, A_BOLD);
248  if (attrs & OWL_FMTEXT_ATTR_REVERSE) wattron(w, A_REVERSE);
249  if (attrs & OWL_FMTEXT_ATTR_UNDERLINE) wattron(w, A_UNDERLINE);
250}
[16c6cca]251
[e9c6fc8]252static void _owl_fmtext_update_colorpair(short fg, short bg, short *pair)
[16c6cca]253{
254  if (owl_global_get_hascolors(&g)) {
255    *pair = owl_fmtext_get_colorpair(fg, bg);
256  }
257}
258
[e9c6fc8]259static void _owl_fmtext_wcolor_set(WINDOW *w, short pair)
[16c6cca]260{
261  if (owl_global_get_hascolors(&g)) {
262      wcolor_set(w,pair,NULL);
[39cff48]263      wbkgdset(w, COLOR_PAIR(pair));
[16c6cca]264  }
265}
266
[b2b0773]267/* add the formatted text to the curses window 'w'.  The window 'w'
268 * must already be initiatlized with curses
269 */
[e9c6fc8]270static void _owl_fmtext_curs_waddstr(const owl_fmtext *f, WINDOW *w, int do_search)
[9866c3a]271{
272  /* char *tmpbuff; */
273  /* int position, trans1, trans2, trans3, len, lastsame; */
274  char *s, *p;
275  char attr;
[18fb86ee]276  short fg, bg, pair = 0;
[9866c3a]277 
[f2f9314]278  if (w==NULL) {
279    owl_function_debugmsg("Hit a null window in owl_fmtext_curs_waddstr.");
280    return;
281  }
282
[9866c3a]283  s = f->textbuff;
284  /* Set default attributes. */
285  attr = f->default_attrs;
286  fg = f->default_fgcolor;
287  bg = f->default_bgcolor;
288  _owl_fmtext_wattrset(w, attr);
[16c6cca]289  _owl_fmtext_update_colorpair(fg, bg, &pair);
290  _owl_fmtext_wcolor_set(w, pair);
[7d4fbcd]291
[9866c3a]292  /* Find next possible format character. */
293  p = strchr(s, OWL_FMTEXT_UC_STARTBYTE_UTF8);
294  while(p) {
[c1522ec]295    if (owl_fmtext_is_format_char(g_utf8_get_char(p))) {
[9866c3a]296      /* Deal with all text from last insert to here. */
297      char tmp;
298   
299      tmp = p[0];
300      p[0] = '\0';
[41c9a96]301      if (owl_global_is_search_active(&g)) {
[9866c3a]302        /* Search is active, so highlight search results. */
[41c9a96]303        char tmp2;
304        int start, end;
305        while (owl_regex_compare(owl_global_get_search_re(&g), s, &start, &end) == 0) {
[0ed5c57]306          /* Prevent an infinite loop matching the empty string. */
307          if (end == 0)
308            break;
309
[9866c3a]310          /* Found search string, highlight it. */
311
[41c9a96]312          tmp2 = s[start];
313          s[start] = '\0';
[9866c3a]314          waddstr(w, s);
[41c9a96]315          s[start] = tmp2;
[9866c3a]316
[987a93c]317          _owl_fmtext_wattrset(w, attr ^ OWL_FMTEXT_ATTR_REVERSE);
[16c6cca]318          _owl_fmtext_wcolor_set(w, pair);
319         
[41c9a96]320          tmp2 = s[end];
321          s[end] = '\0';
322          waddstr(w, s + start);
323          s[end] = tmp2;
[9866c3a]324
[16c6cca]325          _owl_fmtext_wattrset(w, attr);
326          _owl_fmtext_wcolor_set(w, pair);
[9866c3a]327
[41c9a96]328          s += end;
[9866c3a]329        }
330      }
331      /* Deal with remaining part of string. */
332      waddstr(w, s);
333      p[0] = tmp;
334
335      /* Deal with new attributes. Initialize to defaults, then
336         process all consecutive formatting characters. */
337      attr = f->default_attrs;
338      fg = f->default_fgcolor;
339      bg = f->default_bgcolor;
[f119757]340      while (owl_fmtext_is_format_char(g_utf8_get_char(p))) {
[9866c3a]341        _owl_fmtext_update_attributes(g_utf8_get_char(p), &attr, &fg, &bg);
342        p = g_utf8_next_char(p);
[7d4fbcd]343      }
[9866c3a]344      _owl_fmtext_wattrset(w, attr | f->default_attrs);
[16c6cca]345      if (fg == OWL_COLOR_DEFAULT) fg = f->default_fgcolor;
346      if (bg == OWL_COLOR_DEFAULT) bg = f->default_bgcolor;
347      _owl_fmtext_update_colorpair(fg, bg, &pair);
348      _owl_fmtext_wcolor_set(w, pair);
349
[9866c3a]350      /* Advance to next non-formatting character. */
351      s = p;
352      p = strchr(s, OWL_FMTEXT_UC_STARTBYTE_UTF8);
353    }
354    else {
355      p = strchr(p+1, OWL_FMTEXT_UC_STARTBYTE_UTF8);
[7d4fbcd]356    }
357  }
[9866c3a]358  if (s) {
359    waddstr(w, s);
360  }
[39cff48]361  wbkgdset(w, 0);
[7d4fbcd]362}
363
[075ba92]364void owl_fmtext_curs_waddstr(const owl_fmtext *f, WINDOW *w)
[47519e1b]365{
366  _owl_fmtext_curs_waddstr(f, w, owl_global_is_search_active(&g));
367}
368
[075ba92]369void owl_fmtext_curs_waddstr_without_search(const owl_fmtext *f, WINDOW *w)
[47519e1b]370{
371  _owl_fmtext_curs_waddstr(f, w, 0);
372}
[7d4fbcd]373
[2b83ad6]374/* Expands tabs. Tabs are expanded as if given an initial indent of start. */
375void owl_fmtext_expand_tabs(const owl_fmtext *in, owl_fmtext *out, int start) {
376  int col = start, numcopied = 0;
377  char *ptr;
378
379  /* Copy the default attributes. */
380  out->default_attrs = in->default_attrs;
381  out->default_fgcolor = in->default_fgcolor;
382  out->default_bgcolor = in->default_bgcolor;
383
384  for (ptr = in->textbuff;
385       ptr < in->textbuff + in->textlen;
386       ptr = g_utf8_next_char(ptr)) {
387    gunichar c = g_utf8_get_char(ptr);
388    int chwidth;
389    if (c == '\t') {
390      /* Copy up to this tab */
[30da473]391      _owl_fmtext_append_fmtext(out, in, numcopied, ptr - in->textbuff);
[2b83ad6]392      /* and then copy spaces for the tab. */
393      chwidth = OWL_TAB_WIDTH - (col % OWL_TAB_WIDTH);
394      owl_fmtext_append_spaces(out, chwidth);
395      col += chwidth;
396      numcopied = g_utf8_next_char(ptr) - in->textbuff;
397    } else {
398      /* Just update col. We'll append later. */
399      if (c == '\n') {
400        col = start;
401      } else if (!owl_fmtext_is_format_char(c)) {
402        col += mk_wcwidth(c);
403      }
404    }
405  }
406  /* Append anything we've missed. */
407  if (numcopied < in->textlen)
[30da473]408    _owl_fmtext_append_fmtext(out, in, numcopied, in->textlen);
[2b83ad6]409}
410
[b2b0773]411/* start with line 'aline' (where the first line is 0) and print
412 * 'lines' number of lines into 'out'
413 */
[075ba92]414int owl_fmtext_truncate_lines(const owl_fmtext *in, int aline, int lines, owl_fmtext *out)
[5789230]415{
[e19eb97]416  const char *ptr1, *ptr2;
[7d4fbcd]417  int i, offset;
418 
419  /* find the starting line */
[9866c3a]420  ptr1 = in->textbuff;
421  for (i = 0; i < aline; i++) {
422    ptr1 = strchr(ptr1, '\n');
423    if (!ptr1) return(-1);
424    ptr1++;
[7d4fbcd]425  }
[9866c3a]426 
[7d4fbcd]427  /* ptr1 now holds the starting point */
428
[c55ad84]429  /* copy the default attributes */
430  out->default_attrs = in->default_attrs;
431  out->default_fgcolor = in->default_fgcolor;
432  out->default_bgcolor = in->default_bgcolor;
433   
[7d4fbcd]434  /* copy in the next 'lines' lines */
[9866c3a]435  if (lines < 1) return(-1);
[7d4fbcd]436
[9866c3a]437  for (i = 0; i < lines; i++) {
438    offset = ptr1 - in->textbuff;
439    ptr2 = strchr(ptr1, '\n');
[7d4fbcd]440    if (!ptr2) {
[e0e0e5a]441      /* Copy to the end of the buffer. */
442      _owl_fmtext_append_fmtext(out, in, offset, in->textlen);
[7d4fbcd]443      return(-1);
444    }
[e0e0e5a]445    /* Copy up to, and including, the new line. */
446    _owl_fmtext_append_fmtext(out, in, offset, (ptr2 - ptr1) + offset + 1);
[9866c3a]447    ptr1 = ptr2 + 1;
[7d4fbcd]448  }
449  return(0);
450}
451
[b2b0773]452/* Truncate the message so that each line begins at column 'acol' and
453 * ends at 'bcol' or sooner.  The first column is number 0.  The new
[dd6af02]454 * message is placed in 'out'.  The message is expected to end in a
455 * new line for now.
[7b4d90e]456 *
457 * NOTE: This needs to be modified to deal with backing up if we find
[fb2f9ab]458 * a SPACING COMBINING MARK at the end of a line. If that happens, we
459 * should back up to the last non-mark character and stop there.
[7b4d90e]460 *
461 * NOTE: If a line ends at bcol, we omit the newline. This is so printing
462 * to ncurses works.
[b2b0773]463 */
[075ba92]464void owl_fmtext_truncate_cols(const owl_fmtext *in, int acol, int bcol, owl_fmtext *out)
[5789230]465{
[e19eb97]466  const char *ptr_s, *ptr_e, *ptr_c, *last;
[9866c3a]467  int col, st, padding, chwidth;
[7d4fbcd]468
[c55ad84]469  /* copy the default attributes */
470  out->default_attrs = in->default_attrs;
471  out->default_fgcolor = in->default_fgcolor;
472  out->default_bgcolor = in->default_bgcolor;
473
[7d4fbcd]474  last=in->textbuff+in->textlen-1;
[28ee32b]475  ptr_s=in->textbuff;
[9866c3a]476  while (ptr_s <= last) {
[28ee32b]477    ptr_e=strchr(ptr_s, '\n');
478    if (!ptr_e) {
[dd6af02]479      /* but this shouldn't happen if we end in a \n */
480      break;
[7d4fbcd]481    }
482   
[9866c3a]483    if (ptr_e == ptr_s) {
[7d4fbcd]484      owl_fmtext_append_normal(out, "\n");
[9866c3a]485      ++ptr_s;
[7d4fbcd]486      continue;
487    }
488
[28ee32b]489    col = 0;
[9866c3a]490    st = 0;
[dd24b6a]491    padding = 0;
[47519e1b]492    chwidth = 0;
[28ee32b]493    ptr_c = ptr_s;
[3a7cf49]494    while(ptr_c < ptr_e) {
[28ee32b]495      gunichar c = g_utf8_get_char(ptr_c);
[c1522ec]496      if (!owl_fmtext_is_format_char(c)) {
[47519e1b]497        chwidth = mk_wcwidth(c);
[3a7cf49]498        if (col + chwidth > bcol) break;
499       
[9866c3a]500        if (col >= acol) {
501          if (st == 0) {
502            ptr_s = ptr_c;
503            padding = col - acol;
504            ++st;
505          }
[dd24b6a]506        }
[9866c3a]507        col += chwidth;
508        chwidth = 0;
[28ee32b]509      }
[9866c3a]510      ptr_c = g_utf8_next_char(ptr_c);
[dd24b6a]511    }
[9866c3a]512    if (st) {
513      /* lead padding */
514      owl_fmtext_append_spaces(out, padding);
[3a7cf49]515      if (ptr_c == ptr_e) {
[e0e0e5a]516        /* We made it to the newline. Append up to, and including it. */
517        _owl_fmtext_append_fmtext(out, in, ptr_s - in->textbuff, ptr_c - in->textbuff + 1);
[9866c3a]518      }
[db1af5f]519      else if (chwidth > 1) {
520        /* Last char is wide, truncate. */
[e0e0e5a]521        _owl_fmtext_append_fmtext(out, in, ptr_s - in->textbuff, ptr_c - in->textbuff);
[db1af5f]522        owl_fmtext_append_normal(out, "\n");
523      }
[9866c3a]524      else {
[e0e0e5a]525        /* Last char fits perfectly, We stop at the next char to make
526         * sure we get it all. */
[db1af5f]527        ptr_c = g_utf8_next_char(ptr_c);
[e0e0e5a]528        _owl_fmtext_append_fmtext(out, in, ptr_s - in->textbuff, ptr_c - in->textbuff);
[28ee32b]529      }
[dd24b6a]530    }
531    else {
532      owl_fmtext_append_normal(out, "\n");
[28ee32b]533    }
[dd6af02]534    ptr_s = g_utf8_next_char(ptr_e);
[7d4fbcd]535  }
536}
537
[b2b0773]538/* Return the number of lines in 'f' */
[075ba92]539int owl_fmtext_num_lines(const owl_fmtext *f)
[5789230]540{
[7d4fbcd]541  int lines, i;
[c93b8b5]542  char *lastbreak, *p;
[7d4fbcd]543
544  lines=0;
[c93b8b5]545  lastbreak = f->textbuff;
[af2ca19]546  for (i=0; i<f->textlen; i++) {
[c93b8b5]547    if (f->textbuff[i]=='\n') {
548      lastbreak = f->textbuff + i;
549      lines++;
550    }
[7d4fbcd]551  }
552
[c93b8b5]553  /* Check if there's a trailing line; formatting characters don't count. */
554  for (p = g_utf8_next_char(lastbreak);
555       p < f->textbuff + f->textlen;
556       p = g_utf8_next_char(p)) {
557    if (!owl_fmtext_is_format_char(g_utf8_get_char(p))) {
558      lines++;
559      break;
560    }
561  }
[7d4fbcd]562
563  return(lines);
564}
565
[075ba92]566const char *owl_fmtext_get_text(const owl_fmtext *f)
[5789230]567{
[7d4fbcd]568  return(f->textbuff);
569}
570
[6772d19]571int owl_fmtext_num_bytes(const owl_fmtext *f)
572{
573  return(f->textlen);
574}
575
[a0a5179]576/* set the charater at 'index' to be 'char'.  If index is out of
[9866c3a]577 * bounds don't do anything. If c or char at index is not ASCII, don't
578 * do anything because it's not UTF-8 safe. */
579void owl_fmtext_set_char(owl_fmtext *f, int index, char ch)
[5789230]580{
[4b464a4]581  if ((index < 0) || (index > f->textlen-1)) return;
[9866c3a]582  /* NOT ASCII*/
583  if (f->textbuff[index] & 0x80 || ch & 0x80) return; 
[4b464a4]584  f->textbuff[index]=ch;
585}
586
[b2b0773]587/* Make a copy of the fmtext 'src' into 'dst' */
[075ba92]588void owl_fmtext_copy(owl_fmtext *dst, const owl_fmtext *src)
[5789230]589{
[b2b0773]590  int mallocsize;
591
592  if (src->textlen==0) {
593    mallocsize=5;
594  } else {
595    mallocsize=src->textlen+2;
596  }
[7d4fbcd]597  dst->textlen=src->textlen;
[005fc22]598  dst->bufflen=mallocsize;
[bd3f232]599  dst->textbuff=owl_malloc(mallocsize);
[6bf73ce]600  memcpy(dst->textbuff, src->textbuff, src->textlen+1);
[9866c3a]601  dst->default_attrs = src->default_attrs;
602  dst->default_fgcolor = src->default_fgcolor;
603  dst->default_bgcolor = src->default_bgcolor;
[1fd0b25]604}
605
[b2b0773]606/* return 1 if the string is found, 0 if not.  This is a case
607 *  insensitive search.
[5789230]608 */
[89b2daf]609int owl_fmtext_search(const owl_fmtext *f, const owl_regex *re)
[5789230]610{
[41c9a96]611  if (owl_regex_compare(re, f->textbuff, NULL, NULL) == 0) return(1);
[1fd0b25]612  return(0);
613}
[12c35df]614
615
616/* Append the text 'text' to 'f' and interpret the zephyr style
617 * formatting syntax to set appropriate attributes.
618 */
[e19eb97]619void owl_fmtext_append_ztext(owl_fmtext *f, const char *text)
[12c35df]620{
621  int stacksize, curattrs, curcolor;
[e19eb97]622  const char *ptr, *txtptr, *tmpptr;
[65b2173]623  char *buff;
[d754b0a]624  int attrstack[32], chrstack[32], colorstack[32];
[12c35df]625
626  curattrs=OWL_FMTEXT_ATTR_NONE;
627  curcolor=OWL_COLOR_DEFAULT;
628  stacksize=0;
629  txtptr=text;
630  while (1) {
631    ptr=strpbrk(txtptr, "@{[<()>]}");
632    if (!ptr) {
633      /* add all the rest of the text and exit */
[8fa9562]634      owl_fmtext_append_attr(f, txtptr, curattrs, curcolor, OWL_COLOR_DEFAULT);
[12c35df]635      return;
636    } else if (ptr[0]=='@') {
637      /* add the text up to this point then deal with the stack */
638      buff=owl_malloc(ptr-txtptr+20);
639      strncpy(buff, txtptr, ptr-txtptr);
640      buff[ptr-txtptr]='\0';
[8fa9562]641      owl_fmtext_append_attr(f, buff, curattrs, curcolor, OWL_COLOR_DEFAULT);
[12c35df]642      owl_free(buff);
643
644      /* update pointer to point at the @ */
645      txtptr=ptr;
646
647      /* now the stack */
648
649      /* if we've hit our max stack depth, print the @ and move on */
650      if (stacksize==32) {
[1bdffcb]651        owl_fmtext_append_attr(f, "@", curattrs, curcolor, OWL_COLOR_DEFAULT);
652        txtptr++;
653        continue;
[12c35df]654      }
655
656      /* if it's an @@, print an @ and continue */
657      if (txtptr[1]=='@') {
[1bdffcb]658        owl_fmtext_append_attr(f, "@", curattrs, curcolor, OWL_COLOR_DEFAULT);
659        txtptr+=2;
660        continue;
[12c35df]661      }
[1bdffcb]662       
[12c35df]663      /* if there's no opener, print the @ and continue */
664      tmpptr=strpbrk(txtptr, "(<[{ ");
665      if (!tmpptr || tmpptr[0]==' ') {
[1bdffcb]666        owl_fmtext_append_attr(f, "@", curattrs, curcolor, OWL_COLOR_DEFAULT);
667        txtptr++;
668        continue;
[12c35df]669      }
670
671      /* check what command we've got, push it on the stack, start
[1bdffcb]672         using it, and continue ... unless it's a color command */
[12c35df]673      buff=owl_malloc(tmpptr-ptr+20);
674      strncpy(buff, ptr, tmpptr-ptr);
675      buff[tmpptr-ptr]='\0';
676      if (!strcasecmp(buff, "@bold")) {
[1bdffcb]677        attrstack[stacksize]=OWL_FMTEXT_ATTR_BOLD;
678        chrstack[stacksize]=tmpptr[0];
[d754b0a]679        colorstack[stacksize]=curcolor;
[1bdffcb]680        stacksize++;
681        curattrs|=OWL_FMTEXT_ATTR_BOLD;
682        txtptr+=6;
683        owl_free(buff);
684        continue;
[12c35df]685      } else if (!strcasecmp(buff, "@b")) {
[1bdffcb]686        attrstack[stacksize]=OWL_FMTEXT_ATTR_BOLD;
687        chrstack[stacksize]=tmpptr[0];
[d754b0a]688        colorstack[stacksize]=curcolor;
[1bdffcb]689        stacksize++;
690        curattrs|=OWL_FMTEXT_ATTR_BOLD;
691        txtptr+=3;
692        owl_free(buff);
693        continue;
[12c35df]694      } else if (!strcasecmp(buff, "@i")) {
[1bdffcb]695        attrstack[stacksize]=OWL_FMTEXT_ATTR_UNDERLINE;
696        chrstack[stacksize]=tmpptr[0];
[d754b0a]697        colorstack[stacksize]=curcolor;
[1bdffcb]698        stacksize++;
699        curattrs|=OWL_FMTEXT_ATTR_UNDERLINE;
700        txtptr+=3;
701        owl_free(buff);
702        continue;
[12c35df]703      } else if (!strcasecmp(buff, "@italic")) {
[1bdffcb]704        attrstack[stacksize]=OWL_FMTEXT_ATTR_UNDERLINE;
705        chrstack[stacksize]=tmpptr[0];
[d754b0a]706        colorstack[stacksize]=curcolor;
[1bdffcb]707        stacksize++;
708        curattrs|=OWL_FMTEXT_ATTR_UNDERLINE;
709        txtptr+=8;
710        owl_free(buff);
711        continue;
[d754b0a]712      } else if (!strcasecmp(buff, "@")) {
713        attrstack[stacksize]=OWL_FMTEXT_ATTR_NONE;
714        chrstack[stacksize]=tmpptr[0];
715        colorstack[stacksize]=curcolor;
716        stacksize++;
717        txtptr+=2;
718        owl_free(buff);
719        continue;
[1bdffcb]720
721        /* if it's a color read the color, set the current color and
[12c35df]722           continue */
723      } else if (!strcasecmp(buff, "@color") 
[1bdffcb]724                 && owl_global_get_hascolors(&g)
725                 && owl_global_is_colorztext(&g)) {
726        owl_free(buff);
727        txtptr+=7;
728        tmpptr=strpbrk(txtptr, "@{[<()>]}");
729        if (tmpptr &&
730            ((txtptr[-1]=='(' && tmpptr[0]==')') ||
731             (txtptr[-1]=='<' && tmpptr[0]=='>') ||
732             (txtptr[-1]=='[' && tmpptr[0]==']') ||
733             (txtptr[-1]=='{' && tmpptr[0]=='}'))) {
734
735          /* grab the color name */
736          buff=owl_malloc(tmpptr-txtptr+20);
737          strncpy(buff, txtptr, tmpptr-txtptr);
738          buff[tmpptr-txtptr]='\0';
739
740          /* set it as the current color */
741          curcolor=owl_util_string_to_color(buff);
[1ee5c79]742          if (curcolor == OWL_COLOR_INVALID)
743              curcolor = OWL_COLOR_DEFAULT;
[1bdffcb]744          owl_free(buff);
745          txtptr=tmpptr+1;
746          continue;
747
748        } else {
749
750        }
[12c35df]751
752      } else {
[1bdffcb]753        /* if we didn't understand it, we'll print it.  This is different from zwgc
754         * but zwgc seems to be smarter about some screw cases than I am
755         */
756        owl_fmtext_append_attr(f, "@", curattrs, curcolor, OWL_COLOR_DEFAULT);
757        txtptr++;
758        continue;
[12c35df]759      }
760
761    } else if (ptr[0]=='}' || ptr[0]==']' || ptr[0]==')' || ptr[0]=='>') {
762      /* add the text up to this point first */
763      buff=owl_malloc(ptr-txtptr+20);
764      strncpy(buff, txtptr, ptr-txtptr);
765      buff[ptr-txtptr]='\0';
[8fa9562]766      owl_fmtext_append_attr(f, buff, curattrs, curcolor, OWL_COLOR_DEFAULT);
[12c35df]767      owl_free(buff);
768
769      /* now deal with the closer */
770      txtptr=ptr;
771
772      /* first, if the stack is empty we must bail (just print and go) */
773      if (stacksize==0) {
[1bdffcb]774        buff=owl_malloc(5);
775        buff[0]=ptr[0];
776        buff[1]='\0';
777        owl_fmtext_append_attr(f, buff, curattrs, curcolor, OWL_COLOR_DEFAULT);
778        owl_free(buff);
779        txtptr++;
780        continue;
[12c35df]781      }
782
783      /* if the closing char is what's on the stack, turn off the
784         attribue and pop the stack */
785      if ((ptr[0]==')' && chrstack[stacksize-1]=='(') ||
[1bdffcb]786          (ptr[0]=='>' && chrstack[stacksize-1]=='<') ||
787          (ptr[0]==']' && chrstack[stacksize-1]=='[') ||
788          (ptr[0]=='}' && chrstack[stacksize-1]=='{')) {
789        int i;
790        stacksize--;
791        curattrs=OWL_FMTEXT_ATTR_NONE;
[d754b0a]792        curcolor = colorstack[stacksize];
[1bdffcb]793        for (i=0; i<stacksize; i++) {
794          curattrs|=attrstack[i];
795        }
796        txtptr+=1;
797        continue;
[12c35df]798      } else {
[1bdffcb]799        /* otherwise print and continue */
800        buff=owl_malloc(5);
801        buff[0]=ptr[0];
802        buff[1]='\0';
803        owl_fmtext_append_attr(f, buff, curattrs, curcolor, OWL_COLOR_DEFAULT);
804        owl_free(buff);
805        txtptr++;
806        continue;
[12c35df]807      }
808    } else {
809      /* we've found an unattached opener, print everything and move on */
810      buff=owl_malloc(ptr-txtptr+20);
811      strncpy(buff, txtptr, ptr-txtptr+1);
812      buff[ptr-txtptr+1]='\0';
[8fa9562]813      owl_fmtext_append_attr(f, buff, curattrs, curcolor, OWL_COLOR_DEFAULT);
[12c35df]814      owl_free(buff);
815      txtptr=ptr+1;
816      continue;
817    }
818  }
819}
[a0a5179]820
821/* requires that the list values are strings or NULL.
822 * joins the elements together with join_with.
823 * If format_fn is specified, passes it the list element value
824 * and it will return a string which this needs to free. */
[77bced3]825void owl_fmtext_append_list(owl_fmtext *f, const owl_list *l, const char *join_with, char *(format_fn)(const char *))
[a0a5179]826{
827  int i, size;
[e19eb97]828  const char *elem;
[a0a5179]829  char *text;
830
831  size = owl_list_get_size(l);
832  for (i=0; i<size; i++) {
[4d86e06]833    elem = owl_list_get_element(l,i);
[a0a5179]834    if (elem && format_fn) {
835      text = format_fn(elem);
836      if (text) {
[1bdffcb]837        owl_fmtext_append_normal(f, text);
838        owl_free(text);
[a0a5179]839      }
840    } else if (elem) {
841      owl_fmtext_append_normal(f, elem);
842    }
843    if ((i < size-1) && join_with) {
844      owl_fmtext_append_normal(f, join_with);
845    }
846  }
847}
848
849/* Free all memory allocated by the object */
[7ab0020]850void owl_fmtext_cleanup(owl_fmtext *f)
[a0a5179]851{
852  if (f->textbuff) owl_free(f->textbuff);
[8fa9562]853}
854
855/*** Color Pair manager ***/
856void owl_fmtext_init_colorpair_mgr(owl_colorpair_mgr *cpmgr)
857{
[af1920fd]858  /* This could be a bitarray if we wanted to save memory. */
[c2c5c77]859  short i, j;
860  cpmgr->next = 8;
861 
[af1920fd]862  /* The test is <= because we allocate COLORS+1 entries. */
[c2c5c77]863  cpmgr->pairs = owl_malloc((COLORS+1) * sizeof(short*));
864  for(i = 0; i <= COLORS; i++) {
865    cpmgr->pairs[i] = owl_malloc((COLORS+1) * sizeof(short));
866    for(j = 0; j <= COLORS; j++) {
[8fa9562]867      cpmgr->pairs[i][j] = -1;
868    }
869  }
[fa3290d]870  if (owl_global_get_hascolors(&g)) {
871    for(i = 0; i < 8; i++) {
872      short fg, bg;
873      if (i >= COLORS) continue;
874      pair_content(i, &fg, &bg);
875      cpmgr->pairs[fg+1][bg+1] = i;
876    }
[c2c5c77]877  }
[a0a5179]878}
879
[8fa9562]880/* Reset used list */
[c79a047]881void owl_fmtext_reset_colorpairs(void)
[8fa9562]882{
[fa3290d]883  if (owl_global_get_hascolors(&g)) {
884    short i, j;
885    owl_colorpair_mgr *cpmgr = owl_global_get_colorpair_mgr(&g);
886    cpmgr->next = 8;
887   
[af1920fd]888    /* The test is <= because we allocated COLORS+1 entries. */
[fa3290d]889    for(i = 0; i <= COLORS; i++) {
890      for(j = 0; j <= COLORS; j++) {
891        cpmgr->pairs[i][j] = -1;
892      }
893    }
894    for(i = 0; i < 8; i++) {
895      short fg, bg;
896      if (i >= COLORS) continue;
897      pair_content(i, &fg, &bg);
898      cpmgr->pairs[fg+1][bg+1] = i;
[eeeef20]899    }
[c2c5c77]900  }
[8fa9562]901}
902
903/* Assign pairs by request */
[1bdffcb]904short owl_fmtext_get_colorpair(int fg, int bg)
[8fa9562]905{
906  owl_colorpair_mgr *cpmgr;
[423adcb]907  short pair;
[1bdffcb]908
[1b737a1]909  /* Sanity (Bounds) Check */
910  if (fg > COLORS || fg < OWL_COLOR_DEFAULT) fg = OWL_COLOR_DEFAULT;
911  if (bg > COLORS || bg < OWL_COLOR_DEFAULT) bg = OWL_COLOR_DEFAULT;
912           
[1bdffcb]913#ifdef HAVE_USE_DEFAULT_COLORS
[8fa9562]914  if (fg == OWL_COLOR_DEFAULT) fg = -1;
[1bdffcb]915#else
916  if (fg == OWL_COLOR_DEFAULT) fg = 0;
917  if (bg == OWL_COLOR_DEFAULT) bg = 0;
918#endif
919
[af1920fd]920  /* looking for a pair we already set up for this draw. */
[c2c5c77]921  cpmgr = owl_global_get_colorpair_mgr(&g);
922  pair = cpmgr->pairs[fg+1][bg+1];
923  if (!(pair != -1 && pair < cpmgr->next)) {
[af1920fd]924    /* If we didn't find a pair, search for a free one to assign. */
[c2c5c77]925    pair = (cpmgr->next < COLOR_PAIRS) ? cpmgr->next : -1;
926    if (pair != -1) {
[af1920fd]927      /* We found a free pair, initialize it. */
[c2c5c77]928      init_pair(pair, fg, bg);
929      cpmgr->pairs[fg+1][bg+1] = pair;
930      cpmgr->next++;
931    }
932    else if (bg != OWL_COLOR_DEFAULT) {
[af1920fd]933      /* We still don't have a pair, drop the background color. Too bad. */
[c2c5c77]934      owl_function_debugmsg("colorpairs: color shortage - dropping background color.");
935      pair = owl_fmtext_get_colorpair(fg, OWL_COLOR_DEFAULT);
936    }
937    else {
[af1920fd]938      /* We still don't have a pair, defaults all around. */
[c2c5c77]939      owl_function_debugmsg("colorpairs: color shortage - dropping foreground and background color.");
940      pair = 0;
[8fa9562]941    }
942  }
943  return pair;
944}
Note: See TracBrowser for help on using the repository browser.