2019-10-03 15:48:35 -05:00
|
|
|
//! This contains the functions associated with the demorgan assist.
|
|
|
|
//! This assist transforms boolean expressions of the form `!a || !b` into
|
|
|
|
//! `!(a && b)`.
|
|
|
|
use hir::db::HirDatabase;
|
|
|
|
use ra_syntax::ast::{AstNode, BinExpr, BinOp, Expr, PrefixOp};
|
2019-10-04 01:21:24 -05:00
|
|
|
use ra_syntax::SyntaxNode;
|
2019-10-03 15:48:35 -05:00
|
|
|
|
|
|
|
use crate::{Assist, AssistCtx, AssistId};
|
|
|
|
|
|
|
|
// Return the opposite text for a given logical operator, if it makes sense
|
|
|
|
fn opposite_logic_op(kind: BinOp) -> Option<&'static str> {
|
|
|
|
match kind {
|
|
|
|
BinOp::BooleanOr => Some("&&"),
|
|
|
|
BinOp::BooleanAnd => Some("||"),
|
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// This function tries to undo unary negation, or inequality
|
|
|
|
fn undo_negation(node: SyntaxNode) -> Option<String> {
|
|
|
|
match Expr::cast(node)? {
|
|
|
|
Expr::BinExpr(bin) => match bin.op_kind()? {
|
|
|
|
BinOp::NegatedEqualityTest => {
|
|
|
|
let lhs = bin.lhs()?.syntax().text();
|
|
|
|
let rhs = bin.rhs()?.syntax().text();
|
|
|
|
Some(format!("{} == {}", lhs, rhs))
|
|
|
|
}
|
2019-10-04 01:21:24 -05:00
|
|
|
_ => None,
|
|
|
|
},
|
2019-10-03 15:48:35 -05:00
|
|
|
Expr::PrefixExpr(pe) => match pe.op_kind()? {
|
|
|
|
PrefixOp::Not => {
|
|
|
|
let child = pe.expr()?.syntax().text();
|
|
|
|
Some(String::from(child))
|
|
|
|
}
|
2019-10-04 01:21:24 -05:00
|
|
|
_ => None,
|
|
|
|
},
|
|
|
|
_ => None,
|
2019-10-03 15:48:35 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Assist for applying demorgan's law
|
|
|
|
///
|
|
|
|
/// This transforms expressions of the form `!l || !r` into `!(l && r)`.
|
|
|
|
/// This also works with `&&`. This assist can only be applied with the cursor
|
|
|
|
/// on either `||` or `&&`, with both operands being a negation of some kind.
|
|
|
|
/// This means something of the form `!x` or `x != y`.
|
|
|
|
pub(crate) fn apply_demorgan(mut ctx: AssistCtx<impl HirDatabase>) -> Option<Assist> {
|
|
|
|
let expr = ctx.node_at_offset::<BinExpr>()?;
|
|
|
|
let op = expr.op_kind()?;
|
|
|
|
let op_range = expr.op_token()?.text_range();
|
|
|
|
let opposite_op = opposite_logic_op(op)?;
|
|
|
|
let cursor_in_range = ctx.frange.range.is_subrange(&op_range);
|
|
|
|
if !cursor_in_range {
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
let lhs = expr.lhs()?.syntax().clone();
|
|
|
|
let lhs_range = lhs.text_range();
|
|
|
|
let rhs = expr.rhs()?.syntax().clone();
|
|
|
|
let rhs_range = rhs.text_range();
|
|
|
|
let not_lhs = undo_negation(lhs)?;
|
|
|
|
let not_rhs = undo_negation(rhs)?;
|
|
|
|
|
|
|
|
ctx.add_action(AssistId("apply_demorgan"), "apply demorgan's law", |edit| {
|
|
|
|
edit.target(op_range);
|
|
|
|
edit.replace(op_range, opposite_op);
|
|
|
|
edit.replace(lhs_range, format!("!({}", not_lhs));
|
|
|
|
edit.replace(rhs_range, format!("{})", not_rhs));
|
|
|
|
});
|
|
|
|
ctx.build()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
use crate::helpers::{check_assist, check_assist_not_applicable};
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn demorgan_turns_and_into_or() {
|
2019-10-04 01:21:24 -05:00
|
|
|
check_assist(apply_demorgan, "fn f() { !x &&<|> !x }", "fn f() { !(x ||<|> x) }")
|
2019-10-03 15:48:35 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn demorgan_turns_or_into_and() {
|
2019-10-04 01:21:24 -05:00
|
|
|
check_assist(apply_demorgan, "fn f() { !x ||<|> !x }", "fn f() { !(x &&<|> x) }")
|
2019-10-03 15:48:35 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn demorgan_removes_inequality() {
|
2019-10-04 01:21:24 -05:00
|
|
|
check_assist(apply_demorgan, "fn f() { x != x ||<|> !x }", "fn f() { !(x == x &&<|> x) }")
|
2019-10-03 15:48:35 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn demorgan_doesnt_apply_with_cursor_not_on_op() {
|
|
|
|
check_assist_not_applicable(apply_demorgan, "fn f() { <|> !x || !x }")
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn demorgan_doesnt_apply_when_operands_arent_negated_already() {
|
|
|
|
check_assist_not_applicable(apply_demorgan, "fn f() { x ||<|> x }")
|
|
|
|
}
|
|
|
|
}
|