From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) by lore.proxmox.com (Postfix) with ESMTPS id 254B51FF39B for ; Mon, 17 Jun 2024 10:13:08 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 4751837919; Mon, 17 Jun 2024 10:13:10 +0200 (CEST) From: Gabriel Goller To: pbs-devel@lists.proxmox.com Date: Mon, 17 Jun 2024 10:12:54 +0200 Message-ID: <20240617081259.73805-5-g.goller@proxmox.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20240617081259.73805-1-g.goller@proxmox.com> References: <20240617081259.73805-1-g.goller@proxmox.com> MIME-Version: 1.0 X-SPAM-LEVEL: Spam detection results: 0 AWL -0.057 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 T_SCC_BODY_TEXT_LINE -0.01 - Subject: [pbs-devel] [PATCH proxmox-backup v3 4/4] pxar: use anyhow::Error in PxarBackupStream 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: , Reply-To: Proxmox Backup Server development discussion Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: pbs-devel-bounces@lists.proxmox.com Sender: "pbs-devel" Instead of storing the error as a string in the PxarBackupStream, we store it as an anyhow::Error. As we can't clone an anyhow::Error, we take it out from the mutex and return it. This won't change anything as the consumation of the stream will stop if it gets a Some(Err(..)). Signed-off-by: Gabriel Goller --- pbs-client/src/pxar_backup_stream.rs | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/pbs-client/src/pxar_backup_stream.rs b/pbs-client/src/pxar_backup_stream.rs index cdbcdfec..4370da6c 100644 --- a/pbs-client/src/pxar_backup_stream.rs +++ b/pbs-client/src/pxar_backup_stream.rs @@ -5,7 +5,7 @@ use std::pin::Pin; use std::sync::{mpsc, Arc, Mutex}; use std::task::{Context, Poll}; -use anyhow::{format_err, Error}; +use anyhow::Error; use futures::future::{AbortHandle, Abortable}; use futures::stream::Stream; use nix::dir::Dir; @@ -29,7 +29,7 @@ pub struct PxarBackupStream { rx: Option, Error>>>, pub suggested_boundaries: Option>, handle: Option, - error: Arc>>, + error: Arc>>, } impl Drop for PxarBackupStream { @@ -98,7 +98,7 @@ impl PxarBackupStream { .await { let mut error = error2.lock().unwrap(); - *error = Some(err.to_string()); + *error = Some(err); } }; @@ -142,18 +142,18 @@ impl Stream for PxarBackupStream { fn poll_next(self: Pin<&mut Self>, _cx: &mut Context) -> Poll> { { // limit lock scope - let error = self.error.lock().unwrap(); - if let Some(ref msg) = *error { - return Poll::Ready(Some(Err(format_err!("{}", msg)))); + let mut error = self.error.lock().unwrap(); + if let Some(err) = error.take() { + return Poll::Ready(Some(Err(err))); } } match proxmox_async::runtime::block_in_place(|| self.rx.as_ref().unwrap().recv()) { Ok(data) => Poll::Ready(Some(data)), Err(_) => { - let error = self.error.lock().unwrap(); - if let Some(ref msg) = *error { - return Poll::Ready(Some(Err(format_err!("{}", msg)))); + let mut error = self.error.lock().unwrap(); + if let Some(err) = error.take() { + return Poll::Ready(Some(Err(err))); } Poll::Ready(None) // channel closed, no error } -- 2.43.0 _______________________________________________ pbs-devel mailing list pbs-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pbs-devel