| 3 |
* lml |
* lml |
| 4 |
* - LML render |
* - LML render |
| 5 |
* |
* |
| 6 |
* Copyright (C) 2004-2025 by Leaflet <leaflet@leafok.com> |
* Copyright (C) 2004-2025 Leaflet <leaflet@leafok.com> |
| 7 |
*/ |
*/ |
| 8 |
|
|
| 9 |
#include "common.h" |
#include "common.h" |
| 15 |
#include <string.h> |
#include <string.h> |
| 16 |
#include <sys/param.h> |
#include <sys/param.h> |
| 17 |
|
|
| 18 |
#define LML_TAG_PARAM_BUF_LEN 256 |
enum _lml_constant_t |
| 19 |
#define LML_TAG_OUTPUT_BUF_LEN 1024 |
{ |
| 20 |
|
LML_TAG_PARAM_BUF_LEN = 256, |
| 21 |
|
LML_TAG_OUTPUT_BUF_LEN = 1024, |
| 22 |
|
LML_TAG_QUOTE_MAX_LEVEL = 10, |
| 23 |
|
}; |
| 24 |
|
|
| 25 |
clock_t lml_total_exec_duration = 0; |
clock_t lml_total_exec_duration = 0; |
| 26 |
|
|
| 62 |
return 0; |
return 0; |
| 63 |
} |
} |
| 64 |
|
|
|
#define LML_TAG_QUOTE_MAX_LEVEL 10 |
|
|
|
|
| 65 |
static const char *lml_tag_quote_color[] = { |
static const char *lml_tag_quote_color[] = { |
| 66 |
"\033[33m", // yellow |
"\033[33m", // yellow |
| 67 |
"\033[32m", // green |
"\033[32m", // green |
| 156 |
{"bwf", "\033[1;31m****\033[m", "", "****", NULL}, |
{"bwf", "\033[1;31m****\033[m", "", "****", NULL}, |
| 157 |
}; |
}; |
| 158 |
|
|
| 159 |
#define LML_TAG_COUNT (sizeof(lml_tag_def) / sizeof(LML_TAG_DEF)) |
static const int lml_tag_count = sizeof(lml_tag_def) / sizeof(LML_TAG_DEF); |
| 160 |
|
static int lml_tag_name_len[sizeof(lml_tag_def) / sizeof(LML_TAG_DEF)]; |
|
static int lml_tag_name_len[LML_TAG_COUNT]; |
|
| 161 |
static int lml_ready = 0; |
static int lml_ready = 0; |
| 162 |
|
|
| 163 |
inline static void lml_init(void) |
inline static void lml_init(void) |
| 166 |
|
|
| 167 |
if (!lml_ready) |
if (!lml_ready) |
| 168 |
{ |
{ |
| 169 |
for (i = 0; i < LML_TAG_COUNT; i++) |
for (i = 0; i < lml_tag_count; i++) |
| 170 |
{ |
{ |
| 171 |
lml_tag_name_len[i] = (int)strlen(lml_tag_def[i].tag_name); |
lml_tag_name_len[i] = (int)strlen(lml_tag_def[i].tag_name); |
| 172 |
} |
} |
| 346 |
tag_name_pos++; |
tag_name_pos++; |
| 347 |
} |
} |
| 348 |
|
|
| 349 |
for (tag_name_found = 0, k = 0; k < LML_TAG_COUNT; k++) |
for (tag_name_found = 0, k = 0; k < lml_tag_count; k++) |
| 350 |
{ |
{ |
| 351 |
if (strncasecmp(lml_tag_def[k].tag_name, str_in + tag_name_pos, (size_t)lml_tag_name_len[k]) == 0) |
if (strncasecmp(lml_tag_def[k].tag_name, str_in + tag_name_pos, (size_t)lml_tag_name_len[k]) == 0) |
| 352 |
{ |
{ |