Fix all trivial clippy warnings using cargo clippy --fix
This commit is contained in:
parent
a8d6df4e31
commit
781cbab4a4
5 changed files with 30 additions and 39 deletions
|
@ -156,7 +156,7 @@ impl Connection {
|
||||||
let stream = Self::new_stream(config).await?;
|
let stream = Self::new_stream(config).await?;
|
||||||
let framed = Framed::new(stream, IrcCodec::new(config.encoding())?);
|
let framed = Framed::new(stream, IrcCodec::new(config.encoding())?);
|
||||||
|
|
||||||
Ok(Transport::new(&config, framed, tx))
|
Ok(Transport::new(config, framed, tx))
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(all(feature = "tls-native", not(feature = "tls-rust")))]
|
#[cfg(all(feature = "tls-native", not(feature = "tls-rust")))]
|
||||||
|
@ -188,7 +188,7 @@ impl Connection {
|
||||||
let mut client_cert_data = vec![];
|
let mut client_cert_data = vec![];
|
||||||
file.read_to_end(&mut client_cert_data)?;
|
file.read_to_end(&mut client_cert_data)?;
|
||||||
let client_cert_pass = config.client_cert_pass();
|
let client_cert_pass = config.client_cert_pass();
|
||||||
let pkcs12_archive = Identity::from_pkcs12(&client_cert_data, &client_cert_pass)?;
|
let pkcs12_archive = Identity::from_pkcs12(&client_cert_data, client_cert_pass)?;
|
||||||
builder.identity(pkcs12_archive);
|
builder.identity(pkcs12_archive);
|
||||||
log::info!(
|
log::info!(
|
||||||
"Using {} for client certificate authentication.",
|
"Using {} for client certificate authentication.",
|
||||||
|
@ -215,7 +215,7 @@ impl Connection {
|
||||||
let stream = connector.connect(domain, stream).await?;
|
let stream = connector.connect(domain, stream).await?;
|
||||||
let framed = Framed::new(stream, IrcCodec::new(config.encoding())?);
|
let framed = Framed::new(stream, IrcCodec::new(config.encoding())?);
|
||||||
|
|
||||||
Ok(Transport::new(&config, framed, tx))
|
Ok(Transport::new(config, framed, tx))
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(feature = "tls-rust")]
|
#[cfg(feature = "tls-rust")]
|
||||||
|
@ -337,7 +337,7 @@ impl Connection {
|
||||||
let stream = connector.connect(domain, stream).await?;
|
let stream = connector.connect(domain, stream).await?;
|
||||||
let framed = Framed::new(stream, IrcCodec::new(config.encoding())?);
|
let framed = Framed::new(stream, IrcCodec::new(config.encoding())?);
|
||||||
|
|
||||||
Ok(Transport::new(&config, framed, tx))
|
Ok(Transport::new(config, framed, tx))
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn new_mocked_transport(
|
async fn new_mocked_transport(
|
||||||
|
@ -363,7 +363,7 @@ impl Connection {
|
||||||
let stream = MockStream::new(&initial);
|
let stream = MockStream::new(&initial);
|
||||||
let framed = Framed::new(stream, IrcCodec::new(config.encoding())?);
|
let framed = Framed::new(stream, IrcCodec::new(config.encoding())?);
|
||||||
|
|
||||||
Ok(Transport::new(&config, framed, tx))
|
Ok(Transport::new(config, framed, tx))
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Gets a view of the internal logging if and only if this connection is using a mock stream.
|
/// Gets a view of the internal logging if and only if this connection is using a mock stream.
|
||||||
|
|
|
@ -394,14 +394,12 @@ impl Config {
|
||||||
|
|
||||||
/// Determines whether or not the nickname provided is the owner of the bot.
|
/// Determines whether or not the nickname provided is the owner of the bot.
|
||||||
pub fn is_owner(&self, nickname: &str) -> bool {
|
pub fn is_owner(&self, nickname: &str) -> bool {
|
||||||
self.owners.iter().find(|n| *n == nickname).is_some()
|
self.owners.iter().any(|n| n == nickname)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Gets the nickname specified in the configuration.
|
/// Gets the nickname specified in the configuration.
|
||||||
pub fn nickname(&self) -> Result<&str> {
|
pub fn nickname(&self) -> Result<&str> {
|
||||||
self.nickname
|
self.nickname.as_deref()
|
||||||
.as_ref()
|
|
||||||
.map(String::as_str)
|
|
||||||
.ok_or_else(|| InvalidConfig {
|
.ok_or_else(|| InvalidConfig {
|
||||||
path: self.path(),
|
path: self.path(),
|
||||||
cause: ConfigError::NicknameNotSpecified,
|
cause: ConfigError::NicknameNotSpecified,
|
||||||
|
@ -425,7 +423,7 @@ impl Config {
|
||||||
pub fn username(&self) -> &str {
|
pub fn username(&self) -> &str {
|
||||||
self.username
|
self.username
|
||||||
.as_ref()
|
.as_ref()
|
||||||
.map_or(self.nickname().unwrap_or("user"), |s| &s)
|
.map_or(self.nickname().unwrap_or("user"), |s| s)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Gets the real name specified in the configuration.
|
/// Gets the real name specified in the configuration.
|
||||||
|
@ -433,14 +431,12 @@ impl Config {
|
||||||
pub fn real_name(&self) -> &str {
|
pub fn real_name(&self) -> &str {
|
||||||
self.realname
|
self.realname
|
||||||
.as_ref()
|
.as_ref()
|
||||||
.map_or(self.nickname().unwrap_or("irc"), |s| &s)
|
.map_or(self.nickname().unwrap_or("irc"), |s| s)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Gets the address of the server specified in the configuration.
|
/// Gets the address of the server specified in the configuration.
|
||||||
pub fn server(&self) -> Result<&str> {
|
pub fn server(&self) -> Result<&str> {
|
||||||
self.server
|
self.server.as_deref()
|
||||||
.as_ref()
|
|
||||||
.map(String::as_str)
|
|
||||||
.ok_or_else(|| InvalidConfig {
|
.ok_or_else(|| InvalidConfig {
|
||||||
path: self.path(),
|
path: self.path(),
|
||||||
cause: ConfigError::ServerNotSpecified,
|
cause: ConfigError::ServerNotSpecified,
|
||||||
|
@ -517,7 +513,7 @@ impl Config {
|
||||||
/// Gets the path to the TLS certificate in DER format if specified.
|
/// Gets the path to the TLS certificate in DER format if specified.
|
||||||
#[cfg(any(feature = "tls-native", feature = "tls-rust"))]
|
#[cfg(any(feature = "tls-native", feature = "tls-rust"))]
|
||||||
pub fn cert_path(&self) -> Option<&str> {
|
pub fn cert_path(&self) -> Option<&str> {
|
||||||
self.cert_path.as_ref().map(String::as_str)
|
self.cert_path.as_deref()
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Gets whether or not to dangerously accept invalid certificates.
|
/// Gets whether or not to dangerously accept invalid certificates.
|
||||||
|
@ -532,7 +528,7 @@ impl Config {
|
||||||
/// Gets the path to the client authentication certificate in DER format if specified.
|
/// Gets the path to the client authentication certificate in DER format if specified.
|
||||||
#[cfg(any(feature = "tls-native", feature = "tls-rust"))]
|
#[cfg(any(feature = "tls-native", feature = "tls-rust"))]
|
||||||
pub fn client_cert_path(&self) -> Option<&str> {
|
pub fn client_cert_path(&self) -> Option<&str> {
|
||||||
self.client_cert_path.as_ref().map(String::as_str)
|
self.client_cert_path.as_deref()
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Gets the password to the client authentication certificate.
|
/// Gets the password to the client authentication certificate.
|
||||||
|
@ -544,7 +540,7 @@ impl Config {
|
||||||
/// Gets the encoding to use for this connection. This requires the encode feature to work.
|
/// Gets the encoding to use for this connection. This requires the encode feature to work.
|
||||||
/// This defaults to UTF-8 when not specified.
|
/// This defaults to UTF-8 when not specified.
|
||||||
pub fn encoding(&self) -> &str {
|
pub fn encoding(&self) -> &str {
|
||||||
self.encoding.as_ref().map_or("UTF-8", |s| &s)
|
self.encoding.as_ref().map_or("UTF-8", |s| s)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Gets the channels to join upon connection.
|
/// Gets the channels to join upon connection.
|
||||||
|
@ -574,7 +570,7 @@ impl Config {
|
||||||
/// This defaults to `irc:version:env` when not specified.
|
/// This defaults to `irc:version:env` when not specified.
|
||||||
/// For example, `irc:0.12.0:Compiled with rustc`
|
/// For example, `irc:0.12.0:Compiled with rustc`
|
||||||
pub fn version(&self) -> &str {
|
pub fn version(&self) -> &str {
|
||||||
self.version.as_ref().map_or(crate::VERSION_STR, |s| &s)
|
self.version.as_ref().map_or(crate::VERSION_STR, |s| s)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Gets the string to be sent in response to CTCP SOURCE requests.
|
/// Gets the string to be sent in response to CTCP SOURCE requests.
|
||||||
|
@ -624,7 +620,7 @@ impl Config {
|
||||||
/// Gets the NickServ command sequence to recover a nickname.
|
/// Gets the NickServ command sequence to recover a nickname.
|
||||||
/// This defaults to `["GHOST"]` when not specified.
|
/// This defaults to `["GHOST"]` when not specified.
|
||||||
pub fn ghost_sequence(&self) -> Option<&[String]> {
|
pub fn ghost_sequence(&self) -> Option<&[String]> {
|
||||||
self.ghost_sequence.as_ref().map(Vec::as_slice)
|
self.ghost_sequence.as_deref()
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Looks up the specified string in the options map.
|
/// Looks up the specified string in the options map.
|
||||||
|
@ -642,7 +638,7 @@ impl Config {
|
||||||
/// This defaults to false when not specified.
|
/// This defaults to false when not specified.
|
||||||
/// This has no effect if `use_mock_connection` is not `true`.
|
/// This has no effect if `use_mock_connection` is not `true`.
|
||||||
pub fn mock_initial_value(&self) -> &str {
|
pub fn mock_initial_value(&self) -> &str {
|
||||||
self.mock_initial_value.as_ref().map_or("", |s| &s)
|
self.mock_initial_value.as_ref().map_or("", |s| s)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -31,9 +31,9 @@ impl User {
|
||||||
let username = state.find('@').map(|i| state[..i].to_owned());
|
let username = state.find('@').map(|i| state[..i].to_owned());
|
||||||
let hostname = state.find('@').map(|i| state[i + 1..].to_owned());
|
let hostname = state.find('@').map(|i| state[i + 1..].to_owned());
|
||||||
User {
|
User {
|
||||||
nickname: nickname,
|
nickname,
|
||||||
username: username,
|
username,
|
||||||
hostname: hostname,
|
hostname,
|
||||||
access_levels: {
|
access_levels: {
|
||||||
let mut ranks = ranks.clone();
|
let mut ranks = ranks.clone();
|
||||||
ranks.push(AccessLevel::Member);
|
ranks.push(AccessLevel::Member);
|
||||||
|
|
|
@ -487,7 +487,7 @@ impl Stream for ClientStream {
|
||||||
match ready!(Pin::new(&mut self.as_mut().stream).poll_next(cx)) {
|
match ready!(Pin::new(&mut self.as_mut().stream).poll_next(cx)) {
|
||||||
Some(Ok(msg)) => {
|
Some(Ok(msg)) => {
|
||||||
self.state.handle_message(&msg)?;
|
self.state.handle_message(&msg)?;
|
||||||
return Poll::Ready(Some(Ok(msg)));
|
Poll::Ready(Some(Ok(msg)))
|
||||||
}
|
}
|
||||||
other => Poll::Ready(other),
|
other => Poll::Ready(other),
|
||||||
}
|
}
|
||||||
|
@ -526,7 +526,7 @@ impl ClientState {
|
||||||
fn send<M: Into<Message>>(&self, msg: M) -> error::Result<()> {
|
fn send<M: Into<Message>>(&self, msg: M) -> error::Result<()> {
|
||||||
let msg = msg.into();
|
let msg = msg.into();
|
||||||
self.handle_sent_message(&msg)?;
|
self.handle_sent_message(&msg)?;
|
||||||
Ok(self.sender.send(msg)?)
|
self.sender.send(msg)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Gets the current nickname in use.
|
/// Gets the current nickname in use.
|
||||||
|
@ -547,11 +547,8 @@ impl ClientState {
|
||||||
fn handle_sent_message(&self, msg: &Message) -> error::Result<()> {
|
fn handle_sent_message(&self, msg: &Message) -> error::Result<()> {
|
||||||
log::trace!("[SENT] {}", msg.to_string());
|
log::trace!("[SENT] {}", msg.to_string());
|
||||||
|
|
||||||
match msg.command {
|
if let PART(ref chan, _) = msg.command {
|
||||||
PART(ref chan, _) => {
|
let _ = self.chanlists.write().remove(chan);
|
||||||
let _ = self.chanlists.write().remove(chan);
|
|
||||||
}
|
|
||||||
_ => (),
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
|
@ -602,7 +599,7 @@ impl ClientState {
|
||||||
let joined_chans = self.chanlists.read();
|
let joined_chans = self.chanlists.read();
|
||||||
for chan in joined_chans
|
for chan in joined_chans
|
||||||
.keys()
|
.keys()
|
||||||
.filter(|x| config_chans.iter().find(|c| c == x).is_none())
|
.filter(|x| !config_chans.iter().any(|c| c == *x))
|
||||||
{
|
{
|
||||||
self.send_join(chan)?
|
self.send_join(chan)?
|
||||||
}
|
}
|
||||||
|
@ -805,7 +802,7 @@ impl ClientState {
|
||||||
|
|
||||||
#[cfg(feature = "ctcp")]
|
#[cfg(feature = "ctcp")]
|
||||||
fn send_ctcp_internal(&self, target: &str, msg: &str) -> error::Result<()> {
|
fn send_ctcp_internal(&self, target: &str, msg: &str) -> error::Result<()> {
|
||||||
self.send_notice(target, &format!("\u{001}{}\u{001}", msg))
|
self.send_notice(target, format!("\u{001}{}\u{001}", msg))
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(not(feature = "ctcp"))]
|
#[cfg(not(feature = "ctcp"))]
|
||||||
|
@ -993,7 +990,7 @@ impl Client {
|
||||||
let stream = self
|
let stream = self
|
||||||
.incoming
|
.incoming
|
||||||
.take()
|
.take()
|
||||||
.ok_or_else(|| error::Error::StreamAlreadyConfigured)?;
|
.ok_or(error::Error::StreamAlreadyConfigured)?;
|
||||||
|
|
||||||
Ok(ClientStream {
|
Ok(ClientStream {
|
||||||
state: Arc::clone(&self.state),
|
state: Arc::clone(&self.state),
|
||||||
|
@ -1308,7 +1305,7 @@ mod test {
|
||||||
.await?;
|
.await?;
|
||||||
let res = client.stream()?.try_collect::<Vec<_>>().await;
|
let res = client.stream()?.try_collect::<Vec<_>>().await;
|
||||||
if let Err(Error::NoUsableNick) = res {
|
if let Err(Error::NoUsableNick) = res {
|
||||||
()
|
|
||||||
} else {
|
} else {
|
||||||
panic!("expected error when no valid nicks were specified")
|
panic!("expected error when no valid nicks were specified")
|
||||||
}
|
}
|
||||||
|
|
|
@ -96,7 +96,7 @@ impl Pinger {
|
||||||
|
|
||||||
let mut this = self.project();
|
let mut this = self.project();
|
||||||
|
|
||||||
this.tx.send(Command::PING(data.clone(), None).into())?;
|
this.tx.send(Command::PING(data, None).into())?;
|
||||||
|
|
||||||
if this.ping_deadline.is_none() {
|
if this.ping_deadline.is_none() {
|
||||||
let ping_deadline = time::sleep(*this.ping_timeout);
|
let ping_deadline = time::sleep(*this.ping_timeout);
|
||||||
|
@ -118,10 +118,8 @@ impl Future for Pinger {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if let Poll::Ready(_) = self.as_mut().project().ping_interval.poll_tick(cx) {
|
if self.as_mut().project().ping_interval.poll_tick(cx).is_ready() && *self.as_mut().project().enabled {
|
||||||
if *self.as_mut().project().enabled {
|
self.as_mut().send_ping()?;
|
||||||
self.as_mut().send_ping()?;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Poll::Pending
|
Poll::Pending
|
||||||
|
|
Loading…
Reference in a new issue