Fixing syntax errors after updating the iso14651_t1_common file
[glibc.git] / locale / programs / linereader.h
blob24fedaed928a02c4292e1f990ab77123d4860a43
1 /* Copyright (C) 1996-2018 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Ulrich Drepper, <drepper@gnu.org>.
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published
7 by the Free Software Foundation; version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, see <http://www.gnu.org/licenses/>. */
18 #ifndef _LINEREADER_H
19 #define _LINEREADER_H 1
21 #include <ctype.h>
22 #include <libintl.h>
23 #include <stdint.h>
24 #include <stdio.h>
26 #include "charmap.h"
27 #include "error.h"
28 #include "locfile-token.h"
29 #include "repertoire.h"
30 #include "record-status.h"
32 typedef const struct keyword_t *(*kw_hash_fct_t) (const char *, unsigned int);
33 struct charset_t;
34 struct localedef_t;
36 struct token
38 enum token_t tok;
39 union
41 struct
43 char *startmb;
44 size_t lenmb;
45 uint32_t *startwc;
46 size_t lenwc;
47 } str;
48 unsigned long int num;
49 struct
51 /* This element is sized on the safe expectation that no single
52 character in any character set uses more than 16 bytes. */
53 unsigned char bytes[16];
54 int nbytes;
55 } charcode;
56 uint32_t ucs4;
57 } val;
61 struct linereader
63 FILE *fp;
64 const char *fname;
65 char *buf;
66 size_t bufsize;
67 size_t bufact;
68 size_t lineno;
70 size_t idx;
72 char comment_char;
73 char escape_char;
75 struct token token;
77 int translate_strings;
78 int return_widestr;
80 kw_hash_fct_t hash_fct;
84 /* Functions defined in linereader.c. */
85 extern struct linereader *lr_open (const char *fname, kw_hash_fct_t hf);
86 extern struct linereader *lr_create (FILE *fp, const char *fname,
87 kw_hash_fct_t hf);
88 extern int lr_eof (struct linereader *lr);
89 extern void lr_close (struct linereader *lr);
90 extern int lr_next (struct linereader *lr);
91 extern struct token *lr_token (struct linereader *lr,
92 const struct charmap_t *charmap,
93 struct localedef_t *locale,
94 const struct repertoire_t *repertoire,
95 int verbose);
96 extern void lr_ignore_rest (struct linereader *lr, int verbose);
99 static inline void
100 __attribute__ ((__format__ (__printf__, 2, 3), nonnull (1, 2)))
101 lr_error (struct linereader *lr, const char *fmt, ...)
103 char *str;
104 va_list arg;
105 struct locale_state ls;
106 int ret;
108 va_start (arg, fmt);
109 ls = push_locale ();
111 ret = vasprintf (&str, fmt, arg);
112 if (ret == -1)
113 abort ();
115 pop_locale (ls);
116 va_end (arg);
118 error_at_line (0, 0, lr->fname, lr->lineno, "%s", str);
120 free (str);
124 static inline int
125 __attribute ((always_inline))
126 lr_getc (struct linereader *lr)
128 if (lr->idx == lr->bufact)
130 if (lr->bufact != 0)
131 if (lr_next (lr) < 0)
132 return EOF;
134 if (lr->bufact == 0)
135 return EOF;
138 return lr->buf[lr->idx] == '\32' ? EOF : lr->buf[lr->idx++];
142 static inline int
143 __attribute ((always_inline))
144 lr_ungetc (struct linereader *lr, int ch)
146 if (lr->idx == 0)
147 return -1;
149 if (ch != EOF)
150 lr->buf[--lr->idx] = ch;
151 return 0;
155 static inline int
156 lr_ungetn (struct linereader *lr, size_t n)
158 if (lr->idx < n)
159 return -1;
161 lr->idx -= n;
162 return 0;
166 #endif /* linereader.h */