2019-04-07 10:18:58 +00:00
|
|
|
use failure::*;
|
|
|
|
|
2019-04-07 12:36:57 +00:00
|
|
|
use crate::tools;
|
2019-04-07 10:18:58 +00:00
|
|
|
use crate::api_schema::*;
|
|
|
|
use crate::api_schema::router::*;
|
|
|
|
use serde_json::{json, Value};
|
2019-04-07 12:36:57 +00:00
|
|
|
use std::sync::Arc;
|
|
|
|
use std::fs::File;
|
|
|
|
use std::io::{BufRead,BufReader};
|
2019-04-07 10:18:58 +00:00
|
|
|
|
2019-05-09 05:44:09 +00:00
|
|
|
use crate::api2::types::*;
|
2019-04-07 12:36:57 +00:00
|
|
|
use crate::server::{self, UPID};
|
|
|
|
|
|
|
|
fn get_task_status(
|
|
|
|
param: Value,
|
|
|
|
_info: &ApiMethod,
|
2019-06-07 11:10:56 +00:00
|
|
|
_rpcenv: &mut dyn RpcEnvironment,
|
2019-04-07 12:36:57 +00:00
|
|
|
) -> Result<Value, Error> {
|
|
|
|
|
|
|
|
let upid = extract_upid(¶m)?;
|
|
|
|
|
2019-04-09 13:12:20 +00:00
|
|
|
let mut result = json!({
|
|
|
|
"upid": param["upid"],
|
|
|
|
"node": upid.node,
|
|
|
|
"pid": upid.pid,
|
|
|
|
"pstart": upid.pstart,
|
|
|
|
"starttime": upid.starttime,
|
|
|
|
"type": upid.worker_type,
|
|
|
|
"id": upid.worker_id,
|
|
|
|
"user": upid.username,
|
|
|
|
});
|
|
|
|
|
|
|
|
if crate::server::worker_is_active(&upid) {
|
|
|
|
result["status"] = Value::from("running");
|
2019-04-07 12:36:57 +00:00
|
|
|
} else {
|
2019-04-09 13:12:20 +00:00
|
|
|
let exitstatus = crate::server::upid_read_status(&upid).unwrap_or(String::from("unknown"));
|
|
|
|
result["status"] = Value::from("stopped");
|
|
|
|
result["exitstatus"] = Value::from(exitstatus);
|
2019-04-07 12:36:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
Ok(result)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn extract_upid(param: &Value) -> Result<UPID, Error> {
|
|
|
|
|
|
|
|
let upid_str = tools::required_string_param(¶m, "upid")?;
|
|
|
|
|
|
|
|
let upid = match upid_str.parse::<UPID>() {
|
|
|
|
Ok(v) => v,
|
|
|
|
Err(err) => bail!("unable to parse UPID '{}' - {}", upid_str, err),
|
|
|
|
};
|
|
|
|
|
|
|
|
Ok(upid)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn read_task_log(
|
|
|
|
param: Value,
|
|
|
|
_info: &ApiMethod,
|
2019-06-07 11:10:56 +00:00
|
|
|
rpcenv: &mut dyn RpcEnvironment,
|
2019-04-07 12:36:57 +00:00
|
|
|
) -> Result<Value, Error> {
|
|
|
|
|
|
|
|
let upid = extract_upid(¶m)?;
|
|
|
|
let start = param["start"].as_u64().unwrap_or(0);
|
|
|
|
let mut limit = param["limit"].as_u64().unwrap_or(50);
|
|
|
|
let mut count: u64 = 0;
|
|
|
|
|
|
|
|
let path = upid.log_path();
|
|
|
|
|
|
|
|
let file = File::open(path)?;
|
|
|
|
|
|
|
|
let mut lines: Vec<Value> = vec![];
|
|
|
|
|
|
|
|
for line in BufReader::new(file).lines() {
|
|
|
|
match line {
|
|
|
|
Ok(line) => {
|
|
|
|
count += 1;
|
|
|
|
if count < start { continue };
|
|
|
|
if limit <= 0 { continue };
|
|
|
|
|
|
|
|
lines.push(json!({ "n": count, "t": line }));
|
|
|
|
|
|
|
|
limit -= 1;
|
|
|
|
}
|
|
|
|
Err(err) => {
|
|
|
|
log::error!("reading task log failed: {}", err);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-09 12:43:30 +00:00
|
|
|
rpcenv.set_result_attrib("total", Value::from(count));
|
|
|
|
|
2019-04-07 12:36:57 +00:00
|
|
|
Ok(json!(lines))
|
|
|
|
}
|
2019-04-07 10:18:58 +00:00
|
|
|
|
2019-04-10 11:55:05 +00:00
|
|
|
fn stop_task(
|
|
|
|
param: Value,
|
|
|
|
_info: &ApiMethod,
|
2019-06-07 11:10:56 +00:00
|
|
|
_rpcenv: &mut dyn RpcEnvironment,
|
2019-04-10 11:55:05 +00:00
|
|
|
) -> Result<Value, Error> {
|
|
|
|
|
|
|
|
let upid = extract_upid(¶m)?;
|
|
|
|
|
|
|
|
if crate::server::worker_is_active(&upid) {
|
|
|
|
server::abort_worker_async(upid);
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(Value::Null)
|
|
|
|
}
|
|
|
|
|
2019-04-07 10:18:58 +00:00
|
|
|
fn list_tasks(
|
|
|
|
param: Value,
|
|
|
|
_info: &ApiMethod,
|
2019-06-07 11:10:56 +00:00
|
|
|
rpcenv: &mut dyn RpcEnvironment,
|
2019-04-07 10:18:58 +00:00
|
|
|
) -> Result<Value, Error> {
|
|
|
|
|
|
|
|
let start = param["start"].as_u64().unwrap_or(0);
|
|
|
|
let limit = param["limit"].as_u64().unwrap_or(50);
|
|
|
|
let errors = param["errors"].as_bool().unwrap_or(false);
|
|
|
|
|
2019-04-07 11:17:19 +00:00
|
|
|
let userfilter = param["userfilter"].as_str();
|
|
|
|
|
2019-04-07 10:18:58 +00:00
|
|
|
let list = server::read_task_list()?;
|
|
|
|
|
|
|
|
let mut result = vec![];
|
|
|
|
|
|
|
|
let mut count = 0;
|
|
|
|
|
|
|
|
for info in list.iter() {
|
|
|
|
let mut entry = json!({
|
|
|
|
"upid": info.upid_str,
|
|
|
|
"node": "localhost",
|
|
|
|
"pid": info.upid.pid,
|
|
|
|
"pstart": info.upid.pstart,
|
|
|
|
"starttime": info.upid.starttime,
|
|
|
|
"type": info.upid.worker_type,
|
|
|
|
"id": info.upid.worker_id,
|
|
|
|
"user": info.upid.username,
|
|
|
|
});
|
|
|
|
|
2019-04-07 11:17:19 +00:00
|
|
|
if let Some(username) = userfilter {
|
|
|
|
if !info.upid.username.contains(username) { continue; }
|
|
|
|
}
|
|
|
|
|
2019-04-07 10:18:58 +00:00
|
|
|
if let Some(ref state) = info.state {
|
|
|
|
if errors && state.1 == "OK" {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
entry["endtime"] = Value::from(state.0);
|
|
|
|
entry["status"] = Value::from(state.1.clone());
|
|
|
|
}
|
|
|
|
|
2019-04-07 10:41:24 +00:00
|
|
|
if (count as u64) < start {
|
2019-04-07 10:18:58 +00:00
|
|
|
count += 1;
|
|
|
|
continue;
|
|
|
|
} else {
|
|
|
|
count += 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (result.len() as u64) < limit { result.push(entry); };
|
|
|
|
}
|
|
|
|
|
|
|
|
rpcenv.set_result_attrib("total", Value::from(count));
|
|
|
|
|
|
|
|
Ok(json!(result))
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn router() -> Router {
|
|
|
|
|
2019-04-09 12:43:30 +00:00
|
|
|
let upid_schema: Arc<Schema> = Arc::new(
|
2019-04-07 12:36:57 +00:00
|
|
|
StringSchema::new("Unique Process/Task ID.")
|
|
|
|
.max_length(256)
|
|
|
|
.into()
|
|
|
|
);
|
|
|
|
|
|
|
|
let upid_api = Router::new()
|
2019-04-10 11:55:05 +00:00
|
|
|
.delete(ApiMethod::new(
|
|
|
|
stop_task,
|
|
|
|
ObjectSchema::new("Try to stop a task.")
|
2019-05-09 05:44:09 +00:00
|
|
|
.required("node", NODE_SCHEMA.clone())
|
2019-04-10 11:55:05 +00:00
|
|
|
.required("upid", upid_schema.clone())).protected(true)
|
|
|
|
|
|
|
|
)
|
2019-04-07 12:36:57 +00:00
|
|
|
.subdir(
|
|
|
|
"log", Router::new()
|
|
|
|
.get(
|
|
|
|
ApiMethod::new(
|
|
|
|
read_task_log,
|
|
|
|
ObjectSchema::new("Read task log.")
|
2019-05-09 05:44:09 +00:00
|
|
|
.required("node", NODE_SCHEMA.clone())
|
2019-04-07 12:36:57 +00:00
|
|
|
.required("upid", upid_schema.clone())
|
|
|
|
.optional(
|
|
|
|
"start",
|
|
|
|
IntegerSchema::new("Start at this line.")
|
|
|
|
.minimum(0)
|
|
|
|
.default(0)
|
|
|
|
)
|
|
|
|
.optional(
|
|
|
|
"limit",
|
|
|
|
IntegerSchema::new("Only list this amount of lines.")
|
|
|
|
.minimum(0)
|
|
|
|
.default(50)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
.subdir(
|
|
|
|
"status", Router::new()
|
|
|
|
.get(
|
|
|
|
ApiMethod::new(
|
|
|
|
get_task_status,
|
|
|
|
ObjectSchema::new("Get task status.")
|
2019-05-09 05:44:09 +00:00
|
|
|
.required("node", NODE_SCHEMA.clone())
|
2019-04-07 12:36:57 +00:00
|
|
|
.required("upid", upid_schema.clone()))
|
|
|
|
)
|
2019-04-16 10:07:02 +00:00
|
|
|
)
|
|
|
|
.list_subdirs();
|
2019-04-07 12:36:57 +00:00
|
|
|
|
|
|
|
|
2019-04-07 10:18:58 +00:00
|
|
|
let route = Router::new()
|
|
|
|
.get(ApiMethod::new(
|
|
|
|
list_tasks,
|
|
|
|
ObjectSchema::new("List tasks.")
|
2019-05-09 05:44:09 +00:00
|
|
|
.required("node", NODE_SCHEMA.clone())
|
2019-04-07 10:18:58 +00:00
|
|
|
.optional(
|
|
|
|
"start",
|
|
|
|
IntegerSchema::new("List tasks beginning from this offset.")
|
|
|
|
.minimum(0)
|
|
|
|
.default(0)
|
|
|
|
)
|
|
|
|
.optional(
|
|
|
|
"limit",
|
|
|
|
IntegerSchema::new("Only list this amount of tasks.")
|
|
|
|
.minimum(0)
|
|
|
|
.default(50)
|
|
|
|
)
|
|
|
|
.optional(
|
|
|
|
"errors",
|
|
|
|
BooleanSchema::new("Only list erroneous tasks.")
|
|
|
|
)
|
2019-04-07 11:17:19 +00:00
|
|
|
.optional(
|
|
|
|
"userfilter",
|
|
|
|
StringSchema::new("Only list tasks from this user.")
|
|
|
|
)
|
|
|
|
)
|
2019-04-07 12:36:57 +00:00
|
|
|
)
|
|
|
|
.match_all("upid", upid_api);
|
2019-04-07 10:18:58 +00:00
|
|
|
|
|
|
|
route
|
|
|
|
}
|