]> ncurses.scripts.mit.edu Git - ncurses.git/blob - ncurses/tinfo/parse_entry.c
ncurses 5.6 - patch 20080531
[ncurses.git] / ncurses / tinfo / parse_entry.c
1 /****************************************************************************
2  * Copyright (c) 1998-2006,2007 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  *      parse_entry.c -- compile one terminfo or termcap entry
37  *
38  *      Get an exact in-core representation of an entry.  Don't
39  *      try to resolve use or tc capabilities, that is someone
40  *      else's job.  Depends on the lexical analyzer to get tokens
41  *      from the input stream.
42  */
43
44 #define __INTERNAL_CAPS_VISIBLE
45 #include <curses.priv.h>
46
47 #include <ctype.h>
48 #include <tic.h>
49 #include <term_entry.h>
50
51 MODULE_ID("$Id: parse_entry.c,v 1.65 2007/08/11 16:19:02 tom Exp $")
52
53 #ifdef LINT
54 static short const parametrized[] =
55 {0};
56 #else
57 #include <parametrized.h>
58 #endif
59
60 static void postprocess_termcap(TERMTYPE *, bool);
61 static void postprocess_terminfo(TERMTYPE *);
62 static struct name_table_entry const *lookup_fullname(const char *name);
63
64 #if NCURSES_XNAMES
65
66 static struct name_table_entry const *
67 _nc_extend_names(ENTRY * entryp, char *name, int token_type)
68 {
69     static struct name_table_entry temp;
70     TERMTYPE *tp = &(entryp->tterm);
71     unsigned offset = 0;
72     unsigned actual;
73     unsigned tindex;
74     unsigned first, last, n;
75     bool found;
76
77     switch (token_type) {
78     case BOOLEAN:
79         first = 0;
80         last = tp->ext_Booleans;
81         offset = tp->ext_Booleans;
82         tindex = tp->num_Booleans;
83         break;
84     case NUMBER:
85         first = tp->ext_Booleans;
86         last = tp->ext_Numbers + first;
87         offset = tp->ext_Booleans + tp->ext_Numbers;
88         tindex = tp->num_Numbers;
89         break;
90     case STRING:
91         first = tp->ext_Booleans + tp->ext_Numbers;
92         last = tp->ext_Strings + first;
93         offset = tp->ext_Booleans + tp->ext_Numbers + tp->ext_Strings;
94         tindex = tp->num_Strings;
95         break;
96     case CANCEL:
97         actual = NUM_EXT_NAMES(tp);
98         for (n = 0; n < actual; n++) {
99             if (!strcmp(name, tp->ext_Names[n])) {
100                 if (n > (unsigned) (tp->ext_Booleans + tp->ext_Numbers)) {
101                     token_type = STRING;
102                 } else if (n > tp->ext_Booleans) {
103                     token_type = NUMBER;
104                 } else {
105                     token_type = BOOLEAN;
106                 }
107                 return _nc_extend_names(entryp, name, token_type);
108             }
109         }
110         /* Well, we are given a cancel for a name that we don't recognize */
111         return _nc_extend_names(entryp, name, STRING);
112     default:
113         return 0;
114     }
115
116     /* Adjust the 'offset' (insertion-point) to keep the lists of extended
117      * names sorted.
118      */
119     for (n = first, found = FALSE; n < last; n++) {
120         int cmp = strcmp(tp->ext_Names[n], name);
121         if (cmp == 0)
122             found = TRUE;
123         if (cmp >= 0) {
124             offset = n;
125             tindex = n - first;
126             switch (token_type) {
127             case BOOLEAN:
128                 tindex += BOOLCOUNT;
129                 break;
130             case NUMBER:
131                 tindex += NUMCOUNT;
132                 break;
133             case STRING:
134                 tindex += STRCOUNT;
135                 break;
136             }
137             break;
138         }
139     }
140     if (!found) {
141         switch (token_type) {
142         case BOOLEAN:
143             tp->ext_Booleans += 1;
144             tp->num_Booleans += 1;
145             tp->Booleans = typeRealloc(NCURSES_SBOOL, tp->num_Booleans, tp->Booleans);
146             for (last = tp->num_Booleans - 1; last > tindex; last--)
147                 tp->Booleans[last] = tp->Booleans[last - 1];
148             break;
149         case NUMBER:
150             tp->ext_Numbers += 1;
151             tp->num_Numbers += 1;
152             tp->Numbers = typeRealloc(short, tp->num_Numbers, tp->Numbers);
153             for (last = tp->num_Numbers - 1; last > tindex; last--)
154                 tp->Numbers[last] = tp->Numbers[last - 1];
155             break;
156         case STRING:
157             tp->ext_Strings += 1;
158             tp->num_Strings += 1;
159             tp->Strings = typeRealloc(char *, tp->num_Strings, tp->Strings);
160             for (last = tp->num_Strings - 1; last > tindex; last--)
161                 tp->Strings[last] = tp->Strings[last - 1];
162             break;
163         }
164         actual = NUM_EXT_NAMES(tp);
165         tp->ext_Names = typeRealloc(char *, actual, tp->ext_Names);
166         while (--actual > offset)
167             tp->ext_Names[actual] = tp->ext_Names[actual - 1];
168         tp->ext_Names[offset] = _nc_save_str(name);
169     }
170
171     temp.nte_name = tp->ext_Names[offset];
172     temp.nte_type = token_type;
173     temp.nte_index = tindex;
174     temp.nte_link = -1;
175
176     return &temp;
177 }
178 #endif /* NCURSES_XNAMES */
179
180 /*
181  *      int
182  *      _nc_parse_entry(entry, literal, silent)
183  *
184  *      Compile one entry.  Doesn't try to resolve use or tc capabilities.
185  *
186  *      found-forward-use = FALSE
187  *      re-initialise internal arrays
188  *      get_token();
189  *      if the token was not a name in column 1, complain and die
190  *      save names in entry's string table
191  *      while (get_token() is not EOF and not NAMES)
192  *              check for existence and type-correctness
193  *              enter cap into structure
194  *              if STRING
195  *                  save string in entry's string table
196  *      push back token
197  */
198
199 #define BAD_TC_USAGE if (!bad_tc_usage) \
200         { bad_tc_usage = TRUE; \
201          _nc_warning("Legacy termcap allows only a trailing tc= clause"); }
202
203 NCURSES_EXPORT(int)
204 _nc_parse_entry(struct entry *entryp, int literal, bool silent)
205 {
206     int token_type;
207     struct name_table_entry const *entry_ptr;
208     char *ptr, *base;
209     bool bad_tc_usage = FALSE;
210
211     token_type = _nc_get_token(silent);
212
213     if (token_type == EOF)
214         return (EOF);
215     if (token_type != NAMES)
216         _nc_err_abort("Entry does not start with terminal names in column one");
217
218     _nc_init_entry(&entryp->tterm);
219
220     entryp->cstart = _nc_comment_start;
221     entryp->cend = _nc_comment_end;
222     entryp->startline = _nc_start_line;
223     DEBUG(2, ("Comment range is %ld to %ld", entryp->cstart, entryp->cend));
224
225     /*
226      * Strip off the 2-character termcap name, if present.  Originally termcap
227      * used that as an indexing aid.  We can retain 2-character terminfo names,
228      * but note that they would be lost if we translate to/from termcap.  This
229      * feature is supposedly obsolete since "newer" BSD implementations do not
230      * use it; however our reference for this feature is SunOS 4.x, which
231      * implemented it.  Note that the resulting terminal type was never the
232      * 2-character name, but was instead the first alias after that.
233      */
234     ptr = _nc_curr_token.tk_name;
235     if (_nc_syntax == SYN_TERMCAP
236 #if NCURSES_XNAMES
237         && !_nc_user_definable
238 #endif
239         ) {
240         if (ptr[2] == '|') {
241             ptr += 3;
242             _nc_curr_token.tk_name[2] = '\0';
243         }
244     }
245
246     entryp->tterm.str_table = entryp->tterm.term_names = _nc_save_str(ptr);
247
248     DEBUG(1, ("Starting '%s'", ptr));
249
250     /*
251      * We do this because the one-token lookahead in the parse loop
252      * results in the terminal type getting prematurely set to correspond
253      * to that of the next entry.
254      */
255     _nc_set_type(_nc_first_name(entryp->tterm.term_names));
256
257     /* check for overly-long names and aliases */
258     for (base = entryp->tterm.term_names; (ptr = strchr(base, '|')) != 0;
259          base = ptr + 1) {
260         if (ptr - base > MAX_ALIAS) {
261             _nc_warning("%s `%.*s' may be too long",
262                         (base == entryp->tterm.term_names)
263                         ? "primary name"
264                         : "alias",
265                         (int) (ptr - base), base);
266         }
267     }
268
269     entryp->nuses = 0;
270
271     for (token_type = _nc_get_token(silent);
272          token_type != EOF && token_type != NAMES;
273          token_type = _nc_get_token(silent)) {
274         bool is_use = (strcmp(_nc_curr_token.tk_name, "use") == 0);
275         bool is_tc = !is_use && (strcmp(_nc_curr_token.tk_name, "tc") == 0);
276         if (is_use || is_tc) {
277             entryp->uses[entryp->nuses].name = _nc_save_str(_nc_curr_token.tk_valstring);
278             entryp->uses[entryp->nuses].line = _nc_curr_line;
279             entryp->nuses++;
280             if (entryp->nuses > 1 && is_tc) {
281                 BAD_TC_USAGE
282             }
283         } else {
284             /* normal token lookup */
285             entry_ptr = _nc_find_entry(_nc_curr_token.tk_name,
286                                        _nc_get_hash_table(_nc_syntax));
287
288             /*
289              * Our kluge to handle aliasing.  The reason it's done
290              * this ugly way, with a linear search, is so the hashing
291              * machinery doesn't have to be made really complicated
292              * (also we get better warnings this way).  No point in
293              * making this case fast, aliased caps aren't common now
294              * and will get rarer.
295              */
296             if (entry_ptr == NOTFOUND) {
297                 const struct alias *ap;
298
299                 if (_nc_syntax == SYN_TERMCAP) {
300                     if (entryp->nuses != 0) {
301                         BAD_TC_USAGE
302                     }
303                     for (ap = _nc_get_alias_table(TRUE); ap->from; ap++)
304                         if (strcmp(ap->from, _nc_curr_token.tk_name) == 0) {
305                             if (ap->to == (char *) 0) {
306                                 _nc_warning("%s (%s termcap extension) ignored",
307                                             ap->from, ap->source);
308                                 goto nexttok;
309                             }
310
311                             entry_ptr = _nc_find_entry(ap->to,
312                                                        _nc_get_hash_table(TRUE));
313                             if (entry_ptr && !silent)
314                                 _nc_warning("%s (%s termcap extension) aliased to %s",
315                                             ap->from, ap->source, ap->to);
316                             break;
317                         }
318                 } else {        /* if (_nc_syntax == SYN_TERMINFO) */
319                     for (ap = _nc_get_alias_table(FALSE); ap->from; ap++)
320                         if (strcmp(ap->from, _nc_curr_token.tk_name) == 0) {
321                             if (ap->to == (char *) 0) {
322                                 _nc_warning("%s (%s terminfo extension) ignored",
323                                             ap->from, ap->source);
324                                 goto nexttok;
325                             }
326
327                             entry_ptr = _nc_find_entry(ap->to,
328                                                        _nc_get_hash_table(FALSE));
329                             if (entry_ptr && !silent)
330                                 _nc_warning("%s (%s terminfo extension) aliased to %s",
331                                             ap->from, ap->source, ap->to);
332                             break;
333                         }
334
335                     if (entry_ptr == NOTFOUND) {
336                         entry_ptr = lookup_fullname(_nc_curr_token.tk_name);
337                     }
338                 }
339             }
340 #if NCURSES_XNAMES
341             /*
342              * If we have extended-names active, we will automatically
343              * define a name based on its context.
344              */
345             if (entry_ptr == NOTFOUND
346                 && _nc_user_definable
347                 && (entry_ptr = _nc_extend_names(entryp,
348                                                  _nc_curr_token.tk_name,
349                                                  token_type)) != 0) {
350                 if (_nc_tracing >= DEBUG_LEVEL(1))
351                     _nc_warning("extended capability '%s'", _nc_curr_token.tk_name);
352             }
353 #endif /* NCURSES_XNAMES */
354
355             /* can't find this cap name, not even as an alias */
356             if (entry_ptr == NOTFOUND) {
357                 if (!silent)
358                     _nc_warning("unknown capability '%s'",
359                                 _nc_curr_token.tk_name);
360                 continue;
361             }
362
363             /* deal with bad type/value combinations. */
364             if (token_type != CANCEL && entry_ptr->nte_type != token_type) {
365                 /*
366                  * Nasty special cases here handle situations in which type
367                  * information can resolve name clashes.  Normal lookup
368                  * finds the last instance in the capability table of a
369                  * given name, regardless of type.  find_type_entry looks
370                  * for a first matching instance with given type.  So as
371                  * long as all ambiguous names occur in pairs of distinct
372                  * type, this will do the job.
373                  */
374
375                 /* tell max_attributes from arrow_key_map */
376                 if (token_type == NUMBER
377                     && !strcmp("ma", _nc_curr_token.tk_name)) {
378                     entry_ptr = _nc_find_type_entry("ma", NUMBER,
379                                                     _nc_get_table(_nc_syntax
380                                                                   != 0));
381
382                     /* map terminfo's string MT to MT */
383                 } else if (token_type == STRING
384                            && !strcmp("MT", _nc_curr_token.tk_name)) {
385                     entry_ptr = _nc_find_type_entry("MT", STRING,
386                                                     _nc_get_table(_nc_syntax
387                                                                   != 0));
388
389                     /* treat strings without following "=" as empty strings */
390                 } else if (token_type == BOOLEAN
391                            && entry_ptr->nte_type == STRING) {
392                     token_type = STRING;
393                     /* we couldn't recover; skip this token */
394                 } else {
395                     if (!silent) {
396                         const char *type_name;
397                         switch (entry_ptr->nte_type) {
398                         case BOOLEAN:
399                             type_name = "boolean";
400                             break;
401                         case STRING:
402                             type_name = "string";
403                             break;
404                         case NUMBER:
405                             type_name = "numeric";
406                             break;
407                         default:
408                             type_name = "unknown";
409                             break;
410                         }
411                         _nc_warning("wrong type used for %s capability '%s'",
412                                     type_name, _nc_curr_token.tk_name);
413                     }
414                     continue;
415                 }
416             }
417
418             /* now we know that the type/value combination is OK */
419             switch (token_type) {
420             case CANCEL:
421                 switch (entry_ptr->nte_type) {
422                 case BOOLEAN:
423                     entryp->tterm.Booleans[entry_ptr->nte_index] = CANCELLED_BOOLEAN;
424                     break;
425
426                 case NUMBER:
427                     entryp->tterm.Numbers[entry_ptr->nte_index] = CANCELLED_NUMERIC;
428                     break;
429
430                 case STRING:
431                     entryp->tterm.Strings[entry_ptr->nte_index] = CANCELLED_STRING;
432                     break;
433                 }
434                 break;
435
436             case BOOLEAN:
437                 entryp->tterm.Booleans[entry_ptr->nte_index] = TRUE;
438                 break;
439
440             case NUMBER:
441                 entryp->tterm.Numbers[entry_ptr->nte_index] =
442                     _nc_curr_token.tk_valnumber;
443                 break;
444
445             case STRING:
446                 ptr = _nc_curr_token.tk_valstring;
447                 if (_nc_syntax == SYN_TERMCAP)
448                     ptr = _nc_captoinfo(_nc_curr_token.tk_name,
449                                         ptr,
450                                         parametrized[entry_ptr->nte_index]);
451                 entryp->tterm.Strings[entry_ptr->nte_index] = _nc_save_str(ptr);
452                 break;
453
454             default:
455                 if (!silent)
456                     _nc_warning("unknown token type");
457                 _nc_panic_mode((_nc_syntax == SYN_TERMCAP) ? ':' : ',');
458                 continue;
459             }
460         }                       /* end else cur_token.name != "use" */
461       nexttok:
462         continue;               /* cannot have a label w/o statement */
463     }                           /* endwhile (not EOF and not NAMES) */
464
465     _nc_push_token(token_type);
466     _nc_set_type(_nc_first_name(entryp->tterm.term_names));
467
468     /*
469      * Try to deduce as much as possible from extension capabilities
470      * (this includes obsolete BSD capabilities).  Sigh...it would be more
471      * space-efficient to call this after use resolution, but it has
472      * to be done before entry allocation is wrapped up.
473      */
474     if (!literal) {
475         if (_nc_syntax == SYN_TERMCAP) {
476             bool has_base_entry = FALSE;
477             int i;
478
479             /*
480              * Don't insert defaults if this is a `+' entry meant only
481              * for inclusion in other entries (not sure termcap ever
482              * had these, actually).
483              */
484             if (strchr(entryp->tterm.term_names, '+'))
485                 has_base_entry = TRUE;
486             else
487                 /*
488                  * Otherwise, look for a base entry that will already
489                  * have picked up defaults via translation.
490                  */
491                 for (i = 0; i < entryp->nuses; i++)
492                     if (!strchr((char *) entryp->uses[i].name, '+'))
493                         has_base_entry = TRUE;
494
495             postprocess_termcap(&entryp->tterm, has_base_entry);
496         } else
497             postprocess_terminfo(&entryp->tterm);
498     }
499     _nc_wrap_entry(entryp, FALSE);
500
501     return (OK);
502 }
503
504 NCURSES_EXPORT(int)
505 _nc_capcmp(const char *s, const char *t)
506 /* compare two string capabilities, stripping out padding */
507 {
508     if (!s && !t)
509         return (0);
510     else if (!s || !t)
511         return (1);
512
513     for (;;) {
514         if (s[0] == '$' && s[1] == '<') {
515             for (s += 2;; s++)
516                 if (!(isdigit(UChar(*s))
517                       || *s == '.'
518                       || *s == '*'
519                       || *s == '/'
520                       || *s == '>'))
521                     break;
522         }
523
524         if (t[0] == '$' && t[1] == '<') {
525             for (t += 2;; t++)
526                 if (!(isdigit(UChar(*t))
527                       || *t == '.'
528                       || *t == '*'
529                       || *t == '/'
530                       || *t == '>'))
531                     break;
532         }
533
534         /* we've now pushed s and t past any padding they were pointing at */
535
536         if (*s == '\0' && *t == '\0')
537             return (0);
538
539         if (*s != *t)
540             return (*t - *s);
541
542         /* else *s == *t but one is not NUL, so continue */
543         s++, t++;
544     }
545 }
546
547 static void
548 append_acs0(string_desc * dst, int code, int src)
549 {
550     if (src != 0) {
551         char temp[3];
552         temp[0] = code;
553         temp[1] = src;
554         temp[2] = 0;
555         _nc_safe_strcat(dst, temp);
556     }
557 }
558
559 static void
560 append_acs(string_desc * dst, int code, char *src)
561 {
562     if (src != 0 && strlen(src) == 1) {
563         append_acs0(dst, code, *src);
564     }
565 }
566
567 /*
568  * The ko capability, if present, consists of a comma-separated capability
569  * list.  For each capability, we may assume there is a keycap that sends the
570  * string which is the value of that capability.
571  */
572 typedef struct {
573     const char *from;
574     const char *to;
575 } assoc;
576 static assoc const ko_xlate[] =
577 {
578     {"al", "kil1"},             /* insert line key  -> KEY_IL    */
579     {"bt", "kcbt"},             /* back tab         -> KEY_BTAB  */
580     {"cd", "ked"},              /* clear-to-eos key -> KEY_EOL   */
581     {"ce", "kel"},              /* clear-to-eol key -> KEY_EOS   */
582     {"cl", "kclr"},             /* clear key        -> KEY_CLEAR */
583     {"ct", "tbc"},              /* clear all tabs   -> KEY_CATAB */
584     {"dc", "kdch1"},            /* delete char      -> KEY_DC    */
585     {"dl", "kdl1"},             /* delete line      -> KEY_DL    */
586     {"do", "kcud1"},            /* down key         -> KEY_DOWN  */
587     {"ei", "krmir"},            /* exit insert key  -> KEY_EIC   */
588     {"ho", "khome"},            /* home key         -> KEY_HOME  */
589     {"ic", "kich1"},            /* insert char key  -> KEY_IC    */
590     {"im", "kIC"},              /* insert-mode key  -> KEY_SIC   */
591     {"le", "kcub1"},            /* le key           -> KEY_LEFT  */
592     {"nd", "kcuf1"},            /* nd key           -> KEY_RIGHT */
593     {"nl", "kent"},             /* new line key     -> KEY_ENTER */
594     {"st", "khts"},             /* set-tab key      -> KEY_STAB  */
595     {"ta", CANCELLED_STRING},
596     {"up", "kcuu1"},            /* up-arrow key     -> KEY_UP    */
597     {(char *) 0, (char *) 0},
598 };
599
600 /*
601  * This routine fills in string caps that either had defaults under
602  * termcap or can be manufactured from obsolete termcap capabilities.
603  * It was lifted from Ross Ridge's mytinfo package.
604  */
605
606 static const char C_CR[] = "\r";
607 static const char C_LF[] = "\n";
608 static const char C_BS[] = "\b";
609 static const char C_HT[] = "\t";
610
611 /*
612  * Note that WANTED and PRESENT are not simple inverses!  If a capability
613  * has been explicitly cancelled, it's not considered WANTED.
614  */
615 #define WANTED(s)       ((s) == ABSENT_STRING)
616 #define PRESENT(s)      (((s) != ABSENT_STRING) && ((s) != CANCELLED_STRING))
617
618 /*
619  * This bit of legerdemain turns all the terminfo variable names into
620  * references to locations in the arrays Booleans, Numbers, and Strings ---
621  * precisely what's needed.
622  */
623
624 #undef CUR
625 #define CUR tp->
626
627 static void
628 postprocess_termcap(TERMTYPE *tp, bool has_base)
629 {
630     char buf[MAX_LINE * 2 + 2];
631     string_desc result;
632
633     /*
634      * TERMCAP DEFAULTS AND OBSOLETE-CAPABILITY TRANSLATIONS
635      *
636      * This first part of the code is the functional inverse of the
637      * fragment in capdefaults.c.
638      * ----------------------------------------------------------------------
639      */
640
641     /* if there was a tc entry, assume we picked up defaults via that */
642     if (!has_base) {
643         if (WANTED(init_3string) && termcap_init2)
644             init_3string = _nc_save_str(termcap_init2);
645
646         if (WANTED(reset_2string) && termcap_reset)
647             reset_2string = _nc_save_str(termcap_reset);
648
649         if (WANTED(carriage_return)) {
650             if (carriage_return_delay > 0) {
651                 sprintf(buf, "%s$<%d>", C_CR, carriage_return_delay);
652                 carriage_return = _nc_save_str(buf);
653             } else
654                 carriage_return = _nc_save_str(C_CR);
655         }
656         if (WANTED(cursor_left)) {
657             if (backspace_delay > 0) {
658                 sprintf(buf, "%s$<%d>", C_BS, backspace_delay);
659                 cursor_left = _nc_save_str(buf);
660             } else if (backspaces_with_bs == 1)
661                 cursor_left = _nc_save_str(C_BS);
662             else if (PRESENT(backspace_if_not_bs))
663                 cursor_left = backspace_if_not_bs;
664         }
665         /* vi doesn't use "do", but it does seems to use nl (or '\n') instead */
666         if (WANTED(cursor_down)) {
667             if (PRESENT(linefeed_if_not_lf))
668                 cursor_down = linefeed_if_not_lf;
669             else if (linefeed_is_newline != 1) {
670                 if (new_line_delay > 0) {
671                     sprintf(buf, "%s$<%d>", C_LF, new_line_delay);
672                     cursor_down = _nc_save_str(buf);
673                 } else
674                     cursor_down = _nc_save_str(C_LF);
675             }
676         }
677         if (WANTED(scroll_forward) && crt_no_scrolling != 1) {
678             if (PRESENT(linefeed_if_not_lf))
679                 cursor_down = linefeed_if_not_lf;
680             else if (linefeed_is_newline != 1) {
681                 if (new_line_delay > 0) {
682                     sprintf(buf, "%s$<%d>", C_LF, new_line_delay);
683                     scroll_forward = _nc_save_str(buf);
684                 } else
685                     scroll_forward = _nc_save_str(C_LF);
686             }
687         }
688         if (WANTED(newline)) {
689             if (linefeed_is_newline == 1) {
690                 if (new_line_delay > 0) {
691                     sprintf(buf, "%s$<%d>", C_LF, new_line_delay);
692                     newline = _nc_save_str(buf);
693                 } else
694                     newline = _nc_save_str(C_LF);
695             } else if (PRESENT(carriage_return) && PRESENT(scroll_forward)) {
696                 _nc_str_init(&result, buf, sizeof(buf));
697                 if (_nc_safe_strcat(&result, carriage_return)
698                     && _nc_safe_strcat(&result, scroll_forward))
699                     newline = _nc_save_str(buf);
700             } else if (PRESENT(carriage_return) && PRESENT(cursor_down)) {
701                 _nc_str_init(&result, buf, sizeof(buf));
702                 if (_nc_safe_strcat(&result, carriage_return)
703                     && _nc_safe_strcat(&result, cursor_down))
704                     newline = _nc_save_str(buf);
705             }
706         }
707     }
708
709     /*
710      * Inverse of capdefaults.c code ends here.
711      * ----------------------------------------------------------------------
712      *
713      * TERMCAP-TO TERMINFO MAPPINGS FOR SOURCE TRANSLATION
714      *
715      * These translations will *not* be inverted by tgetent().
716      */
717
718     if (!has_base) {
719         /*
720          * We wait until now to decide if we've got a working cr because even
721          * one that doesn't work can be used for newline. Unfortunately the
722          * space allocated for it is wasted.
723          */
724         if (return_does_clr_eol == 1 || no_correctly_working_cr == 1)
725             carriage_return = ABSENT_STRING;
726
727         /*
728          * Supposedly most termcap entries have ta now and '\t' is no longer a
729          * default, but it doesn't seem to be true...
730          */
731         if (WANTED(tab)) {
732             if (horizontal_tab_delay > 0) {
733                 sprintf(buf, "%s$<%d>", C_HT, horizontal_tab_delay);
734                 tab = _nc_save_str(buf);
735             } else
736                 tab = _nc_save_str(C_HT);
737         }
738         if (init_tabs == ABSENT_NUMERIC && has_hardware_tabs == TRUE)
739             init_tabs = 8;
740
741         /*
742          * Assume we can beep with ^G unless we're given bl@.
743          */
744         if (WANTED(bell))
745             bell = _nc_save_str("\007");
746     }
747
748     /*
749      * Translate the old termcap :pt: capability to it#8 + ht=\t
750      */
751     if (has_hardware_tabs == TRUE) {
752         if (init_tabs != 8 && init_tabs != ABSENT_NUMERIC)
753             _nc_warning("hardware tabs with a width other than 8: %d", init_tabs);
754         else {
755             if (tab && _nc_capcmp(tab, C_HT))
756                 _nc_warning("hardware tabs with a non-^I tab string %s",
757                             _nc_visbuf(tab));
758             else {
759                 if (WANTED(tab))
760                     tab = _nc_save_str(C_HT);
761                 init_tabs = 8;
762             }
763         }
764     }
765     /*
766      * Now translate the ko capability, if there is one.  This
767      * isn't from mytinfo...
768      */
769     if (PRESENT(other_non_function_keys)) {
770         char *base = other_non_function_keys;
771         char *bp, *cp, *dp;
772         struct name_table_entry const *from_ptr;
773         struct name_table_entry const *to_ptr;
774         assoc const *ap;
775         char buf2[MAX_TERMINFO_LENGTH];
776         bool foundim;
777
778         /* we're going to use this for a special case later */
779         dp = strchr(other_non_function_keys, 'i');
780         foundim = (dp != 0) && (dp[1] == 'm');
781
782         /* look at each comma-separated capability in the ko string... */
783         for (base = other_non_function_keys;
784              (cp = strchr(base, ',')) != 0;
785              base = cp + 1) {
786             size_t len = cp - base;
787
788             for (ap = ko_xlate; ap->from; ap++)
789                 if (len == strlen(ap->from)
790                     && strncmp(ap->from, base, len) == 0)
791                     break;
792             if (!ap->to) {
793                 _nc_warning("unknown capability `%.*s' in ko string",
794                             (int) len, base);
795                 continue;
796             } else if (ap->to == CANCELLED_STRING)      /* ignore it */
797                 continue;
798
799             /* now we know we found a match in ko_table, so... */
800
801             from_ptr = _nc_find_entry(ap->from, _nc_get_hash_table(TRUE));
802             to_ptr = _nc_find_entry(ap->to, _nc_get_hash_table(FALSE));
803
804             if (!from_ptr || !to_ptr)   /* should never happen! */
805                 _nc_err_abort("ko translation table is invalid, I give up");
806
807             if (WANTED(tp->Strings[from_ptr->nte_index])) {
808                 _nc_warning("no value for ko capability %s", ap->from);
809                 continue;
810             }
811
812             if (tp->Strings[to_ptr->nte_index]) {
813                 /* There's no point in warning about it if it's the same
814                  * string; that's just an inefficiency.
815                  */
816                 if (strcmp(
817                               tp->Strings[from_ptr->nte_index],
818                               tp->Strings[to_ptr->nte_index]) != 0)
819                     _nc_warning("%s (%s) already has an explicit value %s, ignoring ko",
820                                 ap->to, ap->from,
821                                 _nc_visbuf(tp->Strings[to_ptr->nte_index]));
822                 continue;
823             }
824
825             /*
826              * The magic moment -- copy the mapped key string over,
827              * stripping out padding.
828              */
829             for (dp = buf2, bp = tp->Strings[from_ptr->nte_index]; *bp; bp++) {
830                 if (bp[0] == '$' && bp[1] == '<') {
831                     while (*bp && *bp != '>') {
832                         ++bp;
833                     }
834                 } else
835                     *dp++ = *bp;
836             }
837             *dp++ = '\0';
838
839             tp->Strings[to_ptr->nte_index] = _nc_save_str(buf2);
840         }
841
842         /*
843          * Note: ko=im and ko=ic both want to grab the `Insert'
844          * keycap.  There's a kich1 but no ksmir, so the ic capability
845          * got mapped to kich1 and im to kIC to avoid a collision.
846          * If the description has im but not ic, hack kIC back to kich1.
847          */
848         if (foundim && WANTED(key_ic) && key_sic) {
849             key_ic = key_sic;
850             key_sic = ABSENT_STRING;
851         }
852     }
853
854     if (!has_base) {
855         if (!hard_copy) {
856             if (WANTED(key_backspace))
857                 key_backspace = _nc_save_str(C_BS);
858             if (WANTED(key_left))
859                 key_left = _nc_save_str(C_BS);
860             if (WANTED(key_down))
861                 key_down = _nc_save_str(C_LF);
862         }
863     }
864
865     /*
866      * Translate XENIX forms characters.
867      */
868     if (PRESENT(acs_ulcorner) ||
869         PRESENT(acs_llcorner) ||
870         PRESENT(acs_urcorner) ||
871         PRESENT(acs_lrcorner) ||
872         PRESENT(acs_ltee) ||
873         PRESENT(acs_rtee) ||
874         PRESENT(acs_btee) ||
875         PRESENT(acs_ttee) ||
876         PRESENT(acs_hline) ||
877         PRESENT(acs_vline) ||
878         PRESENT(acs_plus)) {
879         char buf2[MAX_TERMCAP_LENGTH];
880
881         _nc_str_init(&result, buf2, sizeof(buf2));
882         _nc_safe_strcat(&result, acs_chars);
883
884         append_acs(&result, 'j', acs_lrcorner);
885         append_acs(&result, 'k', acs_urcorner);
886         append_acs(&result, 'l', acs_ulcorner);
887         append_acs(&result, 'm', acs_llcorner);
888         append_acs(&result, 'n', acs_plus);
889         append_acs(&result, 'q', acs_hline);
890         append_acs(&result, 't', acs_ltee);
891         append_acs(&result, 'u', acs_rtee);
892         append_acs(&result, 'v', acs_btee);
893         append_acs(&result, 'w', acs_ttee);
894         append_acs(&result, 'x', acs_vline);
895
896         if (buf2[0]) {
897             acs_chars = _nc_save_str(buf2);
898             _nc_warning("acsc string synthesized from XENIX capabilities");
899         }
900     } else if (acs_chars == 0
901                && enter_alt_charset_mode != 0
902                && exit_alt_charset_mode != 0) {
903         acs_chars = _nc_save_str(VT_ACSC);
904     }
905 }
906
907 static void
908 postprocess_terminfo(TERMTYPE *tp)
909 {
910     /*
911      * TERMINFO-TO-TERMINFO MAPPINGS FOR SOURCE TRANSLATION
912      * ----------------------------------------------------------------------
913      */
914
915     /*
916      * Translate AIX forms characters.
917      */
918     if (PRESENT(box_chars_1)) {
919         char buf2[MAX_TERMCAP_LENGTH];
920         string_desc result;
921
922         _nc_str_init(&result, buf2, sizeof(buf2));
923         _nc_safe_strcat(&result, acs_chars);
924
925         append_acs0(&result, 'l', box_chars_1[0]);      /* ACS_ULCORNER */
926         append_acs0(&result, 'q', box_chars_1[1]);      /* ACS_HLINE */
927         append_acs0(&result, 'k', box_chars_1[2]);      /* ACS_URCORNER */
928         append_acs0(&result, 'x', box_chars_1[3]);      /* ACS_VLINE */
929         append_acs0(&result, 'j', box_chars_1[4]);      /* ACS_LRCORNER */
930         append_acs0(&result, 'm', box_chars_1[5]);      /* ACS_LLCORNER */
931         append_acs0(&result, 'w', box_chars_1[6]);      /* ACS_TTEE */
932         append_acs0(&result, 'u', box_chars_1[7]);      /* ACS_RTEE */
933         append_acs0(&result, 'v', box_chars_1[8]);      /* ACS_BTEE */
934         append_acs0(&result, 't', box_chars_1[9]);      /* ACS_LTEE */
935         append_acs0(&result, 'n', box_chars_1[10]);     /* ACS_PLUS */
936
937         if (buf2[0]) {
938             acs_chars = _nc_save_str(buf2);
939             _nc_warning("acsc string synthesized from AIX capabilities");
940             box_chars_1 = ABSENT_STRING;
941         }
942     }
943     /*
944      * ----------------------------------------------------------------------
945      */
946 }
947
948 /*
949  * Do a linear search through the terminfo tables to find a given full-name.
950  * We don't expect to do this often, so there's no hashing function.
951  *
952  * In effect, this scans through the 3 lists of full-names, and looks them
953  * up in _nc_info_table, which is organized so that the nte_index fields are
954  * sorted, but the nte_type fields are not necessarily grouped together.
955  */
956 static struct name_table_entry const *
957 lookup_fullname(const char *find)
958 {
959     int state = -1;
960
961     for (;;) {
962         int count = 0;
963         NCURSES_CONST char *const *names;
964
965         switch (++state) {
966         case BOOLEAN:
967             names = boolfnames;
968             break;
969         case STRING:
970             names = strfnames;
971             break;
972         case NUMBER:
973             names = numfnames;
974             break;
975         default:
976             return NOTFOUND;
977         }
978
979         for (count = 0; names[count] != 0; count++) {
980             if (!strcmp(names[count], find)) {
981                 struct name_table_entry const *entry_ptr = _nc_get_table(FALSE);
982                 while (entry_ptr->nte_type != state
983                        || entry_ptr->nte_index != count)
984                     entry_ptr++;
985                 return entry_ptr;
986             }
987         }
988     }
989 }
990
991 /* parse_entry.c ends here */