From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id ED6D99887F for ; Mon, 9 Oct 2023 13:52:47 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 005B916D46 for ; Mon, 9 Oct 2023 13:52:16 +0200 (CEST) Received: from proxmox-new.maurer-it.com (proxmox-new.maurer-it.com [94.136.29.106]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS for ; Mon, 9 Oct 2023 13:52:13 +0200 (CEST) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id 00F014483A for ; Mon, 9 Oct 2023 13:52:13 +0200 (CEST) From: Christian Ebner To: pbs-devel@lists.proxmox.com Date: Mon, 9 Oct 2023 13:51:36 +0200 Message-Id: <20231009115139.1417886-21-c.ebner@proxmox.com> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20231009115139.1417886-1-c.ebner@proxmox.com> References: <20231009115139.1417886-1-c.ebner@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL 0.084 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Subject: [pbs-devel] [RFC v2 proxmox-backup 20/23] fix #3174: schema: add backup detection mode schema X-BeenThere: pbs-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox Backup Server development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Oct 2023 11:52:48 -0000 Adds the schema for switching the detection mode used to identify regular files which changed since a reference backup run. Signed-off-by: Christian Ebner --- Changes since version 1: not present in version 1 pbs-api-types/src/datastore.rs | 41 ++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/pbs-api-types/src/datastore.rs b/pbs-api-types/src/datastore.rs index 73c4890e..723bb43d 100644 --- a/pbs-api-types/src/datastore.rs +++ b/pbs-api-types/src/datastore.rs @@ -65,6 +65,14 @@ pub const BACKUP_TYPE_SCHEMA: Schema = StringSchema::new("Backup type.") ])) .schema(); +pub const BACKUP_DETECTION_MODE_SCHEMA: Schema = + StringSchema::new("Backup file change detection mode.") + .format(&ApiStringFormat::Enum(&[ + EnumEntry::new("data", "Reading full data"), + EnumEntry::new("metadata", "Check file metadata"), + ])) + .schema(); + pub const BACKUP_TIME_SCHEMA: Schema = IntegerSchema::new("Backup time (Unix epoch.)") .minimum(1) .schema(); @@ -1048,6 +1056,39 @@ impl std::str::FromStr for BackupPart { } } +#[api] +/// Backup file detection mode +#[derive(Clone, Copy, Debug, Eq, Hash, PartialEq, Deserialize, Serialize)] +#[serde(rename_all = "lowercase")] +pub enum BackupDetectionMode { + /// Data.. + Data, + /// Metadata. + Metadata, +} + +impl BackupDetectionMode { + pub const fn as_str(&self) -> &'static str { + match self { + BackupDetectionMode::Data=> "data", + BackupDetectionMode::Metadata => "metadata", + } + } +} + +impl std::str::FromStr for BackupDetectionMode { + type Err = Error; + + /// Parse backup file detection mode. + fn from_str(ty: &str) -> Result { + Ok(match ty { + "data" => BackupDetectionMode::Data, + "metadata" => BackupDetectionMode::Metadata, + _ => bail!("invalid backup detection mode {ty:?}"), + }) + } +} + #[api( properties: { "backup": { type: BackupDir }, -- 2.39.2