document functions

This commit is contained in:
highflowey 2024-08-25 20:30:46 +03:30
parent e47555fd86
commit ddcda9952f
2 changed files with 37 additions and 5 deletions

View file

@ -2,10 +2,14 @@ use mlua::prelude::*;
use std::path::{Component, Path, PathBuf};
use tokio::fs;
/// tries these alternatives on given path:
///
/// * .lua and .luau extension
/// * path.join("init.luau") and path.join("init.lua")
/**
tries these alternatives on given path if path doesn't exist
* .lua and .luau extension
* path.join("init.luau") and path.join("init.lua")
*/
pub async fn resolve_path(path: &Path) -> LuaResult<PathBuf> {
let init_path = &path.join("init");
@ -28,6 +32,15 @@ pub async fn resolve_path(path: &Path) -> LuaResult<PathBuf> {
Err(LuaError::runtime("Could not resolve path"))
}
/**
Removes useless components from the given path
### Example
`./path/./path` turns into `./path/path`
*/
pub fn normalize_path(path: &Path) -> PathBuf {
let mut components = path.components().peekable();
let mut ret = if let Some(c @ Component::Prefix(..)) = components.clone().peek() {
@ -55,8 +68,17 @@ pub fn normalize_path(path: &Path) -> PathBuf {
ret
}
/**
adds extension to path without replacing it's current extensions
### Example
appending `.luau` to `path/path.config` will return `path/path.config.luau`
*/
fn append_extension(path: impl Into<PathBuf>, ext: &'static str) -> PathBuf {
let mut new = path.into();
let mut new: PathBuf = path.into();
match new.extension() {
// FUTURE: There's probably a better way to do this than converting to a lossy string
Some(e) => new.set_extension(format!("{}.{ext}", e.to_string_lossy())),

View file

@ -1,5 +1,10 @@
use std::path::PathBuf;
/**
return's the path of the script that called this function
*/
pub fn get_script_path(lua: &mlua::Lua) -> Result<PathBuf, mlua::Error> {
let Some(debug) = lua.inspect_stack(2) else {
return Err(mlua::Error::runtime("Failed to inspect stack"));
@ -17,6 +22,11 @@ pub fn get_script_path(lua: &mlua::Lua) -> Result<PathBuf, mlua::Error> {
}
}
/**
return's the parent directory of the script that called this function
*/
pub fn get_parent_path(lua: &mlua::Lua) -> Result<PathBuf, mlua::Error> {
let script = get_script_path(lua)?;