mirror of
https://github.com/kristoferssolo/telescope-frecency.nvim.git
synced 2025-10-21 20:10:38 +00:00
* refactor: unite logic for finder & async_finder * chore: fix types * chore: add sleep to show results at first * refactor: fix to find results separatedly * test: remove unnecessary ones and fix others * test: add matrix for 0.9.x & Windows * test: use forked plenary.log for Windows * test: fix to use strptime in Windows * test: run again if segmentation fault in Windows * test: loosen timeout for Perl * test: use the latest plenary.nvim again * chore: fix types * chore: change variable name * feat: watch changes of DB to reload * chore: add comments to steps * test: copy whole modules for testing in Windows * fix: make valid paths for Windows * test: add tests for Native * test: use robust way to calculate time vim.fn.strptime cannot be used in Lua loop * chore: fix comments * refactor: simplify the code * test: loosen condition to detect failures * test: disable some logging Many loggings make the test fail. * test: run tests sequentially in Windows * test: loosen timeout not to fail on Windows
209 lines
7.1 KiB
Lua
209 lines
7.1 KiB
Lua
---@diagnostic disable: unused-local, missing-return
|
|
|
|
-- NOTE: types below are borrowed from sqlite.lua
|
|
|
|
---@class sqlite_db @Main sqlite.lua object.
|
|
---@field uri string: database uri. it can be an environment variable or an absolute path. default ":memory:"
|
|
---@field opts sqlite_opts: see https://www.sqlite.org/pragma.html |sqlite_opts|
|
|
---@field conn sqlite_blob: sqlite connection c object.
|
|
---@field db sqlite_db: reference to fallback to when overwriting |sqlite_db| methods (extended only).
|
|
|
|
---@class sqlite_query_update @Query fileds used when calling |sqlite:update| or |sqlite_tbl:update|
|
|
---@field where table: filter down values using key values.
|
|
---@field set table: key and value to updated.
|
|
|
|
---@class sqlite_query_select @Query fileds used when calling |sqlite:select| or |sqlite_tbl:get|
|
|
---@field where table? filter down values using key values.
|
|
---@field keys table? keys to include. (default all)
|
|
---@field join table? (TODO: support)
|
|
---@field order_by table? { asc = "key", dsc = {"key", "another_key"} }
|
|
---@field limit number? the number of result to limit by
|
|
---@field contains table? for sqlite glob ex. { title = "fix*" }
|
|
|
|
---@alias sqlite_query_delete table<string, any>
|
|
|
|
---@generic T
|
|
---@alias sqlite_map_func fun(self: sqlite_tbl, mapper: fun(entry: table): T?): T[]
|
|
|
|
---@class sqlite_tbl @Main sql table class
|
|
---@field db sqlite_db: sqlite.lua database object.
|
|
---@field name string: table name.
|
|
---@field mtime number: db last modified time.
|
|
---@field count fun(self: sqlite_tbl): integer
|
|
---@field insert fun(self: sqlite_tbl, rows: table<string, any>|table<string, any>[]): integer
|
|
---@field update fun(self: sqlite_tbl, specs: sqlite_query_update): boolean
|
|
---@field get fun(self: sqlite_tbl, query: sqlite_query_select): table[]
|
|
---@field remove fun(self: sqlite_tbl, where: sqlite_query_delete): boolean
|
|
---@field map sqlite_map_func
|
|
|
|
---@class sqlite_opts @Sqlite3 Options (TODO: add sqlite option fields and description)
|
|
---@class sqlite_blob @sqlite3 blob object
|
|
|
|
---@class sqlite_lib
|
|
---@field cast fun(source: integer, as: string): string
|
|
---@field julianday fun(timestring: string?): integer
|
|
|
|
-- NOTE: types are borrowed from plenary.nvim
|
|
|
|
---@class PlenaryPath
|
|
---@field new fun(self: PlenaryPath|string, path: string?): PlenaryPath
|
|
---@field absolute fun(): string
|
|
---@field is_file fun(self: PlenaryPath): boolean
|
|
---@field filename string
|
|
---@field joinpath fun(self: PlenaryPath, ...): PlenaryPath
|
|
---@field make_relative fun(self: PlenaryPath, cwd: string): string
|
|
---@field parent PlenaryPath
|
|
---@field path { sep: string }
|
|
---@field rm fun(self: PlenaryPath, opts: { recursive: boolean }?): nil
|
|
---@field touch fun(self: PlenaryPath, opts: { parents: boolean }?): nil
|
|
|
|
---@class PlenaryScanDirOptions
|
|
---@field hidden boolean if true hidden files will be added
|
|
---@field add_dirs boolean if true dirs will also be added to the results
|
|
---@field only_dirs boolean if true only dirs will be added to the results
|
|
---@field respect_gitignore boolean if true will only add files that are not ignored by the git
|
|
---@field depth integer depth on how deep the search should go
|
|
---@field search_pattern string|string[]|fun(path: string): boolean regex for which files will be added, string, table of strings, or fn(e) -> boolean
|
|
---@field on_insert fun(path: string): boolean Will be called for each element
|
|
---@field silent boolean if true will not echo messages that are not accessible
|
|
|
|
---@alias scan_dir fun(path: string, opts: PlenaryScanDirOptions): string[]
|
|
|
|
---@class PlenaryAsync
|
|
---@field control PlenaryAsyncControl
|
|
---@field tests { add_to_env: fun(): nil }
|
|
---@field util PlenaryAsyncUtil
|
|
---@field uv PlenaryAsyncUv
|
|
---@field void fun(f: fun(): nil): fun(): nil
|
|
---@field wrap fun(f: (fun(...): any), args: integer): (fun(...): any)
|
|
local PlenaryAsync = {}
|
|
|
|
---@async
|
|
---@param f fun(): nil
|
|
---@return nil
|
|
function PlenaryAsync.run(f) end
|
|
|
|
---@class PlenaryAsyncControl
|
|
---@field channel PlenaryAsyncControlChannel
|
|
|
|
---@class PlenaryAsyncControlChannel
|
|
---@field mpsc fun(): PlenaryAsyncControlChannelTx, PlenaryAsyncControlChannelRx
|
|
---@field counter fun(): PlenaryAsyncControlChannelTx, PlenaryAsyncControlChannelRx
|
|
|
|
---@class PlenaryAsyncControlChannelTx
|
|
---@field send fun(entry: any?): nil
|
|
local PlenaryAsyncControlChannelTx = {}
|
|
|
|
---@class PlenaryAsyncControlChannelRx
|
|
local PlenaryAsyncControlChannelRx = {}
|
|
|
|
---@async
|
|
---@return any?
|
|
function PlenaryAsyncControlChannelRx.recv() end
|
|
|
|
---@async
|
|
---@return any?
|
|
function PlenaryAsyncControlChannelRx.last() end
|
|
|
|
---@class PlenaryAsyncUtil
|
|
local PlenaryAsyncUtil = {}
|
|
|
|
---@class PlenaryAsyncUv
|
|
local PlenaryAsyncUv = {}
|
|
|
|
---@class FsStatMtime
|
|
---@field sec integer
|
|
---@field nsec integer
|
|
|
|
---@class FsStat
|
|
---@field mtime FsStatMtime
|
|
---@field size integer
|
|
---@field type "file"|"directory"
|
|
|
|
---@async
|
|
---@param path string
|
|
---@return string? err
|
|
---@return { mtime: FsStatMtime, size: integer, type: "file"|"directory" }
|
|
function PlenaryAsyncUv.fs_stat(path) end
|
|
|
|
---@async
|
|
---@param path string
|
|
---@param flags string|integer
|
|
---@param mode integer
|
|
---@return string? err
|
|
---@return integer fd
|
|
function PlenaryAsyncUv.fs_open(path, flags, mode) end
|
|
|
|
---@async
|
|
---@param fd integer
|
|
---@param size integer
|
|
---@param offset integer?
|
|
---@return string? err
|
|
---@return string data
|
|
function PlenaryAsyncUv.fs_read(fd, size, offset) end
|
|
|
|
---@async
|
|
---@param fd integer
|
|
---@param data string
|
|
---@param offset integer?
|
|
---@return string? err
|
|
---@return integer bytes
|
|
function PlenaryAsyncUv.fs_write(fd, data, offset) end
|
|
|
|
---@async
|
|
---@param path string
|
|
---@return string? err
|
|
---@return boolean? success
|
|
function PlenaryAsyncUv.fs_unlink(path) end
|
|
|
|
---@async
|
|
---@param fd integer
|
|
---@return string? err
|
|
function PlenaryAsyncUv.fs_close(fd) end
|
|
|
|
---@async
|
|
---@param ms integer
|
|
---@return nil
|
|
function PlenaryAsyncUtil.sleep(ms) end
|
|
|
|
-- NOTE: types are for telescope.nvim
|
|
|
|
---@alias TelescopeEntryDisplayer fun(items: string[]): table
|
|
|
|
---@class TelescopeEntryDisplayOptions
|
|
---@field separator string?
|
|
---@field hl_chars table<string, string>?
|
|
---@field items string[]
|
|
|
|
---@class TelescopeEntryDisplay
|
|
---@field create fun(opts: TelescopeEntryDisplayOptions): TelescopeEntryDisplayer
|
|
|
|
---@class TelescopeUtils
|
|
---@field path_tail fun(path: string): string
|
|
---@field transform_path fun(opts: table, path: string): string
|
|
---@field buf_is_loaded fun(filename: string): boolean
|
|
|
|
---@class TelescopePicker
|
|
---@field clear_extra_rows fun(self: TelescopePicker, results_bufnr: integer): nil
|
|
---@field get_row fun(self: TelescopePicker, index: integer): integer
|
|
---@field manager TelescopeEntryManager|false
|
|
---@field prompt_bufnr integer
|
|
---@field prompt_prefix string
|
|
---@field results_bufnr integer?
|
|
---@field results_win integer?
|
|
---@field sorting_strategy 'ascending'|'descending'
|
|
|
|
---@class TelescopeEntryManager
|
|
---@field num_results fun(): integer
|
|
|
|
-- NOTE: types for default functions
|
|
|
|
---@class WinInfo
|
|
---@field topline integer
|
|
---@field botline integer
|
|
|
|
---@class UvFsEventHandle
|
|
---@field stop fun(self: UvFsEventHandle): nil
|
|
---@field start fun(self: UvFsEventHandle, path: string, opts: { recursive: boolean }, cb: fun(err: string?, filename: string?, events: string[])): nil
|
|
---@field close fun(self: UvFsEventHandle): nil
|