1 extern crate proxmox_backup
;
4 use std
::os
::unix
::io
::AsRawFd
;
6 use proxmox_backup
::tools
;
7 use proxmox_backup
::cli
::command
::*;
8 use proxmox_backup
::api
::schema
::*;
9 use proxmox_backup
::api
::router
::*;
10 //use proxmox_backup::backup::chunk_store::*;
11 //use proxmox_backup::backup::image_index::*;
12 //use proxmox_backup::config::datastore;
13 use proxmox_backup
::backup
::datastore
::*;
14 use serde_json
::{Value}
;
16 fn required_string_param
<'a
>(param
: &'a Value
, name
: &str) -> &'a
str {
17 param
[name
].as_str().expect(&format
!("missing parameter '{}'", name
))
20 fn backup_file(param
: Value
, _info
: &ApiMethod
) -> Result
<Value
, Error
> {
22 let filename
= required_string_param(¶m
, "filename");
23 let store
= required_string_param(¶m
, "store");
24 let target
= required_string_param(¶m
, "target");
26 let mut chunk_size
= 4*1024*1024;
28 if let Some(size
) = param
["chunk-size"].as_u64() {
29 static SIZES
: [u64; 7] = [64, 128, 256, 512, 1024, 2048, 4096];
31 if SIZES
.contains(&size
) {
32 chunk_size
= (size
as usize) * 1024;
34 bail
!("Got unsupported chunk size '{}'", size
);
38 let mut datastore
= DataStore
::open(store
)?
;
40 println
!("Backup file '{}' to '{}'", filename
, store
);
42 let mut target
= std
::path
::PathBuf
::from(target
);
43 if let Some(ext
) = target
.extension() {
45 bail
!("got wrong file extension - expected '.iidx'");
48 target
.set_extension("iidx");
52 let file
= std
::fs
::File
::open(filename
)?
;
53 let stat
= nix
::sys
::stat
::fstat(file
.as_raw_fd())?
;
54 if stat
.st_size
<= 0 { bail!("got strange file size '{}'
", stat.st_size); }
55 let size = stat.st_size as usize;
57 let mut index = datastore.create_image_writer(&target, size, chunk_size)?;
59 tools::file_chunker(file, chunk_size, |pos, chunk| {
60 index.add_chunk(pos, chunk)?;
64 index.close()?; // commit changes
67 //datastore.garbage_collection()?;
69 let idx = datastore.open_image_reader(target)?;
78 let cmd_def = CliCommand::new(
81 ObjectSchema::new("Create backup from file
.")
82 .required("filename
", StringSchema::new("Source file name
."))
83 .required("store
", StringSchema::new("Datastore name
."))
84 .required("target
", StringSchema::new("Target name
."))
87 IntegerSchema::new("Chunk size
in KB
. Must be a power of
2.")
93 .arg_param(vec!["filename
", "target
"])
94 .completion_cb("store
", proxmox_backup::config::datastore::complete_datastore_name);
97 if let Err(err) = run_cli_command(&cmd_def.into()) {
98 eprintln!("Error
: {}
", err);
100 std::process::exit(-1);