source: fmtext.c @ 2b83ad6

release-1.10release-1.7release-1.8release-1.9
Last change on this file since 2b83ad6 was 2b83ad6, checked in by David Benjamin <davidben@mit.edu>, 14 years ago
Add owl_fmtext_expand_tabs with test case
  • Property mode set to 100644
File size: 27.3 KB
Line 
1#include "owl.h"
2#include <stdlib.h>
3#include <string.h>
4
5/* initialize an fmtext with no data */
6void owl_fmtext_init_null(owl_fmtext *f)
7{
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;
14  f->default_bgcolor = OWL_COLOR_DEFAULT;
15}
16
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{
21  f->textlen = 0;
22  f->textbuff[0] = 0;
23  f->default_attrs = OWL_FMTEXT_ATTR_NONE;
24  f->default_fgcolor = OWL_COLOR_DEFAULT;
25  f->default_bgcolor = OWL_COLOR_DEFAULT;
26}
27
28static void _owl_fmtext_realloc(owl_fmtext *f, int newlen)
29{
30    if(newlen + 1 > f->bufflen) {
31      f->textbuff = owl_realloc(f->textbuff, newlen + 1);
32      f->bufflen = newlen+1;
33  }
34}
35
36int owl_fmtext_is_format_char(gunichar c)
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}
42/* append text to the end of 'f' with attribute 'attr' and color
43 * 'color'
44 */
45void owl_fmtext_append_attr(owl_fmtext *f, const char *text, char attr, short fgcolor, short bgcolor)
46{
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));
56  _owl_fmtext_realloc(f, newlen);
57
58  /* Set attributes */
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));
68 
69  strcat(f->textbuff, text);
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);
75  f->textlen=newlen;
76}
77
78/* Append normal, uncolored text 'text' to 'f' */
79void owl_fmtext_append_normal(owl_fmtext *f, const char *text)
80{
81  owl_fmtext_append_attr(f, text, OWL_FMTEXT_ATTR_NONE, OWL_COLOR_DEFAULT, OWL_COLOR_DEFAULT);
82}
83
84/* Append normal, uncolored text specified by format string to 'f' */
85void owl_fmtext_appendf_normal(owl_fmtext *f, const char *fmt, ...)
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);
96  owl_free(buff);
97}
98
99/* Append normal text 'text' to 'f' with color 'color' */
100void owl_fmtext_append_normal_color(owl_fmtext *f, const char *text, int fgcolor, int bgcolor)
101{
102  owl_fmtext_append_attr(f, text, OWL_FMTEXT_ATTR_NONE, fgcolor, bgcolor);
103}
104
105/* Append bold text 'text' to 'f' */
106void owl_fmtext_append_bold(owl_fmtext *f, const char *text)
107{
108  owl_fmtext_append_attr(f, text, OWL_FMTEXT_ATTR_BOLD, OWL_COLOR_DEFAULT, OWL_COLOR_DEFAULT);
109}
110
111/* Append reverse video text 'text' to 'f' */
112void owl_fmtext_append_reverse(owl_fmtext *f, const char *text)
113{
114  owl_fmtext_append_attr(f, text, OWL_FMTEXT_ATTR_REVERSE, OWL_COLOR_DEFAULT, OWL_COLOR_DEFAULT);
115}
116
117/* Append reversed and bold, uncolored text 'text' to 'f' */
118void owl_fmtext_append_reversebold(owl_fmtext *f, const char *text)
119{
120  owl_fmtext_append_attr(f, text, OWL_FMTEXT_ATTR_REVERSE | OWL_FMTEXT_ATTR_BOLD, OWL_COLOR_DEFAULT, OWL_COLOR_DEFAULT);
121}
122
123/* Add the attribute 'attr' to the default atts for the text in 'f' */
124void owl_fmtext_addattr(owl_fmtext *f, char attr)
125{
126  /* add the attribute to all text */
127  f->default_attrs |= attr;
128}
129
130/* Set the default foreground color for this fmtext to 'color'.
131 * Only affects text that is colored default.
132 */
133void owl_fmtext_colorize(owl_fmtext *f, int color)
134{
135  f->default_fgcolor = color;
136}
137
138/* Set the default foreground color for this fmtext to 'color'.
139 * Only affects text that is colored default.
140 */
141void owl_fmtext_colorizebg(owl_fmtext *f, int color)
142{
143  f->default_bgcolor = color;
144}
145
146/* Internal function. Parse attrbute character. */
147static void _owl_fmtext_update_attributes(gunichar c, char *attr, short *fgcolor, short *bgcolor)
148{
149  if ((c & OWL_FMTEXT_UC_ATTR) == OWL_FMTEXT_UC_ATTR) {
150    *attr = c & OWL_FMTEXT_UC_ATTR_MASK;
151  }
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    }
163  }
164}
165
166/* Internal function. Scan for attribute characters. */
167static void _owl_fmtext_scan_attributes(const owl_fmtext *f, int start, char *attr, short *fgcolor, short *bgcolor)
168{
169  const char *p;
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
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.
180 */
181static void _owl_fmtext_append_fmtext(owl_fmtext *f, const owl_fmtext *in, int start, int stop)
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. */
196  newlen=strlen(f->textbuff)+(stop-start) + (4 * (a + fg + bg)) + 12;
197  _owl_fmtext_realloc(f, newlen);
198
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));
208
209  strncat(f->textbuff, in->textbuff+start, stop-start);
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
216  f->textbuff[newlen]='\0';
217  f->textlen=newlen;
218}
219
220/* append fmtext 'in' to 'f' */
221void owl_fmtext_append_fmtext(owl_fmtext *f, const owl_fmtext *in)
222{
223  _owl_fmtext_append_fmtext(f, in, 0, in->textlen);
224
225}
226
227/* Append 'nspaces' number of spaces to the end of 'f' */
228void owl_fmtext_append_spaces(owl_fmtext *f, int nspaces)
229{
230  int i;
231  for (i=0; i<nspaces; i++) {
232    owl_fmtext_append_normal(f, " ");
233  }
234}
235
236/* Return a plain version of the fmtext.  Caller is responsible for
237 * freeing the return
238 */
239char *owl_fmtext_print_plain(const owl_fmtext *f)
240{
241  return owl_strip_format_chars(f->textbuff);
242}
243
244static void _owl_fmtext_wattrset(WINDOW *w, int attrs)
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}
251
252static void _owl_fmtext_update_colorpair(short fg, short bg, short *pair)
253{
254  if (owl_global_get_hascolors(&g)) {
255    *pair = owl_fmtext_get_colorpair(fg, bg);
256  }
257}
258
259static void _owl_fmtext_wcolor_set(WINDOW *w, short pair)
260{
261  if (owl_global_get_hascolors(&g)) {
262      wcolor_set(w,pair,NULL);
263      wbkgdset(w, COLOR_PAIR(pair));
264  }
265}
266
267/* add the formatted text to the curses window 'w'.  The window 'w'
268 * must already be initiatlized with curses
269 */
270static void _owl_fmtext_curs_waddstr(const owl_fmtext *f, WINDOW *w, int do_search)
271{
272  /* char *tmpbuff; */
273  /* int position, trans1, trans2, trans3, len, lastsame; */
274  char *s, *p;
275  char attr;
276  short fg, bg, pair = 0;
277 
278  if (w==NULL) {
279    owl_function_debugmsg("Hit a null window in owl_fmtext_curs_waddstr.");
280    return;
281  }
282
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);
289  _owl_fmtext_update_colorpair(fg, bg, &pair);
290  _owl_fmtext_wcolor_set(w, pair);
291
292  /* Find next possible format character. */
293  p = strchr(s, OWL_FMTEXT_UC_STARTBYTE_UTF8);
294  while(p) {
295    if (owl_fmtext_is_format_char(g_utf8_get_char(p))) {
296      /* Deal with all text from last insert to here. */
297      char tmp;
298   
299      tmp = p[0];
300      p[0] = '\0';
301      if (owl_global_is_search_active(&g)) {
302        /* Search is active, so highlight search results. */
303        char tmp2;
304        int start, end;
305        while (owl_regex_compare(owl_global_get_search_re(&g), s, &start, &end) == 0) {
306          /* Prevent an infinite loop matching the empty string. */
307          if (end == 0)
308            break;
309
310          /* Found search string, highlight it. */
311
312          tmp2 = s[start];
313          s[start] = '\0';
314          waddstr(w, s);
315          s[start] = tmp2;
316
317          _owl_fmtext_wattrset(w, attr ^ OWL_FMTEXT_ATTR_REVERSE);
318          _owl_fmtext_wcolor_set(w, pair);
319         
320          tmp2 = s[end];
321          s[end] = '\0';
322          waddstr(w, s + start);
323          s[end] = tmp2;
324
325          _owl_fmtext_wattrset(w, attr);
326          _owl_fmtext_wcolor_set(w, pair);
327
328          s += end;
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;
340      while (owl_fmtext_is_format_char(g_utf8_get_char(p))) {
341        _owl_fmtext_update_attributes(g_utf8_get_char(p), &attr, &fg, &bg);
342        p = g_utf8_next_char(p);
343      }
344      _owl_fmtext_wattrset(w, attr | f->default_attrs);
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
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);
356    }
357  }
358  if (s) {
359    waddstr(w, s);
360  }
361  wbkgdset(w, 0);
362}
363
364void owl_fmtext_curs_waddstr(const owl_fmtext *f, WINDOW *w)
365{
366  _owl_fmtext_curs_waddstr(f, w, owl_global_is_search_active(&g));
367}
368
369void owl_fmtext_curs_waddstr_without_search(const owl_fmtext *f, WINDOW *w)
370{
371  _owl_fmtext_curs_waddstr(f, w, 0);
372}
373
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 */
391      _owl_fmtext_append_fmtext(out, in, numcopied, ptr - in->textbuff - 1);
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)
408    _owl_fmtext_append_fmtext(out, in, numcopied, in->textlen - 1);
409}
410
411/* start with line 'aline' (where the first line is 0) and print
412 * 'lines' number of lines into 'out'
413 */
414int owl_fmtext_truncate_lines(const owl_fmtext *in, int aline, int lines, owl_fmtext *out)
415{
416  const char *ptr1, *ptr2;
417  int i, offset;
418 
419  /* find the starting line */
420  ptr1 = in->textbuff;
421  for (i = 0; i < aline; i++) {
422    ptr1 = strchr(ptr1, '\n');
423    if (!ptr1) return(-1);
424    ptr1++;
425  }
426 
427  /* ptr1 now holds the starting point */
428
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   
434  /* copy in the next 'lines' lines */
435  if (lines < 1) return(-1);
436
437  for (i = 0; i < lines; i++) {
438    offset = ptr1 - in->textbuff;
439    ptr2 = strchr(ptr1, '\n');
440    if (!ptr2) {
441      /* Copy to the end of the buffer. */
442      _owl_fmtext_append_fmtext(out, in, offset, in->textlen);
443      return(-1);
444    }
445    /* Copy up to, and including, the new line. */
446    _owl_fmtext_append_fmtext(out, in, offset, (ptr2 - ptr1) + offset + 1);
447    ptr1 = ptr2 + 1;
448  }
449  return(0);
450}
451
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
454 * message is placed in 'out'.  The message is expected to end in a
455 * new line for now.
456 *
457 * NOTE: This needs to be modified to deal with backing up if we find
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.
460 *
461 * NOTE: If a line ends at bcol, we omit the newline. This is so printing
462 * to ncurses works.
463 */
464void owl_fmtext_truncate_cols(const owl_fmtext *in, int acol, int bcol, owl_fmtext *out)
465{
466  const char *ptr_s, *ptr_e, *ptr_c, *last;
467  int col, st, padding, chwidth;
468
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
474  last=in->textbuff+in->textlen-1;
475  ptr_s=in->textbuff;
476  while (ptr_s <= last) {
477    ptr_e=strchr(ptr_s, '\n');
478    if (!ptr_e) {
479      /* but this shouldn't happen if we end in a \n */
480      break;
481    }
482   
483    if (ptr_e == ptr_s) {
484      owl_fmtext_append_normal(out, "\n");
485      ++ptr_s;
486      continue;
487    }
488
489    col = 0;
490    st = 0;
491    padding = 0;
492    chwidth = 0;
493    ptr_c = ptr_s;
494    while(ptr_c < ptr_e) {
495      gunichar c = g_utf8_get_char(ptr_c);
496      if (!owl_fmtext_is_format_char(c)) {
497        chwidth = mk_wcwidth(c);
498        if (col + chwidth > bcol) break;
499       
500        if (col >= acol) {
501          if (st == 0) {
502            ptr_s = ptr_c;
503            padding = col - acol;
504            ++st;
505          }
506        }
507        col += chwidth;
508        chwidth = 0;
509      }
510      ptr_c = g_utf8_next_char(ptr_c);
511    }
512    if (st) {
513      /* lead padding */
514      owl_fmtext_append_spaces(out, padding);
515      if (ptr_c == ptr_e) {
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);
518      }
519      else if (chwidth > 1) {
520        /* Last char is wide, truncate. */
521        _owl_fmtext_append_fmtext(out, in, ptr_s - in->textbuff, ptr_c - in->textbuff);
522        owl_fmtext_append_normal(out, "\n");
523      }
524      else {
525        /* Last char fits perfectly, We stop at the next char to make
526         * sure we get it all. */
527        ptr_c = g_utf8_next_char(ptr_c);
528        _owl_fmtext_append_fmtext(out, in, ptr_s - in->textbuff, ptr_c - in->textbuff);
529      }
530    }
531    else {
532      owl_fmtext_append_normal(out, "\n");
533    }
534    ptr_s = g_utf8_next_char(ptr_e);
535  }
536}
537
538/* Return the number of lines in 'f' */
539int owl_fmtext_num_lines(const owl_fmtext *f)
540{
541  int lines, i;
542  char *lastbreak, *p;
543
544  lines=0;
545  lastbreak = f->textbuff;
546  for (i=0; i<f->textlen; i++) {
547    if (f->textbuff[i]=='\n') {
548      lastbreak = f->textbuff + i;
549      lines++;
550    }
551  }
552
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  }
562
563  return(lines);
564}
565
566const char *owl_fmtext_get_text(const owl_fmtext *f)
567{
568  return(f->textbuff);
569}
570
571int owl_fmtext_num_bytes(const owl_fmtext *f)
572{
573  return(f->textlen);
574}
575
576/* set the charater at 'index' to be 'char'.  If index is out of
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)
580{
581  if ((index < 0) || (index > f->textlen-1)) return;
582  /* NOT ASCII*/
583  if (f->textbuff[index] & 0x80 || ch & 0x80) return; 
584  f->textbuff[index]=ch;
585}
586
587/* Make a copy of the fmtext 'src' into 'dst' */
588void owl_fmtext_copy(owl_fmtext *dst, const owl_fmtext *src)
589{
590  int mallocsize;
591
592  if (src->textlen==0) {
593    mallocsize=5;
594  } else {
595    mallocsize=src->textlen+2;
596  }
597  dst->textlen=src->textlen;
598  dst->bufflen=mallocsize;
599  dst->textbuff=owl_malloc(mallocsize);
600  memcpy(dst->textbuff, src->textbuff, src->textlen+1);
601  dst->default_attrs = src->default_attrs;
602  dst->default_fgcolor = src->default_fgcolor;
603  dst->default_bgcolor = src->default_bgcolor;
604}
605
606/* return 1 if the string is found, 0 if not.  This is a case
607 *  insensitive search.
608 */
609int owl_fmtext_search(const owl_fmtext *f, const owl_regex *re)
610{
611  if (owl_regex_compare(re, f->textbuff, NULL, NULL) == 0) return(1);
612  return(0);
613}
614
615
616/* Append the text 'text' to 'f' and interpret the zephyr style
617 * formatting syntax to set appropriate attributes.
618 */
619void owl_fmtext_append_ztext(owl_fmtext *f, const char *text)
620{
621  int stacksize, curattrs, curcolor;
622  const char *ptr, *txtptr, *tmpptr;
623  char *buff;
624  int attrstack[32], chrstack[32], colorstack[32];
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 */
634      owl_fmtext_append_attr(f, txtptr, curattrs, curcolor, OWL_COLOR_DEFAULT);
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';
641      owl_fmtext_append_attr(f, buff, curattrs, curcolor, OWL_COLOR_DEFAULT);
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) {
651        owl_fmtext_append_attr(f, "@", curattrs, curcolor, OWL_COLOR_DEFAULT);
652        txtptr++;
653        continue;
654      }
655
656      /* if it's an @@, print an @ and continue */
657      if (txtptr[1]=='@') {
658        owl_fmtext_append_attr(f, "@", curattrs, curcolor, OWL_COLOR_DEFAULT);
659        txtptr+=2;
660        continue;
661      }
662       
663      /* if there's no opener, print the @ and continue */
664      tmpptr=strpbrk(txtptr, "(<[{ ");
665      if (!tmpptr || tmpptr[0]==' ') {
666        owl_fmtext_append_attr(f, "@", curattrs, curcolor, OWL_COLOR_DEFAULT);
667        txtptr++;
668        continue;
669      }
670
671      /* check what command we've got, push it on the stack, start
672         using it, and continue ... unless it's a color command */
673      buff=owl_malloc(tmpptr-ptr+20);
674      strncpy(buff, ptr, tmpptr-ptr);
675      buff[tmpptr-ptr]='\0';
676      if (!strcasecmp(buff, "@bold")) {
677        attrstack[stacksize]=OWL_FMTEXT_ATTR_BOLD;
678        chrstack[stacksize]=tmpptr[0];
679        colorstack[stacksize]=curcolor;
680        stacksize++;
681        curattrs|=OWL_FMTEXT_ATTR_BOLD;
682        txtptr+=6;
683        owl_free(buff);
684        continue;
685      } else if (!strcasecmp(buff, "@b")) {
686        attrstack[stacksize]=OWL_FMTEXT_ATTR_BOLD;
687        chrstack[stacksize]=tmpptr[0];
688        colorstack[stacksize]=curcolor;
689        stacksize++;
690        curattrs|=OWL_FMTEXT_ATTR_BOLD;
691        txtptr+=3;
692        owl_free(buff);
693        continue;
694      } else if (!strcasecmp(buff, "@i")) {
695        attrstack[stacksize]=OWL_FMTEXT_ATTR_UNDERLINE;
696        chrstack[stacksize]=tmpptr[0];
697        colorstack[stacksize]=curcolor;
698        stacksize++;
699        curattrs|=OWL_FMTEXT_ATTR_UNDERLINE;
700        txtptr+=3;
701        owl_free(buff);
702        continue;
703      } else if (!strcasecmp(buff, "@italic")) {
704        attrstack[stacksize]=OWL_FMTEXT_ATTR_UNDERLINE;
705        chrstack[stacksize]=tmpptr[0];
706        colorstack[stacksize]=curcolor;
707        stacksize++;
708        curattrs|=OWL_FMTEXT_ATTR_UNDERLINE;
709        txtptr+=8;
710        owl_free(buff);
711        continue;
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;
720
721        /* if it's a color read the color, set the current color and
722           continue */
723      } else if (!strcasecmp(buff, "@color") 
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);
742          if (curcolor == OWL_COLOR_INVALID)
743              curcolor = OWL_COLOR_DEFAULT;
744          owl_free(buff);
745          txtptr=tmpptr+1;
746          continue;
747
748        } else {
749
750        }
751
752      } else {
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;
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';
766      owl_fmtext_append_attr(f, buff, curattrs, curcolor, OWL_COLOR_DEFAULT);
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) {
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;
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]=='(') ||
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;
792        curcolor = colorstack[stacksize];
793        for (i=0; i<stacksize; i++) {
794          curattrs|=attrstack[i];
795        }
796        txtptr+=1;
797        continue;
798      } else {
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;
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';
813      owl_fmtext_append_attr(f, buff, curattrs, curcolor, OWL_COLOR_DEFAULT);
814      owl_free(buff);
815      txtptr=ptr+1;
816      continue;
817    }
818  }
819}
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. */
825void owl_fmtext_append_list(owl_fmtext *f, const owl_list *l, const char *join_with, char *(format_fn)(const char *))
826{
827  int i, size;
828  const char *elem;
829  char *text;
830
831  size = owl_list_get_size(l);
832  for (i=0; i<size; i++) {
833    elem = owl_list_get_element(l,i);
834    if (elem && format_fn) {
835      text = format_fn(elem);
836      if (text) {
837        owl_fmtext_append_normal(f, text);
838        owl_free(text);
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 */
850void owl_fmtext_cleanup(owl_fmtext *f)
851{
852  if (f->textbuff) owl_free(f->textbuff);
853}
854
855/*** Color Pair manager ***/
856void owl_fmtext_init_colorpair_mgr(owl_colorpair_mgr *cpmgr)
857{
858  /* This could be a bitarray if we wanted to save memory. */
859  short i, j;
860  cpmgr->next = 8;
861 
862  /* The test is <= because we allocate COLORS+1 entries. */
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++) {
867      cpmgr->pairs[i][j] = -1;
868    }
869  }
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    }
877  }
878}
879
880/* Reset used list */
881void owl_fmtext_reset_colorpairs(void)
882{
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   
888    /* The test is <= because we allocated COLORS+1 entries. */
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;
899    }
900  }
901}
902
903/* Assign pairs by request */
904short owl_fmtext_get_colorpair(int fg, int bg)
905{
906  owl_colorpair_mgr *cpmgr;
907  short pair;
908
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           
913#ifdef HAVE_USE_DEFAULT_COLORS
914  if (fg == OWL_COLOR_DEFAULT) fg = -1;
915#else
916  if (fg == OWL_COLOR_DEFAULT) fg = 0;
917  if (bg == OWL_COLOR_DEFAULT) bg = 0;
918#endif
919
920  /* looking for a pair we already set up for this draw. */
921  cpmgr = owl_global_get_colorpair_mgr(&g);
922  pair = cpmgr->pairs[fg+1][bg+1];
923  if (!(pair != -1 && pair < cpmgr->next)) {
924    /* If we didn't find a pair, search for a free one to assign. */
925    pair = (cpmgr->next < COLOR_PAIRS) ? cpmgr->next : -1;
926    if (pair != -1) {
927      /* We found a free pair, initialize it. */
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) {
933      /* We still don't have a pair, drop the background color. Too bad. */
934      owl_function_debugmsg("colorpairs: color shortage - dropping background color.");
935      pair = owl_fmtext_get_colorpair(fg, OWL_COLOR_DEFAULT);
936    }
937    else {
938      /* We still don't have a pair, defaults all around. */
939      owl_function_debugmsg("colorpairs: color shortage - dropping foreground and background color.");
940      pair = 0;
941    }
942  }
943  return pair;
944}
Note: See TracBrowser for help on using the repository browser.