Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Cleanups #253

Merged
merged 2 commits into from
Sep 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions dev/ar.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ use std::os::unix::ffi::{OsStrExt, OsStringExt};
use std::os::unix::fs::MetadataExt;
use std::path::Path;

#[derive(clap::Args, Debug)]
#[derive(clap::Args)]
#[group(required = false, multiple = false)]
struct InsertArgs {
/// Insert the files after the specified member
Expand All @@ -28,7 +28,7 @@ struct InsertArgs {
insert_before: bool,
}

#[derive(clap::Args, Debug)]
#[derive(clap::Args)]
struct DeleteArgs {
/// Give verbose output
#[arg(short = 'v')]
Expand All @@ -38,15 +38,15 @@ struct DeleteArgs {
files: Vec<OsString>,
}

#[derive(clap::Args, Debug)]
#[derive(clap::Args)]
struct MoveArgs {
#[command(flatten)]
insert_args: InsertArgs,

files: Vec<OsString>,
}

#[derive(clap::Args, Debug)]
#[derive(clap::Args)]
struct PrintArgs {
/// Give verbose output
#[arg(short = 'v')]
Expand All @@ -60,7 +60,7 @@ struct PrintArgs {
files: Vec<OsString>,
}

#[derive(clap::Args, Debug)]
#[derive(clap::Args)]
struct QuickAppendArgs {
/// Suppress archive creation diagnostics
#[arg(short = 'c')]
Expand All @@ -74,7 +74,7 @@ struct QuickAppendArgs {
files: Vec<String>,
}

#[derive(clap::Args, Debug)]
#[derive(clap::Args)]
struct ReplaceArgs {
/// Suppress archive creation diagnostics
#[arg(short = 'c')]
Expand All @@ -94,7 +94,7 @@ struct ReplaceArgs {
files: Vec<OsString>,
}

#[derive(clap::Args, Debug)]
#[derive(clap::Args)]
struct ListArgs {
/// Give verbose output
#[arg(short = 'v')]
Expand All @@ -108,7 +108,7 @@ struct ListArgs {
files: Vec<OsString>,
}

#[derive(clap::Args, Debug)]
#[derive(clap::Args)]
struct ExtractArgs {
/// Give verbose output
#[arg(short = 'v')]
Expand All @@ -130,7 +130,7 @@ struct ExtractArgs {
files: Vec<OsString>,
}

#[derive(Subcommand, Debug)]
#[derive(Subcommand)]
enum Commands {
/// Delete one or more files from the archive
#[command(name = "-d")]
Expand Down
2 changes: 1 addition & 1 deletion dev/nm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ use plib::PROJECT_NAME;
use std::collections::HashMap;
use std::fs;

#[derive(Debug, ValueEnum, Clone)]
#[derive(ValueEnum, Clone)]
enum OutputType {
D,
O,
Expand Down
4 changes: 2 additions & 2 deletions dev/strings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ use gettextrs::{bind_textdomain_codeset, setlocale, textdomain, LocaleCategory};
use object::{Object, ObjectSection};
use plib::PROJECT_NAME;

#[derive(Debug, Clone, Copy, ValueEnum)]
#[derive(Clone, Copy, ValueEnum)]
enum OffsetFormat {
#[value(name = "d", help = "decimal")]
Decimal,
Expand All @@ -24,7 +24,7 @@ enum OffsetFormat {
Hex,
}

#[derive(clap::Args, Clone, Copy, Debug)]
#[derive(clap::Args, Clone, Copy)]
struct OutputOptions {
/// Scan the input files in their entirety
#[arg(short = 'a')]
Expand Down
3 changes: 0 additions & 3 deletions file/dd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,14 +71,12 @@ const CONV_ASCII_EBCDIC: [u8; 256] = [
0xdd, 0xde, 0xdf, 0xea, 0xeb, 0xec, 0xed, 0xee, 0xef, 0xfa, 0xfb, 0xfc, 0xfd, 0xfe, 0xff,
];

#[derive(Debug)]
enum AsciiConv {
Ascii,
EBCDIC,
IBM,
}

#[derive(Debug)]
enum Conversion {
Ascii(AsciiConv),
Lcase,
Expand All @@ -89,7 +87,6 @@ enum Conversion {
Sync,
}

#[derive(Debug)]
struct Config {
ifile: String,
ofile: String,
Expand Down
4 changes: 2 additions & 2 deletions file/find.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ use std::path::PathBuf;
use std::{env, fs};
use walkdir::{DirEntry, WalkDir};

#[derive(Debug, Clone)]
#[derive(Clone)]
enum Expr {
And(Box<Expr>),
Or(Box<Expr>),
Expand All @@ -38,7 +38,7 @@ enum Expr {
Newer(PathBuf),
}

#[derive(Debug, Clone)]
#[derive(Clone)]
enum FileType {
BlockDevice,
CharDevice,
Expand Down
4 changes: 2 additions & 2 deletions m4/test-manager/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ struct Args {
fixtures_directory: PathBuf,
}

#[derive(Debug, clap::Subcommand)]
#[derive(clap::Subcommand)]
enum Commands {
UpdateSnapshots(UpdateSnapshots),
}

/// Update the integration test snapshots.
#[derive(Debug, clap::Args)]
#[derive(clap::Args)]
struct UpdateSnapshots {
/// Optionally specify a secific test case name that you want to update, where name is
/// {name}.m4 of the test case file.
Expand Down
1 change: 0 additions & 1 deletion plib/src/utmpx.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
use crate::platform::{self, endutxent, getutxent, setutxent};
use std::ffi::CStr;

#[derive(Debug)]
pub struct Utmpx {
pub user: String,
pub id: String,
Expand Down
2 changes: 0 additions & 2 deletions text/csplit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,12 @@ struct Args {
operands: Vec<String>,
}

#[derive(Debug)]
enum Operand {
Rx(Regex, isize, bool),
LineNum(usize),
Repeat(usize),
}

#[derive(Debug)]
struct SplitOps {
ops: Vec<Operand>,
}
Expand Down
4 changes: 2 additions & 2 deletions text/cut.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use plib::PROJECT_NAME;
use std::path::PathBuf;

/// Cut - cut out selected fields of each line of a file
#[derive(Parser, Debug, Clone)]
#[derive(Parser, Clone)]
#[command(version, about)]
struct Args {
/// Cut based on a list of bytes
Expand Down Expand Up @@ -79,7 +79,7 @@ fn validate_args(args: &Args) -> Result<(), String> {
Ok(())
}

#[derive(Clone, Debug)]
#[derive(Clone)]
enum ParseVariat {
Bytes(Vec<(i32, i32)>),
Characters(Vec<(i32, i32)>),
Expand Down
2 changes: 1 addition & 1 deletion text/diff.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ use gettextrs::{bind_textdomain_codeset, setlocale, textdomain, LocaleCategory};
use plib::PROJECT_NAME;

/// diff - compare two files
#[derive(Parser, Debug, Clone)]
#[derive(Parser, Clone)]
#[command(version, about)]
struct Args {
/// Cause EOL whitespace to be treated as blanks
Expand Down
34 changes: 16 additions & 18 deletions text/diff_util/common.rs
Original file line number Diff line number Diff line change
@@ -1,18 +1,16 @@
#[derive(Debug)]
pub struct FormatOptions {
pub ignore_trailing_white_spaces: bool,
pub output_format: OutputFormat,
pub label1: Option<String>,
pub label2: Option<String>,
}

#[derive(Debug)]
#[allow(dead_code)]
pub enum OutputFormat {
Debug,
Default,
Context(usize),
EditScript,
ForwardEditScript,
Unified(usize),
}
pub struct FormatOptions {
pub ignore_trailing_white_spaces: bool,
pub output_format: OutputFormat,
pub label1: Option<String>,
pub label2: Option<String>,
}

#[allow(dead_code)]
pub enum OutputFormat {
Debug,
Default,
Context(usize),
EditScript,
ForwardEditScript,
Unified(usize),
}
1 change: 0 additions & 1 deletion text/diff_util/file_data.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ use std::{

use super::{change::Change, constants::COULD_NOT_UNWRAP_FILENAME};

#[derive(Debug)]
pub struct FileData {
path: PathBuf,
lines: Vec<String>,
Expand Down
1 change: 0 additions & 1 deletion text/diff_util/file_diff.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ use std::{
path::PathBuf,
};

#[derive(Debug)]
pub struct FileDiff<'a> {
file1: &'a mut FileData,
file2: &'a mut FileData,
Expand Down
3 changes: 1 addition & 2 deletions text/diff_util/hunks.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use crate::diff_util::constants::NO_NEW_LINE_AT_END_OF_FILE;

use super::{change::Change, file_data::FileData};

#[derive(Clone, Debug)]
#[derive(Clone)]
pub struct Hunk {
kind: Change,
changes: Vec<Change>,
Expand Down Expand Up @@ -318,7 +318,6 @@ impl Hunk {
}
}

#[derive(Debug)]
pub struct Hunks {
hunks: Vec<Hunk>,
}
Expand Down
2 changes: 1 addition & 1 deletion text/fold.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ use std::path::PathBuf;
const TABSTOP: usize = 8;

/// fold - filter for folding lines
#[derive(Parser, Debug, Clone)]
#[derive(Parser, Clone)]
#[command(version, about)]
struct Args {
/// Count width in bytes rather than column positions.
Expand Down
4 changes: 2 additions & 2 deletions text/nl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ struct Args {
file: Option<PathBuf>,
}

#[derive(Debug, Clone)]
#[derive(Clone)]
enum LineNumberingStyle {
All,
NonEmpty,
Expand Down Expand Up @@ -137,7 +137,7 @@ impl std::fmt::Display for LineNumberingStyle {
}
}

#[derive(Debug, Clone, ValueEnum)]
#[derive(Clone, ValueEnum)]
enum NumberFormat {
Ln,
Rn,
Expand Down
2 changes: 1 addition & 1 deletion text/pr_util/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ fn parse_separator(s: &str) -> Result<char, String> {

macro_rules! impl_char_and_number {
($t:tt, $option:expr, $default_chr:expr, $default_num:expr) => {
#[derive(Debug, Clone)]
#[derive(Clone)]
pub struct $t {
chr: char,
num: usize,
Expand Down
2 changes: 1 addition & 1 deletion text/tail.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ use std::time::Duration;
///
/// The `SignedIsize` struct is a simple wrapper around the `isize` type, designed to parse
/// a string into an `isize` value that defaults to negative if no explicit sign is provided.
#[derive(Debug, Clone)]
#[derive(Clone)]
struct SignedIsize(isize);

impl FromStr for SignedIsize {
Expand Down
8 changes: 4 additions & 4 deletions text/tr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ impl Args {
}

// The Char struct represents a character along with its repetition count.
#[derive(Debug, Clone)]
#[derive(Clone)]
struct Char {
// The character.
char: char,
Expand All @@ -69,14 +69,14 @@ struct Char {
}

// The Equiv struct represents a character equivalent.
#[derive(Debug, Clone)]
#[derive(Clone)]
struct Equiv {
// The character equivalent.
char: char,
}

// The Operand enum can be either a Char or an Equiv
#[derive(Debug, Clone)]
#[derive(Clone)]
enum Operand {
Char(Char),
Equiv(Equiv),
Expand Down Expand Up @@ -420,7 +420,7 @@ fn parse_symbols(input: &str) -> Result<Vec<Operand>, String> {
}

/// Represents the case sensitivity of character classes.
#[derive(Debug, PartialEq)]
#[derive(PartialEq)]
enum CaseSensitive {
UpperCase,
LowerCase,
Expand Down
2 changes: 0 additions & 2 deletions xform/uudecode.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,12 @@ struct Args {
file: Option<PathBuf>,
}

#[derive(Debug)]
enum DecodingType {
Historical,

Base64,
}

#[derive(Debug)]
struct Header {
dec_type: DecodingType,

Expand Down