-
Notifications
You must be signed in to change notification settings - Fork 1
/
xtf8.lua
156 lines (127 loc) · 4.29 KB
/
xtf8.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
--[[
-- SPDX-License-Identifier: MIT
--
-- Copyright (c) 2022-2023 Aaron LI
--
-- Permission is hereby granted, free of charge, to any person obtaining
-- a copy of this software and associated documentation files (the
-- "Software"), to deal in the Software without restriction, including
-- without limitation the rights to use, copy, modify, merge, publish,
-- distribute, sublicense, and/or sell copies of the Software, and to
-- permit persons to whom the Software is furnished to do so, subject
-- to the following conditions:
--
-- The above copyright notice and this permission notice shall be
-- included in all copies or substantial portions of the Software.
--
-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
-- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
-- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
-- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
-- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
--]]
--[[
XTF8 LuaJIT FFI interface.
API
---
encoded = xtf8.encode(data, err?)
decoded = xtf8.decode(data, err?)
The 'err' parameter is optional, and can have the following values:
- xtf8.ERR_REPLACE : replace conflicting characters (default)
- xtf8.ERR_ABORT : terminate the encoding process
Usage
-----
local xtf8 = require("xtf8")
local encoded = xtf8.encode(data)
local decoded = xtf8.decode(encoded)
assert(decoded == data)
--]]
local ffi = require("ffi")
local C = ffi.C
-- Load library by searching 'package.cpath'.
-- Credit: https://github.com/api7/lua-resty-radixtree (lib/resty/radixtree.lua)
local function load_shared_lib(libname)
local cpath = package.cpath
local tried_paths = {}
local i = 1
for path in string.gmatch(cpath, "[^;]+") do
local fpath = string.match(path, "(.*/)")
fpath = fpath .. libname
-- The only way to know if a file exist is trying to open it.
local f = io.open(fpath)
if f then
io.close(f)
return ffi.load(fpath)
end
tried_paths[i] = fpath
i = i + 1
end
return nil, tried_paths
end
local libname = "libxtf8.so"
local xtf8, tried_paths = load_shared_lib(libname)
if not xtf8 then
error("cannot find library [" .. libname .. "] at paths:\n" ..
table.concat(tried_paths, "\n"))
end
ffi.cdef[[
enum {
XTF8_ERR_REPLACE, /* replace conflicting characters */
XTF8_ERR_ABORT, /* terminate the encoding process */
};
/*
* NOTE: Cannot convert to 'static const', because it only work for
* integer types up to 32 bits.
* See: https://luajit.org/ext_ffi_semantics.html#status
*/
// #define XTF8_ABORTED (uintptr_t)-1;
uintptr_t xtf8_encode(void *dst, const void *src, size_t len, int error);
uintptr_t xtf8_decode(void *dst, const void *src, size_t len, int error);
]]
-- NOTE: Cannot just use 'ffi.cast("uintptr_t", -1)' because it is undefined.
-- See: https://github.com/LuaJIT/LuaJIT/issues/459
local xtf8_aborted = ffi.cast("uintptr_t", ffi.typeof("int")(-1))
local get_buffer
do
local _buf_type = ffi.typeof("unsigned char[?]")
local _buf_size = 4096
local _buf
function get_buffer(size)
if size > _buf_size then
return ffi.new(_buf_type, size)
end
if not _buf then
_buf = ffi.new(_buf_type, _buf_size)
end
return _buf
end
end
local function xtf8_encode(data, err)
err = err or xtf8.XTF8_ERR_REPLACE
local len = xtf8.xtf8_encode(nil, data, #data, err)
if len == xtf8_aborted then
return nil, "found invalid sequence"
end
local buf = get_buffer(len)
xtf8.xtf8_encode(buf, data, #data, err)
return ffi.string(buf, len)
end
local function xtf8_decode(data, err)
err = err or xtf8.XTF8_ERR_REPLACE
local len = xtf8.xtf8_decode(nil, data, #data, err)
if len == xtf8_aborted then
return nil, "found invalid sequence"
end
local buf = get_buffer(len)
xtf8.xtf8_decode(buf, data, #data, err)
return ffi.string(buf, len)
end
local _M = {
ERR_REPLACE = xtf8.XTF8_ERR_REPLACE,
ERR_ABORT = xtf8.XTF8_ERR_ABORT,
encode = xtf8_encode,
decode = xtf8_decode,
}
return _M