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

412 lines
10 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;
2017-02-25 03:56:22 +00:00
import java.util.Iterator;
2016-03-09 10:38:53 +00:00
import java.util.List;
2016-03-07 04:37:01 +00:00
2017-02-25 03:56:22 +00:00
class Expression extends AbstractValue implements Iterable<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
2016-07-22 05:01:17 +00:00
// the symbols @-(. or #
2016-03-09 10:38:53 +00:00
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))]
2017-03-14 11:28:52 +00:00
private final Cell cell;
2016-03-09 10:38:53 +00:00
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
2017-03-03 23:41:08 +00:00
private final String text;
2016-03-11 21:56:02 +00:00
2017-03-14 11:28:52 +00:00
public Expression (Sheet parent, Cell cell, String text)
2016-03-07 04:37:01 +00:00
{
2017-02-25 03:56:22 +00:00
super ("Exp");
2017-03-14 11:28:52 +00:00
this.cell = cell;
2016-03-19 05:31:30 +00:00
this.text = text;
2017-02-25 03:56:22 +00:00
2017-03-14 11:28:52 +00:00
String line = balanceBrackets (text); // add trailing right brackets if required
2016-03-11 21:56:02 +00:00
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
2017-03-14 11:28:52 +00:00
String functionText = getBalancedText (line.substring (ptr));
// System.out.println ("Func : " + functionText);
2016-03-09 10:38:53 +00:00
ptr += functionText.length ();
2017-03-14 11:28:52 +00:00
values.add (Function.getInstance (parent, cell, functionText));
2016-03-09 10:38:53 +00:00
break;
2016-03-07 04:37:01 +00:00
2016-03-09 10:38:53 +00:00
case '(': // parentheses block
2017-03-14 11:28:52 +00:00
String bracketText = getBalancedText (line.substring (ptr));
2016-03-09 10:38:53 +00:00
ptr += bracketText.length ();
2017-03-14 11:28:52 +00:00
values.add (new Expression (parent, cell,
2016-03-11 21:56:02 +00:00
bracketText.substring (1, bracketText.length () - 1)));
2016-03-09 10:38:53 +00:00
break;
2016-03-07 04:37:01 +00:00
2017-03-03 10:24:23 +00:00
case '#': // no idea
2016-03-11 01:52:22 +00:00
System.out.printf ("Hash character [%s] in [%s]%n", ch, line);
2017-03-03 10:24:23 +00:00
ptr++;
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 ();
2017-03-14 11:28:52 +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
}
2017-03-14 11:28:52 +00:00
assert values.size () > 0;
// if (values.size () == 0)
// System.out.printf ("Nothing[%s]%n", text);
2017-02-25 03:56:22 +00:00
}
2017-02-25 10:30:56 +00:00
Value reduce ()
{
if (values.size () == 1 && signs.get (0).equals ("(+)"))
return values.get (0);
return this;
}
2017-02-25 03:56:22 +00:00
int size ()
{
return values.size ();
}
Value get (int index)
{
return values.get (index);
2016-03-09 10:38:53 +00:00
}
@Override
2017-02-28 20:39:26 +00:00
public void calculate ()
2016-03-09 10:38:53 +00:00
{
2017-02-25 03:56:22 +00:00
if (values.size () == 0)
{
System.out.println ("nothing to calculate: " + text);
2017-02-28 20:39:26 +00:00
return;
2017-02-25 03:56:22 +00:00
}
2017-03-15 04:40:18 +00:00
// System.out.printf (" calc %-6s %s%n", cell.getAddressText (), text);
2017-03-14 11:28:52 +00:00
if (!isVolatile)
return;
boolean currentVolatile = false;
2017-03-15 04:40:18 +00:00
// boolean debug = cell.getAddress ().matches ("C8");
boolean debug = false;
if (debug)
{
System.out.println (this);
System.out.printf ("(1) exp %s is currently %svolatile%n", text,
isVolatile ? " " : "not ");
}
2017-02-25 03:56:22 +00:00
2016-03-16 19:32:25 +00:00
try
2016-03-07 04:37:01 +00:00
{
2016-03-16 19:32:25 +00:00
Value thisValue = values.get (0);
2017-03-03 23:41:08 +00:00
thisValue.calculate ();
2017-03-15 04:40:18 +00:00
if (debug)
{
System.out.println (this);
System.out.printf ("(2) exp %s is currently %svolatile%n", thisValue.getText (),
thisValue.isVolatile () ? " " : "not ");
}
2017-02-25 03:56:22 +00:00
value = 0;
2017-03-13 07:16:20 +00:00
if (!thisValue.isValueType (ValueType.VALUE))
2016-03-16 19:32:25 +00:00
{
2016-03-17 04:40:43 +00:00
valueType = thisValue.getValueType ();
2017-02-28 20:39:26 +00:00
return;
2016-03-16 19:32:25 +00:00
}
2016-08-01 01:22:34 +00:00
2017-03-13 07:16:20 +00:00
value = thisValue.getValue ();
2017-03-14 11:28:52 +00:00
if (!currentVolatile)
currentVolatile = thisValue.isVolatile ();
2017-03-03 10:24:23 +00:00
2016-03-16 19:32:25 +00:00
String sign = signs.get (0);
2016-03-11 01:52:22 +00:00
if (sign.equals ("(-)"))
2016-03-16 19:32:25 +00:00
value *= -1;
for (int i = 1; i < values.size (); i++)
{
thisValue = values.get (i);
2017-03-03 23:41:08 +00:00
thisValue.calculate ();
2017-02-25 03:56:22 +00:00
2017-03-13 07:16:20 +00:00
if (!thisValue.isValueType (ValueType.VALUE))
2016-03-16 19:32:25 +00:00
{
2016-03-17 04:40:43 +00:00
valueType = thisValue.getValueType ();
2017-02-28 20:39:26 +00:00
return;
2016-03-16 19:32:25 +00:00
}
2016-03-17 04:40:43 +00:00
2017-03-13 07:16:20 +00:00
double nextValue = thisValue.getValue ();
2017-03-15 04:40:18 +00:00
if (debug)
{
System.out.println (this);
System.out.printf ("(3.%d) exp %s is currently %svolatile%n", i,
thisValue.getText (), thisValue.isVolatile () ? " " : "not ");
}
2017-03-14 11:28:52 +00:00
if (!currentVolatile)
currentVolatile = thisValue.isVolatile ();
2017-03-03 10:24:23 +00:00
2016-03-16 19:32:25 +00:00
sign = signs.get (i);
if (sign.equals ("(-)"))
nextValue *= -1;
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 ("/"))
2017-03-08 09:18:59 +00:00
{
if (nextValue == 0)
{
valueType = ValueType.ERROR;
return;
}
2016-03-16 19:32:25 +00:00
value /= nextValue;
2017-03-08 09:18:59 +00:00
}
2016-03-16 19:32:25 +00:00
else if (operator.equals ("^"))
value = Math.pow (value, nextValue);
}
2016-07-21 11:28:22 +00:00
if (Double.isNaN (value))
2017-02-25 03:56:22 +00:00
valueType = ValueType.ERROR;
2016-07-21 11:28:22 +00:00
else
valueType = ValueType.VALUE;
2016-03-16 19:32:25 +00:00
}
catch (Exception e)
{
valueType = ValueType.ERROR;
2017-02-25 03:56:22 +00:00
e.printStackTrace ();
2017-03-14 11:28:52 +00:00
return;
2016-03-07 04:37:01 +00:00
}
2017-03-14 11:28:52 +00:00
isVolatile = currentVolatile;
2017-03-15 04:40:18 +00:00
if (debug)
{
System.out.println (this);
System.out.printf ("(4) exp %s is currently %svolatile%n", text,
isVolatile ? " " : "not ");
System.out.println ();
}
2016-03-07 04:37:01 +00:00
}
2017-03-14 11:28:52 +00:00
private String balanceBrackets (String input)
2016-03-11 21:56:02 +00:00
{
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)
{
2016-03-14 20:09:04 +00:00
if (rightBracket > leftBracket)
{
System.out.printf ("**** Unbalanced brackets: left:%d, right:%d ****%n",
2017-02-25 03:56:22 +00:00
leftBracket, rightBracket);
2016-03-14 20:09:04 +00:00
System.out.println (input);
2016-03-17 04:40:43 +00:00
return "@ERROR";
2016-03-14 20:09:04 +00:00
}
2016-07-22 05:01:17 +00:00
2016-03-14 20:09:04 +00:00
while (rightBracket < leftBracket)
{
line = line + ")";
rightBracket++;
}
2016-03-11 21:56:02 +00:00
}
return line;
}
2017-03-14 11:28:52 +00:00
// called for functions and expressions
static String getBalancedText (String text)
2016-03-07 04:37:01 +00:00
{
int ptr = text.indexOf ('('); // find first left parenthesis
2016-03-11 01:52:22 +00:00
if (ptr < 0)
2016-03-14 08:58:54 +00:00
return text;
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-07-21 11:08:28 +00:00
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
}
2017-03-17 23:57:48 +00:00
// reads text up to the next comma that is not part of a function
// text does not include the outer brackets or calling function name
static String getParameter (String text)
2017-03-17 11:03:56 +00:00
{
2017-03-17 23:57:48 +00:00
int depth = 0;
int ptr = 0;
while (ptr < text.length ())
{
char c = text.charAt (ptr);
if (c == '(')
++depth;
else if (c == ')')
--depth;
else if (c == ',' && depth == 0)
break;
++ptr;
}
return text.substring (0, ptr);
}
// receives a string starting with the function call
static String getFunctionCall (String text)
{
if (text.charAt (0) != '@')
throw new IllegalArgumentException ("Bad function name: " + text);
for (String functionName : Function.functionList)
if (text.startsWith (functionName))
{
if (functionName.endsWith ("(")) // if function has parameters
return getBalancedText (text); // return full function call
return functionName; // return function name only
}
2017-03-17 11:03:56 +00:00
2017-03-17 23:57:48 +00:00
throw new IllegalArgumentException ("Bad function name: " + text);
2017-03-17 11:03:56 +00:00
}
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);
}
2017-02-25 03:56:22 +00:00
public String fullText ()
{
StringBuilder text = new StringBuilder ();
int ptr = 0;
for (Value value : values)
{
assert value != null;
text.append (signs.get (ptr));
text.append (value.getValue ());
if (ptr < operators.size ())
text.append (operators.get (ptr++));
}
return text.toString ();
}
2016-03-07 12:16:11 +00:00
@Override
public String toString ()
2016-03-07 04:37:01 +00:00
{
2017-02-25 03:56:22 +00:00
return "Expression : " + text;
2016-03-07 12:16:11 +00:00
}
public static void main (String[] args)
{
2017-03-14 11:28:52 +00:00
Expression ex = new Expression (null, 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
}
2017-02-25 03:56:22 +00:00
@Override
public Iterator<Value> iterator ()
{
return values.iterator ();
}
2016-03-07 04:37:01 +00:00
}