diff options
author | Aylur <[email protected]> | 2024-06-20 15:16:59 +0200 |
---|---|---|
committer | Aylur <[email protected]> | 2024-06-20 15:16:59 +0200 |
commit | 4e32f62dcd50c545670ef67f9b0f65ed87821426 (patch) | |
tree | c4160e311b91cd7bf5ae515db8315f322e99922a /lua/astal/file.lua | |
parent | 976638c016eb21ade63779c9dade6110983dc75b (diff) |
add file utils
Diffstat (limited to 'lua/astal/file.lua')
-rw-r--r-- | lua/astal/file.lua | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/lua/astal/file.lua b/lua/astal/file.lua new file mode 100644 index 0000000..ca5a592 --- /dev/null +++ b/lua/astal/file.lua @@ -0,0 +1,45 @@ +local lgi = require("lgi") +local Astal = lgi.require("Astal", "0.1") +local GObject = lgi.require("GObject", "2.0") + +local M = {} + +---@param path string +---@return string +function M.read_file(path) + return Astal.read_file(path) +end + +---@param path string +---@param callback fun(content: string, err: string): nil +function M.read_file_async(path, callback) + Astal.read_file_async(path, function(_, res) + local content, err = Astal.read_file_finish(res) + callback(content, err) + end) +end + +---@param path string +---@param content string +function M.write_file(path, content) + Astal.write_file(path, content) +end + +---@param path string +---@param content string +---@param callback? fun(err: string): nil +function M.write_file_async(path, content, callback) + Astal.write_file_async(path, content, function(_, res) + if type(callback) == "function" then + callback(Astal.write_file_finish(res)) + end + end) +end + +---@param path string +---@param callback fun(file: string, event: integer): nil +function M.monitor_file(path, callback) + return Astal.monitor_file(path, GObject.Closure(callback)) +end + +return M |