2020-05-23 07:29:33 +00:00
|
|
|
use std::path::PathBuf;
|
|
|
|
use std::collections::HashMap;
|
|
|
|
use std::sync::{RwLock};
|
|
|
|
|
|
|
|
use anyhow::{format_err, Error};
|
|
|
|
use lazy_static::lazy_static;
|
|
|
|
|
|
|
|
use proxmox::tools::fs::{create_path, CreateOptions};
|
|
|
|
|
2020-05-23 09:10:02 +00:00
|
|
|
use crate::api2::types::{RRDMode, RRDTimeFrameResolution};
|
|
|
|
|
2020-05-23 07:29:33 +00:00
|
|
|
use super::*;
|
|
|
|
|
|
|
|
const PBS_RRD_BASEDIR: &str = "/var/lib/proxmox-backup/rrdb";
|
|
|
|
|
|
|
|
lazy_static!{
|
|
|
|
static ref RRD_CACHE: RwLock<HashMap<String, RRD>> = {
|
|
|
|
RwLock::new(HashMap::new())
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Create rrdd stat dir with correct permission
|
|
|
|
pub fn create_rrdb_dir() -> Result<(), Error> {
|
|
|
|
|
|
|
|
let backup_user = crate::backup::backup_user()?;
|
|
|
|
let opts = CreateOptions::new()
|
|
|
|
.owner(backup_user.uid)
|
|
|
|
.group(backup_user.gid);
|
|
|
|
|
|
|
|
create_path(PBS_RRD_BASEDIR, None, Some(opts))
|
|
|
|
.map_err(|err: Error| format_err!("unable to create rrdb stat dir - {}", err))?;
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2020-05-29 07:16:13 +00:00
|
|
|
pub fn update_value(rel_path: &str, value: f64, dst: DST, save: bool) -> Result<(), Error> {
|
2020-05-23 07:29:33 +00:00
|
|
|
|
|
|
|
let mut path = PathBuf::from(PBS_RRD_BASEDIR);
|
|
|
|
path.push(rel_path);
|
|
|
|
|
|
|
|
std::fs::create_dir_all(path.parent().unwrap())?;
|
|
|
|
|
|
|
|
let mut map = RRD_CACHE.write().unwrap();
|
2020-09-12 13:10:47 +00:00
|
|
|
let now = proxmox::tools::time::epoch_f64();
|
2020-05-23 12:03:44 +00:00
|
|
|
|
2020-05-23 07:29:33 +00:00
|
|
|
if let Some(rrd) = map.get_mut(rel_path) {
|
|
|
|
rrd.update(now, value);
|
2020-05-29 07:16:13 +00:00
|
|
|
if save { rrd.save(&path)?; }
|
2020-05-23 07:29:33 +00:00
|
|
|
} else {
|
|
|
|
let mut rrd = match RRD::load(&path) {
|
|
|
|
Ok(rrd) => rrd,
|
2020-05-25 08:18:53 +00:00
|
|
|
Err(err) => {
|
|
|
|
if err.kind() != std::io::ErrorKind::NotFound {
|
2020-05-25 08:30:04 +00:00
|
|
|
eprintln!("overwriting RRD file {:?}, because of load error: {}", path, err);
|
2020-05-25 08:18:53 +00:00
|
|
|
}
|
|
|
|
RRD::new(dst)
|
|
|
|
},
|
2020-05-23 07:29:33 +00:00
|
|
|
};
|
|
|
|
rrd.update(now, value);
|
2020-05-29 07:16:13 +00:00
|
|
|
if save { rrd.save(&path)?; }
|
2020-05-23 07:29:33 +00:00
|
|
|
map.insert(rel_path.into(), rrd);
|
|
|
|
}
|
2020-05-23 12:03:44 +00:00
|
|
|
|
2020-05-23 07:29:33 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2020-06-10 10:02:57 +00:00
|
|
|
pub fn extract_cached_data(
|
2020-05-23 12:03:44 +00:00
|
|
|
base: &str,
|
2020-06-10 10:02:57 +00:00
|
|
|
name: &str,
|
|
|
|
now: f64,
|
2020-05-23 12:03:44 +00:00
|
|
|
timeframe: RRDTimeFrameResolution,
|
|
|
|
mode: RRDMode,
|
2020-06-10 10:02:57 +00:00
|
|
|
) -> Option<(u64, u64, Vec<Option<f64>>)> {
|
2020-05-23 12:03:44 +00:00
|
|
|
|
|
|
|
let map = RRD_CACHE.read().unwrap();
|
|
|
|
|
2020-06-10 10:02:57 +00:00
|
|
|
match map.get(&format!("{}/{}", base, name)) {
|
|
|
|
Some(rrd) => Some(rrd.extract_data(now, timeframe, mode)),
|
|
|
|
None => None,
|
2020-05-23 12:03:44 +00:00
|
|
|
}
|
|
|
|
}
|