Merge pull request #114 from rustfs/dev

cargo fmt
This commit is contained in:
loverustfs
2024-11-03 21:32:03 +08:00
committed by GitHub
8 changed files with 140 additions and 145 deletions
@@ -1,10 +1,9 @@
// automatically generated by the FlatBuffers compiler, do not modify // automatically generated by the FlatBuffers compiler, do not modify
// @generated // @generated
use core::mem;
use core::cmp::Ordering; use core::cmp::Ordering;
use core::mem;
extern crate flatbuffers; extern crate flatbuffers;
use self::flatbuffers::{EndianScalar, Follow}; use self::flatbuffers::{EndianScalar, Follow};
@@ -12,28 +11,30 @@ use self::flatbuffers::{EndianScalar, Follow};
#[allow(unused_imports, dead_code)] #[allow(unused_imports, dead_code)]
pub mod models { pub mod models {
use core::mem;
use core::cmp::Ordering; use core::cmp::Ordering;
use core::mem;
extern crate flatbuffers; extern crate flatbuffers;
use self::flatbuffers::{EndianScalar, Follow}; use self::flatbuffers::{EndianScalar, Follow};
pub enum PingBodyOffset {} pub enum PingBodyOffset {}
#[derive(Copy, Clone, PartialEq)] #[derive(Copy, Clone, PartialEq)]
pub struct PingBody<'a> { pub struct PingBody<'a> {
pub _tab: flatbuffers::Table<'a>, pub _tab: flatbuffers::Table<'a>,
} }
impl<'a> flatbuffers::Follow<'a> for PingBody<'a> { impl<'a> flatbuffers::Follow<'a> for PingBody<'a> {
type Inner = PingBody<'a>; type Inner = PingBody<'a>;
#[inline] #[inline]
unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner {
Self { _tab: flatbuffers::Table::new(buf, loc) } Self {
_tab: flatbuffers::Table::new(buf, loc),
}
}
} }
}
impl<'a> PingBody<'a> { impl<'a> PingBody<'a> {
pub const VT_PAYLOAD: flatbuffers::VOffsetT = 4; pub const VT_PAYLOAD: flatbuffers::VOffsetT = 4;
pub const fn get_fully_qualified_name() -> &'static str { pub const fn get_fully_qualified_name() -> &'static str {
@@ -47,55 +48,56 @@ impl<'a> PingBody<'a> {
#[allow(unused_mut)] #[allow(unused_mut)]
pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: flatbuffers::Allocator + 'bldr>( pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: flatbuffers::Allocator + 'bldr>(
_fbb: &'mut_bldr mut flatbuffers::FlatBufferBuilder<'bldr, A>, _fbb: &'mut_bldr mut flatbuffers::FlatBufferBuilder<'bldr, A>,
args: &'args PingBodyArgs<'args> args: &'args PingBodyArgs<'args>,
) -> flatbuffers::WIPOffset<PingBody<'bldr>> { ) -> flatbuffers::WIPOffset<PingBody<'bldr>> {
let mut builder = PingBodyBuilder::new(_fbb); let mut builder = PingBodyBuilder::new(_fbb);
if let Some(x) = args.payload { builder.add_payload(x); } if let Some(x) = args.payload {
builder.add_payload(x);
}
builder.finish() builder.finish()
} }
#[inline] #[inline]
pub fn payload(&self) -> Option<flatbuffers::Vector<'a, u8>> { pub fn payload(&self) -> Option<flatbuffers::Vector<'a, u8>> {
// Safety: // Safety:
// Created from valid Table for this object // Created from valid Table for this object
// which contains a valid value in this slot // which contains a valid value in this slot
unsafe { self._tab.get::<flatbuffers::ForwardsUOffset<flatbuffers::Vector<'a, u8>>>(PingBody::VT_PAYLOAD, None)} unsafe {
self._tab
.get::<flatbuffers::ForwardsUOffset<flatbuffers::Vector<'a, u8>>>(PingBody::VT_PAYLOAD, None)
}
}
} }
}
impl flatbuffers::Verifiable for PingBody<'_> { impl flatbuffers::Verifiable for PingBody<'_> {
#[inline] #[inline]
fn run_verifier( fn run_verifier(v: &mut flatbuffers::Verifier, pos: usize) -> Result<(), flatbuffers::InvalidFlatbuffer> {
v: &mut flatbuffers::Verifier, pos: usize
) -> Result<(), flatbuffers::InvalidFlatbuffer> {
use self::flatbuffers::Verifiable; use self::flatbuffers::Verifiable;
v.visit_table(pos)? v.visit_table(pos)?
.visit_field::<flatbuffers::ForwardsUOffset<flatbuffers::Vector<'_, u8>>>("payload", Self::VT_PAYLOAD, false)? .visit_field::<flatbuffers::ForwardsUOffset<flatbuffers::Vector<'_, u8>>>("payload", Self::VT_PAYLOAD, false)?
.finish(); .finish();
Ok(()) Ok(())
} }
} }
pub struct PingBodyArgs<'a> { pub struct PingBodyArgs<'a> {
pub payload: Option<flatbuffers::WIPOffset<flatbuffers::Vector<'a, u8>>>, pub payload: Option<flatbuffers::WIPOffset<flatbuffers::Vector<'a, u8>>>,
} }
impl<'a> Default for PingBodyArgs<'a> { impl<'a> Default for PingBodyArgs<'a> {
#[inline] #[inline]
fn default() -> Self { fn default() -> Self {
PingBodyArgs { PingBodyArgs { payload: None }
payload: None,
} }
} }
}
pub struct PingBodyBuilder<'a: 'b, 'b, A: flatbuffers::Allocator + 'a> { pub struct PingBodyBuilder<'a: 'b, 'b, A: flatbuffers::Allocator + 'a> {
fbb_: &'b mut flatbuffers::FlatBufferBuilder<'a, A>, fbb_: &'b mut flatbuffers::FlatBufferBuilder<'a, A>,
start_: flatbuffers::WIPOffset<flatbuffers::TableUnfinishedWIPOffset>, start_: flatbuffers::WIPOffset<flatbuffers::TableUnfinishedWIPOffset>,
} }
impl<'a: 'b, 'b, A: flatbuffers::Allocator + 'a> PingBodyBuilder<'a, 'b, A> { impl<'a: 'b, 'b, A: flatbuffers::Allocator + 'a> PingBodyBuilder<'a, 'b, A> {
#[inline] #[inline]
pub fn add_payload(&mut self, payload: flatbuffers::WIPOffset<flatbuffers::Vector<'b , u8>>) { pub fn add_payload(&mut self, payload: flatbuffers::WIPOffset<flatbuffers::Vector<'b, u8>>) {
self.fbb_.push_slot_always::<flatbuffers::WIPOffset<_>>(PingBody::VT_PAYLOAD, payload); self.fbb_
.push_slot_always::<flatbuffers::WIPOffset<_>>(PingBody::VT_PAYLOAD, payload);
} }
#[inline] #[inline]
pub fn new(_fbb: &'b mut flatbuffers::FlatBufferBuilder<'a, A>) -> PingBodyBuilder<'a, 'b, A> { pub fn new(_fbb: &'b mut flatbuffers::FlatBufferBuilder<'a, A>) -> PingBodyBuilder<'a, 'b, A> {
@@ -110,14 +112,13 @@ impl<'a: 'b, 'b, A: flatbuffers::Allocator + 'a> PingBodyBuilder<'a, 'b, A> {
let o = self.fbb_.end_table(self.start_); let o = self.fbb_.end_table(self.start_);
flatbuffers::WIPOffset::new(o.value()) flatbuffers::WIPOffset::new(o.value())
} }
} }
impl core::fmt::Debug for PingBody<'_> { impl core::fmt::Debug for PingBody<'_> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
let mut ds = f.debug_struct("PingBody"); let mut ds = f.debug_struct("PingBody");
ds.field("payload", &self.payload()); ds.field("payload", &self.payload());
ds.finish() ds.finish()
} }
} }
} // pub mod models } // pub mod models
+4 -6
View File
@@ -152,7 +152,7 @@ pub async fn list_path_raw(mut rx: B_Receiver<bool>, opts: ListPathRawOptions) -
None => { None => {
at_eof += 1; at_eof += 1;
continue; continue;
}, }
}; };
// If no current, add it. // If no current, add it.
if current.name.is_empty() { if current.name.is_empty() {
@@ -189,16 +189,14 @@ pub async fn list_path_raw(mut rx: B_Receiver<bool>, opts: ListPathRawOptions) -
finished_fn(&errs); finished_fn(&errs);
} }
let mut combined_err = Vec::new(); let mut combined_err = Vec::new();
errs.iter().zip(opts.disks.iter()).for_each(|(err, disk)| { errs.iter().zip(opts.disks.iter()).for_each(|(err, disk)| match (err, disk) {
match (err, disk) {
(Some(err), Some(disk)) => { (Some(err), Some(disk)) => {
combined_err.push(format!("drive {} returned: {}", disk.to_string(), err)); combined_err.push(format!("drive {} returned: {}", disk.to_string(), err));
}, }
(Some(err), None) => { (Some(err), None) => {
combined_err.push(err.to_string()); combined_err.push(err.to_string());
},
_ => {},
} }
_ => {}
}); });
return Err(Error::from_string(combined_err.join(", "))); return Err(Error::from_string(combined_err.join(", ")));
+18 -18
View File
@@ -253,12 +253,12 @@ pub fn parse_storage_class(env: &str) -> Result<StorageClass> {
// ValidateParity validates standard storage class parity. // ValidateParity validates standard storage class parity.
pub fn validate_parity(ss_parity: usize, set_drive_count: usize) -> Result<()> { pub fn validate_parity(ss_parity: usize, set_drive_count: usize) -> Result<()> {
if ss_parity > 0 && ss_parity < MIN_PARITY_DRIVES { // if ss_parity > 0 && ss_parity < MIN_PARITY_DRIVES {
return Err(Error::msg(format!( // return Err(Error::msg(format!(
"parity {} should be greater than or equal to {}", // "parity {} should be greater than or equal to {}",
ss_parity, MIN_PARITY_DRIVES // ss_parity, MIN_PARITY_DRIVES
))); // )));
} // }
if ss_parity > set_drive_count / 2 { if ss_parity > set_drive_count / 2 {
return Err(Error::msg(format!( return Err(Error::msg(format!(
@@ -273,21 +273,21 @@ pub fn validate_parity(ss_parity: usize, set_drive_count: usize) -> Result<()> {
// Validates the parity drives. // Validates the parity drives.
pub fn validate_parity_inner(ss_parity: usize, rrs_parity: usize, set_drive_count: usize) -> Result<()> { pub fn validate_parity_inner(ss_parity: usize, rrs_parity: usize, set_drive_count: usize) -> Result<()> {
if ss_parity > 0 && ss_parity < MIN_PARITY_DRIVES { // if ss_parity > 0 && ss_parity < MIN_PARITY_DRIVES {
return Err(Error::msg(format!( // return Err(Error::msg(format!(
"Standard storage class parity {} should be greater than or equal to {}", // "Standard storage class parity {} should be greater than or equal to {}",
ss_parity, MIN_PARITY_DRIVES // ss_parity, MIN_PARITY_DRIVES
))); // )));
} // }
// RRS parity drives should be greater than or equal to minParityDrives. // RRS parity drives should be greater than or equal to minParityDrives.
// Parity below minParityDrives is not supported. // Parity below minParityDrives is not supported.
if rrs_parity > 0 && rrs_parity < MIN_PARITY_DRIVES { // if rrs_parity > 0 && rrs_parity < MIN_PARITY_DRIVES {
return Err(Error::msg(format!( // return Err(Error::msg(format!(
"Reduced redundancy storage class parity {} should be greater than or equal to {}", // "Reduced redundancy storage class parity {} should be greater than or equal to {}",
rrs_parity, MIN_PARITY_DRIVES // rrs_parity, MIN_PARITY_DRIVES
))); // )));
} // }
if set_drive_count > 2 { if set_drive_count > 2 {
if ss_parity > set_drive_count / 2 { if ss_parity > set_drive_count / 2 {
+2 -2
View File
@@ -426,9 +426,9 @@ pub fn is_all_not_found(errs: &[Option<Error>]) -> bool {
if let Some(err) = err { if let Some(err) = err {
if let Some(err) = err.downcast_ref::<DiskError>() { if let Some(err) = err.downcast_ref::<DiskError>() {
match err { match err {
DiskError::FileNotFound | DiskError::VolumeNotFound | &DiskError::FileVersionNotFound =>{ DiskError::FileNotFound | DiskError::VolumeNotFound | &DiskError::FileVersionNotFound => {
continue; continue;
}, }
_ => return false, _ => return false,
} }
} }
+1 -5
View File
@@ -8,11 +8,7 @@ use tokio::{
}, },
}; };
use crate::{ use crate::{error::Error, heal::heal_ops::NOP_HEAL, utils::path::SLASH_SEPARATOR};
error::Error,
heal::heal_ops::NOP_HEAL,
utils::path::SLASH_SEPARATOR,
};
use super::{ use super::{
heal_commands::{HealOpts, HealResultItem}, heal_commands::{HealOpts, HealResultItem},
+3 -3
View File
@@ -421,12 +421,12 @@ async fn load_healing_tracker(disk: &Option<DiskStore>) -> Result<HealingTracker
))); )));
} }
healing_tracker.id = disk_id; healing_tracker.id = disk_id;
return Ok(healing_tracker); Ok(healing_tracker)
} else { } else {
return Err(Error::from_string("loadHealingTracker: disk not have id")); Err(Error::from_string("loadHealingTracker: disk not have id"))
} }
} else { } else {
return Err(Error::from_string("loadHealingTracker: nil drive given")); Err(Error::from_string("loadHealingTracker: nil drive given"))
} }
} }
+2 -2
View File
@@ -335,7 +335,7 @@ pub async fn heal_sequence_start(h: Arc<HealSequence>) {
} }
}, },
None => { None => {
return;
} }
} }
@@ -462,7 +462,7 @@ impl AllHealState {
} }
} }
return (None, false); (None, false)
} }
async fn get_heal_sequence(&self, path: &str) -> Option<HealSequence> { async fn get_heal_sequence(&self, path: &str) -> Option<HealSequence> {
+1 -1
View File
@@ -1797,7 +1797,7 @@ async fn has_space_for(dis: &Vec<Option<DiskInfo>>, size: i64) -> Result<bool> {
} }
} }
if disks_num < dis.len() / 2 || disks_num <= 0 { if disks_num < dis.len() / 2 || disks_num == 0 {
return Err(Error::msg(format!( return Err(Error::msg(format!(
"not enough online disks to calculate the available space,need {}, found {}", "not enough online disks to calculate the available space,need {}, found {}",
(dis.len() / 2) + 1, (dis.len() / 2) + 1,