summaryrefslogtreecommitdiff
path: root/src/client.rs
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2020-12-30 14:16:34 +0200
committerLars Wirzenius <liw@liw.fi>2020-12-30 15:25:29 +0200
commit776b2c134c3096b8a7cf1742cbcda13f0527e415 (patch)
tree032ccd40e9db637df1ff68cdb46b8deda1ade27c /src/client.rs
parent6b9553945683e2b01404673e37e8b951b32a993e (diff)
downloadobnam2-776b2c134c3096b8a7cf1742cbcda13f0527e415.tar.gz
feat: add GenerationList
Various part of Obnam will need to deal with lists of generations. Abstract this.
Diffstat (limited to 'src/client.rs')
-rw-r--r--src/client.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/client.rs b/src/client.rs
index adca373..ec99134 100644
--- a/src/client.rs
+++ b/src/client.rs
@@ -6,6 +6,7 @@ use crate::chunkid::ChunkId;
use crate::chunkmeta::ChunkMeta;
use crate::fsentry::{FilesystemEntry, FilesystemKind};
use crate::generation::FinishedGeneration;
+use crate::genlist::GenerationList;
use chrono::{DateTime, Local};
use log::{debug, error, info, trace};
use reqwest::blocking::Client;
@@ -181,7 +182,7 @@ impl BackupClient {
Ok(chunk_ids)
}
- pub fn list_generations(&self) -> anyhow::Result<Vec<FinishedGeneration>> {
+ pub fn list_generations(&self) -> anyhow::Result<GenerationList> {
let url = format!("{}?generation=true", &self.chunks_url());
trace!("list_generations: url={:?}", url);
let req = self.client.get(&url).build()?;
@@ -195,7 +196,7 @@ impl BackupClient {
.iter()
.map(|(id, meta)| FinishedGeneration::new(id, meta.ended().map_or("", |s| s)))
.collect();
- Ok(finished)
+ Ok(GenerationList::new(finished))
}
pub fn fetch_chunk(&self, chunk_id: &ChunkId) -> anyhow::Result<DataChunk> {