fix clippy lints

This commit is contained in:
insects 2025-02-05 19:09:52 +01:00
parent d2e11d2b4f
commit 1c86bf326f
2 changed files with 19 additions and 18 deletions

View file

@ -8,7 +8,7 @@ use crate::{
forecast::{round_to_last_weather_time, Forecast, ForecastSet, Rate}, forecast::{round_to_last_weather_time, Forecast, ForecastSet, Rate},
}; };
const DATA: &'static str = include_str!("../data.json"); const DATA: &str = include_str!("../data.json");
#[derive(Serialize, Deserialize, Debug)] #[derive(Serialize, Deserialize, Debug)]
pub struct Data { pub struct Data {
@ -104,6 +104,7 @@ pub struct Window {
pub duration: Duration, pub duration: Duration,
} }
#[allow(clippy::needless_lifetimes)]
impl<'a> CombinedFish<'a> { impl<'a> CombinedFish<'a> {
/// Fills in the rest of the struct. /// Fills in the rest of the struct.
pub fn find_uptime(&mut self, data: &Data) { pub fn find_uptime(&mut self, data: &Data) {
@ -147,17 +148,15 @@ impl<'a> CombinedFish<'a> {
let spans_midnight = start_hour > end_hour; let spans_midnight = start_hour > end_hour;
let cur_hour = et.hour() as f32 + et.minute() as f32 / 60.; let cur_hour = et.hour() as f32 + et.minute() as f32 / 60.;
if spans_midnight { if spans_midnight {
return cur_hour > start_hour || cur_hour < end_hour; cur_hour > start_hour || cur_hour < end_hour
} else { } else {
return start_hour < cur_hour && cur_hour < end_hour; start_hour < cur_hour && cur_hour < end_hour
} }
} }
/// Gets the associated forecast struct. /// Gets the associated forecast struct.
pub fn get_forecast<'b>(&self, data: &'b Data) -> Option<&'b Forecast> { pub fn get_forecast<'b>(&self, data: &'b Data) -> Option<&'b Forecast> {
if self.entry.location.is_none() { self.entry.location?;
return None;
}
// Find the associated fishing spot. // Find the associated fishing spot.
let spot = data let spot = data
.db_data .db_data
@ -223,14 +222,14 @@ impl<'a> CombinedFish<'a> {
// Skip ahead by 8-hour intervals, to quickly find the next favorable weather. // Skip ahead by 8-hour intervals, to quickly find the next favorable weather.
let mut date = round_to_last_weather_time(clock::get_current_eorzea_date()); let mut date = round_to_last_weather_time(clock::get_current_eorzea_date());
// Start with the next weather cycle. // Start with the next weather cycle.
date = date + Duration::hours(8); date += Duration::hours(8);
let mut results = Vec::new(); let mut results = Vec::new();
for _i in 1..cycles { for _i in 1..cycles {
while !self.is_in_correct_weather_at(forecast, date) { while !self.is_in_correct_weather_at(forecast, date) {
date = date + Duration::hours(8); date += Duration::hours(8);
} }
results.push(date.clone()); results.push(date);
date = date + Duration::hours(8); date += Duration::hours(8);
} }
results results
} }
@ -238,11 +237,12 @@ impl<'a> CombinedFish<'a> {
// Given a forecast and a start date of a window, find how long that weather stays. // Given a forecast and a start date of a window, find how long that weather stays.
pub fn get_weather_duration(&self, forecast: &Forecast, date: &DateTime<Utc>) -> Duration { pub fn get_weather_duration(&self, forecast: &Forecast, date: &DateTime<Utc>) -> Duration {
let mut length = 0; let mut length = 0;
#[allow(clippy::clone_on_copy)]
let mut date = date.clone(); let mut date = date.clone();
let mut cur_pattern = forecast.weather_at(date).weather_id; let mut cur_pattern = forecast.weather_at(date).weather_id;
while self.entry.weather_set.iter().any(|w| w == &cur_pattern) { while self.entry.weather_set.iter().any(|w| w == &cur_pattern) {
length += 8; length += 8;
date = date + Duration::hours(8); date += Duration::hours(8);
cur_pattern = forecast.weather_at(date).weather_id; cur_pattern = forecast.weather_at(date).weather_id;
} }
Duration::hours(length) Duration::hours(length)
@ -273,7 +273,7 @@ impl<'a> CombinedFish<'a> {
// window the next iteration. // window the next iteration.
let next_end = next_start + duration; let next_end = next_start + duration;
if next_start.day() == next_end.day() { if next_start.day() == next_end.day() {
idx_date = idx_date + Duration::days(1); idx_date += Duration::days(1);
} else { } else {
idx_date = next_end; idx_date = next_end;
} }
@ -308,7 +308,7 @@ impl<'a> CombinedFish<'a> {
duration, duration,
}); });
idx_date = idx_date + duration; idx_date += duration;
} else if has_time_constraint && has_weather { } else if has_time_constraint && has_weather {
// Calculate start and end times for both the weather uptime and the time-based uptime. // Calculate start and end times for both the weather uptime and the time-based uptime.
let w_duration = if self.entry.previous_weather_set.is_empty() { let w_duration = if self.entry.previous_weather_set.is_empty() {
@ -375,9 +375,9 @@ impl<'a> CombinedFish<'a> {
}) })
} }
idx_date = idx_date + w_duration; idx_date += w_duration;
} else { } else {
idx_date = idx_date + Duration::hours(8); idx_date += Duration::hours(8);
} }
} }
@ -389,6 +389,7 @@ impl<'a> CombinedFish<'a> {
} }
} }
#[allow(clippy::new_without_default)]
impl Data { impl Data {
pub fn new() -> Self { pub fn new() -> Self {
let json = &mut serde_json::Deserializer::from_str(DATA); let json = &mut serde_json::Deserializer::from_str(DATA);
@ -399,7 +400,7 @@ impl Data {
.iter() .iter()
.map(|(id, wr)| { .map(|(id, wr)| {
( (
id.clone(), *id,
Forecast { Forecast {
zone_id: wr.zone_id, zone_id: wr.zone_id,
rates: wr rates: wr
@ -433,7 +434,7 @@ impl Data {
rarity: 1., // dito rarity: 1., // dito
}; };
cfish.find_uptime(self); cfish.find_uptime(self);
(k.clone(), cfish) (*k, cfish)
}) })
}) })
.collect() .collect()

View file

@ -1,4 +1,4 @@
use std::{cmp::Ordering, sync::Arc}; use std::sync::Arc;
use axum::extract::State; use axum::extract::State;
use maud::{html, Markup, DOCTYPE}; use maud::{html, Markup, DOCTYPE};