2019-05-08 10:41:58 +00:00
|
|
|
use std::sync::Arc;
|
|
|
|
use std::collections::HashMap;
|
|
|
|
|
|
|
|
use serde_json::Value;
|
|
|
|
|
|
|
|
use crate::api_schema::router::{RpcEnvironment, RpcEnvironmentType};
|
|
|
|
use crate::server::WorkerTask;
|
2019-05-09 11:06:09 +00:00
|
|
|
use crate::backup::*;
|
2019-05-08 10:41:58 +00:00
|
|
|
|
|
|
|
/// `RpcEnvironmet` implementation for backup service
|
|
|
|
#[derive(Clone)]
|
|
|
|
pub struct BackupEnvironment {
|
|
|
|
env_type: RpcEnvironmentType,
|
|
|
|
result_attributes: HashMap<String, Value>,
|
|
|
|
user: String,
|
2019-05-09 11:06:09 +00:00
|
|
|
pub worker: Arc<WorkerTask>,
|
|
|
|
pub datastore: Arc<DataStore>,
|
2019-05-08 10:41:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl BackupEnvironment {
|
2019-05-09 11:06:09 +00:00
|
|
|
pub fn new(env_type: RpcEnvironmentType, user: String, worker: Arc<WorkerTask>, datastore: Arc<DataStore>) -> Self {
|
2019-05-08 10:41:58 +00:00
|
|
|
Self {
|
|
|
|
result_attributes: HashMap::new(),
|
|
|
|
env_type,
|
|
|
|
user,
|
|
|
|
worker,
|
2019-05-09 11:06:09 +00:00
|
|
|
datastore,
|
2019-05-08 10:41:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn log<S: AsRef<str>>(&self, msg: S) {
|
|
|
|
self.worker.log(msg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl RpcEnvironment for BackupEnvironment {
|
|
|
|
|
|
|
|
fn set_result_attrib(&mut self, name: &str, value: Value) {
|
|
|
|
self.result_attributes.insert(name.into(), value);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get_result_attrib(&self, name: &str) -> Option<&Value> {
|
|
|
|
self.result_attributes.get(name)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn env_type(&self) -> RpcEnvironmentType {
|
|
|
|
self.env_type
|
|
|
|
}
|
|
|
|
|
|
|
|
fn set_user(&mut self, _user: Option<String>) {
|
|
|
|
panic!("unable to change user");
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get_user(&self) -> Option<String> {
|
|
|
|
Some(self.user.clone())
|
|
|
|
}
|
|
|
|
}
|
2019-05-09 11:06:09 +00:00
|
|
|
|
|
|
|
impl AsRef<BackupEnvironment> for RpcEnvironment {
|
|
|
|
fn as_ref(&self) -> &BackupEnvironment {
|
|
|
|
self.as_any().downcast_ref::<BackupEnvironment>().unwrap()
|
|
|
|
}
|
|
|
|
}
|