158 lines
4.6 KiB
Hare
158 lines
4.6 KiB
Hare
use fmt;
|
|
use fs;
|
|
use format::desktop_entry;
|
|
use getopt;
|
|
use io;
|
|
use locale;
|
|
use os;
|
|
|
|
export fn main() void = {
|
|
const name = os::args[0];
|
|
|
|
const cmd = getopt::parse(
|
|
os::args,
|
|
"parse and display desktop entries",
|
|
('l', "locale", "the name of the locale to use"), // FIXME not working
|
|
('a', "action", "display a specific action"),
|
|
"file");
|
|
defer getopt::finish(&cmd);
|
|
|
|
let local = "";
|
|
let action = "";
|
|
for (let opt .. cmd.opts) switch (opt.0) {
|
|
case 'l' => local = opt.1;
|
|
case 'a' => action = opt.1;
|
|
case => abort();
|
|
};
|
|
|
|
let local = if (local == "") {
|
|
yield locale::get_messages();
|
|
} else {
|
|
yield locale::parse(local)!;
|
|
};
|
|
|
|
let file_name = if (len(cmd.args) == 1) {
|
|
yield cmd.args[0];
|
|
} else {
|
|
fmt::fprintf(os::stderr, "{}: expected 1 argument\n", name)!;
|
|
getopt::printusage(os::stderr, name, cmd.help)!;
|
|
os::exit(os::status::FAILURE);
|
|
};
|
|
|
|
let file = match (parse_file(file_name)) {
|
|
case let file: desktop_entry::file =>
|
|
yield file;
|
|
case let err: fs::error =>
|
|
fmt::fprintf(
|
|
os::stderr, "{}: {}: {}\n",
|
|
name, file_name, fs::strerror(err))!;
|
|
os::exit(os::status::FAILURE);
|
|
case let err: desktop_entry::error =>
|
|
fmt::fprintf(
|
|
os::stderr, "{}: {}: {}\n",
|
|
name, file_name, desktop_entry::strerror(err))!;
|
|
os::exit(os::status::FAILURE);
|
|
};
|
|
|
|
let result = if (action == "") {
|
|
yield print_file(file, local);
|
|
} else {
|
|
yield print_action(file, local, action);
|
|
};
|
|
|
|
match(result) {
|
|
case let err: io::error =>
|
|
fmt::fprintf(os::stderr, "{}: {}\n", name, io::strerror(err))!;
|
|
case void => void;
|
|
};
|
|
};
|
|
|
|
fn parse_file (file_name: str) (desktop_entry::file | fs::error | desktop_entry::error) = {
|
|
let file = os::open(file_name)?;
|
|
defer io::close(file)!;
|
|
return desktop_entry::parse(file);
|
|
};
|
|
|
|
fn print_file(file: desktop_entry::file, local: locale::locale) (void | io::error) = {
|
|
fmt::printf("Type={}\n", file.typ)?;
|
|
fmt::printf("Version={}\n", file.version)?;
|
|
match (locale::string_resolve(file.name, local)) {
|
|
case let name: str => fmt::printf("Name={}\n", name)?;
|
|
case void => void;
|
|
};
|
|
match (locale::string_resolve(file.generic_name, local)) {
|
|
case let generic_name: str => if (generic_name != "") fmt::printf("GenericName={}\n", generic_name)?;
|
|
case void => void;
|
|
};
|
|
if(file.no_display) fmt::println("NoDisplay=true")?;
|
|
match (locale::string_resolve(file.comment, local)) {
|
|
case let comment: str => if (comment != "") fmt::printf("Comment={}\n", comment)?;
|
|
case void => void;
|
|
};
|
|
match (locale::string_resolve(file.icon, local)) {
|
|
case let icon: str => if (icon != "") fmt::printf("Icon={}\n", icon)?;
|
|
case void => void;
|
|
};
|
|
if (file.hidden) fmt::println("Hidden=true")?;
|
|
if (file.dbus_activatable) fmt::println("DBusActivatable=true")?;
|
|
if (file.try_exec != "") fmt::printf("TryExec={}\n", file.try_exec)?;
|
|
if (file.exec != "") fmt::printf("Exec={}\n", file.exec)?;
|
|
if (file.path != "") fmt::printf("Path={}\n", file.path)?;
|
|
if (file.terminal) fmt::println("Terminal=true")?;
|
|
if (len(file.mime_type) > 0) {
|
|
fmt::print("MimeType=")?;
|
|
print_strings(file.mime_type)?;
|
|
};
|
|
if (len(file.categories) > 0) {
|
|
fmt::print("Categories=")?;
|
|
print_strings(file.categories)?;
|
|
};
|
|
if (len(file.implements) > 0) {
|
|
fmt::print("Implements=")?;
|
|
print_strings(file.implements)?;
|
|
};
|
|
if (len(file.keywords) > 0) {
|
|
fmt::print("Keywords=")? ;
|
|
match (locale::strings_resolve(file.keywords, local)) {
|
|
case let keywords: []str => print_strings(keywords)?;
|
|
case void => void;
|
|
};
|
|
};
|
|
if (file.startup_notify) fmt::println("StartupNotify=true")?;
|
|
if (file.startup_wm_class != "") fmt::printf("StartupWMClass={}\n", file.startup_wm_class)?;
|
|
if (file.url != "") fmt::printf("URL={}\n", file.url)?;
|
|
if (file.prefers_non_default_gpu) fmt::println("PrefersNonDefaultGPU=true")?;
|
|
if (file.single_main_window) fmt::println("SingleMainWindow=true")?;
|
|
};
|
|
|
|
fn print_strings(strings: []str) (void | io::error) = {
|
|
for (let string .. strings) {
|
|
fmt::printf("{};", string)?;
|
|
};
|
|
fmt::println()?;
|
|
};
|
|
|
|
fn print_action(file: desktop_entry::file, local: locale::locale, key: str) (void | io::error) = {
|
|
let action: (desktop_entry::action | void) = void;
|
|
for (let actio .. file.actions) {
|
|
if (actio.key == key) {
|
|
action = actio;
|
|
break;
|
|
};
|
|
};
|
|
let action = match (action) {
|
|
case let action: desktop_entry::action => yield action;
|
|
case void => return;
|
|
};
|
|
|
|
match (locale::string_resolve(action.name, local)) {
|
|
case let name: str => fmt::printf("Name={}\n", name)?;
|
|
case void => void;
|
|
};
|
|
match (locale::string_resolve(action.icon, local)) {
|
|
case let icon: str => if (icon != "") fmt::printf("Icon={}\n", icon)?;
|
|
case void => void;
|
|
};
|
|
if (action.exec != "") fmt::printf("Exec={}\n", action.exec)?;
|
|
};
|