dmolony-DiskBrowser/src/com/bytezone/diskbrowser/visicalc/Expression.java

254 lines
6.4 KiB
Java
Raw Normal View History

2016-03-07 04:37:01 +00:00
package com.bytezone.diskbrowser.visicalc;
2016-03-09 10:38:53 +00:00
import java.util.ArrayList;
import java.util.List;
2016-03-07 04:37:01 +00:00
2016-03-12 22:38:03 +00:00
class Expression implements Value
2016-03-07 04:37:01 +00:00
{
// Expressions:
2016-03-10 09:21:47 +00:00
// number
// cell address
// function
// expression [+-*/^] expression
2016-03-11 21:56:02 +00:00
// [+-] expression
2016-03-10 09:21:47 +00:00
// ( expression )
2016-03-07 04:37:01 +00:00
2016-03-09 10:38:53 +00:00
// From the reference card:
// Expressions are evaluated strictly from left to right except as modified by
// parentheses. You must start an expression with a +, a digit (0-9), or one of
// the symbols @-(. or #.
2016-03-11 02:54:31 +00:00
// [@IF(@ISERROR(BK24),0,BK24)]
// [@IF(D4=0,0,1)]
// [@IF(D4=0,0,B32+1)]
// [@IF(D4=0,0,1+(D3/100/D4)^D4-1*100)]
// [@SUM(C4...F4)]
// [+C4-@SUM(C5...C12)]
// [+D5/100/12]
// [.3*(B4+B7+B8+B9)]
// [+N12+(P12*(.2*K12+K9-O12))]
2016-03-09 10:38:53 +00:00
private final List<Value> values = new ArrayList<Value> ();
private final List<String> operators = new ArrayList<String> ();
2016-03-11 01:52:22 +00:00
private final List<String> signs = new ArrayList<String> ();
2016-03-07 04:37:01 +00:00
2016-03-11 21:56:02 +00:00
private boolean hasValue;
2016-03-07 04:37:01 +00:00
public Expression (Sheet parent, String input)
{
2016-03-11 21:56:02 +00:00
String line = checkBrackets (input);
2016-03-09 10:38:53 +00:00
int ptr = 0;
while (ptr < line.length ())
2016-03-07 12:16:11 +00:00
{
2016-03-11 21:56:02 +00:00
// check for optional leading + or -
2016-03-09 10:38:53 +00:00
char ch = line.charAt (ptr);
2016-03-11 01:52:22 +00:00
if (ch == '-')
{
signs.add ("(-)");
ch = line.charAt (++ptr);
}
else
{
signs.add ("(+)");
if (ch == '+')
ch = line.charAt (++ptr);
}
2016-03-11 21:56:02 +00:00
// check for mandatory function/sub-expression/number/cell reference
2016-03-09 10:38:53 +00:00
switch (ch)
{
case '@': // function
String functionText = getFunctionText (line.substring (ptr));
ptr += functionText.length ();
values.add (Function.getInstance (parent, functionText));
break;
2016-03-07 04:37:01 +00:00
2016-03-09 10:38:53 +00:00
case '(': // parentheses block
String bracketText = getFunctionText (line.substring (ptr));
ptr += bracketText.length ();
2016-03-11 21:56:02 +00:00
values.add (new Expression (parent,
bracketText.substring (1, bracketText.length () - 1)));
2016-03-09 10:38:53 +00:00
break;
2016-03-07 04:37:01 +00:00
2016-03-11 01:52:22 +00:00
case '#':
System.out.printf ("Hash character [%s] in [%s]%n", ch, line);
2016-03-11 21:56:02 +00:00
ptr++; // no idea
2016-03-11 01:52:22 +00:00
break;
2016-03-09 10:38:53 +00:00
default:
if (ch == '.' || (ch >= '0' && ch <= '9')) // number
{
String numberText = getNumberText (line.substring (ptr));
ptr += numberText.length ();
2016-03-11 21:56:02 +00:00
values.add (new Number (numberText));
2016-03-09 10:38:53 +00:00
}
else if (ch >= 'A' && ch <= 'Z') // cell address
{
String addressText = getAddressText (line.substring (ptr));
ptr += addressText.length ();
2016-03-11 21:56:02 +00:00
values.add (parent.getCell (addressText));
2016-03-09 10:38:53 +00:00
}
else
{
2016-03-11 21:56:02 +00:00
System.out.printf ("Unexpected character [%s] in [%s]%n", ch, line);
2016-03-09 10:38:53 +00:00
return;
}
}
2016-03-11 21:56:02 +00:00
// check for optional continuation operator
2016-03-09 10:38:53 +00:00
if (ptr < line.length ())
{
ch = line.charAt (ptr);
if (ch == '+' || ch == '-' || ch == '*' || ch == '/' || ch == '^')
operators.add (line.substring (ptr, ++ptr));
else
{
System.out.printf ("Unknown operator [%s] in [%s]%n", ch, line);
return;
}
}
2016-03-07 04:37:01 +00:00
}
2016-03-09 10:38:53 +00:00
assert values.size () > 0;
2016-03-11 21:56:02 +00:00
hasValue = true;
2016-03-09 10:38:53 +00:00
}
@Override
public double getValue ()
{
2016-03-11 01:52:22 +00:00
Value thisValue = values.get (0);
double value = thisValue == null ? 0 : values.get (0).getValue ();
String sign = signs.get (0);
if (sign.equals ("(-)"))
value *= -1;
2016-03-09 10:38:53 +00:00
for (int i = 1; i < values.size (); i++)
2016-03-07 04:37:01 +00:00
{
2016-03-11 01:52:22 +00:00
thisValue = values.get (i);
double nextValue = thisValue == null ? 0 : thisValue.getValue ();
sign = signs.get (i);
if (sign.equals ("(-)"))
nextValue *= -1;
2016-03-09 10:38:53 +00:00
String operator = operators.get (i - 1);
if (operator.equals ("+"))
value += nextValue;
else if (operator.equals ("-"))
value -= nextValue;
else if (operator.equals ("*"))
value *= nextValue;
else if (operator.equals ("/"))
value /= nextValue;
else if (operator.equals ("^"))
value = Math.pow (value, nextValue);
2016-03-07 04:37:01 +00:00
}
2016-03-09 10:38:53 +00:00
return value;
2016-03-07 04:37:01 +00:00
}
2016-03-11 21:56:02 +00:00
@Override
public boolean hasValue ()
{
return hasValue;
}
@Override
public String getError ()
{
return hasValue ? "" : "Error";
}
private String checkBrackets (String input)
{
String line = input.trim ();
int leftBracket = 0;
int rightBracket = 0;
for (char c : line.toCharArray ())
if (c == '(')
leftBracket++;
else if (c == ')')
rightBracket++;
if (leftBracket != rightBracket)
{
System.out.printf ("**** Unbalanced brackets: left:%d, right:%d ****%n",
leftBracket, rightBracket);
2016-03-13 03:59:19 +00:00
System.out.println (input);
2016-03-11 21:56:02 +00:00
return "@ERROR()";
}
return line;
}
2016-03-07 04:37:01 +00:00
private String getFunctionText (String text)
{
int ptr = text.indexOf ('('); // find first left parenthesis
2016-03-11 01:52:22 +00:00
if (ptr < 0)
return "";
2016-03-07 04:37:01 +00:00
int depth = 1;
2016-03-11 21:56:02 +00:00
2016-03-07 04:37:01 +00:00
while (++ptr < text.length ()) // find matching right parenthesis
{
if (text.charAt (ptr) == ')')
{
--depth;
if (depth == 0)
break;
}
else if (text.charAt (ptr) == '(')
++depth;
}
2016-03-09 10:38:53 +00:00
return text.substring (0, ptr + 1); // include closing parenthesis
2016-03-07 04:37:01 +00:00
}
private String getNumberText (String text)
{
int ptr = 0;
while (++ptr < text.length ())
{
char c = text.charAt (ptr);
if (c != '.' && (c < '0' || c > '9'))
break;
}
return text.substring (0, ptr);
}
private String getAddressText (String text)
{
int ptr = 0;
while (++ptr < text.length ())
{
char c = text.charAt (ptr);
if ((c < '0' || c > '9') && (c < 'A' || c > 'Z'))
break;
}
return text.substring (0, ptr);
}
2016-03-07 12:16:11 +00:00
@Override
public String toString ()
2016-03-07 04:37:01 +00:00
{
2016-03-07 12:16:11 +00:00
StringBuilder text = new StringBuilder ();
2016-03-07 04:37:01 +00:00
2016-03-09 10:38:53 +00:00
int ptr = 0;
for (Value value : values)
{
2016-03-11 01:52:22 +00:00
text.append (signs.get (ptr));
2016-03-09 10:38:53 +00:00
text.append (value.getValue ());
if (ptr < operators.size ())
text.append (operators.get (ptr++));
}
2016-03-07 04:37:01 +00:00
2016-03-07 12:16:11 +00:00
return text.toString ();
}
public static void main (String[] args)
{
2016-03-11 01:52:22 +00:00
Expression ex = new Expression (null, "-5+((-4-(20-(2^3))+6/3))*-2");
2016-03-07 12:16:11 +00:00
System.out.println (ex.getValue ());
2016-03-11 01:52:22 +00:00
System.out.println (ex);
2016-03-07 04:37:01 +00:00
}
}