Merge branch 'master' of https://git.cscherr.de/PlexSheep/pt
Cargo Check, Format, Fix and Test / cargo CI (push) Has been cancelled Details

This commit is contained in:
Christoph J. Scherr 2024-01-15 23:28:37 +01:00
commit 50fea61bb0
Signed by: PlexSheep
GPG Key ID: 7CDD0B14851A08EF
15 changed files with 62 additions and 70 deletions

View File

@ -19,7 +19,7 @@ use libpt::ccc::*;
use libpt::log::*; use libpt::log::*;
use clap::Parser; use clap::Parser;
use clap_verbosity_flag::{Verbosity, InfoLevel}; use clap_verbosity_flag::{InfoLevel, Verbosity};
use std::path::PathBuf; use std::path::PathBuf;

View File

@ -19,7 +19,7 @@ use clap::{Parser, Subcommand};
use clap_num::number_range; use clap_num::number_range;
use clap_verbosity_flag::{Verbosity, InfoLevel}; use clap_verbosity_flag::{InfoLevel, Verbosity};
//// CONSTANTS ///////////////////////////////////////////////////////////////////////////////////// //// CONSTANTS /////////////////////////////////////////////////////////////////////////////////////
/// short about section displayed in help /// short about section displayed in help
@ -103,13 +103,10 @@ pub enum NetCommands {
/// set a timeout (in ms) /// set a timeout (in ms)
#[clap(short, long, default_value_t = 100)] #[clap(short, long, default_value_t = 100)]
timeout: u64 timeout: u64,
}, },
/// discover hosts in your network /// discover hosts in your network
Discover { Discover {},
}
} }
//////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////

View File

@ -13,7 +13,6 @@
// enable clippy's extra lints, the pedantic version // enable clippy's extra lints, the pedantic version
#![warn(clippy::pedantic)] #![warn(clippy::pedantic)]
//// IMPORTS /////////////////////////////////////////////////////////////////////////////////////// //// IMPORTS ///////////////////////////////////////////////////////////////////////////////////////
use libpt::{log::*, net::monitoring::uptime}; use libpt::{log::*, net::monitoring::uptime};
@ -26,7 +25,6 @@ use std::path::PathBuf;
//// CONSTANTS ///////////////////////////////////////////////////////////////////////////////////// //// CONSTANTS /////////////////////////////////////////////////////////////////////////////////////
#[allow(dead_code)] #[allow(dead_code)]
//// STATICS /////////////////////////////////////////////////////////////////////////////////////// //// STATICS ///////////////////////////////////////////////////////////////////////////////////////
//// MACROS //////////////////////////////////////////////////////////////////////////////////////// //// MACROS ////////////////////////////////////////////////////////////////////////////////////////

View File

@ -20,7 +20,8 @@ macro_rules! investigate_memory_layout {
let pointer = item as *const $t; let pointer = item as *const $t;
let mut memory: [u8; std::mem::size_of::<$t>()] = std::mem::transmute(item.clone()); let mut memory: [u8; std::mem::size_of::<$t>()] = std::mem::transmute(item.clone());
memory.reverse(); memory.reverse();
println!("\ println!(
"\
\t{index:02x}\titem:\t\t{item:?}\n\ \t{index:02x}\titem:\t\t{item:?}\n\
\t\tpointer: \t{:X?}\n\ \t\tpointer: \t{:X?}\n\
\t\talign: \t{}\n\ \t\talign: \t{}\n\

View File

@ -59,8 +59,7 @@ where
return format!("{:.2} Z", total.to_f64().unwrap() / ZEBI as f64); return format!("{:.2} Z", total.to_f64().unwrap() / ZEBI as f64);
} else if YOBI <= total { } else if YOBI <= total {
return format!("{:.2} Y", total.to_f64().unwrap() / YOBI as f64); return format!("{:.2} Y", total.to_f64().unwrap() / YOBI as f64);
} } else {
else {
unreachable!() unreachable!()
} }
} }

View File

