src/MathParser/Parsing/Nodes/Factories/MultiplicationNodeFactory.php
<?php
/*
* @package Parsing
* @author Frank Wikström <frank@mossadal.se>
* @copyright 2015 Frank Wikström
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
*
*/
namespace MathParser\Parsing\Nodes\Factories;
use MathParser\Parsing\Nodes\Interfaces\ExpressionNodeFactory;
use MathParser\Parsing\Nodes\Node;
use MathParser\Parsing\Nodes\NumberNode;
use MathParser\Parsing\Nodes\IntegerNode;
use MathParser\Parsing\Nodes\RationalNode;
use MathParser\Parsing\Nodes\ExpressionNode;
use MathParser\Parsing\Nodes\Traits\Sanitize;
use MathParser\Parsing\Nodes\Traits\Numeric;
/**
* Factory for creating an ExpressionNode representing '*'.
*
* Some basic simplification is applied to the resulting Node.
*
*/
class MultiplicationNodeFactory implements ExpressionNodeFactory
{
use Sanitize;
use Numeric;
/**
* Create a Node representing 'leftOperand * rightOperand'
*
* Using some simplification rules, create a NumberNode or ExpressionNode
* giving an AST correctly representing 'leftOperand * rightOperand'.
*
* ### Simplification rules:
*
* - To simplify the use of the function, convert integer params to NumberNodes
* - If $leftOperand and $rightOperand are both NumberNodes, return a single NumberNode containing their product
* - If $leftOperand or $rightOperand is a NumberNode representing 0, return '0'
* - If $leftOperand or $rightOperand is a NumberNode representing 1, return the other factor
*
* @param Node|int $leftOperand First factor
* @param Node|int $rightOperand Second factor
* @return Node
*/
public function makeNode($leftOperand, $rightOperand)
{
$leftOperand = $this->sanitize($leftOperand);
$rightOperand = $this->sanitize($rightOperand);
$node = $this->numericFactors($leftOperand, $rightOperand);
if ($node) return $node;
return new ExpressionNode($leftOperand, '*', $rightOperand);
}
/**
* Simplify a*b when a or b are certain numeric values
*
* @param Node $leftOperand
* @param Node $rightOperand
* @retval Node|null
**/
private function numericFactors($leftOperand, $rightOperand)
{
if ($this->isNumeric($rightOperand)) {
if ($rightOperand->getValue() == 0) return new IntegerNode(0);
if ($rightOperand->getValue() == 1) return $leftOperand;
}
if ($this->isNumeric($leftOperand)) {
if ($leftOperand->getValue() == 0) return new IntegerNode(0);
if ($leftOperand->getValue() == 1) return $rightOperand;
}
if (!$this->isNumeric($leftOperand) || !$this->isNumeric($rightOperand)) {
return null;
}
$type = $this->resultingType($leftOperand, $rightOperand);
switch($type) {
case Node::NumericFloat:
return new NumberNode($leftOperand->getValue() * $rightOperand->getValue());
case Node::NumericRational:
$p = $leftOperand->getNumerator() * $rightOperand->getNumerator();
$q = $leftOperand->getDenominator() * $rightOperand->getDenominator();
return new RationalNode($p, $q);
case Node::NumericInteger:
return new IntegerNode($leftOperand->getValue() * $rightOperand->getValue());
}
return null;
}
}