2021-06-11 20:47:29 +02:00
|
|
|
-- Localize globals
|
|
|
|
local math, modlib, pairs, setmetatable, string, table = math, modlib, pairs, setmetatable, string, table
|
|
|
|
|
2021-06-17 19:45:08 +02:00
|
|
|
-- Set environment
|
|
|
|
local _ENV = {}
|
|
|
|
setfenv(1, _ENV)
|
|
|
|
|
2020-12-18 12:27:19 +01:00
|
|
|
function upper_first(text) return text:sub(1, 1):upper() .. text:sub(2) end
|
|
|
|
|
|
|
|
function lower_first(text) return text:sub(1, 1):lower() .. text:sub(2) end
|
|
|
|
|
2022-07-05 11:34:58 +02:00
|
|
|
function starts_with(text, prefix) return text:sub(1, #prefix) == prefix end
|
2020-12-18 12:27:19 +01:00
|
|
|
|
2022-07-05 11:34:58 +02:00
|
|
|
function ends_with(text, suffix) return text:sub(-#suffix) == suffix end
|
2020-12-18 12:27:19 +01:00
|
|
|
|
2022-09-09 14:22:25 +02:00
|
|
|
function contains(str, substr, plain)
|
|
|
|
return not not str:find(substr, 1, plain == nil and true or plain)
|
|
|
|
end
|
|
|
|
|
2021-08-29 15:41:51 +02:00
|
|
|
function trim_spacing(text)
|
2021-09-18 14:08:09 +02:00
|
|
|
return text:match"^%s*(.-)%s*$"
|
2021-08-29 15:41:51 +02:00
|
|
|
end
|
|
|
|
|
2021-03-04 19:45:34 +01:00
|
|
|
local inputstream_metatable = {
|
2022-07-14 15:51:36 +02:00
|
|
|
__index = {
|
|
|
|
read = function(self, count)
|
|
|
|
local cursor = self.cursor + 1
|
|
|
|
self.cursor = self.cursor + count
|
|
|
|
local text = self.text:sub(cursor, self.cursor)
|
|
|
|
return text ~= "" and text or nil
|
|
|
|
end,
|
|
|
|
seek = function(self) return self.cursor end
|
|
|
|
}
|
2021-03-04 19:45:34 +01:00
|
|
|
}
|
2022-07-14 15:51:36 +02:00
|
|
|
--> inputstream "handle"; only allows reading characters (given a count), seeking does not accept any arguments
|
2021-03-04 19:45:34 +01:00
|
|
|
function inputstream(text)
|
|
|
|
return setmetatable({text = text, cursor = 0}, inputstream_metatable)
|
|
|
|
end
|
|
|
|
|
2021-03-05 11:05:47 +01:00
|
|
|
function hexdump(text)
|
|
|
|
local dump = {}
|
|
|
|
for index = 1, text:len() do
|
|
|
|
dump[index] = ("%02X"):format(text:byte(index))
|
|
|
|
end
|
|
|
|
return table.concat(dump)
|
|
|
|
end
|
2021-03-04 19:45:34 +01:00
|
|
|
|
2020-12-18 12:27:19 +01:00
|
|
|
function split(text, delimiter, limit, is_regex)
|
|
|
|
limit = limit or math.huge
|
|
|
|
local no_regex = not is_regex
|
|
|
|
local parts = {}
|
|
|
|
local occurences = 1
|
|
|
|
local last_index = 1
|
|
|
|
local index = string.find(text, delimiter, 1, no_regex)
|
|
|
|
while index and occurences < limit do
|
|
|
|
table.insert(parts, string.sub(text, last_index, index - 1))
|
|
|
|
last_index = index + string.len(delimiter)
|
|
|
|
index = string.find(text, delimiter, index + string.len(delimiter), no_regex)
|
|
|
|
occurences = occurences + 1
|
|
|
|
end
|
|
|
|
table.insert(parts, string.sub(text, last_index))
|
|
|
|
return parts
|
2020-02-09 01:39:54 +01:00
|
|
|
end
|
|
|
|
|
2020-12-18 12:27:19 +01:00
|
|
|
function split_without_limit(text, delimiter, is_regex) return split(text, delimiter, nil, is_regex) end
|
2020-02-09 01:39:54 +01:00
|
|
|
|
2020-06-02 23:07:33 +02:00
|
|
|
split_unlimited = split_without_limit
|
|
|
|
|
2020-12-18 12:27:19 +01:00
|
|
|
function split_lines(text, limit) return modlib.text.split(text, "\r?\n", limit, true) end
|
|
|
|
|
|
|
|
function lines(text) return text:gmatch"[^\r\n]*" end
|
2020-06-02 23:07:33 +02:00
|
|
|
|
2020-12-18 12:27:19 +01:00
|
|
|
local zero = string.byte"0"
|
|
|
|
local nine = string.byte"9"
|
|
|
|
local letter_a = string.byte"A"
|
|
|
|
local letter_f = string.byte"F"
|
2020-02-09 01:39:54 +01:00
|
|
|
|
|
|
|
function is_hexadecimal(byte)
|
2020-12-18 12:27:19 +01:00
|
|
|
return byte >= zero and byte <= nine or byte >= letter_a and byte <= letter_f
|
2020-02-09 01:39:54 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
magic_chars = {
|
2020-12-18 12:27:19 +01:00
|
|
|
"%",
|
|
|
|
"(",
|
|
|
|
")",
|
|
|
|
".",
|
|
|
|
"+",
|
|
|
|
"-",
|
|
|
|
"*",
|
|
|
|
"?",
|
|
|
|
"[",
|
|
|
|
"^",
|
|
|
|
"$"
|
2020-02-09 01:39:54 +01:00
|
|
|
}
|
2020-12-18 12:27:19 +01:00
|
|
|
local magic_charset = {}
|
|
|
|
for _, magic_char in pairs(magic_chars) do table.insert(magic_charset, "%" .. magic_char) end
|
|
|
|
magic_charset = "[" .. table.concat(magic_charset) .. "]"
|
2020-02-09 01:39:54 +01:00
|
|
|
|
2020-12-18 12:27:19 +01:00
|
|
|
function escape_magic_chars(text) return text:gsub("(" .. magic_charset .. ")", "%%%1") end
|
2020-02-09 01:39:54 +01:00
|
|
|
|
2021-12-30 17:12:51 +01:00
|
|
|
local keywords = modlib.table.set{"and", "break", "do", "else", "elseif", "end", "false", "for", "function", "if", "in", "local", "nil", "not", "or", "repeat", "return", "then", "true", "until", "while"}
|
2022-01-04 13:55:29 +01:00
|
|
|
keywords["goto"] = true -- Lua 5.2 (LuaJIT) support
|
2021-12-30 17:12:51 +01:00
|
|
|
|
|
|
|
function is_keyword(text)
|
|
|
|
return keywords[text]
|
|
|
|
end
|
|
|
|
|
|
|
|
function is_identifier(text)
|
2022-01-04 13:44:01 +01:00
|
|
|
return (not keywords[text]) and text:match"^[A-Za-z_][A-Za-z%d_]*$"
|
2021-12-30 17:12:51 +01:00
|
|
|
end
|
|
|
|
|
2021-06-17 19:45:08 +02:00
|
|
|
-- Export environment
|
2022-07-05 11:34:58 +02:00
|
|
|
return _ENV
|