Skip to content

Commit 31f64cd

Browse files
committed
Fix clippy lints up to rust 1.41.1 in main regex crate
Some lints have been intentionally ignored, especially: * any lints that would change public APIs (like &self -> self) * any lints that would introduce new public APIs (like Default over new)
1 parent eeb6be4 commit 31f64cd

14 files changed

+73
-86
lines changed

src/backtrack.rs

+3-9
Original file line numberDiff line numberDiff line change
@@ -93,13 +93,7 @@ impl<'a, 'm, 'r, 's, I: Input> Bounded<'a, 'm, 'r, 's, I> {
9393
let mut cache = cache.borrow_mut();
9494
let cache = &mut cache.backtrack;
9595
let start = input.at(start);
96-
let mut b = Bounded {
97-
prog: prog,
98-
input: input,
99-
matches: matches,
100-
slots: slots,
101-
m: cache,
102-
};
96+
let mut b = Bounded { prog, input, matches, slots, m: cache };
10397
b.exec_(start, end)
10498
}
10599

@@ -220,14 +214,14 @@ impl<'a, 'm, 'r, 's, I: Input> Bounded<'a, 'm, 'r, 's, I> {
220214
// job is popped and the old capture index is restored.
221215
self.m.jobs.push(Job::SaveRestore {
222216
slot: inst.slot,
223-
old_pos: old_pos,
217+
old_pos,
224218
});
225219
self.slots[inst.slot] = Some(at.pos());
226220
}
227221
ip = inst.goto;
228222
}
229223
Split(ref inst) => {
230-
self.m.jobs.push(Job::Inst { ip: inst.goto2, at: at });
224+
self.m.jobs.push(Job::Inst { ip: inst.goto2, at });
231225
ip = inst.goto1;
232226
}
233227
EmptyLook(ref inst) => {

src/compile.rs

+27-30
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,8 @@ impl Compiler {
139139
self.compiled.start = dotstar_patch.entry;
140140
}
141141
self.compiled.captures = vec![None];
142-
let patch = self.c_capture(0, expr)?.unwrap_or(self.next_inst());
142+
let patch =
143+
self.c_capture(0, expr)?.unwrap_or_else(|| self.next_inst());
143144
if self.compiled.needs_dotstar() {
144145
self.fill(dotstar_patch.hole, patch.entry);
145146
} else {
@@ -175,15 +176,15 @@ impl Compiler {
175176
self.fill_to_next(prev_hole);
176177
let split = self.push_split_hole();
177178
let Patch { hole, entry } =
178-
self.c_capture(0, expr)?.unwrap_or(self.next_inst());
179+
self.c_capture(0, expr)?.unwrap_or_else(|| self.next_inst());
179180
self.fill_to_next(hole);
180181
self.compiled.matches.push(self.insts.len());
181182
self.push_compiled(Inst::Match(i));
182183
prev_hole = self.fill_split(split, Some(entry), None);
183184
}
184185
let i = exprs.len() - 1;
185186
let Patch { hole, entry } =
186-
self.c_capture(0, &exprs[i])?.unwrap_or(self.next_inst());
187+
self.c_capture(0, &exprs[i])?.unwrap_or_else(|| self.next_inst());
187188
self.fill(prev_hole, entry);
188189
self.fill_to_next(hole);
189190
self.compiled.matches.push(self.insts.len());
@@ -387,11 +388,11 @@ impl Compiler {
387388
} else {
388389
let entry = self.insts.len();
389390
let hole = self.push_hole(InstHole::Save { slot: first_slot });
390-
let patch = self.c(expr)?.unwrap_or(self.next_inst());
391+
let patch = self.c(expr)?.unwrap_or_else(|| self.next_inst());
391392
self.fill(hole, patch.entry);
392393
self.fill_to_next(patch.hole);
393394
let hole = self.push_hole(InstHole::Save { slot: first_slot + 1 });
394-
Ok(Some(Patch { hole: hole, entry: entry }))
395+
Ok(Some(Patch { hole, entry }))
395396
}
396397
}
397398

@@ -425,7 +426,7 @@ impl Compiler {
425426
self.c_class(&[hir::ClassUnicodeRange::new(c, c)])
426427
}
427428
} else {
428-
let hole = self.push_hole(InstHole::Char { c: c });
429+
let hole = self.push_hole(InstHole::Char { c });
429430
Ok(Some(Patch { hole, entry: self.insts.len() - 1 }))
430431
}
431432
}
@@ -435,7 +436,7 @@ impl Compiler {
435436

436437
assert!(!ranges.is_empty());
437438
if self.compiled.uses_bytes() {
438-
Ok(Some(CompileClass { c: self, ranges: ranges }.compile()?))
439+
Ok(Some(CompileClass { c: self, ranges }.compile()?))
439440
} else {
440441
let ranges: Vec<(char, char)> =
441442
ranges.iter().map(|r| (r.start(), r.end())).collect();
@@ -444,9 +445,9 @@ impl Compiler {
444445
} else {
445446
self.extra_inst_bytes +=
446447
ranges.len() * (size_of::<char>() * 2);
447-
self.push_hole(InstHole::Ranges { ranges: ranges })
448+
self.push_hole(InstHole::Ranges { ranges })
448449
};
449-
Ok(Some(Patch { hole: hole, entry: self.insts.len() - 1 }))
450+
Ok(Some(Patch { hole, entry: self.insts.len() - 1 }))
450451
}
451452
}
452453

