mirror of
https://gitlab.com/asus-linux/asusctl.git
synced 2026-02-06 00:15:04 +01:00
137 lines
5.0 KiB
Rust
137 lines
5.0 KiB
Rust
use log::{error, info, warn};
|
|
use rog_types::{gfx_vendors::GfxVendors, profile::Profile};
|
|
use serde_derive::{Deserialize, Serialize};
|
|
use std::collections::BTreeMap;
|
|
use std::fs::{File, OpenOptions};
|
|
use std::io::{Read, Write};
|
|
|
|
use crate::config_old::*;
|
|
use crate::VERSION;
|
|
|
|
pub static CONFIG_PATH: &str = "/etc/asusd/asusd.conf";
|
|
pub static AURA_CONFIG_PATH: &str = "/etc/asusd/asusd.conf";
|
|
|
|
#[derive(Deserialize, Serialize)]
|
|
pub struct Config {
|
|
pub gfx_mode: GfxVendors,
|
|
pub gfx_last_mode: GfxVendors,
|
|
pub gfx_managed: bool,
|
|
pub gfx_vfio_enable: bool,
|
|
pub active_profile: String,
|
|
pub toggle_profiles: Vec<String>,
|
|
#[serde(skip)]
|
|
pub curr_fan_mode: u8,
|
|
pub bat_charge_limit: u8,
|
|
pub power_profiles: BTreeMap<String, Profile>,
|
|
}
|
|
|
|
impl Default for Config {
|
|
fn default() -> Self {
|
|
let mut pwr = BTreeMap::new();
|
|
pwr.insert("normal".into(), Profile::new(0, 100, true, 0, None));
|
|
pwr.insert("boost".into(), Profile::new(0, 100, true, 1, None));
|
|
pwr.insert("silent".into(), Profile::new(0, 100, true, 2, None));
|
|
|
|
Config {
|
|
gfx_mode: GfxVendors::Hybrid,
|
|
gfx_last_mode: GfxVendors::Hybrid,
|
|
gfx_managed: true,
|
|
gfx_vfio_enable: false,
|
|
active_profile: "normal".into(),
|
|
toggle_profiles: vec!["normal".into(), "boost".into(), "silent".into()],
|
|
curr_fan_mode: 0,
|
|
bat_charge_limit: 100,
|
|
power_profiles: pwr,
|
|
}
|
|
}
|
|
}
|
|
|
|
impl Config {
|
|
/// `load` will attempt to read the config, and panic if the dir is missing
|
|
pub fn load() -> Self {
|
|
let mut file = OpenOptions::new()
|
|
.read(true)
|
|
.write(true)
|
|
.create(true)
|
|
.open(&CONFIG_PATH)
|
|
.unwrap_or_else(|_| {
|
|
panic!(
|
|
"The file {} or directory /etc/asusd/ is missing",
|
|
CONFIG_PATH
|
|
)
|
|
}); // okay to cause panic here
|
|
let mut buf = String::new();
|
|
if let Ok(read_len) = file.read_to_string(&mut buf) {
|
|
if read_len == 0 {
|
|
return Config::create_default(&mut file);
|
|
} else {
|
|
if let Ok(data) = serde_json::from_str(&buf) {
|
|
return data;
|
|
} else if let Ok(data) = serde_json::from_str::<ConfigV341>(&buf) {
|
|
let config = data.into_current();
|
|
config.write();
|
|
info!("Updated config version to: {}", VERSION);
|
|
return config;
|
|
} else if let Ok(data) = serde_json::from_str::<ConfigV324>(&buf) {
|
|
let config = data.into_current();
|
|
config.write();
|
|
info!("Updated config version to: {}", VERSION);
|
|
return config;
|
|
} else if let Ok(data) = serde_json::from_str::<ConfigV317>(&buf) {
|
|
let config = data.into_current();
|
|
config.write();
|
|
info!("Updated config version to: {}", VERSION);
|
|
return config;
|
|
}
|
|
warn!("Could not deserialise {}", CONFIG_PATH);
|
|
panic!("Please remove {} then restart asusd", CONFIG_PATH);
|
|
}
|
|
}
|
|
Config::create_default(&mut file)
|
|
}
|
|
|
|
fn create_default(file: &mut File) -> Self {
|
|
let config = Config::default();
|
|
// Should be okay to unwrap this as is since it is a Default
|
|
let json = serde_json::to_string_pretty(&config).unwrap();
|
|
file.write_all(json.as_bytes())
|
|
.unwrap_or_else(|_| panic!("Could not write {}", CONFIG_PATH));
|
|
config
|
|
}
|
|
|
|
pub fn read(&mut self) {
|
|
let mut file = OpenOptions::new()
|
|
.read(true)
|
|
.open(&CONFIG_PATH)
|
|
.unwrap_or_else(|err| panic!("Error reading {}: {}", CONFIG_PATH, err));
|
|
let mut buf = String::new();
|
|
if let Ok(l) = file.read_to_string(&mut buf) {
|
|
if l == 0 {
|
|
warn!("File is empty {}", CONFIG_PATH);
|
|
} else {
|
|
let x: Config = serde_json::from_str(&buf)
|
|
.unwrap_or_else(|_| panic!("Could not deserialise {}", CONFIG_PATH));
|
|
*self = x;
|
|
}
|
|
}
|
|
}
|
|
|
|
pub fn read_new() -> Result<Config, Box<dyn std::error::Error>> {
|
|
let mut file = OpenOptions::new()
|
|
.read(true)
|
|
.open(&CONFIG_PATH)
|
|
.unwrap_or_else(|err| panic!("Error reading {}: {}", CONFIG_PATH, err));
|
|
let mut buf = String::new();
|
|
file.read_to_string(&mut buf)?;
|
|
let x: Config = serde_json::from_str(&buf)?;
|
|
Ok(x)
|
|
}
|
|
|
|
pub fn write(&self) {
|
|
let mut file = File::create(CONFIG_PATH).expect("Couldn't overwrite config");
|
|
let json = serde_json::to_string_pretty(self).expect("Parse config to JSON failed");
|
|
file.write_all(json.as_bytes())
|
|
.unwrap_or_else(|err| error!("Could not write config: {}", err));
|
|
}
|
|
}
|