Skip to content

Commit 810acc1

Browse files
committed
feat(cache): drop dependency on ffi
1 parent da29501 commit 810acc1

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

lua/lazy/core/cache.lua

+9-8
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ if type(package.loaded["vim.cache"]) == "table" then
77
return package.loaded["vim.cache"]
88
end
99

10-
local ffi = require("ffi")
1110
local uv = vim.loop
1211

1312
local M = {}
@@ -20,7 +19,7 @@ local M = {}
2019
---@field patterns? string[] Paterns to use (defaults to `{"/init.lua", ".lua"}`)
2120
---@field paths? string[] Extra paths to search for modname
2221

23-
M.VERSION = 2
22+
M.VERSION = 3
2423
M.path = vim.fn.stdpath("cache") .. "/luac"
2524
M.enabled = false
2625
---@type table<string, {total:number, time:number, [string]:number?}?>
@@ -114,7 +113,7 @@ function Cache.write(name, entry)
114113
entry.hash.mtime.sec,
115114
entry.hash.mtime.nsec,
116115
}
117-
uv.fs_write(f, ffi.string(ffi.new("const uint32_t[4]", header), 16))
116+
uv.fs_write(f, table.concat(header, ",") .. "\0")
118117
uv.fs_write(f, entry.chunk)
119118
uv.fs_close(f)
120119
end
@@ -132,15 +131,17 @@ function Cache.read(name)
132131
local data = uv.fs_read(f, hash.size, 0) --[[@as string]]
133132
uv.fs_close(f)
134133

134+
local zero = data:find("\0", 1, true)
135+
135136
---@type integer[]|{[0]:integer}
136-
local header = ffi.cast("uint32_t*", ffi.new("const char[16]", data:sub(1, 16)))
137-
if header[0] ~= M.VERSION then
137+
local header = vim.split(data:sub(1, zero - 1), ",")
138+
if tonumber(header[1]) ~= M.VERSION then
138139
return
139140
end
140-
M.track("read", start)
141+
M._track("read", start)
141142
return {
142-
hash = { size = header[1], mtime = { sec = header[2], nsec = header[3] } },
143-
chunk = data:sub(16 + 1),
143+
hash = { size = tonumber(header[2]), mtime = { sec = tonumber(header[3]), nsec = tonumber(header[4]) } },
144+
chunk = data:sub(zero + 1),
144145
}
145146
end
146147
M._track("read", start)

0 commit comments

Comments
 (0)