2020-12-09 11:58:43 +00:00
|
|
|
use anyhow::{Error};
|
|
|
|
use serde_json::Value;
|
|
|
|
|
|
|
|
use proxmox::{
|
|
|
|
api::{
|
|
|
|
api,
|
|
|
|
cli::*,
|
|
|
|
RpcEnvironment,
|
|
|
|
ApiHandler,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
use proxmox_backup::{
|
|
|
|
api2::{
|
|
|
|
self,
|
|
|
|
types::{
|
2020-12-13 08:22:08 +00:00
|
|
|
CHANGER_NAME_SCHEMA,
|
2020-12-09 11:58:43 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
tape::{
|
|
|
|
complete_changer_path,
|
|
|
|
},
|
|
|
|
config::{
|
|
|
|
drive::{
|
|
|
|
complete_drive_name,
|
|
|
|
complete_changer_name,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
pub fn changer_commands() -> CommandLineInterface {
|
|
|
|
|
|
|
|
let cmd_def = CliCommandMap::new()
|
2020-12-10 06:58:45 +00:00
|
|
|
.insert("scan", CliCommand::new(&API_METHOD_SCAN_FOR_CHANGERS))
|
2020-12-09 11:58:43 +00:00
|
|
|
.insert("list", CliCommand::new(&API_METHOD_LIST_CHANGERS))
|
|
|
|
.insert("config",
|
|
|
|
CliCommand::new(&API_METHOD_GET_CONFIG)
|
|
|
|
.arg_param(&["name"])
|
|
|
|
.completion_cb("name", complete_changer_name)
|
|
|
|
)
|
|
|
|
.insert(
|
|
|
|
"remove",
|
2020-12-10 07:35:11 +00:00
|
|
|
CliCommand::new(&api2::config::changer::API_METHOD_DELETE_CHANGER)
|
2020-12-09 11:58:43 +00:00
|
|
|
.arg_param(&["name"])
|
|
|
|
.completion_cb("name", complete_changer_name)
|
|
|
|
)
|
|
|
|
.insert(
|
|
|
|
"create",
|
2020-12-10 07:35:11 +00:00
|
|
|
CliCommand::new(&api2::config::changer::API_METHOD_CREATE_CHANGER)
|
2020-12-09 11:58:43 +00:00
|
|
|
.arg_param(&["name"])
|
|
|
|
.completion_cb("name", complete_drive_name)
|
|
|
|
.completion_cb("path", complete_changer_path)
|
|
|
|
)
|
|
|
|
.insert(
|
|
|
|
"update",
|
2020-12-10 07:35:11 +00:00
|
|
|
CliCommand::new(&api2::config::changer::API_METHOD_UPDATE_CHANGER)
|
2020-12-09 11:58:43 +00:00
|
|
|
.arg_param(&["name"])
|
|
|
|
.completion_cb("name", complete_changer_name)
|
|
|
|
.completion_cb("path", complete_changer_path)
|
|
|
|
)
|
|
|
|
.insert("status",
|
|
|
|
CliCommand::new(&API_METHOD_GET_STATUS)
|
|
|
|
.arg_param(&["name"])
|
|
|
|
.completion_cb("name", complete_changer_name)
|
|
|
|
)
|
|
|
|
.insert("transfer",
|
2020-12-10 07:35:11 +00:00
|
|
|
CliCommand::new(&api2::tape::changer::API_METHOD_TRANSFER)
|
2020-12-09 11:58:43 +00:00
|
|
|
.arg_param(&["name"])
|
|
|
|
.completion_cb("name", complete_changer_name)
|
|
|
|
)
|
|
|
|
;
|
|
|
|
|
|
|
|
cmd_def.into()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[api(
|
|
|
|
input: {
|
|
|
|
properties: {
|
|
|
|
"output-format": {
|
|
|
|
schema: OUTPUT_FORMAT,
|
|
|
|
optional: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
)]
|
|
|
|
/// List changers
|
|
|
|
fn list_changers(
|
|
|
|
param: Value,
|
|
|
|
rpcenv: &mut dyn RpcEnvironment,
|
|
|
|
) -> Result<(), Error> {
|
|
|
|
|
|
|
|
let output_format = get_output_format(¶m);
|
|
|
|
let info = &api2::config::changer::API_METHOD_LIST_CHANGERS;
|
|
|
|
let mut data = match info.handler {
|
|
|
|
ApiHandler::Sync(handler) => (handler)(param, info, rpcenv)?,
|
|
|
|
_ => unreachable!(),
|
|
|
|
};
|
|
|
|
|
|
|
|
let options = default_table_format_options()
|
|
|
|
.column(ColumnConfig::new("name"))
|
|
|
|
.column(ColumnConfig::new("path"))
|
|
|
|
.column(ColumnConfig::new("vendor"))
|
|
|
|
.column(ColumnConfig::new("model"))
|
|
|
|
.column(ColumnConfig::new("serial"))
|
|
|
|
;
|
|
|
|
|
2020-12-18 11:26:07 +00:00
|
|
|
format_and_print_result_full(&mut data, &info.returns, &output_format, &options);
|
2020-12-09 11:58:43 +00:00
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[api(
|
|
|
|
input: {
|
|
|
|
properties: {
|
|
|
|
"output-format": {
|
|
|
|
schema: OUTPUT_FORMAT,
|
|
|
|
optional: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
)]
|
|
|
|
/// Scan for SCSI tape changers
|
|
|
|
fn scan_for_changers(
|
|
|
|
param: Value,
|
|
|
|
rpcenv: &mut dyn RpcEnvironment,
|
|
|
|
) -> Result<(), Error> {
|
|
|
|
|
|
|
|
let output_format = get_output_format(¶m);
|
|
|
|
let info = &api2::tape::changer::API_METHOD_SCAN_CHANGERS;
|
|
|
|
let mut data = match info.handler {
|
|
|
|
ApiHandler::Sync(handler) => (handler)(param, info, rpcenv)?,
|
|
|
|
_ => unreachable!(),
|
|
|
|
};
|
|
|
|
|
|
|
|
let options = default_table_format_options()
|
|
|
|
.column(ColumnConfig::new("path"))
|
|
|
|
.column(ColumnConfig::new("vendor"))
|
|
|
|
.column(ColumnConfig::new("model"))
|
|
|
|
.column(ColumnConfig::new("serial"))
|
|
|
|
;
|
|
|
|
|
2020-12-18 11:26:07 +00:00
|
|
|
format_and_print_result_full(&mut data, &info.returns, &output_format, &options);
|
2020-12-09 11:58:43 +00:00
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[api(
|
|
|
|
input: {
|
|
|
|
properties: {
|
|
|
|
"output-format": {
|
|
|
|
schema: OUTPUT_FORMAT,
|
|
|
|
optional: true,
|
|
|
|
},
|
|
|
|
name: {
|
2020-12-13 08:22:08 +00:00
|
|
|
schema: CHANGER_NAME_SCHEMA,
|
2020-12-09 11:58:43 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
)]
|
|
|
|
/// Get tape changer configuration
|
|
|
|
fn get_config(
|
|
|
|
param: Value,
|
|
|
|
rpcenv: &mut dyn RpcEnvironment,
|
|
|
|
) -> Result<(), Error> {
|
|
|
|
|
|
|
|
let output_format = get_output_format(¶m);
|
|
|
|
let info = &api2::config::changer::API_METHOD_GET_CONFIG;
|
|
|
|
let mut data = match info.handler {
|
|
|
|
ApiHandler::Sync(handler) => (handler)(param, info, rpcenv)?,
|
|
|
|
_ => unreachable!(),
|
|
|
|
};
|
|
|
|
|
|
|
|
let options = default_table_format_options()
|
|
|
|
.column(ColumnConfig::new("name"))
|
|
|
|
.column(ColumnConfig::new("path"))
|
|
|
|
;
|
|
|
|
|
2020-12-18 11:26:07 +00:00
|
|
|
format_and_print_result_full(&mut data, &info.returns, &output_format, &options);
|
2020-12-09 11:58:43 +00:00
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[api(
|
|
|
|
input: {
|
|
|
|
properties: {
|
|
|
|
"output-format": {
|
|
|
|
schema: OUTPUT_FORMAT,
|
|
|
|
optional: true,
|
|
|
|
},
|
|
|
|
name: {
|
2020-12-13 08:22:08 +00:00
|
|
|
schema: CHANGER_NAME_SCHEMA,
|
2020-12-09 11:58:43 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
)]
|
|
|
|
/// Get tape changer status
|
2020-12-14 06:14:24 +00:00
|
|
|
async fn get_status(
|
2020-12-09 11:58:43 +00:00
|
|
|
param: Value,
|
|
|
|
rpcenv: &mut dyn RpcEnvironment,
|
|
|
|
) -> Result<(), Error> {
|
|
|
|
|
|
|
|
let output_format = get_output_format(¶m);
|
|
|
|
let info = &api2::tape::changer::API_METHOD_GET_STATUS;
|
|
|
|
let mut data = match info.handler {
|
2020-12-14 06:14:24 +00:00
|
|
|
ApiHandler::Async(handler) => (handler)(param, info, rpcenv).await?,
|
2020-12-09 11:58:43 +00:00
|
|
|
_ => unreachable!(),
|
|
|
|
};
|
|
|
|
|
|
|
|
let options = default_table_format_options()
|
|
|
|
.column(ColumnConfig::new("entry-kind"))
|
|
|
|
.column(ColumnConfig::new("entry-id"))
|
|
|
|
.column(ColumnConfig::new("changer-id"))
|
|
|
|
.column(ColumnConfig::new("loaded-slot"))
|
|
|
|
;
|
|
|
|
|
2020-12-18 11:26:07 +00:00
|
|
|
format_and_print_result_full(&mut data, &info.returns, &output_format, &options);
|
2020-12-09 11:58:43 +00:00
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|