]>
git.cameronkatri.com Git - mandoc.git/blob - chars.c
1 /* $Id: chars.c,v 1.18 2010/05/25 12:37:20 kristaps Exp $ */
3 * Copyright (c) 2009 Kristaps Dzonsons <kristaps@kth.se>
5 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
41 #define CHARS_CHAR (1 << 0)
42 #define CHARS_STRING (1 << 1)
43 #define CHARS_BOTH (CHARS_CHAR | CHARS_STRING)
48 #define CHAR(w, x, y, z, a, b) \
49 { NULL, (w), (y), (a), (x), (z), (b), CHARS_CHAR },
50 #define STRING(w, x, y, z, a, b) \
51 { NULL, (w), (y), (a), (x), (z), (b), CHARS_STRING },
52 #define BOTH(w, x, y, z, a, b) \
53 { NULL, (w), (y), (a), (x), (z), (b), CHARS_BOTH },
55 #define CHAR_TBL_START static struct ln lines[LINES_MAX] = {
56 #define CHAR_TBL_END };
65 static inline int match(const struct ln
*,
66 const char *, size_t, int);
67 static const char *find(struct tbl
*, const char *,
68 size_t, size_t *, int);
76 tab
= (struct tbl
*)arg
;
84 chars_init(enum chars type
)
92 * Constructs a very basic chaining hashtable. The hash routine
93 * is simply the integral value of the first character.
94 * Subsequent entries are chained in the order they're processed
95 * (they're in-line re-ordered during lookup).
98 tab
= malloc(sizeof(struct tbl
));
104 htab
= calloc(PRINT_HI
- PRINT_LO
+ 1, sizeof(struct ln
**));
110 for (i
= 0; i
< LINES_MAX
; i
++) {
111 hash
= (int)lines
[i
].code
[0] - PRINT_LO
;
113 if (NULL
== (pp
= htab
[hash
])) {
114 htab
[hash
] = &lines
[i
];
118 for ( ; pp
->next
; pp
= pp
->next
)
120 pp
->next
= &lines
[i
];
130 chars_a2ascii(void *arg
, const char *p
, size_t sz
, size_t *rsz
)
133 return(find((struct tbl
*)arg
, p
, sz
, rsz
, CHARS_CHAR
));
138 chars_a2res(void *arg
, const char *p
, size_t sz
, size_t *rsz
)
141 return(find((struct tbl
*)arg
, p
, sz
, rsz
, CHARS_STRING
));
146 find(struct tbl
*tab
, const char *p
, size_t sz
, size_t *rsz
, int type
)
148 struct ln
*pp
, *prev
;
155 if (p
[0] < PRINT_LO
|| p
[0] > PRINT_HI
)
159 * Lookup the symbol in the symbol hash. See ascii2htab for the
160 * hashtable specs. This dynamically re-orders the hash chain
161 * to optimise for repeat hits.
164 hash
= (int)p
[0] - PRINT_LO
;
167 if (NULL
== (pp
= htab
[hash
]))
170 for (prev
= NULL
; pp
; pp
= pp
->next
) {
171 if ( ! match(pp
, p
, sz
, type
)) {
177 prev
->next
= pp
->next
;
178 pp
->next
= htab
[hash
];
182 if (CHARS_HTML
== tab
->type
) {
195 match(const struct ln
*ln
, const char *p
, size_t sz
, int type
)
198 if ( ! (ln
->type
& type
))
200 if (ln
->codesz
!= sz
)
202 return(0 == strncmp(ln
->code
, p
, sz
));