feat: desktop file stuffs
This commit is contained in:
740
Cargo.lock
generated
740
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -5,12 +5,21 @@ edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0.66"
|
||||
dirs = "4.0.0"
|
||||
ez-pixmap = "0.2.2"
|
||||
glam = { version = "0.22.0", features = ["mint"] }
|
||||
image = "0.24.5"
|
||||
manifest-dir-macros = "0.1.16"
|
||||
mint = "0.5.9"
|
||||
nix = "0.25.0"
|
||||
resvg = "0.27.0"
|
||||
rustc-hash = "1.1.0"
|
||||
stardust-xr-molecules = "0.5.2"
|
||||
tokio = { version = "1.22.0", features = ["full"] }
|
||||
tween = "1.0.1"
|
||||
ustr = "0.9.0"
|
||||
walkdir = "2.3.2"
|
||||
xpm = "0.1.0"
|
||||
|
||||
[dev-dependencies]
|
||||
tempdir = "0.3.7"
|
||||
|
||||
265
src/desktop_file.rs
Normal file
265
src/desktop_file.rs
Normal file
@@ -0,0 +1,265 @@
|
||||
use std::ffi::OsString;
|
||||
use std::io::{BufRead, BufReader};
|
||||
use std::path::{Path, PathBuf};
|
||||
use std::str::FromStr;
|
||||
use std::{env, fs};
|
||||
|
||||
use anyhow::Result;
|
||||
use image::GenericImageView;
|
||||
use resvg::render;
|
||||
use resvg::tiny_skia::{Pixmap, PixmapMut, Transform};
|
||||
use resvg::usvg::{FitTo, Tree};
|
||||
use walkdir::WalkDir;
|
||||
|
||||
fn get_desktop_files() -> Vec<PathBuf> {
|
||||
// Get the XDG data directories
|
||||
let xdg_data_dirs = match std::env::var("XDG_DATA_DIRS") {
|
||||
Ok(val) => val,
|
||||
Err(_) => "/usr/local/share:/usr/share".to_string(),
|
||||
};
|
||||
|
||||
// Append the applications directory to each data directory
|
||||
let app_dirs = xdg_data_dirs
|
||||
.split(":")
|
||||
.map(|dir| Path::new(dir).join("applications"));
|
||||
|
||||
// Get the user's local applications directory
|
||||
let local_app_dir = dirs::home_dir()
|
||||
.unwrap()
|
||||
.join(".local")
|
||||
.join("share")
|
||||
.join("applications");
|
||||
|
||||
let desktop_extension = OsString::from_str("desktop").unwrap();
|
||||
|
||||
// Get the list of directories to search
|
||||
app_dirs
|
||||
.chain(Some(local_app_dir))
|
||||
.filter(|dir| dir.exists() && dir.is_dir())
|
||||
.flat_map(|dir| {
|
||||
// Follow symlinks and recursively search directories
|
||||
WalkDir::new(dir)
|
||||
.follow_links(true)
|
||||
.into_iter()
|
||||
.filter_map(|entry| entry.ok())
|
||||
.filter(|entry| entry.file_type().is_file())
|
||||
.map(|entry| entry.path().to_path_buf())
|
||||
})
|
||||
.filter(|path| path.extension() == Some(&desktop_extension))
|
||||
.collect::<Vec<PathBuf>>()
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_get_desktop_files() {
|
||||
let desktop_files = get_desktop_files();
|
||||
dbg!(&desktop_files);
|
||||
assert!(desktop_files
|
||||
.iter()
|
||||
.any(|file| file.ends_with("gimp.desktop")));
|
||||
}
|
||||
|
||||
fn parse_desktop_file(path: &Path) -> Result<DesktopFile, String> {
|
||||
// Open the file in read-only mode
|
||||
let file = match fs::File::open(path) {
|
||||
Ok(file) => file,
|
||||
Err(err) => return Err(format!("Failed to open file: {}", err)),
|
||||
};
|
||||
|
||||
let reader = BufReader::new(file);
|
||||
|
||||
// Create temporary variables to hold the parsed values
|
||||
let mut name = None;
|
||||
let mut command = None;
|
||||
let mut categories = Vec::new();
|
||||
let mut icon = None;
|
||||
|
||||
// Loop through each line of the file
|
||||
for line in reader.lines() {
|
||||
let line = match line {
|
||||
Ok(line) => line,
|
||||
Err(err) => return Err(format!("Failed to read line: {}", err)),
|
||||
};
|
||||
|
||||
// Skip empty lines and lines that start with "#" (comments)
|
||||
if line.is_empty() || line.starts_with('#') {
|
||||
continue;
|
||||
}
|
||||
|
||||
// Split the line into a key-value pair by looking for the first "=" character
|
||||
let parts = line.split_once('=');
|
||||
let (key, value) = match parts {
|
||||
Some((key, value)) => (key, value),
|
||||
None => continue,
|
||||
};
|
||||
|
||||
// Parse the key-value pair based on the key
|
||||
match key {
|
||||
"Name" => name = Some(value.to_string()),
|
||||
"Exec" => command = Some(value.to_string()),
|
||||
"Categories" => categories = value.split(';').map(|s| s.to_string()).collect(),
|
||||
"Icon" => icon = Some(value.to_string()),
|
||||
_ => (), // Ignore unknown keys
|
||||
}
|
||||
}
|
||||
|
||||
// Create and return a new DesktopFile instance with the parsed values
|
||||
Ok(DesktopFile {
|
||||
name,
|
||||
command,
|
||||
categories,
|
||||
icon,
|
||||
})
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_parse_desktop_file() {
|
||||
// Create a temporary directory and a test desktop file
|
||||
let dir = tempdir::TempDir::new("test").unwrap();
|
||||
let file = dir.path().join("test.desktop");
|
||||
let data = "[Desktop Entry]\nName=Test\nExec=test\nCategories=A;B;C\nIcon=test.png";
|
||||
fs::write(&file, data).unwrap();
|
||||
|
||||
// Parse the test desktop file
|
||||
let result = parse_desktop_file(&file);
|
||||
assert!(result.is_ok());
|
||||
|
||||
// Check the parsed values
|
||||
let desktop_file = result.unwrap();
|
||||
assert_eq!(desktop_file.name, Some("Test".to_string()));
|
||||
assert_eq!(desktop_file.command, Some("test".to_string()));
|
||||
assert_eq!(
|
||||
desktop_file.categories,
|
||||
vec!["A".to_string(), "B".to_string(), "C".to_string()]
|
||||
);
|
||||
assert_eq!(desktop_file.icon, Some("test.png".to_string()));
|
||||
}
|
||||
|
||||
#[derive(Debug, PartialEq, Eq)]
|
||||
enum IconType {
|
||||
Png(PathBuf),
|
||||
Svg(PathBuf),
|
||||
Gltf(PathBuf),
|
||||
}
|
||||
impl IconType {
|
||||
fn to_png(&self, size: u32) -> Option<PathBuf> {
|
||||
match self {
|
||||
IconType::Png(path) => Some(path.clone()),
|
||||
IconType::Svg(path) => {
|
||||
let png_path = path.with_extension("png");
|
||||
render_svg_to_png(path, &png_path, size).ok()?;
|
||||
Some(png_path)
|
||||
}
|
||||
_ => None,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn render_svg_to_png(svg_path: &PathBuf, png_path: &PathBuf, size: u32) -> Result<()> {
|
||||
let tree = Tree::from_data(
|
||||
fs::read(svg_path)?.as_slice(),
|
||||
&resvg::usvg::Options::default().to_ref(),
|
||||
)?;
|
||||
let mut pixmap = Pixmap::new(size, size).unwrap();
|
||||
render(
|
||||
&tree,
|
||||
FitTo::Width(size),
|
||||
Transform::identity(),
|
||||
pixmap.as_mut(),
|
||||
);
|
||||
pixmap.save_png(png_path)?;
|
||||
Ok(())
|
||||
}
|
||||
#[test]
|
||||
fn test_render_svg_to_png() {
|
||||
// Create temporary input and output paths
|
||||
let input_path = PathBuf::from("test_input.svg");
|
||||
let output_path = PathBuf::from("test_output.png");
|
||||
|
||||
// Write some test SVG data to the input path
|
||||
let test_svg_data = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 100 100\">
|
||||
<ellipse cx=\"50\" cy=\"80\" rx=\"46\" ry=\"19\" fill=\"#07c\"/>
|
||||
<path d=\"M43,0c-6,25,16,22,1,52c11,3,19,0,19-22c38,18,16,63-12,64c-25,2-55-39-8-94\" fill=\"#e34\"/>
|
||||
<path d=\"M34,41c-6,39,29,32,33,7c39,42-69,63-33-7\" fill=\"#fc2\"/>
|
||||
</svg>";
|
||||
fs::write(&input_path, test_svg_data).unwrap();
|
||||
|
||||
// Call the function with the test input and output paths and a size of 200
|
||||
render_svg_to_png(&input_path, &output_path, 200).unwrap();
|
||||
|
||||
// Check that the output file exists
|
||||
assert!(output_path.exists());
|
||||
|
||||
// Check that the output file is a PNG file
|
||||
assert_eq!(output_path.extension().unwrap(), "png");
|
||||
|
||||
// Check that the output file has the expected dimensions
|
||||
let output_image = image::open(&output_path).unwrap();
|
||||
assert_eq!(output_image.dimensions(), (200, 200));
|
||||
|
||||
// Delete the temporary input and output files
|
||||
fs::remove_file(&input_path).unwrap();
|
||||
fs::remove_file(&output_path).unwrap();
|
||||
}
|
||||
|
||||
struct DesktopFile {
|
||||
name: Option<String>,
|
||||
command: Option<String>,
|
||||
categories: Vec<String>,
|
||||
icon: Option<String>,
|
||||
}
|
||||
|
||||
impl DesktopFile {
|
||||
fn get_icon_path(&self, size: &str) -> Option<IconType> {
|
||||
// Get the name of the icon from the DesktopFile struct
|
||||
let icon_name = OsString::from_str(self.icon.as_ref()?).ok()?;
|
||||
|
||||
// Get the current icon theme from the XDG_ICON_THEME environment variable, or use "hicolor" as the default theme if the variable is not defined
|
||||
let icon_theme = env::var_os("XDG_ICON_THEME").unwrap_or("hicolor".into());
|
||||
|
||||
// Get the XDG_DATA_HOME and XDG_DATA_DIRS environment variables, and split the XDG_DATA_DIRS variable into a list of directories
|
||||
let xdg_data_dirs = env::var_os("XDG_DATA_DIRS")?;
|
||||
let binding = xdg_data_dirs.into_string().ok()?;
|
||||
let xdg_data_dirs = binding.split(":").map(Path::new);
|
||||
|
||||
// Concatenate the XDG_DATA_HOME and XDG_DATA_DIRS directories with the default path for icon themes
|
||||
let icon = xdg_data_dirs // XDG_DATA_DIRS directories
|
||||
.map(|dir| dir.join("icons").join(&icon_theme).join(size).join("apps"))
|
||||
.filter_map(|dir| {
|
||||
fs::read_dir(dir)
|
||||
.ok()?
|
||||
.filter_map(|e| e.ok())
|
||||
.map(|file| file.path())
|
||||
.find(|file| file.file_stem() == Some(&icon_name))
|
||||
})
|
||||
.last()?;
|
||||
|
||||
// Check the file extension of the icon file and return an option containing the path to the file in an instance of the IconType enum
|
||||
match icon.extension().and_then(|ext| ext.to_str()) {
|
||||
Some("png") => Some(IconType::Png(icon)),
|
||||
Some("svg") => Some(IconType::Svg(icon)),
|
||||
Some("glb") | Some("gltf") => Some(IconType::Gltf(icon)),
|
||||
_ => None,
|
||||
}
|
||||
}
|
||||
}
|
||||
#[test]
|
||||
fn test_get_icon_path() {
|
||||
// Create an instance of the DesktopFile struct with some dummy data
|
||||
let desktop_file = DesktopFile {
|
||||
name: Some("test".into()),
|
||||
command: Some("test-command".into()),
|
||||
categories: vec!["test-category".into()],
|
||||
icon: Some("krita".into()),
|
||||
};
|
||||
|
||||
// Call the get_icon_path() function with a size argument and store the result
|
||||
let icon_path = desktop_file.get_icon_path("16x16");
|
||||
|
||||
// Assert that the get_icon_path() function returns the expected result
|
||||
assert_eq!(
|
||||
icon_path,
|
||||
Some(IconType::Png(PathBuf::from(
|
||||
"/usr/share/icons/hicolor/16x16/apps/krita.png"
|
||||
)))
|
||||
);
|
||||
}
|
||||
@@ -1,3 +1,4 @@
|
||||
mod desktop_file;
|
||||
mod protostar;
|
||||
|
||||
use manifest_dir_macros::directory_relative_path;
|
||||
|
||||
Reference in New Issue
Block a user