Move some of the iteration in to loa and access the values by the index
to reduce the number of loops we need todo to get items into teh results
buffer.
Currently the flow is:
1) Filter and sort the candidates in rust
2) Convert to a string and pass to lua
3) Split the string and add them as lines in a buffer in lua
Now the flow is:
1) Filter and sort the candidates in rust
2) Loop over an iterator in lua
3) Pass each item to lua as a pointer by the index
This removes quite a bit of the work that is needed to get the data into
lua as a table. We are first removing the loop that will join the
results vector into one string. Then we will remove the copy of this
string into lua. We will then finally remove the loop to split the
string and create a table from it in lua. All of this ends up in a 12%
speed up.
Output for `./scripts/bench 0.x`
Benchmark 1: HEAD
Time (mean ± σ): 2.667 s ± 0.065 s [User: 8.537 s, System: 1.420 s]
Range (min … max): 2.588 s … 2.767 s 10 runs
Benchmark 2: 0.x
Time (mean ± σ): 2.337 s ± 0.150 s [User: 9.564 s, System: 1.648 s]
Range (min … max): 2.161 s … 2.529 s 10 runs
Summary
HEAD ran
1.14 ± 0.08 times faster than 0.x
-------------------------------------
The percentage difference is -12.00%
-------------------------------------
46 lines
1.3 KiB
Lua
46 lines
1.3 KiB
Lua
local libivy = require "ivy.libivy"
|
|
|
|
it("should run a simple match", function(t)
|
|
local score = libivy.ivy_match("term", "I am a serch term")
|
|
|
|
if score <= 0 then
|
|
t.error("Score should not be less than 0 found " .. score)
|
|
end
|
|
end)
|
|
|
|
it("should find a dot file", function(t)
|
|
local current_dir = libivy.ivy_cwd()
|
|
local results = libivy.ivy_files(".github/workflows/ci.yml", current_dir)
|
|
|
|
if results.length ~= 2 then
|
|
t.error("Incorrect number of results found " .. results.length)
|
|
end
|
|
|
|
if results[2].content ~= ".github/workflows/ci.yml" then
|
|
t.error("Invalid matches: " .. results[2].content)
|
|
end
|
|
end)
|
|
|
|
it("will allow you to access the length via the metatable", function(t)
|
|
local current_dir = libivy.ivy_cwd()
|
|
local results = libivy.ivy_files(".github/workflows/ci.yml", current_dir)
|
|
|
|
local mt = getmetatable(results)
|
|
|
|
if results.length ~= mt.__len(results) then
|
|
t.error "The `length` property does not match the __len metamethod"
|
|
end
|
|
end)
|
|
|
|
it("will create an iterator", function(t)
|
|
local iter = libivy.ivy_files(".github/workflows/ci.yml", libivy.ivy_cwd())
|
|
local mt = getmetatable(iter)
|
|
|
|
if type(mt["__index"]) ~= "function" then
|
|
t.error "The iterator does not have an __index metamethod"
|
|
end
|
|
|
|
if type(mt["__len"]) ~= "function" then
|
|
t.error "The iterator does not have an __len metamethod"
|
|
end
|
|
end)
|