awtk/tools/theme_gen/xml_theme_gen.cc

222 lines
5.1 KiB
C++
Raw Normal View History

2018-02-21 19:36:38 +08:00
/**
* File: xml_gen.c
2018-05-15 09:31:58 +08:00
* Author: AWTK Develop Team
2018-02-21 19:36:38 +08:00
* Brief: generate theme date from xml
*
2020-01-01 11:27:36 +08:00
* Copyright (c) 2018 - 2020 Guangzhou ZHIYUAN Electronics Co.,Ltd.
2018-02-21 19:36:38 +08:00
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* License file for more details.
*
*/
/**
* History:
* ================================================================
* 2018-01-19 Li XianJing <xianjimli@hotmail.com> adapted from ftk.
*
*/
2018-03-18 11:29:31 +08:00
#include "theme_gen.h"
2018-02-21 19:36:38 +08:00
#include "base/enums.h"
#include "base/theme.h"
2019-09-18 18:02:37 +08:00
#include "base/style.h"
2018-02-21 19:36:38 +08:00
#include "base/widget.h"
#include "common/utils.h"
2018-03-18 11:29:31 +08:00
#include "xml_theme_gen.h"
2018-02-21 19:36:38 +08:00
#include "xml/xml_parser.h"
#include "tkc/color_parser.h"
2020-07-08 16:39:01 +08:00
#include "tkc/buffer.h"
2018-08-24 07:45:37 +08:00
#include "base/assets_manager.h"
2018-02-21 19:36:38 +08:00
typedef struct _xml_builder_t {
XmlBuilder builder;
ThemeGen gen;
Style widget_style;
Style share_style;
2018-03-31 13:48:18 +08:00
uint16_t level;
2018-07-17 11:27:14 +08:00
string style_name;
2018-06-25 17:27:17 +08:00
string widget_type;
2018-02-21 19:36:38 +08:00
} xml_builder_t;
static void xml_gen_style(xml_builder_t* b, Style& s, const char** attrs) {
2019-09-18 18:02:37 +08:00
value_t v;
uint32_t i = 0;
2019-09-18 18:02:37 +08:00
value_set_int(&v, 0);
while (attrs[i]) {
const char* name = attrs[i];
const char* value = attrs[i + 1];
2019-09-18 18:02:37 +08:00
ENSURE(style_normalize_value(name, value, &v) == RET_OK);
if (strcmp(name, "name") != 0) {
if (v.type == VALUE_TYPE_STRING) {
s.AddString(name, value_str(&v));
} else {
s.AddInt(name, value_int(&v));
}
}
2020-10-18 12:17:55 +08:00
value_reset(&v);
i += 2;
}
}
2018-03-31 13:48:18 +08:00
static void xml_gen_on_widget(xml_builder_t* b, const char* tag, const char** attrs) {
b->widget_style.Reset();
xml_gen_style(b, b->widget_style, attrs);
2018-06-25 17:27:17 +08:00
b->widget_type = tag;
2018-07-17 11:27:14 +08:00
b->style_name = TK_DEFAULT_STYLE;
2018-03-31 13:48:18 +08:00
}
static void xml_gen_on_style(xml_builder_t* b, const char* tag, const char** attrs) {
2018-02-21 19:36:38 +08:00
uint32_t i = 0;
2018-07-17 11:27:14 +08:00
b->style_name = TK_DEFAULT_STYLE;
2018-02-21 19:36:38 +08:00
2018-03-31 13:48:18 +08:00
while (attrs[i]) {
const char* name = attrs[i];
const char* value = attrs[i + 1];
2018-02-21 19:36:38 +08:00
if (strcmp(name, "name") == 0) {
2018-07-17 11:27:14 +08:00
b->style_name = value;
2018-03-31 13:48:18 +08:00
}
2018-03-31 13:48:18 +08:00
i += 2;
}
b->share_style.Reset();
xml_gen_style(b, b->share_style, attrs);
2018-03-31 13:48:18 +08:00
}
2018-02-21 19:36:38 +08:00
2018-03-31 13:48:18 +08:00
static void xml_gen_on_state(xml_builder_t* b, const char* tag, const char** attrs) {
2018-12-25 15:33:44 +08:00
const char* state = tag;
Style s(b->widget_type, b->style_name, state);
2018-02-21 19:36:38 +08:00
s.Merge(b->widget_style);
s.Merge(b->share_style);
xml_gen_style(b, s, attrs);
2018-02-21 19:36:38 +08:00
b->gen.AddStyle(s);
2018-03-31 13:48:18 +08:00
}
static void xml_gen_on_start(XmlBuilder* thiz, const char* tag, const char** attrs) {
xml_builder_t* b = (xml_builder_t*)thiz;
if (b->level == 0) {
xml_gen_on_widget(b, tag, attrs);
} else if (b->level == 1) {
xml_gen_on_style(b, tag, attrs);
2018-03-31 13:48:18 +08:00
} else {
xml_gen_on_state(b, tag, attrs);
2018-03-31 13:48:18 +08:00
}
b->level++;
2018-02-21 19:36:38 +08:00
return;
}
static void xml_gen_on_end(XmlBuilder* thiz, const char* tag) {
(void)thiz;
(void)tag;
2018-03-31 13:48:18 +08:00
xml_builder_t* b = (xml_builder_t*)thiz;
b->level--;
2018-02-21 19:36:38 +08:00
return;
}
static void xml_gen_on_text(XmlBuilder* thiz, const char* text, size_t length) {
(void)thiz;
(void)text;
(void)length;
return;
}
static void xml_gen_on_comment(XmlBuilder* thiz, const char* text, size_t length) {
(void)thiz;
(void)text;
(void)length;
return;
}
static void xml_gen_on_pi(XmlBuilder* thiz, const char* tag, const char** attrs) {
(void)thiz;
(void)tag;
(void)attrs;
return;
}
static void xml_gen_on_error(XmlBuilder* thiz, int line, int row, const char* message) {
(void)thiz;
printf("parse error: %d:%d %s\n", line, row, message);
return;
}
static void xml_gen_destroy(XmlBuilder* thiz) {
(void)thiz;
return;
}
static XmlBuilder* builder_init(xml_builder_t& b) {
b.builder.on_start = xml_gen_on_start;
b.builder.on_end = xml_gen_on_end;
b.builder.on_text = xml_gen_on_text;
b.builder.on_error = xml_gen_on_error;
b.builder.on_comment = xml_gen_on_comment;
b.builder.on_pi = xml_gen_on_pi;
b.builder.destroy = xml_gen_destroy;
b.level = 0;
2018-07-17 11:27:14 +08:00
b.style_name = TK_DEFAULT_STYLE;
2018-06-25 17:27:17 +08:00
b.widget_type = "";
2018-02-21 19:36:38 +08:00
return &(b.builder);
}
uint32_t xml_gen_buff(const char* xml, uint8_t* output, uint32_t max_size) {
xml_builder_t b;
return_value_if_fail(xml != NULL && output != NULL, 0);
XmlParser* parser = xml_parser_create();
xml_parser_set_builder(parser, builder_init(b));
xml_parser_parse(parser, xml, strlen(xml));
2020-07-08 16:39:01 +08:00
wbuffer_t wbuffer;
wbuffer_init(&wbuffer, output, max_size);
2018-02-21 19:36:38 +08:00
2020-10-18 12:17:55 +08:00
b.gen.Output(&wbuffer);
2018-02-21 19:36:38 +08:00
2020-07-08 16:39:01 +08:00
wbuffer_deinit(&wbuffer);
2018-02-21 19:36:38 +08:00
xml_parser_destroy(parser);
2020-07-08 16:39:01 +08:00
return 0;
2018-02-21 19:36:38 +08:00
}
2020-03-23 12:16:07 +08:00
bool xml_gen(const char* input_file, const char* output_file, const char* theme,
bool_t output_bin) {
2018-02-21 19:36:38 +08:00
xml_builder_t b;
2020-07-08 16:39:01 +08:00
wbuffer_t wbuffer;
2018-02-21 19:36:38 +08:00
return_value_if_fail(input_file != NULL && output_file != NULL, false);
2020-07-08 16:39:01 +08:00
wbuffer_init_extendable(&wbuffer);
2018-02-21 19:36:38 +08:00
XmlParser* parser = xml_parser_create();
xml_parser_set_builder(parser, builder_init(b));
xml_parser_parse_file(parser, input_file);
2020-07-08 16:39:01 +08:00
if (b.gen.Output(&wbuffer) == RET_OK) {
if (output_bin) {
write_file(output_file, wbuffer.data, wbuffer.cursor);
} else {
output_res_c_source(output_file, theme, ASSET_TYPE_STYLE, 0, wbuffer.data, wbuffer.cursor);
}
}
2018-02-21 19:36:38 +08:00
2020-07-08 16:39:01 +08:00
wbuffer_deinit(&wbuffer);
2018-02-21 19:36:38 +08:00
xml_parser_destroy(parser);
return true;
}