/[LeafOK_CVS]/lbbs/src/lml.c
ViewVC logotype

Contents of /lbbs/src/lml.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.15 - (show annotations)
Tue Sep 30 03:02:06 2025 UTC (5 months, 2 weeks ago) by sysadm
Branch: MAIN
Changes since 1.14: +50 -35 lines
Content type: text/x-csrc
Fix bug in LML render
Add lml_tag = 0 mode for quoted article content

1 /***************************************************************************
2 lml.h - description
3 -------------------
4 Copyright : (C) 2004-2025 by Leaflet
5 Email : leaflet@leafok.com
6 ***************************************************************************/
7
8 /***************************************************************************
9 * *
10 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU General Public License as published by *
12 * the Free Software Foundation; either version 3 of the License, or *
13 * (at your option) any later version. *
14 * *
15 ***************************************************************************/
16
17 #include "common.h"
18 #include "lml.h"
19 #include "log.h"
20 #include <stdio.h>
21 #include <string.h>
22 #include <sys/param.h>
23
24 #define LML_TAG_PARAM_BUF_LEN 256
25 #define LML_TAG_OUTPUT_BUF_LEN 1024
26
27 typedef int (*lml_tag_filter_cb)(const char *tag_name, const char *tag_param_buf, char *tag_output_buf, size_t tag_output_buf_len);
28
29 static int lml_tag_color_filter(const char *tag_name, const char *tag_param_buf, char *tag_output_buf, size_t tag_output_buf_len)
30 {
31 if (strcasecmp(tag_name, "color") == 0)
32 {
33 if (strcasecmp(tag_param_buf, "red") == 0)
34 {
35 return snprintf(tag_output_buf, tag_output_buf_len, "\033[1;31m");
36 }
37 else if (strcasecmp(tag_param_buf, "green") == 0)
38 {
39 return snprintf(tag_output_buf, tag_output_buf_len, "\033[1;32m");
40 }
41 else if (strcasecmp(tag_param_buf, "yellow") == 0)
42 {
43 return snprintf(tag_output_buf, tag_output_buf_len, "\033[1;33m");
44 }
45 else if (strcasecmp(tag_param_buf, "blue") == 0)
46 {
47 return snprintf(tag_output_buf, tag_output_buf_len, "\033[1;34m");
48 }
49 else if (strcasecmp(tag_param_buf, "magenta") == 0)
50 {
51 return snprintf(tag_output_buf, tag_output_buf_len, "\033[1;35m");
52 }
53 else if (strcasecmp(tag_param_buf, "cyan") == 0)
54 {
55 return snprintf(tag_output_buf, tag_output_buf_len, "\033[1;36m");
56 }
57 else if (strcasecmp(tag_param_buf, "black") == 0)
58 {
59 return snprintf(tag_output_buf, tag_output_buf_len, "\033[1;30;47m");
60 }
61 }
62 return 0;
63 }
64
65 #define LML_TAG_QUOTE_MAX_LEVEL 10
66 #define LML_TAG_QUOTE_LEVEL_LOOP 3
67
68 static const char *lml_tag_quote_color[] = {
69 "\033[33m", // yellow
70 "\033[32m", // green
71 "\033[35m", // magenta
72 };
73
74 static int lml_tag_quote_level = 0;
75
76 static int lml_tag_quote_filter(const char *tag_name, const char *tag_param_buf, char *tag_output_buf, size_t tag_output_buf_len)
77 {
78 if (strcasecmp(tag_name, "quote") == 0)
79 {
80 if (lml_tag_quote_level <= LML_TAG_QUOTE_MAX_LEVEL)
81 {
82 lml_tag_quote_level++;
83 }
84 return snprintf(tag_output_buf, tag_output_buf_len, "%s",
85 lml_tag_quote_color[lml_tag_quote_level % LML_TAG_QUOTE_LEVEL_LOOP]);
86 }
87 else if (strcasecmp(tag_name, "/quote") == 0)
88 {
89 if (lml_tag_quote_level > 0)
90 {
91 lml_tag_quote_level--;
92 }
93 return snprintf(tag_output_buf, tag_output_buf_len, "%s",
94 (lml_tag_quote_level > 0 ? lml_tag_quote_color[lml_tag_quote_level % LML_TAG_QUOTE_LEVEL_LOOP] : "\033[m"));
95 }
96
97 return 0;
98 }
99
100 const static char *LML_tag_def[][4] = {
101 // Definition of tuple: {lml_tag, lml_output, default_param | lml_filter_cb, no_lml_output}
102 {"left", "[", "", "[left]"},
103 {"right", "]", "", "[right]"},
104 {"bold", "\033[1m", "", ""}, // does not work in Fterm
105 {"/bold", "\033[22m", NULL, ""},
106 {"b", "\033[1m", "", ""},
107 {"/b", "\033[22m", NULL, ""},
108 {"italic", "\033[5m", "", ""}, // use blink instead
109 {"/italic", "\033[m", NULL, ""}, // \033[25m does not work in Fterm
110 {"i", "\033[5m", "", ""},
111 {"/i", "\033[m", NULL, ""},
112 {"underline", "\033[4m", "", ""},
113 {"/underline", "\033[m", NULL, ""}, // \033[24m does not work in Fterm
114 {"u", "\033[4m", "", ""},
115 {"/u", "\033[m", NULL, ""},
116 {"color", NULL, (const char *)lml_tag_color_filter, ""},
117 {"/color", "\033[m", NULL, ""},
118 {"quote", NULL, (const char *)lml_tag_quote_filter, ""},
119 {"/quote", NULL, (const char *)lml_tag_quote_filter, ""},
120 {"url", "", "", ""},
121 {"/url", "(链接: %s)", NULL, "(链接: %s)"},
122 {"link", "", ""},
123 {"/link", "(链接: %s)", NULL, "(链接: %s)"},
124 {"email", "", ""},
125 {"/email", "(Email: %s)", NULL, "(Email: %s)"},
126 {"user", "", ""},
127 {"/user", "(用户: %s)", NULL, "(用户: %s)"},
128 {"article", "", ""},
129 {"/article", "(文章: %s)", NULL, "(文章: %s)"},
130 {"image", "(图片: %s)", "", "(图片: %s)"},
131 {"flash", "(Flash: %s)", "", "(Flash: %s)"},
132 {"bwf", "\033[1;31m****\033[m", "", "****"},
133 };
134
135 #define LML_TAG_COUNT 31
136
137 static int LML_tag_name_len[LML_TAG_COUNT];
138 static int LML_init = 0;
139
140 inline static void lml_init(void)
141 {
142 int i;
143
144 if (!LML_init)
145 {
146 for (i = 0; i < LML_TAG_COUNT; i++)
147 {
148 LML_tag_name_len[i] = (int)strlen(LML_tag_def[i][0]);
149 }
150
151 LML_init = 1;
152 }
153 }
154
155 int lml_plain(const char *str_in, char *str_out, int buf_len, int lml_tag)
156 {
157 char c;
158 char tag_param_buf[LML_TAG_PARAM_BUF_LEN];
159 char tag_output_buf[LML_TAG_OUTPUT_BUF_LEN];
160 int i;
161 int j = 0;
162 int k;
163 int tag_start_pos = -1;
164 int tag_end_pos = -1;
165 int tag_param_pos = -1;
166 int tag_output_len;
167 int new_line = 1;
168 int fb_quote_level = 0;
169
170 lml_init();
171
172 lml_tag_quote_level = 0;
173
174 for (i = 0; str_in[i] != '\0'; i++)
175 {
176 if (lml_tag && new_line)
177 {
178 if (fb_quote_level > 0)
179 {
180 lml_tag_quote_level -= fb_quote_level;
181
182 tag_output_len = snprintf(tag_output_buf, LML_TAG_OUTPUT_BUF_LEN, "%s",
183 (lml_tag_quote_level > 0 ? lml_tag_quote_color[lml_tag_quote_level % LML_TAG_QUOTE_LEVEL_LOOP] : "\033[m"));
184 if (j + tag_output_len >= buf_len)
185 {
186 log_error("Buffer is not longer enough for output string %d >= %d\n", j + tag_output_len, buf_len);
187 str_out[j] = '\0';
188 return j;
189 }
190 memcpy(str_out + j, tag_output_buf, (size_t)tag_output_len);
191 j += tag_output_len;
192
193 fb_quote_level = 0;
194 }
195
196 while (str_in[i + fb_quote_level * 2] == ':' && str_in[i + fb_quote_level * 2 + 1] == ' ') // FB2000 quote leading str
197 {
198 fb_quote_level++;
199 }
200
201 if (fb_quote_level > 0)
202 {
203 lml_tag_quote_level += fb_quote_level;
204
205 tag_output_len = snprintf(tag_output_buf, LML_TAG_OUTPUT_BUF_LEN, "%s",
206 lml_tag_quote_color[(lml_tag_quote_level) % LML_TAG_QUOTE_LEVEL_LOOP]);
207 if (j + tag_output_len >= buf_len)
208 {
209 log_error("Buffer is not longer enough for output string %d >= %d\n", j + tag_output_len, buf_len);
210 str_out[j] = '\0';
211 return j;
212 }
213 memcpy(str_out + j, tag_output_buf, (size_t)tag_output_len);
214 j += tag_output_len;
215 }
216
217 new_line = 0;
218 }
219
220 if (str_in[i] == '\033' && str_in[i + 1] == '[') // Escape sequence -- copy directly
221 {
222 for (k = i + 2; str_in[k] != '\0' && str_in[k] != 'm'; k++)
223 ;
224
225 if (str_in[k] == 'm') // Valid
226 {
227 if (j + (k - i + 1) >= buf_len)
228 {
229 log_error("Buffer is not longer enough for output string %d >= %d\n", j + (k - i + 1), buf_len);
230 str_out[j] = '\0';
231 return j;
232 }
233 memcpy(str_out + j, str_in + i, (size_t)(k - i + 1));
234 j += (k - i + 1);
235 i = k;
236 continue;
237 }
238 else // reach end of string
239 {
240 break;
241 }
242 }
243
244 if (str_in[i] == '\n')
245 {
246 tag_start_pos = -1; // jump out of tag at end of line
247 new_line = 1;
248 }
249 else if (str_in[i] == '\r')
250 {
251 continue; // ignore '\r'
252 }
253
254 if (str_in[i] == '[')
255 {
256 tag_start_pos = i + 1;
257 }
258 else if (str_in[i] == ']')
259 {
260 if (tag_start_pos >= 0)
261 {
262 tag_end_pos = i;
263
264 // Skip space characters
265 while (str_in[tag_start_pos] == ' ')
266 {
267 tag_start_pos++;
268 }
269
270 for (k = 0; k < LML_TAG_COUNT; k++)
271 {
272 if (strncasecmp(LML_tag_def[k][0], str_in + tag_start_pos, (size_t)LML_tag_name_len[k]) == 0)
273 {
274 tag_param_pos = -1;
275 switch (str_in[tag_start_pos + LML_tag_name_len[k]])
276 {
277 case ' ':
278 tag_param_pos = tag_start_pos + LML_tag_name_len[k] + 1;
279 while (str_in[tag_param_pos] == ' ')
280 {
281 tag_param_pos++;
282 }
283 strncpy(tag_param_buf, str_in + tag_param_pos, (size_t)MIN(tag_end_pos - tag_param_pos, LML_TAG_PARAM_BUF_LEN));
284 tag_param_buf[MIN(tag_end_pos - tag_param_pos, LML_TAG_PARAM_BUF_LEN)] = '\0';
285 case ']':
286 if (tag_param_pos == -1 && LML_tag_def[k][1] != NULL && LML_tag_def[k][2] != NULL) // Apply default param if not defined
287 {
288 strncpy(tag_param_buf, LML_tag_def[k][2], LML_TAG_PARAM_BUF_LEN - 1);
289 tag_param_buf[LML_TAG_PARAM_BUF_LEN - 1] = '\0';
290 }
291 if (lml_tag)
292 {
293 if (LML_tag_def[k][1] != NULL)
294 {
295 tag_output_len = snprintf(tag_output_buf, LML_TAG_OUTPUT_BUF_LEN, LML_tag_def[k][1], tag_param_buf);
296 }
297 else
298 {
299 tag_output_len = ((lml_tag_filter_cb)LML_tag_def[k][2])(
300 LML_tag_def[k][0], tag_param_buf, tag_output_buf, LML_TAG_OUTPUT_BUF_LEN);
301 }
302 }
303 else
304 {
305 if (LML_tag_def[k][3] != NULL)
306 {
307 tag_output_len = snprintf(tag_output_buf, LML_TAG_OUTPUT_BUF_LEN, LML_tag_def[k][3], tag_param_buf);
308 }
309 else
310 {
311 tag_output_len = 0;
312 }
313 }
314 if (j + tag_output_len >= buf_len)
315 {
316 log_error("Buffer is not longer enough for output string %d >= %d\n", j + tag_output_len, buf_len);
317 str_out[j] = '\0';
318 return j;
319 }
320 memcpy(str_out + j, tag_output_buf, (size_t)tag_output_len);
321 j += tag_output_len;
322 break;
323 default: // tag_name not match
324 continue;
325 }
326 break;
327 }
328 }
329
330 tag_start_pos = -1;
331 }
332 }
333 else if (tag_start_pos == -1) // not in LML tag
334 {
335 if (str_in[i] & 0b10000000) // head of multi-byte character
336 {
337 if (j + 4 >= buf_len) // Assuming UTF-8 CJK characters use 4 bytes, though most of them actually use 3 bytes
338 {
339 log_error("Buffer is not longer enough for output string %ld >= %d\n", j + 4, buf_len);
340 str_out[j] = '\0';
341 return j;
342 }
343
344 c = (str_in[i] & 0b01110000) << 1;
345 while (c & 0b10000000)
346 {
347 str_out[j++] = str_in[i++];
348 if (str_in[i] == '\0')
349 {
350 str_out[j] = '\0';
351 return j;
352 }
353 c = (c & 0b01111111) << 1;
354 }
355 }
356
357 if (j + 1 >= buf_len)
358 {
359 log_error("Buffer is not longer enough for output string %ld >= %d\n", j + 1, buf_len);
360 str_out[j] = '\0';
361 return j;
362 }
363 str_out[j++] = str_in[i];
364 }
365 else // in LML tag
366 {
367 // Do nothing
368 }
369 }
370
371 if (lml_tag && lml_tag_quote_level > 0)
372 {
373 tag_output_len = snprintf(tag_output_buf, LML_TAG_OUTPUT_BUF_LEN, "\033[m");
374 if (j + tag_output_len >= buf_len)
375 {
376 log_error("Buffer is not longer enough for output string %d >= %d\n", j + tag_output_len, buf_len);
377 str_out[j] = '\0';
378 return j;
379 }
380 memcpy(str_out + j, tag_output_buf, (size_t)tag_output_len);
381 j += tag_output_len;
382 }
383
384 str_out[j] = '\0';
385
386 return j;
387 }

webmaster@leafok.com
ViewVC Help
Powered by ViewVC 1.3.0-beta1