@@ -485,8 +486,8 @@ impl Compiler {
485486
}
486487

487488
fn c_empty_look(&mut self, look: EmptyLook) -> ResultOrEmpty {
488-
let hole = self.push_hole(InstHole::EmptyLook { look: look });
489-
Ok(Some(Patch { hole: hole, entry: self.insts.len() - 1 }))
489+
let hole = self.push_hole(InstHole::EmptyLook { look });
490+
Ok(Some(Patch { hole, entry: self.insts.len() - 1 }))
490491
}
491492

492493
fn c_concat<'a, I>(&mut self, exprs: I) -> ResultOrEmpty
@@ -510,7 +511,7 @@ impl Compiler {
510511
hole = p.hole;
511512
}
512513
}
513-
Ok(Some(Patch { hole: hole, entry: entry }))
514+
Ok(Some(Patch { hole, entry }))
514515
}
515516

516517
fn c_alternate(&mut self, exprs: &[Hir]) -> ResultOrEmpty {
@@ -653,7 +654,7 @@ impl Compiler {
653654
// None).
654655
let patch_concat = self
655656
.c_concat(iter::repeat(expr).take(min))?
656-
.unwrap_or(self.next_inst());
657+
.unwrap_or_else(|| self.next_inst());
657658
if let Some(patch_rep) = self.c_repeat_zero_or_more(expr, greedy)? {
658659
self.fill(patch_concat.hole, patch_rep.entry);
659660
Ok(Some(Patch { hole: patch_rep.hole, entry: patch_concat.entry }))
@@ -677,7 +678,7 @@ impl Compiler {
677678
}
678679
// Same reasoning as in c_repeat_range_min_or_more (we know that min <
679680
// max at this point).
680-
let patch_concat = patch_concat.unwrap_or(self.next_inst());
681+
let patch_concat = patch_concat.unwrap_or_else(|| self.next_inst());
681682
let initial_entry = patch_concat.entry;
682683
// It is much simpler to compile, e.g., `a{2,5}` as:
683684
//
@@ -856,14 +857,14 @@ impl MaybeInst {
856857
}
857858
MaybeInst::Split1(goto1) => {
858859
MaybeInst::Compiled(Inst::Split(InstSplit {
859-
goto1: goto1,
860+
goto1,
860861
goto2: goto,
861862
}))
862863
}
863864
MaybeInst::Split2(goto2) => {
864865
MaybeInst::Compiled(Inst::Split(InstSplit {
865866
goto1: goto,
866-
goto2: goto2,
867+
goto2,
867868
}))
868869
}
869870
_ => unreachable!(
@@ -877,9 +878,7 @@ impl MaybeInst {
877878

878879
fn fill_split(&mut self, goto1: InstPtr, goto2: InstPtr) {
879880
let filled = match *self {
880-
MaybeInst::Split => {
881-
Inst::Split(InstSplit { goto1: goto1, goto2: goto2 })
882-
}
881+
MaybeInst::Split => Inst::Split(InstSplit { goto1, goto2 }),
883882
_ => unreachable!(
884883
"must be called on Split instruction, \
885884
instead it was called on: {:?}",
@@ -937,19 +936,17 @@ enum InstHole {
937936
impl InstHole {
938937
fn fill(&self, goto: InstPtr) -> Inst {
939938
match *self {
940-
InstHole::Save { slot } => {
941-
Inst::Save(InstSave { goto: goto, slot: slot })
942-
}
939+
InstHole::Save { slot } => Inst::Save(InstSave { goto, slot }),
943940
InstHole::EmptyLook { look } => {
944-
Inst::EmptyLook(InstEmptyLook { goto: goto, look: look })
941+
Inst::EmptyLook(InstEmptyLook { goto, look })
945942
}
946-
InstHole::Char { c } => Inst::Char(InstChar { goto: goto, c: c }),
943+
InstHole::Char { c } => Inst::Char(InstChar { goto, c }),
947944
InstHole::Ranges { ref ranges } => Inst::Ranges(InstRanges {
948-
goto: goto,
945+
goto,
949946
ranges: ranges.clone().into_boxed_slice(),
950947
}),
951948
InstHole::Bytes { start, end } => {
952-
Inst::Bytes(InstBytes { goto: goto, start: start, end: end })
949+
Inst::Bytes(InstBytes { goto, start, end })
953950
}
954951
}
955952
}
@@ -1019,7 +1016,7 @@ impl<'a, 'b> CompileClass<'a, 'b> {
10191016
let mut last_hole = Hole::None;
10201017
for byte_range in seq {
10211018
let key = SuffixCacheKey {
1022-
from_inst: from_inst,
1019+
from_inst,
10231020
start: byte_range.start,
10241021
end: byte_range.end,
10251022
};
@@ -1109,7 +1106,7 @@ impl SuffixCache {
11091106
}
11101107
}
11111108
*pos = self.dense.len();
1112-
self.dense.push(SuffixCacheEntry { key: key, pc: pc });
1109+
self.dense.push(SuffixCacheEntry { key, pc });
11131110
None
11141111
}
11151112

@@ -1120,8 +1117,8 @@ impl SuffixCache {
11201117
fn hash(&self, suffix: &SuffixCacheKey) -> usize {
11211118
// Basic FNV-1a hash as described:
11221119
// https://en.wikipedia.org/wiki/Fowler%E2%80%93Noll%E2%80%93Vo_hash_function
1123-
const FNV_PRIME: u64 = 1099511628211;
1124-
let mut h = 14695981039346656037;
1120+
const FNV_PRIME: u64 = 1_099_511_628_211;
1121+
let mut h = 14_695_981_039_346_656_037;
11251122
h = (h ^ (suffix.from_inst as u64)).wrapping_mul(FNV_PRIME);
11261123
h = (h ^ (suffix.start as u64)).wrapping_mul(FNV_PRIME);
11271124
h = (h ^ (suffix.end as u64)).wrapping_mul(FNV_PRIME);

src/dfa.rs

+16-20
Original file line numberDiff line numberDiff line change
@@ -454,10 +454,10 @@ impl<'a> Fsm<'a> {
454454
let mut cache = cache.borrow_mut();
455455
let cache = &mut cache.dfa;
456456
let mut dfa = Fsm {
457-
prog: prog,
457+
prog,
458458
start: 0, // filled in below
459-
at: at,
460-
quit_after_match: quit_after_match,
459+
at,
460+
quit_after_match,
461461
last_match_si: STATE_UNKNOWN,
462462
last_cache_flush: at,
463463
cache: &mut cache.inner,
@@ -484,10 +484,10 @@ impl<'a> Fsm<'a> {
484484
let mut cache = cache.borrow_mut();
485485
let cache = &mut cache.dfa_reverse;
486486
let mut dfa = Fsm {
487-
prog: prog,
487+
prog,
488488
start: 0, // filled in below
489-
at: at,
490-
quit_after_match: quit_after_match,
489+
at,
490+
quit_after_match,
491491
last_match_si: STATE_UNKNOWN,
492492
last_cache_flush: at,
493493
cache: &mut cache.inner,
@@ -515,9 +515,9 @@ impl<'a> Fsm<'a> {
515515
let mut cache = cache.borrow_mut();
516516
let cache = &mut cache.dfa;
517517
let mut dfa = Fsm {
518-
prog: prog,
518+
prog,
519519
start: 0, // filled in below
520-
at: at,
520+
at,
521521
quit_after_match: false,
522522
last_match_si: STATE_UNKNOWN,
523523
last_cache_flush: at,
@@ -1608,11 +1608,7 @@ struct StateMap {
16081608

16091609
impl StateMap {
16101610
fn new(num_byte_classes: usize) -> StateMap {
1611-
StateMap {
1612-
map: HashMap::new(),
1613-
states: vec![],
1614-
num_byte_classes: num_byte_classes,
1615-
}
1611+
StateMap { map: HashMap::new(), states: vec![], num_byte_classes }
16161612
}
16171613

16181614
fn len(&self) -> usize {
@@ -1648,7 +1644,7 @@ impl Transitions {
16481644
/// The number of byte classes corresponds to the stride. Every state will
16491645
/// have `num_byte_classes` slots for transitions.
16501646
fn new(num_byte_classes: usize) -> Transitions {
1651-
Transitions { table: vec![], num_byte_classes: num_byte_classes }
1647+
Transitions { table: vec![], num_byte_classes }
16521648
}
16531649

16541650
/// Returns the total number of states currently in this table.
@@ -1698,27 +1694,27 @@ impl Transitions {
16981694

16991695
impl StateFlags {
17001696
fn is_match(&self) -> bool {
1701-
self.0 & 0b0000000_1 > 0
1697+
self.0 & 0b0000_0001 > 0
17021698
}
17031699

17041700
fn set_match(&mut self) {
1705-
self.0 |= 0b0000000_1;
1701+
self.0 |= 0b0000_0001;
17061702
}
17071703

17081704
fn is_word(&self) -> bool {
1709-
self.0 & 0b000000_1_0 > 0
1705+
self.0 & 0b0000_0010 > 0
17101706
}
17111707

17121708
fn set_word(&mut self) {
1713-
self.0 |= 0b000000_1_0;
1709+
self.0 |= 0b0000_0010;
17141710
}
17151711

17161712
fn has_empty(&self) -> bool {
1717-
self.0 & 0b00000_1_00 > 0
1713+
self.0 & 0b0000_0100 > 0
17181714
}
17191715

17201716
fn set_empty(&mut self) {
1721-
self.0 |= 0b00000_1_00;
1717+
self.0 |= 0b0000_0100;
17221718
}
17231719
}
17241720

src/exec.rs

+7-7
Original file line numberDiff line numberDiff line change
@@ -288,10 +288,10 @@ impl ExecBuilder {
288288
exprs.push(expr);
289289
}
290290
Ok(Parsed {
291-
exprs: exprs,
291+
exprs,
292292
prefixes: prefixes.unwrap_or_else(Literals::empty),
293293
suffixes: suffixes.unwrap_or_else(Literals::empty),
294-
bytes: bytes,
294+
bytes,
295295
})
296296
}
297297

@@ -311,7 +311,7 @@ impl ExecBuilder {
311311
match_type: MatchType::Nothing,
312312
});
313313
let pool = ExecReadOnly::new_pool(&ro);
314-
return Ok(Exec { ro: ro, pool });
314+
return Ok(Exec { ro, pool });
315315
}
316316
let parsed = self.parse()?;
317317
let mut nfa = Compiler::new()
@@ -340,12 +340,12 @@ impl ExecBuilder {
340340

341341
let mut ro = ExecReadOnly {
342342
res: self.options.pats,
343-
nfa: nfa,
344-
dfa: dfa,
345-
dfa_reverse: dfa_reverse,
343+
nfa,
344+
dfa,
345+
dfa_reverse,
346346
suffixes: LiteralSearcher::suffixes(parsed.suffixes),
347347
#[cfg(feature = "perf-literal")]
348-
ac: ac,
348+
ac,
349349
match_type: MatchType::Nothing,
350350
};
351351
ro.match_type = ro.choose_match_type(self.match_type);

src/expand.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ impl From<usize> for Ref<'static> {
127127
/// If no such valid reference could be found, None is returned.
128128
fn find_cap_ref(replacement: &[u8]) -> Option<CaptureRef<'_>> {
129129
let mut i = 0;
130-
let rep: &[u8] = replacement.as_ref();
130+
let rep: &[u8] = replacement;
131131
if rep.len() <= 1 || rep[0] != b'$' {
132132
return None;
133133
}
@@ -136,7 +136,7 @@ fn find_cap_ref(replacement: &[u8]) -> Option<CaptureRef<'_>> {
136136
return find_cap_ref_braced(rep, i + 1);
137137
}
138138
let mut cap_end = i;
139-
while rep.get(cap_end).map_or(false, is_valid_cap_letter) {
139+
while rep.get(cap_end).copied().map_or(false, is_valid_cap_letter) {
140140
cap_end += 1;
141141
}
142142
if cap_end == i {
@@ -183,8 +183,8 @@ fn find_cap_ref_braced(rep: &[u8], mut i: usize) -> Option<CaptureRef<'_>> {
183183
}
184184

185185
/// Returns true if and only if the given byte is allowed in a capture name.
186-
fn is_valid_cap_letter(b: &u8) -> bool {
187-
match *b {
186+
fn is_valid_cap_letter(b: u8) -> bool {
187+
match b {
188188
b'0'..=b'9' | b'a'..=b'z' | b'A'..=b'Z' | b'_' => true,
189189
_ => false,
190190
}

0 commit comments

Comments
 (0)