/** * File: main.cc * Author: AWTK Develop Team * Brief: generate str binary data from xml * * Copyright (c) 2018 - 2020 Guangzhou ZHIYUAN Electronics Co.,Ltd. * * 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-05-03 Li XianJing created * */ #include "tkc/mem.h" #include "xml_str_gen.h" #include "tkc/str.h" #include "tkc/fs.h" #include "tkc/path.h" #include "common/utils.h" ret_t gen_one(const char* input_file, const char* output_file, const char* theme, bool_t output_bin) { ret_t ret = RET_OK; if (!xml_to_str_gen(input_file, output_file, theme, output_bin)) { ret = RET_FAIL; GEN_ERROR(input_file); } return ret; } static ret_t gen_folder(const char* in_foldername, const char* out_foldername, const char* theme, bool_t output_bin) { ret_t ret = RET_OK; fs_dir_t* dir = fs_open_dir(os_fs(), in_foldername); fs_item_t item; char in_name[MAX_PATH] = {0}; while (fs_dir_read(dir, &item) != RET_FAIL) { if (item.is_reg_file && case_end_with(item.name, ".xml")) { path_build(in_name, MAX_PATH, in_foldername, item.name, NULL); ret = gen_one(in_name, out_foldername, theme, output_bin); if (ret == RET_FAIL) { break; } } } fs_dir_close(dir); return ret; } int wmain(int argc, wchar_t* argv[]) { bool_t output_bin = argc == 4; platform_prepare(); if (argc < 3) { printf("Usage: %S input outputdir [bin] [theme]\n", argv[0]); return 0; } const char* in_filename = NULL; const char* out_filename = NULL; str_t in_file; str_t out_file; str_t theme_name; str_init(&in_file, 0); str_init(&out_file, 0); str_from_wstr(&in_file, argv[1]); str_from_wstr(&out_file, argv[2]); in_filename = in_file.str; out_filename = out_file.str; str_init(&theme_name, 0); if (argc > 4) { str_from_wstr(&theme_name, argv[4]); } fs_stat_info_t in_stat_info; fs_stat_info_t out_stat_info; fs_stat(os_fs(), in_filename, &in_stat_info); fs_stat(os_fs(), out_filename, &out_stat_info); if (in_stat_info.is_dir == TRUE && out_stat_info.is_dir == TRUE) { gen_folder(in_filename, out_filename, theme_name.str, output_bin); } else if (in_stat_info.is_reg_file == TRUE) { gen_one(in_filename, out_filename, theme_name.str, output_bin); } else { GEN_ERROR(in_filename); } str_reset(&in_file); str_reset(&out_file); str_reset(&theme_name); return 0; } #include "common/main.inc"