summaryrefslogtreecommitdiff
path: root/core/src
diff options
context:
space:
mode:
authorruki <[email protected]>2026-01-15 22:43:56 +0800
committerruki <[email protected]>2026-01-15 22:43:56 +0800
commit5e6df0bcfe9768e84545cd94466973435268aef1 (patch)
tree08214d8941b389afde8b72edc99835b0d5d588ef /core/src
parent819fce6bdf23e654d839f2aa566d822653ea6689 (diff)
add charset.c
Diffstat (limited to 'core/src')
-rw-r--r--core/src/xmake/io/file_convert.c61
-rw-r--r--core/src/xmake/string/convert.c58
-rw-r--r--core/src/xmake/utils/charset.c82
-rw-r--r--core/src/xmake/utils/charset.h54
-rw-r--r--core/src/xmake/utils/prefix.h29
-rwxr-xr-xcore/src/xmake/xmake.sh1
6 files changed, 172 insertions, 113 deletions
diff --git a/core/src/xmake/io/file_convert.c b/core/src/xmake/io/file_convert.c
index b1837c8d3..6901a9a08 100644
--- a/core/src/xmake/io/file_convert.c
+++ b/core/src/xmake/io/file_convert.c
@@ -29,62 +29,7 @@
* includes
*/
#include "prefix.h"
-
-/* //////////////////////////////////////////////////////////////////////////////////////
- * globals
- */
-
-// the charset entry type
-typedef struct __xm_charset_entry_t {
- // the charset type
- tb_size_t type;
-
- // the charset name
- tb_char_t const *name;
-} xm_charset_entry_t, *xm_charset_entry_ref_t;
-
-// the charsets, @note: type & name is sorted
-static xm_charset_entry_t g_charsets[] = {
- { TB_CHARSET_TYPE_ANSI, "ansi" },
- { TB_CHARSET_TYPE_ASCII, "ascii" },
- { TB_CHARSET_TYPE_GB2312, "gb2312" },
- { TB_CHARSET_TYPE_GBK, "gbk" },
- { TB_CHARSET_TYPE_ISO8859, "iso8859" },
- { TB_CHARSET_TYPE_UCS2 | TB_CHARSET_TYPE_NE, "ucs2" },
- { TB_CHARSET_TYPE_UCS4 | TB_CHARSET_TYPE_NE, "ucs4" },
- { TB_CHARSET_TYPE_UTF16 | TB_CHARSET_TYPE_NE, "utf16" },
- { TB_CHARSET_TYPE_UTF16 | TB_CHARSET_TYPE_BE, "utf16be" },
- { TB_CHARSET_TYPE_UTF16 | TB_CHARSET_TYPE_NE, "utf16bom" },
- { TB_CHARSET_TYPE_UTF16 | TB_CHARSET_TYPE_LE, "utf16le" },
- { TB_CHARSET_TYPE_UTF16 | TB_CHARSET_TYPE_LE, "utf16lebom" },
- { TB_CHARSET_TYPE_UTF32 | TB_CHARSET_TYPE_NE, "utf32" },
- { TB_CHARSET_TYPE_UTF32 | TB_CHARSET_TYPE_BE, "utf32be" },
- { TB_CHARSET_TYPE_UTF32 | TB_CHARSET_TYPE_LE, "utf32le" },
- { TB_CHARSET_TYPE_UTF8, "utf8" },
- { TB_CHARSET_TYPE_UTF8, "utf8bom" },
-};
-
-/* //////////////////////////////////////////////////////////////////////////////////////
- * finder
- */
-static tb_long_t xm_io_charset_comp_by_name(tb_iterator_ref_t iterator, tb_cpointer_t item, tb_cpointer_t name) {
- return tb_stricmp(((xm_charset_entry_ref_t)item)->name, (tb_char_t const *)name);
-}
-static xm_charset_entry_ref_t xm_io_charset_find_by_name(tb_char_t const *name) {
- // make iterator
- tb_array_iterator_t array_iterator;
- tb_iterator_ref_t iterator =
- tb_array_iterator_init_mem(&array_iterator, g_charsets, tb_arrayn(g_charsets), sizeof(xm_charset_entry_t));
- tb_assert_and_check_return_val(iterator, tb_null);
-
- // find it by the binary search
- tb_size_t itor = tb_binary_find_all_if(iterator, xm_io_charset_comp_by_name, name);
- if (itor != tb_iterator_tail(iterator)) {
- return (xm_charset_entry_ref_t)tb_iterator_item(iterator, itor);
- } else {
- return tb_null;
- }
-}
+#include "../utils/charset.h"
/* //////////////////////////////////////////////////////////////////////////////////////
* implementation
@@ -117,13 +62,13 @@ tb_int_t xm_io_file_convert(lua_State *lua) {
// get charset type
tb_size_t ftype = TB_CHARSET_TYPE_UTF8;
tb_size_t ttype = TB_CHARSET_TYPE_UTF8;
- xm_charset_entry_ref_t fentry = xm_io_charset_find_by_name(fname);
+ xm_charset_entry_ref_t fentry = xm_charset_find_by_name(fname);
if (fentry) ftype = fentry->type;
else {
lua_pushfstring(lua, "invalid charset: %s", fname);
lua_error(lua);
}
- xm_charset_entry_ref_t tentry = xm_io_charset_find_by_name(tname);
+ xm_charset_entry_ref_t tentry = xm_charset_find_by_name(tname);
if (tentry) ttype = tentry->type;
else {
lua_pushfstring(lua, "invalid charset: %s", tname);
diff --git a/core/src/xmake/string/convert.c b/core/src/xmake/string/convert.c
index b3adaf8b8..3b67cda30 100644
--- a/core/src/xmake/string/convert.c
+++ b/core/src/xmake/string/convert.c
@@ -29,59 +29,7 @@
* includes
*/
#include "prefix.h"
-
-/* //////////////////////////////////////////////////////////////////////////////////////
- * globals
- */
-
-// the charset entry type
-typedef struct __xm_charset_entry_t {
- // the charset type
- tb_size_t type;
-
- // the charset name
- tb_char_t const *name;
-} xm_charset_entry_t, *xm_charset_entry_ref_t;
-
-// the charsets, @note: type & name is sorted
-static xm_charset_entry_t g_charsets[] = {
- { TB_CHARSET_TYPE_ANSI, "ansi" },
- { TB_CHARSET_TYPE_ASCII, "ascii" },
- { TB_CHARSET_TYPE_GB2312, "gb2312" },
- { TB_CHARSET_TYPE_GBK, "gbk" },
- { TB_CHARSET_TYPE_ISO8859, "iso8859" },
- { TB_CHARSET_TYPE_UCS2 | TB_CHARSET_TYPE_NE, "ucs2" },
- { TB_CHARSET_TYPE_UCS4 | TB_CHARSET_TYPE_NE, "ucs4" },
- { TB_CHARSET_TYPE_UTF16 | TB_CHARSET_TYPE_NE, "utf16" },
- { TB_CHARSET_TYPE_UTF16 | TB_CHARSET_TYPE_BE, "utf16be" },
- { TB_CHARSET_TYPE_UTF16 | TB_CHARSET_TYPE_LE, "utf16le" },
- { TB_CHARSET_TYPE_UTF32 | TB_CHARSET_TYPE_NE, "utf32" },
- { TB_CHARSET_TYPE_UTF32 | TB_CHARSET_TYPE_BE, "utf32be" },
- { TB_CHARSET_TYPE_UTF32 | TB_CHARSET_TYPE_LE, "utf32le" },
- { TB_CHARSET_TYPE_UTF8, "utf8" },
-};
-
-/* //////////////////////////////////////////////////////////////////////////////////////
- * finder
- */
-static tb_long_t xm_string_charset_comp_by_name(tb_iterator_ref_t iterator, tb_cpointer_t item, tb_cpointer_t name) {
- return tb_stricmp(((xm_charset_entry_ref_t)item)->name, (tb_char_t const *)name);
-}
-static xm_charset_entry_ref_t xm_string_charset_find_by_name(tb_char_t const *name) {
- // make iterator
- tb_array_iterator_t array_iterator;
- tb_iterator_ref_t iterator =
- tb_array_iterator_init_mem(&array_iterator, g_charsets, tb_arrayn(g_charsets), sizeof(xm_charset_entry_t));
- tb_assert_and_check_return_val(iterator, tb_null);
-
- // find it by the binary search
- tb_size_t itor = tb_binary_find_all_if(iterator, xm_string_charset_comp_by_name, name);
- if (itor != tb_iterator_tail(iterator)) {
- return (xm_charset_entry_ref_t)tb_iterator_item(iterator, itor);
- } else {
- return tb_null;
- }
-}
+#include "../utils/charset.h"
/* //////////////////////////////////////////////////////////////////////////////////////
* implementation
@@ -109,8 +57,8 @@ tb_int_t xm_string_convert(lua_State *lua) {
tb_check_return_val(src_cstr && ftype_cstr && ttype_cstr, 0);
// find charsets
- xm_charset_entry_ref_t fcharset = xm_string_charset_find_by_name(ftype_cstr);
- xm_charset_entry_ref_t tcharset = xm_string_charset_find_by_name(ttype_cstr);
+ xm_charset_entry_ref_t fcharset = xm_charset_find_by_name(ftype_cstr);
+ xm_charset_entry_ref_t tcharset = xm_charset_find_by_name(ttype_cstr);
luaL_argcheck(lua, fcharset, 2, "charset not found");
luaL_argcheck(lua, tcharset, 3, "charset not found");
tb_check_return_val(fcharset && tcharset, 0);
diff --git a/core/src/xmake/utils/charset.c b/core/src/xmake/utils/charset.c
new file mode 100644
index 000000000..0a93d9c9a
--- /dev/null
+++ b/core/src/xmake/utils/charset.c
@@ -0,0 +1,82 @@
+/*!A cross-platform build utility based on Lua
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ * Copyright (C) 2015-present, Xmake Open Source Community.
+ *
+ * @author ruki
+ * @file charset.c
+ *
+ */
+
+/* //////////////////////////////////////////////////////////////////////////////////////
+ * trace
+ */
+#define TB_TRACE_MODULE_NAME "charset"
+#define TB_TRACE_MODULE_DEBUG (0)
+
+/* //////////////////////////////////////////////////////////////////////////////////////
+ * includes
+ */
+#include "charset.h"
+
+/* //////////////////////////////////////////////////////////////////////////////////////
+ * globals
+ */
+
+// the charsets, @note: type & name is sorted
+static xm_charset_entry_t g_charsets[] = {
+ { TB_CHARSET_TYPE_ANSI, "ansi" },
+ { TB_CHARSET_TYPE_ASCII, "ascii" },
+ { TB_CHARSET_TYPE_GB2312, "gb2312" },
+ { TB_CHARSET_TYPE_GBK, "gbk" },
+ { TB_CHARSET_TYPE_ISO8859, "iso8859" },
+ { TB_CHARSET_TYPE_UCS2 | TB_CHARSET_TYPE_NE, "ucs2" },
+ { TB_CHARSET_TYPE_UCS4 | TB_CHARSET_TYPE_NE, "ucs4" },
+ { TB_CHARSET_TYPE_UTF16 | TB_CHARSET_TYPE_NE, "utf16" },
+ { TB_CHARSET_TYPE_UTF16 | TB_CHARSET_TYPE_BE, "utf16be" },
+ { TB_CHARSET_TYPE_UTF16 | TB_CHARSET_TYPE_NE, "utf16bom" },
+ { TB_CHARSET_TYPE_UTF16 | TB_CHARSET_TYPE_LE, "utf16le" },
+ { TB_CHARSET_TYPE_UTF16 | TB_CHARSET_TYPE_LE, "utf16lebom" },
+ { TB_CHARSET_TYPE_UTF32 | TB_CHARSET_TYPE_NE, "utf32" },
+ { TB_CHARSET_TYPE_UTF32 | TB_CHARSET_TYPE_BE, "utf32be" },
+ { TB_CHARSET_TYPE_UTF32 | TB_CHARSET_TYPE_LE, "utf32le" },
+ { TB_CHARSET_TYPE_UTF8, "utf8" },
+ { TB_CHARSET_TYPE_UTF8, "utf8bom" },
+};
+
+/* //////////////////////////////////////////////////////////////////////////////////////
+ * finder
+ */
+static tb_long_t xm_charset_comp_by_name(tb_iterator_ref_t iterator, tb_cpointer_t item, tb_cpointer_t name) {
+ return tb_stricmp(((xm_charset_entry_ref_t)item)->name, (tb_char_t const *)name);
+}
+
+/* //////////////////////////////////////////////////////////////////////////////////////
+ * implementation
+ */
+xm_charset_entry_ref_t xm_charset_find_by_name(tb_char_t const *name) {
+ // make iterator
+ tb_array_iterator_t array_iterator;
+ tb_iterator_ref_t iterator =
+ tb_array_iterator_init_mem(&array_iterator, g_charsets, tb_arrayn(g_charsets), sizeof(xm_charset_entry_t));
+ tb_assert_and_check_return_val(iterator, tb_null);
+
+ // find it by the binary search
+ tb_size_t itor = tb_binary_find_all_if(iterator, xm_charset_comp_by_name, name);
+ if (itor != tb_iterator_tail(iterator)) {
+ return (xm_charset_entry_ref_t)tb_iterator_item(iterator, itor);
+ } else {
+ return tb_null;
+ }
+}
diff --git a/core/src/xmake/utils/charset.h b/core/src/xmake/utils/charset.h
new file mode 100644
index 000000000..f23febb94
--- /dev/null
+++ b/core/src/xmake/utils/charset.h
@@ -0,0 +1,54 @@
+/*!A cross-platform build utility based on Lua
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ * Copyright (C) 2015-present, Xmake Open Source Community.
+ *
+ * @author ruki
+ * @file charset.h
+ *
+ */
+#ifndef XM_UTILS_CHARSET_H
+#define XM_UTILS_CHARSET_H
+
+/* //////////////////////////////////////////////////////////////////////////////////////
+ * includes
+ */
+#include "prefix.h"
+
+/* //////////////////////////////////////////////////////////////////////////////////////
+ * types
+ */
+
+// the charset entry type
+typedef struct __xm_charset_entry_t {
+ // the charset type
+ tb_size_t type;
+
+ // the charset name
+ tb_char_t const *name;
+} xm_charset_entry_t, *xm_charset_entry_ref_t;
+
+/* //////////////////////////////////////////////////////////////////////////////////////
+ * interfaces
+ */
+
+/* find charset by name
+ *
+ * @param name the charset name
+ *
+ * @return the charset entry
+ */
+xm_charset_entry_ref_t xm_charset_find_by_name(tb_char_t const *name);
+
+#endif
diff --git a/core/src/xmake/utils/prefix.h b/core/src/xmake/utils/prefix.h
new file mode 100644
index 000000000..a9f509e72
--- /dev/null
+++ b/core/src/xmake/utils/prefix.h
@@ -0,0 +1,29 @@
+/*!A cross-platform build utility based on Lua
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ * Copyright (C) 2015-present, Xmake Open Source Community.
+ *
+ * @author ruki
+ * @file prefix.h
+ *
+ */
+#ifndef XM_UTILS_PREFIX_H
+#define XM_UTILS_PREFIX_H
+
+/* //////////////////////////////////////////////////////////////////////////////////////
+ * includes
+ */
+#include "../prefix.h"
+
+#endif
diff --git a/core/src/xmake/xmake.sh b/core/src/xmake/xmake.sh
index 8a8f1224c..291001306 100755
--- a/core/src/xmake/xmake.sh
+++ b/core/src/xmake/xmake.sh
@@ -70,6 +70,7 @@ target "xmake"
add_files "sandbox/*.c"
add_files "semver/*.c"
add_files "string/*.c"
+ add_files "utils/*.c"
add_files "tty/*.c"
add_files "binutils/*.c"
add_files "binutils/coff/*.c"