@ -1,5 +1,5 @@
use libpt_bintols::*;
use libpt_bintols::display::*; use libpt_bintols::display::*;
use libpt_bintols::*;
#[test] #[test]
fn btobin() { fn btobin() {
@ -12,9 +12,14 @@ fn btobin() {
fn big_btobin() { fn big_btobin() {
let data = [12, 31, 82, 32, 123, 32, 92, 23, 12, 32, 12, 1, 1, 1]; let data = [12, 31, 82, 32, 123, 32, 92, 23, 12, 32, 12, 1, 1, 1];
let r = bytes_to_bin(&data); let r = bytes_to_bin(&data);
assert_eq!(r, format!("0b00001100_00011111_01010010_\ assert_eq!(
r,
format!(
"0b00001100_00011111_01010010_\
00100000_01111011_00100000_01011100_00010111_00001100\n\ 00100000_01111011_00100000_01011100_00010111_00001100\n\
_00100000_00001100_00000001_00000001_00000001")); _00100000_00001100_00000001_00000001_00000001"
)
);
} }
#[test] #[test]

View File

@ -10,11 +10,9 @@
// we want docs // we want docs
#![warn(missing_docs)] #![warn(missing_docs)]
#![warn(rustdoc::missing_crate_level_docs)] #![warn(rustdoc::missing_crate_level_docs)]
//////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////
// we want Debug everywhere. // we want Debug everywhere.
#![warn(missing_debug_implementations)] #![warn(missing_debug_implementations)]
//////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////
// enable clippy's extra lints, the pedantic version // enable clippy's extra lints, the pedantic version
#![warn(clippy::pedantic)] #![warn(clippy::pedantic)]

View File

@ -6,11 +6,9 @@
// we want docs // we want docs
#![warn(missing_docs)] #![warn(missing_docs)]
#![warn(rustdoc::missing_crate_level_docs)] #![warn(rustdoc::missing_crate_level_docs)]
//////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////
// we want Debug everywhere. // we want Debug everywhere.
#![warn(missing_debug_implementations)] #![warn(missing_debug_implementations)]
//////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////
// enable clippy's extra lints, the pedantic version // enable clippy's extra lints, the pedantic version
#![warn(clippy::pedantic)] #![warn(clippy::pedantic)]

View File

@ -90,4 +90,3 @@ impl std::fmt::Display for Error {
//// PUBLIC FUNCTIONS ////////////////////////////////////////////////////////////////////////////// //// PUBLIC FUNCTIONS //////////////////////////////////////////////////////////////////////////////
//// PRIVATE FUNCTIONS ///////////////////////////////////////////////////////////////////////////// //// PRIVATE FUNCTIONS /////////////////////////////////////////////////////////////////////////////

View File

@ -28,7 +28,7 @@ use error::*;
pub use tracing::{debug, error, info, trace, warn, Level}; pub use tracing::{debug, error, info, trace, warn, Level};
use tracing_appender; use tracing_appender;
use tracing_subscriber::{prelude::*, fmt::format::FmtSpan}; use tracing_subscriber::{fmt::format::FmtSpan, prelude::*};
use pyo3::prelude::*; use pyo3::prelude::*;
//// CONSTANTS ///////////////////////////////////////////////////////////////////////////////////// //// CONSTANTS /////////////////////////////////////////////////////////////////////////////////////
@ -254,4 +254,3 @@ impl fmt::Debug for Logger {
//// PUBLIC FUNCTIONS ////////////////////////////////////////////////////////////////////////////// //// PUBLIC FUNCTIONS //////////////////////////////////////////////////////////////////////////////
//// PRIVATE FUNCTIONS ///////////////////////////////////////////////////////////////////////////// //// PRIVATE FUNCTIONS /////////////////////////////////////////////////////////////////////////////

View File

@ -10,11 +10,9 @@
// we want docs // we want docs
#![warn(missing_docs)] #![warn(missing_docs)]
#![warn(rustdoc::missing_crate_level_docs)] #![warn(rustdoc::missing_crate_level_docs)]
//////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////
// we want Debug everywhere. // we want Debug everywhere.
#![warn(missing_debug_implementations)] #![warn(missing_debug_implementations)]
//////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////
// enable clippy's extra lints, the pedantic version // enable clippy's extra lints, the pedantic version
#![warn(clippy::pedantic)] #![warn(clippy::pedantic)]

View File

@ -6,11 +6,9 @@
// we want docs // we want docs
#![warn(missing_docs)] #![warn(missing_docs)]
#![warn(rustdoc::missing_crate_level_docs)] #![warn(rustdoc::missing_crate_level_docs)]
//////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////
// we want Debug everywhere. // we want Debug everywhere.
#![warn(missing_debug_implementations)] #![warn(missing_debug_implementations)]
//////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////
// enable clippy's extra lints, the pedantic version // enable clippy's extra lints, the pedantic version
#![warn(clippy::pedantic)] #![warn(clippy::pedantic)]

View File

@ -188,7 +188,11 @@ pub fn continuous_uptime_monitor(
let mut last_was_up: bool = true; let mut last_was_up: bool = true;
let mut last_ratio: u8 = status.success_ratio; let mut last_ratio: u8 = status.success_ratio;
loop { loop {
trace!(?status, ?last_was_up, "loop iteration for continuous uptime monitor"); trace!(
?status,
?last_was_up,
"loop iteration for continuous uptime monitor"
);
if !status.success { if !status.success {
if last_was_up { if last_was_up {
trace!("displaying status"); trace!("displaying status");

View File

@ -1,7 +1,5 @@
// FIXME: Using a local dependency does not work with maturin as it seems? // FIXME: Using a local dependency does not work with maturin as it seems?
use libpt::{ use libpt::log::*;
log::*,
};
use pyo3::prelude::*; use pyo3::prelude::*;

View File

@ -6,10 +6,12 @@
//! `pt` is a project consisting of multiple smaller crates, all bundled together in this //! `pt` is a project consisting of multiple smaller crates, all bundled together in this
//! "main crate". Most crates will only show up if you activate their feature. //! "main crate". Most crates will only show up if you activate their feature.
#[cfg(feature = "core")]
pub use libpt_core as core;
#[cfg(feature = "bintols")] #[cfg(feature = "bintols")]
pub use libpt_bintols as bintols; pub use libpt_bintols as bintols;
#[cfg(feature = "ccc")]
pub use libpt_ccc as ccc;
#[cfg(feature = "core")]
pub use libpt_core as core;
#[cfg(feature = "hedu")] #[cfg(feature = "hedu")]
pub use libpt_hedu as hedu; pub use libpt_hedu as hedu;
#[cfg(feature = "log")] #[cfg(feature = "log")]
@ -18,5 +20,3 @@ pub use libpt_log as log;
pub use libpt_math as math; pub use libpt_math as math;
#[cfg(feature = "net")] #[cfg(feature = "net")]
pub use libpt_net as net; pub use libpt_net as net;
#[cfg(feature = "ccc")]
pub use libpt_ccc as ccc;