rlg/utils.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254
// utils.rs
// Copyright © 2024 RustLogs (RLG). All rights reserved.
// SPDX-License-Identifier: Apache-2.0
// SPDX-License-Identifier: MIT
use crate::error::RlgResult;
use dtt::datetime::DateTime;
use std::path::Path;
use tokio::fs::{self, File, OpenOptions};
use tokio::io::{AsyncReadExt, AsyncSeekExt, AsyncWriteExt};
/// Generates a timestamp string in ISO 8601 format.
///
/// # Returns
///
/// A `String` containing the current timestamp in ISO 8601 format.
///
/// # Examples
///
/// ```
/// use rlg::utils::generate_timestamp;
///
/// let timestamp = generate_timestamp();
/// println!("Current timestamp: {}", timestamp);
/// ```
pub fn generate_timestamp() -> String {
DateTime::new().to_string()
}
/// Sanitizes a string for use in log messages.
///
/// This function replaces newlines and control characters with spaces.
///
/// # Arguments
///
/// * `message` - A string slice that holds the message to be sanitized.
///
/// # Returns
///
/// A `String` with sanitized content.
///
/// # Examples
///
/// ```
/// use rlg::utils::sanitize_log_message;
///
/// let message = "Hello\nWorld\r\u{0007}";
/// let sanitized = sanitize_log_message(message);
/// assert_eq!(sanitized, "Hello World ");
/// ```
pub fn sanitize_log_message(message: &str) -> String {
message
.replace('\n', " ")
.replace('\r', " ")
.replace(|c: char| c.is_control(), " ")
}
/// Checks if a file exists and is writable.
///
/// # Arguments
///
/// * `path` - A reference to a `Path` that holds the file path to check.
///
/// # Returns
///
/// A `RlgResult<bool>` which is `Ok(true)` if the file exists and is writable,
/// `Ok(false)` otherwise, or an error if the operation fails.
///
/// # Examples
///
/// ```
/// use rlg::utils::is_file_writable;
/// use std::path::Path;
///
/// #[tokio::main]
/// async fn main() -> rlg::error::RlgResult<()> {
/// let path = Path::new("example.log");
/// let is_writable = is_file_writable(&path).await?;
/// println!("Is file writable: {}", is_writable);
/// Ok(())
/// }
/// ```
pub async fn is_file_writable(path: &Path) -> RlgResult<bool> {
if path.exists() {
let metadata = fs::metadata(path).await?;
Ok(metadata.is_file() && !metadata.permissions().readonly())
} else {
// If the file doesn't exist, check if we can create it
match File::create(path).await {
Ok(_) => {
fs::remove_file(path).await?;
Ok(true)
}
Err(_) => Ok(false),
}
}
}
/// Truncates the file at the given path to the specified size.
///
/// # Arguments
///
/// * `path` - A reference to a `Path` that holds the file path to truncate.
/// * `size` - The size (in bytes) to truncate the file to.
///
/// # Returns
///
/// A `std::io::Result<()>` which is `Ok(())` if the operation succeeds,
/// or an error if it fails.
///
/// # Examples
///
/// ```
/// use rlg::utils::truncate_file;
/// use std::path::Path;
///
/// #[tokio::main]
/// async fn main() -> std::io::Result<()> {
/// let path = Path::new("example.log");
/// truncate_file(&path, 1024).await?;
/// println!("File truncated successfully");
/// Ok(())
/// }
/// ```
pub async fn truncate_file(
path: &Path,
size: u64,
) -> std::io::Result<()> {
let mut file = OpenOptions::new()
.read(true)
.write(true)
.create(true)
.truncate(false)
.open(path)
.await?;
let file_size = file.metadata().await?.len();
if size < file_size {
// Read the content
let mut content = vec![0; size as usize];
file.read_exact(&mut content).await?;
// Seek to the beginning of the file
file.seek(std::io::SeekFrom::Start(0)).await?;
// Write the truncated content
file.write_all(&content).await?;
}
// Set the file length
file.set_len(size).await?;
Ok(())
}
/// Formats a file size in a human-readable format.
///
/// # Arguments
///
/// * `size` - The file size in bytes.
///
/// # Returns
///
/// A `String` containing the formatted file size.
///
/// # Examples
///
/// ```
/// use rlg::utils::format_file_size;
///
/// let size = 1_500_000;
/// let formatted = format_file_size(size);
/// assert_eq!(formatted, "1.43 MB");
/// ```
pub fn format_file_size(size: u64) -> String {
const UNITS: [&str; 6] = ["B", "KB", "MB", "GB", "TB", "PB"];
let mut size = size as f64;
let mut unit_index = 0;
while size >= 1024.0 && unit_index < UNITS.len() - 1 {
size /= 1024.0;
unit_index += 1;
}
format!("{:.2} {}", size, UNITS[unit_index])
}
/// Parses a datetime string in ISO 8601 format.
///
/// # Arguments
///
/// * `datetime_str` - A string slice containing the datetime in ISO 8601 format.
///
/// # Returns
///
/// A `RlgResult<DateTime>` which is `Ok(DateTime)` if parsing succeeds,
/// or an error if parsing fails.
///
/// # Examples
///
/// ```
/// use rlg::utils::parse_datetime;
///
/// let datetime_str = "2024-08-29T12:00:00Z";
/// match parse_datetime(datetime_str) {
/// Ok(dt) => println!("Parsed datetime: {}", dt),
/// Err(e) => eprintln!("Failed to parse datetime: {}", e),
/// }
/// ```
pub fn parse_datetime(datetime_str: &str) -> RlgResult<DateTime> {
DateTime::parse(datetime_str)
.map_err(|e| crate::error::RlgError::custom(e.to_string()))
}
/// Checks if a directory is writable.
///
/// # Arguments
///
/// * `path` - A reference to a `Path` that holds the directory path to check.
///
/// # Returns
///
/// A `RlgResult<bool>` which is `Ok(true)` if the directory is writable,
/// `Ok(false)` otherwise, or an error if the operation fails.
///
/// # Examples
///
/// ```
/// use rlg::utils::is_directory_writable;
/// use std::path::Path;
///
/// #[tokio::main]
/// async fn main() -> rlg::error::RlgResult<()> {
/// let path = Path::new(".");
/// let is_writable = is_directory_writable(&path).await?;
/// println!("Is directory writable: {}", is_writable);
/// Ok(())
/// }
/// ```
pub async fn is_directory_writable(path: &Path) -> RlgResult<bool> {
if !path.is_dir() {
return Ok(false);
}
let test_file = path.join(".rlg_write_test");
match File::create(&test_file).await {
Ok(_) => {
fs::remove_file(&test_file).await?;
Ok(true)
}
Err(_) => Ok(false),
}
}