]> ncurses.scripts.mit.edu Git - ncurses.git/blob - ncurses/tinfo/captoinfo.c
faedb58c8690a8b91920c0302bb2016e68b0d172
[ncurses.git] / ncurses / tinfo / captoinfo.c
1 /****************************************************************************
2  * Copyright (c) 1998-2010,2011 Free Software Foundation, Inc.              *
3  *                                                                          *
4  * Permission is hereby granted, free of charge, to any person obtaining a  *
5  * copy of this software and associated documentation files (the            *
6  * "Software"), to deal in the Software without restriction, including      *
7  * without limitation the rights to use, copy, modify, merge, publish,      *
8  * distribute, distribute with modifications, sublicense, and/or sell       *
9  * copies of the Software, and to permit persons to whom the Software is    *
10  * furnished to do so, subject to the following conditions:                 *
11  *                                                                          *
12  * The above copyright notice and this permission notice shall be included  *
13  * in all copies or substantial portions of the Software.                   *
14  *                                                                          *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
16  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
17  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
18  * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
19  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
20  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
21  * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
22  *                                                                          *
23  * Except as contained in this notice, the name(s) of the above copyright   *
24  * holders shall not be used in advertising or otherwise to promote the     *
25  * sale, use or other dealings in this Software without prior written       *
26  * authorization.                                                           *
27  ****************************************************************************/
28
29 /****************************************************************************
30  *  Author: Zeyd M. Ben-Halim <zmbenhal@netcom.com> 1992,1995               *
31  *     and: Eric S. Raymond <esr@snark.thyrsus.com>                         *
32  *     and: Thomas E. Dickey                        1996-on                 *
33  ****************************************************************************/
34
35 /*
36  *      captoinfo.c --- conversion between termcap and terminfo formats
37  *
38  *      The captoinfo() code was swiped from Ross Ridge's mytinfo package,
39  *      adapted to fit ncurses by Eric S. Raymond <esr@snark.thyrsus.com>.
40  *
41  *      There is just one entry point:
42  *
43  *      char *_nc_captoinfo(n, s, parameterized)
44  *
45  *      Convert value s for termcap string capability named n into terminfo
46  *      format.
47  *
48  *      This code recognizes all the standard 4.4BSD %-escapes:
49  *
50  *      %%       output `%'
51  *      %d       output value as in printf %d
52  *      %2       output value as in printf %2d
53  *      %3       output value as in printf %3d
54  *      %.       output value as in printf %c
55  *      %+x      add x to value, then do %.
56  *      %>xy     if value > x then add y, no output
57  *      %r       reverse order of two parameters, no output
58  *      %i       increment by one, no output
59  *      %n       exclusive-or all parameters with 0140 (Datamedia 2500)
60  *      %B       BCD (16*(value/10)) + (value%10), no output
61  *      %D       Reverse coding (value - 2*(value%16)), no output (Delta Data).
62  *
63  *      Also, %02 and %03 are accepted as synonyms for %2 and %3.
64  *
65  *      Besides all the standard termcap escapes, this translator understands
66  *      the following extended escapes:
67  *
68  *      used by GNU Emacs termcap libraries
69  *              %a[+*-/=][cp]x  GNU arithmetic.
70  *              %m              xor the first two parameters by 0177
71  *              %b              backup to previous parameter
72  *              %f              skip this parameter
73  *
74  *      used by the University of Waterloo (MFCF) termcap libraries
75  *              %-x      subtract parameter FROM char x and output it as a char
76  *              %ax      add the character x to parameter
77  *
78  *      If #define WATERLOO is on, also enable these translations:
79  *
80  *              %sx      subtract parameter FROM the character x
81  *
82  *      By default, this Waterloo translations are not compiled in, because
83  *      the Waterloo %s conflicts with the way terminfo uses %s in strings for
84  *      function programming.
85  *
86  *      Note the two definitions of %a: the GNU definition is translated if the
87  *      characters after the 'a' are valid for it, otherwise the UW definition
88  *      is translated.
89  */
90
91 #include <curses.priv.h>
92
93 #include <ctype.h>
94 #include <tic.h>
95
96 MODULE_ID("$Id: captoinfo.c,v 1.64 2011/07/23 20:36:28 tom Exp $")
97
98 #define MAX_PUSHED      16      /* max # args we can push onto the stack */
99
100 static int stack[MAX_PUSHED];   /* the stack */
101 static int stackptr;            /* the next empty place on the stack */
102 static int onstack;             /* the top of stack */
103 static int seenm;               /* seen a %m */
104 static int seenn;               /* seen a %n */
105 static int seenr;               /* seen a %r */
106 static int param;               /* current parameter */
107 static char *dp;                /* pointer to end of the converted string */
108
109 static char *my_string;
110 static size_t my_length;
111
112 static char *
113 init_string(void)
114 /* initialize 'my_string', 'my_length' */
115 {
116     if (my_string == 0)
117         my_string = typeMalloc(char, my_length = 256);
118     if (my_string == 0)
119         _nc_err_abort(MSG_NO_MEMORY);
120
121     *my_string = '\0';
122     return my_string;
123 }
124
125 static char *
126 save_string(char *d, const char *const s)
127 {
128     size_t have = (size_t) (d - my_string);
129     size_t need = have + strlen(s) + 2;
130     if (need > my_length) {
131         my_string = (char *) _nc_doalloc(my_string, my_length = (need + need));
132         if (my_string == 0)
133             _nc_err_abort(MSG_NO_MEMORY);
134         d = my_string + have;
135     }
136     (void) strcpy(d, s);
137     return d + strlen(d);
138 }
139
140 static NCURSES_INLINE char *
141 save_char(char *s, int c)
142 {
143     static char temp[2];
144     temp[0] = (char) c;
145     return save_string(s, temp);
146 }
147
148 static void
149 push(void)
150 /* push onstack on to the stack */
151 {
152     if (stackptr >= MAX_PUSHED)
153         _nc_warning("string too complex to convert");
154     else
155         stack[stackptr++] = onstack;
156 }
157
158 static void
159 pop(void)
160 /* pop the top of the stack into onstack */
161 {
162     if (stackptr == 0) {
163         if (onstack == 0)
164             _nc_warning("I'm confused");
165         else
166             onstack = 0;
167     } else
168         onstack = stack[--stackptr];
169     param++;
170 }
171
172 static int
173 cvtchar(register const char *sp)
174 /* convert a character to a terminfo push */
175 {
176     unsigned char c = 0;
177     int len;
178
179     switch (*sp) {
180     case '\\':
181         switch (*++sp) {
182         case '\'':
183         case '$':
184         case '\\':
185         case '%':
186             c = (unsigned char) (*sp);
187             len = 2;
188             break;
189         case '\0':
190             c = '\\';
191             len = 1;
192             break;
193         case '0':
194         case '1':
195         case '2':
196         case '3':
197             len = 1;
198             while (isdigit(UChar(*sp))) {
199                 c = (unsigned char) (8 * c + (*sp++ - '0'));
200                 len++;
201             }
202             break;
203         default:
204             c = (unsigned char) (*sp);
205             len = 2;
206             break;
207         }
208         break;
209     case '^':
210         c = (unsigned char) (*++sp & 0x1f);
211         len = 2;
212         break;
213     default:
214         c = (unsigned char) (*sp);
215         len = 1;
216     }
217     if (isgraph(c) && c != ',' && c != '\'' && c != '\\' && c != ':') {
218         dp = save_string(dp, "%\'");
219         dp = save_char(dp, c);
220         dp = save_char(dp, '\'');
221     } else {
222         dp = save_string(dp, "%{");
223         if (c > 99)
224             dp = save_char(dp, c / 100 + '0');
225         if (c > 9)
226             dp = save_char(dp, ((int) (c / 10)) % 10 + '0');
227         dp = save_char(dp, c % 10 + '0');
228         dp = save_char(dp, '}');
229     }
230     return len;
231 }
232
233 static void
234 getparm(int parm, int n)
235 /* push n copies of param on the terminfo stack if not already there */
236 {
237     if (seenr) {
238         if (parm == 1)
239             parm = 2;
240         else if (parm == 2)
241             parm = 1;
242     }
243     if (onstack == parm) {
244         if (n > 1) {
245             _nc_warning("string may not be optimal");
246             dp = save_string(dp, "%Pa");
247             while (n--) {
248                 dp = save_string(dp, "%ga");
249             }
250         }
251         return;
252     }
253     if (onstack != 0)
254         push();
255
256     onstack = parm;
257
258     while (n--) {
259         dp = save_string(dp, "%p");
260         dp = save_char(dp, '0' + parm);
261     }
262
263     if (seenn && parm < 3) {
264         dp = save_string(dp, "%{96}%^");
265     }
266
267     if (seenm && parm < 3) {
268         dp = save_string(dp, "%{127}%^");
269     }
270 }
271
272 /*
273  * Convert a termcap string to terminfo format.
274  * 'cap' is the relevant terminfo capability index.
275  * 's' is the string value of the capability.
276  * 'parameterized' tells what type of translations to do:
277  *      % translations if 1
278  *      pad translations if >=0
279  */
280 NCURSES_EXPORT(char *)
281 _nc_captoinfo(const char *cap, const char *s, int const parameterized)
282 {
283     const char *capstart;
284
285     stackptr = 0;
286     onstack = 0;
287     seenm = 0;
288     seenn = 0;
289     seenr = 0;
290     param = 1;
291
292     dp = init_string();
293
294     /* skip the initial padding (if we haven't been told not to) */
295     capstart = 0;
296     if (s == 0)
297         s = "";
298     if (parameterized >= 0 && isdigit(UChar(*s)))
299         for (capstart = s;; s++)
300             if (!(isdigit(UChar(*s)) || *s == '*' || *s == '.'))
301                 break;
302
303     while (*s != '\0') {
304         switch (*s) {
305         case '%':
306             s++;
307             if (parameterized < 1) {
308                 dp = save_char(dp, '%');
309                 break;
310             }
311             switch (*s++) {
312             case '%':
313                 dp = save_char(dp, '%');
314                 break;
315             case 'r':
316                 if (seenr++ == 1) {
317                     _nc_warning("saw %%r twice in %s", cap);
318                 }
319                 break;
320             case 'm':
321                 if (seenm++ == 1) {
322                     _nc_warning("saw %%m twice in %s", cap);
323                 }
324                 break;
325             case 'n':
326                 if (seenn++ == 1) {
327                     _nc_warning("saw %%n twice in %s", cap);
328                 }
329                 break;
330             case 'i':
331                 dp = save_string(dp, "%i");
332                 break;
333             case '6':
334             case 'B':
335                 getparm(param, 1);
336                 dp = save_string(dp, "%{10}%/%{16}%*");
337                 getparm(param, 1);
338                 dp = save_string(dp, "%{10}%m%+");
339                 break;
340             case '8':
341             case 'D':
342                 getparm(param, 2);
343                 dp = save_string(dp, "%{2}%*%-");
344                 break;
345             case '>':
346                 getparm(param, 2);
347                 /* %?%{x}%>%t%{y}%+%; */
348                 dp = save_string(dp, "%?");
349                 s += cvtchar(s);
350                 dp = save_string(dp, "%>%t");
351                 s += cvtchar(s);
352                 dp = save_string(dp, "%+%;");
353                 break;
354             case 'a':
355                 if ((*s == '=' || *s == '+' || *s == '-'
356                      || *s == '*' || *s == '/')
357                     && (s[1] == 'p' || s[1] == 'c')
358                     && s[2] != '\0') {
359                     int l;
360                     l = 2;
361                     if (*s != '=')
362                         getparm(param, 1);
363                     if (s[1] == 'p') {
364                         getparm(param + s[2] - '@', 1);
365                         if (param != onstack) {
366                             pop();
367                             param--;
368                         }
369                         l++;
370                     } else
371                         l += cvtchar(s + 2);
372                     switch (*s) {
373                     case '+':
374                         dp = save_string(dp, "%+");
375                         break;
376                     case '-':
377                         dp = save_string(dp, "%-");
378                         break;
379                     case '*':
380                         dp = save_string(dp, "%*");
381                         break;
382                     case '/':
383                         dp = save_string(dp, "%/");
384                         break;
385                     case '=':
386                         if (seenr) {
387                             if (param == 1)
388                                 onstack = 2;
389                             else if (param == 2)
390                                 onstack = 1;
391                             else
392                                 onstack = param;
393                         } else
394                             onstack = param;
395                         break;
396                     }
397                     s += l;
398                     break;
399                 }
400                 getparm(param, 1);
401                 s += cvtchar(s);
402                 dp = save_string(dp, "%+");
403                 break;
404             case '+':
405                 getparm(param, 1);
406                 s += cvtchar(s);
407                 dp = save_string(dp, "%+%c");
408                 pop();
409                 break;
410             case 's':
411 #ifdef WATERLOO
412                 s += cvtchar(s);
413                 getparm(param, 1);
414                 dp = save_string(dp, "%-");
415 #else
416                 getparm(param, 1);
417                 dp = save_string(dp, "%s");
418                 pop();
419 #endif /* WATERLOO */
420                 break;
421             case '-':
422                 s += cvtchar(s);
423                 getparm(param, 1);
424                 dp = save_string(dp, "%-%c");
425                 pop();
426                 break;
427             case '.':
428                 getparm(param, 1);
429                 dp = save_string(dp, "%c");
430                 pop();
431                 break;
432             case '0':           /* not clear any of the historical termcaps did this */
433                 if (*s == '3')
434                     goto see03;
435                 else if (*s != '2')
436                     goto invalid;
437                 /* FALLTHRU */
438             case '2':
439                 getparm(param, 1);
440                 dp = save_string(dp, "%2d");
441                 pop();
442                 break;
443             case '3':
444               see03:
445                 getparm(param, 1);
446                 dp = save_string(dp, "%3d");
447                 pop();
448                 break;
449             case 'd':
450                 getparm(param, 1);
451                 dp = save_string(dp, "%d");
452                 pop();
453                 break;
454             case 'f':
455                 param++;
456                 break;
457             case 'b':
458                 param--;
459                 break;
460             case '\\':
461                 dp = save_string(dp, "%\\");
462                 break;
463             default:
464               invalid:
465                 dp = save_char(dp, '%');
466                 s--;
467                 _nc_warning("unknown %% code %s (%#x) in %s",
468                             unctrl((chtype) *s), UChar(*s), cap);
469                 break;
470             }
471             break;
472         default:
473             dp = save_char(dp, *s++);
474             break;
475         }
476     }
477
478     /*
479      * Now, if we stripped off some leading padding, add it at the end
480      * of the string as mandatory padding.
481      */
482     if (capstart) {
483         dp = save_string(dp, "$<");
484         for (s = capstart;; s++)
485             if (isdigit(UChar(*s)) || *s == '*' || *s == '.')
486                 dp = save_char(dp, *s);
487             else
488                 break;
489         dp = save_string(dp, "/>");
490     }
491
492     (void) save_char(dp, '\0');
493     return (my_string);
494 }
495
496 /*
497  * Check for an expression that corresponds to "%B" (BCD):
498  *      (parameter / 10) * 16 + (parameter % 10)
499  */
500 static int
501 bcd_expression(const char *str)
502 {
503     /* leave this non-const for HPUX */
504     static char fmt[] = "%%p%c%%{10}%%/%%{16}%%*%%p%c%%{10}%%m%%+";
505     int len = 0;
506     char ch1, ch2;
507
508     if (sscanf(str, fmt, &ch1, &ch2) == 2
509         && isdigit(UChar(ch1))
510         && isdigit(UChar(ch2))
511         && (ch1 == ch2)) {
512         len = 28;
513 #ifndef NDEBUG
514         {
515             char buffer[80];
516             int tst;
517             sprintf(buffer, fmt, ch1, ch2);
518             tst = strlen(buffer) - 1;
519             assert(len == tst);
520         }
521 #endif
522     }
523     return len;
524 }
525
526 static char *
527 save_tc_char(char *bufptr, int c1)
528 {
529     char temp[80];
530
531     if (is7bits(c1) && isprint(c1)) {
532         if (c1 == ':' || c1 == '\\')
533             bufptr = save_char(bufptr, '\\');
534         bufptr = save_char(bufptr, c1);
535     } else {
536         if (c1 == (c1 & 0x1f))  /* iscntrl() returns T on 255 */
537             (void) strcpy(temp, unctrl((chtype) c1));
538         else
539             (void) sprintf(temp, "\\%03o", c1);
540         bufptr = save_string(bufptr, temp);
541     }
542     return bufptr;
543 }
544
545 static char *
546 save_tc_inequality(char *bufptr, int c1, int c2)
547 {
548     bufptr = save_string(bufptr, "%>");
549     bufptr = save_tc_char(bufptr, c1);
550     bufptr = save_tc_char(bufptr, c2);
551     return bufptr;
552 }
553
554 /*
555  * Here are the capabilities infotocap assumes it can translate to:
556  *
557  *     %%       output `%'
558  *     %d       output value as in printf %d
559  *     %2       output value as in printf %2d
560  *     %3       output value as in printf %3d
561  *     %.       output value as in printf %c
562  *     %+c      add character c to value, then do %.
563  *     %>xy     if value > x then add y, no output
564  *     %r       reverse order of two parameters, no output
565  *     %i       increment by one, no output
566  *     %n       exclusive-or all parameters with 0140 (Datamedia 2500)
567  *     %B       BCD (16*(value/10)) + (value%10), no output
568  *     %D       Reverse coding (value - 2*(value%16)), no output (Delta Data).
569  *     %m       exclusive-or all parameters with 0177 (not in 4.4BSD)
570  */
571
572 /*
573  * Convert a terminfo string to termcap format.  Parameters are as in
574  * _nc_captoinfo().
575  */
576 NCURSES_EXPORT(char *)
577 _nc_infotocap(const char *cap GCC_UNUSED, const char *str, int const parameterized)
578 {
579     int strict_bsd = 1;         /* FIXME - consider making this an option */
580     int seenone = 0, seentwo = 0, saw_m = 0, saw_n = 0;
581     const char *padding;
582     const char *trimmed = 0;
583     int in0, in1, in2;
584     char ch1 = 0, ch2 = 0;
585     char *bufptr = init_string();
586     char octal[4];
587     int len;
588     bool syntax_error = FALSE;
589
590     /* we may have to move some trailing mandatory padding up front */
591     padding = str + strlen(str) - 1;
592     if (padding > str && *padding == '>' && *--padding == '/') {
593         --padding;
594         while (isdigit(UChar(*padding)) || *padding == '.' || *padding == '*')
595             padding--;
596         if (padding > str && *padding == '<' && *--padding == '$')
597             trimmed = padding;
598         padding += 2;
599
600         while (isdigit(UChar(*padding)) || *padding == '.' || *padding == '*')
601             bufptr = save_char(bufptr, *padding++);
602     }
603
604     for (; *str && str != trimmed; str++) {
605         int c1, c2;
606         char *cp = 0;
607
608         if (str[0] == '^') {
609             if (str[1] == '\0' || (str + 1) == trimmed) {
610                 bufptr = save_string(bufptr, "\\136");
611                 ++str;
612             } else {
613                 bufptr = save_char(bufptr, *str++);
614                 bufptr = save_char(bufptr, *str);
615             }
616         } else if (str[0] == '\\') {
617             if (str[1] == '\0' || (str + 1) == trimmed) {
618                 bufptr = save_string(bufptr, "\\134");
619                 ++str;
620             } else if (str[1] == '^') {
621                 bufptr = save_string(bufptr, "\\136");
622                 ++str;
623             } else if (str[1] == ',') {
624                 bufptr = save_char(bufptr, *++str);
625             } else {
626                 int xx1, xx2;
627
628                 bufptr = save_char(bufptr, *str++);
629                 xx1 = *str;
630                 if (strict_bsd) {
631                     if (isdigit(UChar(xx1))) {
632                         int pad = 0;
633
634                         if (!isdigit(UChar(str[1])))
635                             pad = 2;
636                         else if (str[1] && !isdigit(UChar(str[2])))
637                             pad = 1;
638
639                         /*
640                          * Test for "\0", "\00" or "\000" and transform those
641                          * into "\200".
642                          */
643                         if (xx1 == '0'
644                             && ((pad == 2) || (str[1] == '0'))
645                             && ((pad >= 1) || (str[2] == '0'))) {
646                             xx2 = '2';
647                         } else {
648                             xx2 = '0';
649                             pad = 0;    /* FIXME - optionally pad to 3 digits */
650                         }
651                         while (pad-- > 0) {
652                             bufptr = save_char(bufptr, xx2);
653                             xx2 = '0';
654                         }
655                     } else if (strchr("E\\:nrtbf", xx1) == 0) {
656                         /*
657                          * Note: termcap documentation claims that ":" must be
658                          * escaped as "\072", however the documentation is
659                          * incorrect - read the code.
660                          */
661                         switch (xx1) {
662                         case 'l':
663                             xx1 = 'n';
664                             break;
665                         case 's':
666                             bufptr = save_char(bufptr, '0');
667                             bufptr = save_char(bufptr, '4');
668                             xx1 = '0';
669                             break;
670                         default:
671                             /* should not happen, but handle this anyway */
672                             sprintf(octal, "%03o", UChar(xx1));
673                             bufptr = save_char(bufptr, octal[0]);
674                             bufptr = save_char(bufptr, octal[1]);
675                             xx1 = octal[2];
676                             continue;
677                         }
678                     }
679                 }
680                 bufptr = save_char(bufptr, xx1);
681             }
682         } else if (str[0] == '$' && str[1] == '<') {    /* discard padding */
683             str += 2;
684             while (isdigit(UChar(*str))
685                    || *str == '.'
686                    || *str == '*'
687                    || *str == '/'
688                    || *str == '>')
689                 str++;
690             --str;
691         } else if (sscanf(str,
692                           "[%%?%%p1%%{8}%%<%%t%d%%p1%%d%%e%%p1%%{16}%%<%%t%d%%p1%%{8}%%-%%d%%e%d;5;%%p1%%d%%;m",
693                           &in0, &in1, &in2) == 3
694                    && ((in0 == 4 && in1 == 10 && in2 == 48)
695                        || (in0 == 3 && in1 == 9 && in2 == 38))) {
696             /* dumb-down an optimized case from xterm-256color for termcap */
697             str = strstr(str, ";m");
698             ++str;
699             if (in2 == 48) {
700                 bufptr = save_string(bufptr, "[48;5;%dm");
701             } else {
702                 bufptr = save_string(bufptr, "[38;5;%dm");
703             }
704         } else if (str[0] == '%' && str[1] == '%') {    /* escaped '%' */
705             bufptr = save_string(bufptr, "%%");
706             ++str;
707         } else if (*str != '%' || (parameterized < 1)) {
708             bufptr = save_char(bufptr, *str);
709         } else if (sscanf(str, "%%?%%{%d}%%>%%t%%{%d}%%+%%;", &c1, &c2) == 2) {
710             str = strchr(str, ';');
711             bufptr = save_tc_inequality(bufptr, c1, c2);
712         } else if (sscanf(str, "%%?%%{%d}%%>%%t%%'%c'%%+%%;", &c1, &ch2) == 2) {
713             str = strchr(str, ';');
714             bufptr = save_tc_inequality(bufptr, c1, c2);
715         } else if (sscanf(str, "%%?%%'%c'%%>%%t%%{%d}%%+%%;", &ch1, &c2) == 2) {
716             str = strchr(str, ';');
717             bufptr = save_tc_inequality(bufptr, c1, c2);
718         } else if (sscanf(str, "%%?%%'%c'%%>%%t%%'%c'%%+%%;", &ch1, &ch2) == 2) {
719             str = strchr(str, ';');
720             bufptr = save_tc_inequality(bufptr, c1, c2);
721         } else if ((len = bcd_expression(str)) != 0) {
722             str += len;
723             bufptr = save_string(bufptr, "%B");
724         } else if ((sscanf(str, "%%{%d}%%+%%c", &c1) == 1
725                     || sscanf(str, "%%'%c'%%+%%c", &ch1) == 1)
726                    && (cp = strchr(str, '+'))) {
727             str = cp + 2;
728             bufptr = save_string(bufptr, "%+");
729
730             if (ch1)
731                 c1 = ch1;
732             bufptr = save_tc_char(bufptr, c1);
733         }
734         /* FIXME: this "works" for 'delta' */
735         else if (strncmp(str, "%{2}%*%-", 8) == 0) {
736             str += 7;
737             bufptr = save_string(bufptr, "%D");
738         } else if (strncmp(str, "%{96}%^", 7) == 0) {
739             str += 6;
740             if (saw_m++ == 0) {
741                 bufptr = save_string(bufptr, "%n");
742             }
743         } else if (strncmp(str, "%{127}%^", 8) == 0) {
744             str += 7;
745             if (saw_n++ == 0) {
746                 bufptr = save_string(bufptr, "%m");
747             }
748         } else {                /* cm-style format element */
749             str++;
750             switch (*str) {
751             case '%':
752                 bufptr = save_char(bufptr, '%');
753                 break;
754
755             case '0':
756             case '1':
757             case '2':
758             case '3':
759             case '4':
760             case '5':
761             case '6':
762             case '7':
763             case '8':
764             case '9':
765                 bufptr = save_char(bufptr, '%');
766                 ch1 = 0;
767                 ch2 = 0;
768                 while (isdigit(UChar(*str))) {
769                     ch2 = ch1;
770                     ch1 = *str++;
771                     if (strict_bsd) {
772                         if (ch1 > '3')
773                             return 0;
774                     } else {
775                         bufptr = save_char(bufptr, ch1);
776                     }
777                 }
778                 if (strict_bsd) {
779                     if (ch2 != 0 && ch2 != '0')
780                         return 0;
781                     if (ch1 < '2')
782                         ch1 = 'd';
783                     bufptr = save_char(bufptr, ch1);
784                 }
785                 if (strchr("doxX.", *str)) {
786                     if (*str != 'd')    /* termcap doesn't have octal, hex */
787                         return 0;
788                 }
789                 break;
790
791             case 'd':
792                 bufptr = save_string(bufptr, "%d");
793                 break;
794
795             case 'c':
796                 bufptr = save_string(bufptr, "%.");
797                 break;
798
799                 /*
800                  * %s isn't in termcap, but it's convenient to pass it through
801                  * so we can represent things like terminfo pfkey strings in
802                  * termcap notation.
803                  */
804             case 's':
805                 if (strict_bsd)
806                     return 0;
807                 bufptr = save_string(bufptr, "%s");
808                 break;
809
810             case 'p':
811                 str++;
812                 if (*str == '1')
813                     seenone = 1;
814                 else if (*str == '2') {
815                     if (!seenone && !seentwo) {
816                         bufptr = save_string(bufptr, "%r");
817                         seentwo++;
818                     }
819                 } else if (*str >= '3')
820                     return (0);
821                 break;
822
823             case 'i':
824                 bufptr = save_string(bufptr, "%i");
825                 break;
826
827             default:
828                 bufptr = save_char(bufptr, *str);
829                 syntax_error = TRUE;
830                 break;
831             }                   /* endswitch (*str) */
832         }                       /* endelse (*str == '%') */
833
834         /*
835          * 'str' always points to the end of what was scanned in this step,
836          * but that may not be the end of the string.
837          */
838         assert(str != 0);
839         if (*str == '\0')
840             break;
841
842     }                           /* endwhile (*str) */
843
844     return (syntax_error ? NULL : my_string);
845 }
846
847 #ifdef MAIN
848
849 int curr_line;
850
851 int
852 main(int argc, char *argv[])
853 {
854     int c, tc = FALSE;
855
856     while ((c = getopt(argc, argv, "c")) != EOF)
857         switch (c) {
858         case 'c':
859             tc = TRUE;
860             break;
861         }
862
863     curr_line = 0;
864     for (;;) {
865         char buf[BUFSIZ];
866
867         ++curr_line;
868         if (fgets(buf, sizeof(buf), stdin) == 0)
869             break;
870         buf[strlen(buf) - 1] = '\0';
871         _nc_set_source(buf);
872
873         if (tc) {
874             char *cp = _nc_infotocap("to termcap", buf, 1);
875
876             if (cp)
877                 (void) fputs(cp, stdout);
878         } else
879             (void) fputs(_nc_captoinfo("to terminfo", buf, 1), stdout);
880         (void) putchar('\n');
881     }
882     return (0);
883 }
884 #endif /* MAIN */
885
886 #if NO_LEAKS
887 NCURSES_EXPORT(void)
888 _nc_captoinfo_leaks(void)
889 {
890     if (my_string != 0) {
891         FreeAndNull(my_string);
892     }
893     my_length = 0;
894 }
895 #endif