Skip to content

Instantly share code, notes, and snippets.

@MikuAuahDark
Last active August 20, 2020 01:02
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MikuAuahDark/d62ff287d56a8ac402893fd710347ac0 to your computer and use it in GitHub Desktop.
Save MikuAuahDark/d62ff287d56a8ac402893fd710347ac0 to your computer and use it in GitHub Desktop.
LuaJIT io.open monkeypatch in Windows to load UTF-8 filenames
-- io.open patch to allow UTF-8 filenames in Windows
-- Copyright (c) 2020 Miku AuahDark
-- You can use portion of this code or as a whole without my permission.
local ffi = require("ffi")
if ffi.os ~= "Windows" then
-- Not Windows
return
end
-- Safety measures from redefining
do
if pcall(string.dump, io.open) then
error("io.open is patched somewhere, load this at top level of your scripts!")
end
local function index(t, k)
return t[k]
end
if pcall(index, ffi.C, "GetACP") == false then
ffi.cdef[[
uint32_t __stdcall GetACP();
]]
end
end
if ffi.C.GetACP() == 65001 then
-- "Use Unicode UTF-8 for worldwide language support" is ticked.
-- Don't bother patching it.
return
end
ffi.cdef[[
int32_t __stdcall MultiByteToWideChar(
uint32_t CodePage,
uint32_t dwFlags,
const char *lpMultiByteStr,
int32_t cbMultiByte,
wchar_t *lpWideCharStr,
int32_t cchWideChar
);
void *_wfreopen(wchar_t *path, wchar_t *mode, void *file);
]]
local MB_ERR_INVALID_CHARS = 0x8
local function toWideChar(ch)
local size = ffi.C.MultiByteToWideChar(65001, MB_ERR_INVALID_CHARS, ch, #ch, nil, 0)
if size == 0 then
error("invalid character sequence")
end
local buf = ffi.new("wchar_t[?]", size + 1)
if ffi.C.MultiByteToWideChar(65001, MB_ERR_INVALID_CHARS, ch, #ch, buf, size) == 0 then
error("char conversion error")
end
return buf
end
local open = io.open
function io.open(path, mode)
local pathw = toWideChar(path)
local modew = toWideChar(mode)
local file = assert(open("nul", "rb"))
if ffi.C._wfreopen(pathw, modew, file) == nil then
local msg, errno = select(2, file:close())
return nil, path..": "..msg, errno
end
return file
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment