tic.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333
  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. * Author: Zeyd M. Ben-Halim <zmbenhal@netcom.com> 1992,1995 *
  30. * and: Eric S. Raymond <esr@snark.thyrsus.com> *
  31. * and: Thomas E. Dickey 1996 on *
  32. ****************************************************************************/
  33. /*
  34. * $Id: tic.h,v 1.62 2007/08/11 16:12:43 tom Exp $
  35. * tic.h - Global variables and structures for the terminfo
  36. * compiler.
  37. */
  38. #ifndef __TIC_H
  39. #define __TIC_H
  40. #ifdef __cplusplus
  41. extern "C" {
  42. #endif
  43. #include <curses.h> /* for the _tracef() prototype, ERR/OK, bool defs */
  44. /*
  45. ** The format of compiled terminfo files is as follows:
  46. **
  47. ** Header (12 bytes), containing information given below
  48. ** Names Section, containing the names of the terminal
  49. ** Boolean Section, containing the values of all of the
  50. ** boolean capabilities
  51. ** A null byte may be inserted here to make
  52. ** sure that the Number Section begins on an
  53. ** even word boundary.
  54. ** Number Section, containing the values of all of the numeric
  55. ** capabilities, each as a short integer
  56. ** String Section, containing short integer offsets into the
  57. ** String Table, one per string capability
  58. ** String Table, containing the actual characters of the string
  59. ** capabilities.
  60. **
  61. ** NOTE that all short integers in the file are stored using VAX/PDP-style
  62. ** byte-order, i.e., least-significant byte first.
  63. **
  64. ** There is no structure definition here because it would only confuse
  65. ** matters. Terminfo format is a raw byte layout, not a structure
  66. ** dump. If you happen to be on a little-endian machine with 16-bit
  67. ** shorts that requires no padding between short members in a struct,
  68. ** then there is a natural C structure that captures the header, but
  69. ** not very helpfully.
  70. */
  71. #define MAGIC 0432 /* first two bytes of a compiled entry */
  72. #undef BYTE
  73. #define BYTE(p,n) (unsigned char)((p)[n])
  74. #define IS_NEG1(p) ((BYTE(p,0) == 0377) && (BYTE(p,1) == 0377))
  75. #define IS_NEG2(p) ((BYTE(p,0) == 0376) && (BYTE(p,1) == 0377))
  76. #define LOW_MSB(p) (BYTE(p,0) + 256*BYTE(p,1))
  77. #define IS_TIC_MAGIC(p) (LOW_MSB(p) == MAGIC)
  78. /*
  79. * The "maximum" here is misleading; XSI guarantees minimum values, which a
  80. * given implementation may exceed.
  81. */
  82. #define MAX_NAME_SIZE 512 /* maximum legal name field size (XSI:127) */
  83. #define MAX_ENTRY_SIZE 4096 /* maximum legal entry size */
  84. /*
  85. * The maximum size of individual name or alias is guaranteed in XSI to be at
  86. * least 14, since that corresponds to the older filename lengths. Newer
  87. * systems allow longer aliases, though not many terminal descriptions are
  88. * written to use them. The MAX_ALIAS symbol is used for warnings.
  89. */
  90. #if HAVE_LONG_FILE_NAMES
  91. #define MAX_ALIAS 32 /* smaller than POSIX minimum for PATH_MAX */
  92. #else
  93. #define MAX_ALIAS 14 /* SVr3 filename length */
  94. #endif
  95. /* location of user's personal info directory */
  96. #define PRIVATE_INFO "%s/.terminfo" /* plug getenv("HOME") into %s */
  97. /*
  98. * Some traces are designed to be used via tic's verbose option (and similar in
  99. * infocmp and toe) rather than the 'trace()' function. So we use the bits
  100. * above the normal trace() parameter as a debug-level.
  101. */
  102. #define MAX_DEBUG_LEVEL 15
  103. #define DEBUG_LEVEL(n) ((n) << TRACE_SHIFT)
  104. #define set_trace_level(n) \
  105. _nc_tracing &= DEBUG_LEVEL(MAX_DEBUG_LEVEL), \
  106. _nc_tracing |= DEBUG_LEVEL(n)
  107. #ifdef TRACE
  108. #define DEBUG(n, a) if (_nc_tracing >= DEBUG_LEVEL(n)) _tracef a
  109. #else
  110. #define DEBUG(n, a) /*nothing*/
  111. #endif
  112. extern NCURSES_EXPORT_VAR(unsigned) _nc_tracing;
  113. extern NCURSES_EXPORT(void) _nc_tracef (char *, ...) GCC_PRINTFLIKE(1,2);
  114. extern NCURSES_EXPORT(const char *) _nc_visbuf (const char *);
  115. extern NCURSES_EXPORT(const char *) _nc_visbuf2 (int, const char *);
  116. /*
  117. * These are the types of tokens returned by the scanner. The first
  118. * three are also used in the hash table of capability names. The scanner
  119. * returns one of these values after loading the specifics into the global
  120. * structure curr_token.
  121. */
  122. #define BOOLEAN 0 /* Boolean capability */
  123. #define NUMBER 1 /* Numeric capability */
  124. #define STRING 2 /* String-valued capability */
  125. #define CANCEL 3 /* Capability to be cancelled in following tc's */
  126. #define NAMES 4 /* The names for a terminal type */
  127. #define UNDEF 5 /* Undefined */
  128. #define NO_PUSHBACK -1 /* used in pushtype to indicate no pushback */
  129. /*
  130. * The global structure in which the specific parts of a
  131. * scanned token are returned.
  132. *
  133. */
  134. struct token
  135. {
  136. char *tk_name; /* name of capability */
  137. int tk_valnumber; /* value of capability (if a number) */
  138. char *tk_valstring; /* value of capability (if a string) */
  139. };
  140. extern NCURSES_EXPORT_VAR(struct token) _nc_curr_token;
  141. /*
  142. * Offsets to string capabilities, with the corresponding functionkey
  143. * codes.
  144. */
  145. struct tinfo_fkeys {
  146. unsigned offset;
  147. chtype code;
  148. };
  149. #if BROKEN_LINKER
  150. #define _nc_tinfo_fkeys _nc_tinfo_fkeysf()
  151. extern NCURSES_EXPORT(const struct tinfo_fkeys *) _nc_tinfo_fkeysf (void);
  152. #else
  153. extern NCURSES_EXPORT_VAR(const struct tinfo_fkeys) _nc_tinfo_fkeys[];
  154. #endif
  155. /*
  156. * The file comp_captab.c contains an array of these structures, one
  157. * per possible capability. These are indexed by a hash table array of
  158. * pointers to the same structures for use by the parser.
  159. */
  160. struct name_table_entry
  161. {
  162. const char *nte_name; /* name to hash on */
  163. int nte_type; /* BOOLEAN, NUMBER or STRING */
  164. short nte_index; /* index of associated variable in its array */
  165. short nte_link; /* index in table of next hash, or -1 */
  166. };
  167. struct alias
  168. {
  169. const char *from;
  170. const char *to;
  171. const char *source;
  172. };
  173. extern NCURSES_EXPORT(const struct name_table_entry *) _nc_get_table (bool);
  174. extern NCURSES_EXPORT(const short *) _nc_get_hash_table (bool);
  175. extern NCURSES_EXPORT(const struct alias *) _nc_get_alias_table (bool);
  176. #define NOTFOUND ((struct name_table_entry *) 0)
  177. /* out-of-band values for representing absent capabilities */
  178. #define ABSENT_BOOLEAN ((signed char)-1) /* 255 */
  179. #define ABSENT_NUMERIC (-1)
  180. #define ABSENT_STRING (char *)0
  181. /* out-of-band values for representing cancels */
  182. #define CANCELLED_BOOLEAN ((signed char)-2) /* 254 */
  183. #define CANCELLED_NUMERIC (-2)
  184. #define CANCELLED_STRING (char *)(-1)
  185. #define VALID_BOOLEAN(s) ((unsigned char)(s) <= 1) /* reject "-1" */
  186. #define VALID_NUMERIC(s) ((s) >= 0)
  187. #define VALID_STRING(s) ((s) != CANCELLED_STRING && (s) != ABSENT_STRING)
  188. /* termcap entries longer than this may break old binaries */
  189. #define MAX_TERMCAP_LENGTH 1023
  190. /* this is a documented limitation of terminfo */
  191. #define MAX_TERMINFO_LENGTH 4096
  192. #ifndef TERMINFO
  193. #define TERMINFO "/usr/share/terminfo"
  194. #endif
  195. /* access.c */
  196. extern NCURSES_EXPORT(unsigned) _nc_pathlast (const char *);
  197. extern NCURSES_EXPORT(bool) _nc_is_abs_path (const char *);
  198. extern NCURSES_EXPORT(bool) _nc_is_dir_path (const char *);
  199. extern NCURSES_EXPORT(bool) _nc_is_file_path (const char *);
  200. extern NCURSES_EXPORT(char *) _nc_basename (char *);
  201. extern NCURSES_EXPORT(char *) _nc_rootname (char *);
  202. /* comp_hash.c: name lookup */
  203. extern NCURSES_EXPORT(struct name_table_entry const *) _nc_find_entry
  204. (const char *, const short *);
  205. extern NCURSES_EXPORT(struct name_table_entry const *) _nc_find_type_entry
  206. (const char *, int, const struct name_table_entry *);
  207. /* comp_scan.c: lexical analysis */
  208. extern NCURSES_EXPORT(int) _nc_get_token (bool);
  209. extern NCURSES_EXPORT(void) _nc_panic_mode (char);
  210. extern NCURSES_EXPORT(void) _nc_push_token (int);
  211. extern NCURSES_EXPORT(void) _nc_reset_input (FILE *, char *);
  212. extern NCURSES_EXPORT_VAR(int) _nc_curr_col;
  213. extern NCURSES_EXPORT_VAR(int) _nc_curr_line;
  214. extern NCURSES_EXPORT_VAR(int) _nc_syntax;
  215. extern NCURSES_EXPORT_VAR(long) _nc_comment_end;
  216. extern NCURSES_EXPORT_VAR(long) _nc_comment_start;
  217. extern NCURSES_EXPORT_VAR(long) _nc_curr_file_pos;
  218. extern NCURSES_EXPORT_VAR(long) _nc_start_line;
  219. #define SYN_TERMINFO 0
  220. #define SYN_TERMCAP 1
  221. /* comp_error.c: warning & abort messages */
  222. extern NCURSES_EXPORT(const char *) _nc_get_source (void);
  223. extern NCURSES_EXPORT(void) _nc_err_abort (const char *const,...) GCC_PRINTFLIKE(1,2) GCC_NORETURN;
  224. extern NCURSES_EXPORT(void) _nc_get_type (char *name);
  225. extern NCURSES_EXPORT(void) _nc_set_source (const char *const);
  226. extern NCURSES_EXPORT(void) _nc_set_type (const char *const);
  227. extern NCURSES_EXPORT(void) _nc_syserr_abort (const char *const,...) GCC_PRINTFLIKE(1,2) GCC_NORETURN;
  228. extern NCURSES_EXPORT(void) _nc_warning (const char *const,...) GCC_PRINTFLIKE(1,2);
  229. extern NCURSES_EXPORT_VAR(bool) _nc_suppress_warnings;
  230. /* comp_expand.c: expand string into readable form */
  231. extern NCURSES_EXPORT(char *) _nc_tic_expand (const char *, bool, int);
  232. /* comp_scan.c: decode string from readable form */
  233. extern NCURSES_EXPORT(int) _nc_trans_string (char *, char *);
  234. /* captoinfo.c: capability conversion */
  235. extern NCURSES_EXPORT(char *) _nc_captoinfo (const char *, const char *, int const);
  236. extern NCURSES_EXPORT(char *) _nc_infotocap (const char *, const char *, int const);
  237. /* home_terminfo.c */
  238. extern NCURSES_EXPORT(char *) _nc_home_terminfo (void);
  239. /* lib_tparm.c */
  240. #define NUM_PARM 9
  241. extern NCURSES_EXPORT_VAR(int) _nc_tparm_err;
  242. extern NCURSES_EXPORT(int) _nc_tparm_analyze(const char *, char **, int *);
  243. /* lib_tputs.c */
  244. extern NCURSES_EXPORT_VAR(int) _nc_nulls_sent; /* Add one for every null sent */
  245. /* comp_main.c: compiler main */
  246. extern const char * _nc_progname;
  247. /* db_iterator.c */
  248. typedef enum {
  249. dbdTIC = 0,
  250. #if USE_DATABASE
  251. dbdEnvOnce,
  252. dbdHome,
  253. dbdEnvList,
  254. dbdCfgList,
  255. dbdCfgOnce,
  256. #endif
  257. #if USE_TERMCAP
  258. dbdEnvOnce2,
  259. dbdEnvList2,
  260. dbdCfgList2,
  261. #endif
  262. dbdLAST
  263. } DBDIRS;
  264. extern NCURSES_EXPORT(const char *) _nc_next_db(DBDIRS *, int *);
  265. extern NCURSES_EXPORT(const char *) _nc_tic_dir (const char *);
  266. extern NCURSES_EXPORT(void) _nc_first_db(DBDIRS *, int *);
  267. extern NCURSES_EXPORT(void) _nc_last_db(void);
  268. /* write_entry.c */
  269. extern NCURSES_EXPORT(int) _nc_tic_written (void);
  270. #ifdef __cplusplus
  271. }
  272. #endif
  273. #endif /* __TIC_H */