1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
|
/*
Copyright (C) 2015-2020, Dirk Krause
SPDX-License-Identifier: BSD-3-Clause
*/
/*
WARNING: This file was generated by the dkct program (see
http://dktools.sourceforge.net/ for details).
Changes you make here will be lost if dkct is run again!
You should modify the original source and run dkct on it.
Original source: dk4appstt.ctr
*/
/** @file dk4appstt.c The dk4appstt module.
*/
#line 10 "dk4appstt.ctr"
#include "dk4app.h"
#ifndef DK4MEM_H_INCLUDED
#include "dk4mem.h"
#endif
#ifndef DK4MPL_H_INCLUDED
#include "dk4mpl.h"
#endif
#ifndef DK4STT_H_INCLUDED
#include "dk4stt.h"
#endif
#ifndef DK4STRM_H_INCLUDED
#include "dk4strm.h"
#endif
#ifndef DK4STRMR_H_INCLUDED
#include "dk4strmr.h"
#endif
#ifndef DK4FS_H_INCLUDED
#include "dk4fs.h"
#endif
#if DK4_HAVE_ASSERT_H
#ifndef ASSERT_H_INCLUDED
#include <assert.h>
#define ASSERT_H_INCLUDED 1
#endif
#endif
#line 46 "dk4appstt.ctr"
size_t
dk4app_string_table_size(const dkChar * const *texts)
{
size_t back = 0;
#line 54 "dk4appstt.ctr"
if (NULL != texts) {
while (NULL != *(texts++)) { back++; }
}
#line 57 "dk4appstt.ctr"
return back;
}
const dkChar * const *
dk4app_string_table(
dk4_app_t *app,
const dkChar *shortname,
const dkChar * const *deftexts
)
{
dkChar buffer[DK4_MAX_PATH];
dk4_string_table_t *sttptr;
dk4_stream_t *istrm;
const dkChar * const *back;
size_t rqlen;
int res;
int ok;
#line 77 "dk4appstt.ctr"
#if DK4_USE_ASSERT
assert(NULL != app);
assert(NULL != shortname);
assert(NULL != deftexts);
#endif
back = deftexts;
if ((NULL != app) && (NULL != shortname)) {
#line 84 "dk4appstt.ctr"
back = NULL;
rqlen = dk4app_string_table_size(deftexts);
#line 86 "dk4appstt.ctr"
sttptr = (dk4_string_table_t *)dk4sto_it_find_like(app->i_stt,shortname,1);
if (NULL == sttptr) {
#line 88 "dk4appstt.ctr"
res = dk4app_search_data_file(
buffer, DK4_SIZEOF(buffer,dkChar), app, shortname,
DK4_FS_DATA_MAX_SYS, 1, NULL
);
if (0 < res) {
#line 93 "dk4appstt.ctr"
sttptr = dk4stt_open(shortname, rqlen, NULL);
if (NULL != sttptr) {
#line 95 "dk4appstt.ctr"
ok = 0;
istrm = dk4stream_open_file_reader(buffer, NULL);
if (NULL != istrm) {
#line 98 "dk4appstt.ctr"
res = dk4stt_apply_stream(sttptr, istrm, app->encoding, NULL);
if (0 < res) {
#line 100 "dk4appstt.ctr"
if (0 < dk4sto_add(app->s_stt, (void *)sttptr, NULL)) {
ok = 1;
#line 102 "dk4appstt.ctr"
} else {
#line 103 "dk4appstt.ctr"
}
} else {
#line 105 "dk4appstt.ctr"
}
dk4stream_close(istrm, NULL);
} else {
#line 108 "dk4appstt.ctr"
}
if (0 == ok) {
dk4stt_close(sttptr);
sttptr = NULL;
}
} else {
#line 114 "dk4appstt.ctr"
}
} else {
#line 116 "dk4appstt.ctr"
}
}
if (NULL != sttptr) {
#line 119 "dk4appstt.ctr"
if (sttptr->nstrings >= rqlen) {
back = (const dkChar * const *)(sttptr->strings);
}
}
if (NULL == back) {
#line 124 "dk4appstt.ctr"
back = deftexts;
}
}
#line 127 "dk4appstt.ctr"
return back;
}
|