summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcarsakiller <carsakiller@gmail.com>2023-10-27 20:42:07 -0400
committercarsakiller <carsakiller@gmail.com>2023-10-27 20:42:07 -0400
commitad1341b497f815325dd591083356644f1b69fcb1 (patch)
tree7336c30a157037f721d177e99f85c7d2f407aa75
parentcf102e1e4684d44d309a1848e9addff53bc4a878 (diff)
downloadlua-language-server-ad1341b497f815325dd591083356644f1b69fcb1.zip
refactor: replace lfs with LuaCATS submodule
-rw-r--r--.gitmodules3
m---------meta/3rd/lfs0
-rw-r--r--meta/3rd/lfs/config.json9
-rw-r--r--meta/3rd/lfs/library/lfs.lua158
4 files changed, 3 insertions, 167 deletions
diff --git a/.gitmodules b/.gitmodules
index 52895e1f..c4e368c7 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -37,3 +37,6 @@
[submodule "meta/3rd/Jass"]
path = meta/3rd/Jass
url = https://github.com/LuaCATS/jass.git
+[submodule "meta/3rd/lfs"]
+ path = meta/3rd/lfs
+ url = https://github.com/LuaCATS/luafilesystem.git
diff --git a/meta/3rd/lfs b/meta/3rd/lfs
new file mode 160000
+Subproject 9b5cfc15be744c829c66519cb11e49669ae7e39
diff --git a/meta/3rd/lfs/config.json b/meta/3rd/lfs/config.json
deleted file mode 100644
index b7400123..00000000
--- a/meta/3rd/lfs/config.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "name" : "luafilesystem",
- "words" : [ "require[%s%(\"']+lfs[%)\"']" ],
- "settings" : {
- "Lua.diagnostics.globals" : [
- "lfs"
- ]
- }
-}
diff --git a/meta/3rd/lfs/library/lfs.lua b/meta/3rd/lfs/library/lfs.lua
deleted file mode 100644
index 4016152a..00000000
--- a/meta/3rd/lfs/library/lfs.lua
+++ /dev/null
@@ -1,158 +0,0 @@
----@meta
-
----@class LuaFileSystem.Attributes
----@field [LuaFileSystem.AttributeName] any
----@field ['mode'] LuaFileSystem.AttributeMode
-
----@alias LuaFileSystem.AttributeMode
----|'file'
----|'directory'
----|'link'
----|'socket'
----|'char device'
----|"block device"
----|"named pipe"
-
----@alias LuaFileSystem.AttributeName
----|'dev' -- on Unix systems, this represents the device that the inode resides on. On Windows systems, represents the drive number of the disk containing the file
----|'ino' -- on Unix systems, this represents the inode number. On Windows systems this has no meaning
----|'mode' -- string representing the associated protection mode (the values could be file, directory, link, socket, named pipe, char device, block device or other)
----|'nlink' -- number of hard links to the file
----|'uid' -- user-id of owner (Unix only, always 0 on Windows)
----|'gid' -- group-id of owner (Unix only, always 0 on Windows)
----|'rdev' -- on Unix systems, represents the device type, for special file inodes. On Windows systems represents the same as dev
----|'access' -- time of last access
----|'modification' -- time of last data modification
----|'change' -- time of last file status change
----|'size' -- file size, in bytes
----|'permissions' -- file permissions string
----|'blocks' -- block allocated for file; (Unix only)
----|'blksize' -- optimal file system I/O blocksize; (Unix only)
-
----@class LuaFileSystem
-local lfs = {}
-
---[[
-Returns a table with the file attributes corresponding to filepath (or nil followed by an error message and a system-dependent error code in case of error). If the second optional argument is given and is a string, then only the value of the named attribute is returned (this use is equivalent to lfs.attributes(filepath)[request_name], but the table is not created and only one attribute is retrieved from the O.S.). if a table is passed as the second argument, it (result_table) is filled with attributes and returned instead of a new table. The attributes are described as follows; attribute mode is a string, all the others are numbers, and the time related attributes use the same time reference of os.time:
-]]
----@overload fun(filepath:string):LuaFileSystem.Attributes
----@overload fun(filepath:string, result_table:LuaFileSystem.Attributes)
----@param filepath string
----@param request_name LuaFileSystem.AttributeName
----@return string|integer|LuaFileSystem.AttributeMode
-function lfs.attributes(filepath, request_name)
-end
-
---[[
-Changes the current working directory to the given path.
-Returns true in case of success or nil plus an error string.
-]]
----@param path string
----@return boolean, string
-function lfs.chdir(path)
-end
-
---[[
-Creates a lockfile (called lockfile.lfs) in path if it does not exist and returns the lock. If the lock already exists checks if it's stale, using the second parameter (default for the second parameter is INT_MAX, which in practice means the lock will never be stale. To free the the lock call lock:free().
-In case of any errors it returns nil and the error message. In particular, if the lock exists and is not stale it returns the "File exists" message.
-]]
----@param path string
----@param seconds_stale? number
----@return boolean, string
-function lfs.lock_dir(path, seconds_stale)
-end
-
----Returns a string with the current working directory or nil plus an error string.
----@return string
-function lfs.currentdir()
-end
-
---[[
-Lua iterator over the entries of a given directory. Each time the iterator is called with dir_obj it returns a directory entry's name as a string, or nil if there are no more entries. You can also iterate by calling dir_obj:next(), and explicitly close the directory before the iteration finished with dir_obj:close(). Raises an error if path is not a directory.
-]]
----@param path string
----@return fun():string
-function lfs.dir(path)
-end
-
---[[
-Locks a file or a part of it. This function works on open files; the file handle should be specified as the first argument. The string mode could be either r (for a read/shared lock) or w (for a write/exclusive lock). The optional arguments start and length can be used to specify a starting point and its length; both should be numbers.
-Returns true if the operation was successful; in case of error, it returns nil plus an error string.
-]]
----@param filehandle file*
----@param mode openmode
----@param start? integer
----@param length? integer
----@return boolean, string
-function lfs.lock(filehandle, mode, start, length)
-end
-
---[[
- Creates a link. The first argument is the object to link to and the second is the name of the link. If the optional third argument is true, the link will by a symbolic link (by default, a hard link is created).
-]]
----@param old string
----@param new string
----@param symlink? boolean
----@return boolean, string
-function lfs.link(old, new, symlink)
-end
-
---[[
- Creates a new directory. The argument is the name of the new directory.
- Returns true in case of success or nil, an error message and a system-dependent error code in case of error.
-]]
----@param dirname string
----@return boolean, string
-function lfs.mkdir(dirname)
-end
-
---[[
- Removes an existing directory. The argument is the name of the directory.
- Returns true in case of success or nil, an error message and a system-dependent error code in case of error.
-]]
----@param dirname string
----@return boolean, string
-function lfs.rmdir(dirname)
-end
-
---[[
-Sets the writing mode for a file. The mode string can be either "binary" or "text". Returns true followed the previous mode string for the file, or nil followed by an error string in case of errors. On non-Windows platforms, where the two modes are identical, setting the mode has no effect, and the mode is always returned as binary.
-]]
----@param file string
----@param mode 'binary'|'text'
----@return boolean, string
-function lfs.setmode(file, mode)
-end
-
---[[
-Identical to lfs.attributes except that it obtains information about the link itself (not the file it refers to). It also adds a target field, containing the file name that the symlink points to. On Windows this function does not yet support links, and is identical to lfs.attributes.
-]]
----@param filepath string
----@param request_name? LuaFileSystem.AttributeName
----@return LuaFileSystem.Attributes
-function lfs.symlinkattributes(filepath, request_name)
-end
-
---[[
-Set access and modification times of a file. This function is a bind to utime function. The first argument is the filename, the second argument (atime) is the access time, and the third argument (mtime) is the modification time. Both times are provided in seconds (which should be generated with Lua standard function os.time). If the modification time is omitted, the access time provided is used; if both times are omitted, the current time is used.
-Returns true in case of success or nil, an error message and a system-dependent error code in case of error.
-]]
----@param filepath string
----@param atime? integer
----@param mtime? integer
----@return boolean, string
-function lfs.touch(filepath, atime, mtime)
-end
-
---[[
-Unlocks a file or a part of it. This function works on open files; the file handle should be specified as the first argument. The optional arguments start and length can be used to specify a starting point and its length; both should be numbers.
-Returns true if the operation was successful; in case of error, it returns nil plus an error string.
-]]
----@param filehandle file*
----@param start? integer
----@param length? integer
----@return boolean, string
-function lfs.unlock(filehandle, start, length)
-end
-
-return lfs