first commit
This commit is contained in:
230
hrmsEjb/jxl/biff/formula/Attribute.java
Normal file
230
hrmsEjb/jxl/biff/formula/Attribute.java
Normal file
@@ -0,0 +1,230 @@
|
||||
package jxl.biff.formula;
|
||||
|
||||
import common.Logger;
|
||||
import java.util.Stack;
|
||||
import jxl.WorkbookSettings;
|
||||
import jxl.biff.IntegerHelper;
|
||||
|
||||
class Attribute extends Operator implements ParsedThing {
|
||||
private static Logger logger = Logger.getLogger(Attribute.class);
|
||||
|
||||
private int options;
|
||||
|
||||
private int word;
|
||||
|
||||
private WorkbookSettings settings;
|
||||
|
||||
private static final int sumMask = 16;
|
||||
|
||||
private static final int ifMask = 2;
|
||||
|
||||
private static final int gotoMask = 8;
|
||||
|
||||
private VariableArgFunction ifConditions;
|
||||
|
||||
public Attribute(WorkbookSettings ws) {
|
||||
this.settings = ws;
|
||||
}
|
||||
|
||||
public Attribute(StringFunction sf, WorkbookSettings ws) {
|
||||
this.settings = ws;
|
||||
if (sf.getFunction(this.settings) == Function.SUM) {
|
||||
this.options |= 0x10;
|
||||
} else if (sf.getFunction(this.settings) == Function.IF) {
|
||||
this.options |= 0x2;
|
||||
}
|
||||
}
|
||||
|
||||
void setIfConditions(VariableArgFunction vaf) {
|
||||
this.ifConditions = vaf;
|
||||
this.options |= 0x2;
|
||||
}
|
||||
|
||||
public int read(byte[] data, int pos) {
|
||||
this.options = data[pos];
|
||||
this.word = IntegerHelper.getInt(data[pos + 1], data[pos + 2]);
|
||||
return 3;
|
||||
}
|
||||
|
||||
public boolean isFunction() {
|
||||
return ((this.options & 0x12) != 0);
|
||||
}
|
||||
|
||||
public boolean isSum() {
|
||||
return ((this.options & 0x10) != 0);
|
||||
}
|
||||
|
||||
public boolean isIf() {
|
||||
return ((this.options & 0x2) != 0);
|
||||
}
|
||||
|
||||
public boolean isGoto() {
|
||||
return ((this.options & 0x8) != 0);
|
||||
}
|
||||
|
||||
public void getOperands(Stack s) {
|
||||
if ((this.options & 0x10) != 0) {
|
||||
ParseItem o1 = s.pop();
|
||||
add(o1);
|
||||
} else if ((this.options & 0x2) != 0) {
|
||||
ParseItem o1 = s.pop();
|
||||
add(o1);
|
||||
}
|
||||
}
|
||||
|
||||
public void getString(StringBuffer buf) {
|
||||
if ((this.options & 0x10) != 0) {
|
||||
ParseItem[] operands = getOperands();
|
||||
buf.append(Function.SUM.getName(this.settings));
|
||||
buf.append('(');
|
||||
operands[0].getString(buf);
|
||||
buf.append(')');
|
||||
} else if ((this.options & 0x2) != 0) {
|
||||
buf.append(Function.IF.getName(this.settings));
|
||||
buf.append('(');
|
||||
ParseItem[] operands = this.ifConditions.getOperands();
|
||||
for (int i = 0; i < operands.length - 1; i++) {
|
||||
operands[i].getString(buf);
|
||||
buf.append(',');
|
||||
}
|
||||
operands[operands.length - 1].getString(buf);
|
||||
buf.append(')');
|
||||
}
|
||||
}
|
||||
|
||||
byte[] getBytes() {
|
||||
byte[] data = new byte[0];
|
||||
if (isSum()) {
|
||||
ParseItem[] operands = getOperands();
|
||||
for (int i = operands.length - 1; i >= 0; i--) {
|
||||
byte[] opdata = operands[i].getBytes();
|
||||
byte[] arrayOfByte1 = new byte[data.length + opdata.length];
|
||||
System.arraycopy(data, 0, arrayOfByte1, 0, data.length);
|
||||
System.arraycopy(opdata, 0, arrayOfByte1, data.length, opdata.length);
|
||||
data = arrayOfByte1;
|
||||
}
|
||||
byte[] newdata = new byte[data.length + 4];
|
||||
System.arraycopy(data, 0, newdata, 0, data.length);
|
||||
newdata[data.length] = Token.ATTRIBUTE.getCode();
|
||||
newdata[data.length + 1] = 16;
|
||||
data = newdata;
|
||||
} else if (isIf()) {
|
||||
return getIf();
|
||||
}
|
||||
return data;
|
||||
}
|
||||
|
||||
private byte[] getIf() {
|
||||
ParseItem[] operands = this.ifConditions.getOperands();
|
||||
int falseOffsetPos = 0;
|
||||
int gotoEndPos = 0;
|
||||
int numArgs = operands.length;
|
||||
byte[] data = operands[0].getBytes();
|
||||
int pos = data.length;
|
||||
byte[] newdata = new byte[data.length + 4];
|
||||
System.arraycopy(data, 0, newdata, 0, data.length);
|
||||
data = newdata;
|
||||
data[pos] = Token.ATTRIBUTE.getCode();
|
||||
data[pos + 1] = 2;
|
||||
falseOffsetPos = pos + 2;
|
||||
byte[] truedata = operands[1].getBytes();
|
||||
newdata = new byte[data.length + truedata.length];
|
||||
System.arraycopy(data, 0, newdata, 0, data.length);
|
||||
System.arraycopy(truedata, 0, newdata, data.length, truedata.length);
|
||||
data = newdata;
|
||||
pos = data.length;
|
||||
newdata = new byte[data.length + 4];
|
||||
System.arraycopy(data, 0, newdata, 0, data.length);
|
||||
data = newdata;
|
||||
data[pos] = Token.ATTRIBUTE.getCode();
|
||||
data[pos + 1] = 8;
|
||||
gotoEndPos = pos + 2;
|
||||
if (numArgs > 2) {
|
||||
IntegerHelper.getTwoBytes(data.length - falseOffsetPos - 2, data, falseOffsetPos);
|
||||
byte[] falsedata = operands[numArgs - 1].getBytes();
|
||||
newdata = new byte[data.length + falsedata.length];
|
||||
System.arraycopy(data, 0, newdata, 0, data.length);
|
||||
System.arraycopy(falsedata, 0, newdata, data.length, falsedata.length);
|
||||
data = newdata;
|
||||
pos = data.length;
|
||||
newdata = new byte[data.length + 4];
|
||||
System.arraycopy(data, 0, newdata, 0, data.length);
|
||||
data = newdata;
|
||||
data[pos] = Token.ATTRIBUTE.getCode();
|
||||
data[pos + 1] = 8;
|
||||
data[pos + 2] = 3;
|
||||
}
|
||||
pos = data.length;
|
||||
newdata = new byte[data.length + 4];
|
||||
System.arraycopy(data, 0, newdata, 0, data.length);
|
||||
data = newdata;
|
||||
data[pos] = Token.FUNCTIONVARARG.getCode();
|
||||
data[pos + 1] = (byte)numArgs;
|
||||
data[pos + 2] = 1;
|
||||
data[pos + 3] = 0;
|
||||
int endPos = data.length - 1;
|
||||
if (numArgs < 3)
|
||||
IntegerHelper.getTwoBytes(endPos - falseOffsetPos - 5, data, falseOffsetPos);
|
||||
IntegerHelper.getTwoBytes(endPos - gotoEndPos - 2, data, gotoEndPos);
|
||||
return data;
|
||||
}
|
||||
|
||||
int getPrecedence() {
|
||||
return 3;
|
||||
}
|
||||
|
||||
public void adjustRelativeCellReferences(int colAdjust, int rowAdjust) {
|
||||
ParseItem[] operands = null;
|
||||
if (isIf()) {
|
||||
operands = this.ifConditions.getOperands();
|
||||
} else {
|
||||
operands = getOperands();
|
||||
}
|
||||
for (int i = 0; i < operands.length; i++)
|
||||
operands[i].adjustRelativeCellReferences(colAdjust, rowAdjust);
|
||||
}
|
||||
|
||||
void columnInserted(int sheetIndex, int col, boolean currentSheet) {
|
||||
ParseItem[] operands = null;
|
||||
if (isIf()) {
|
||||
operands = this.ifConditions.getOperands();
|
||||
} else {
|
||||
operands = getOperands();
|
||||
}
|
||||
for (int i = 0; i < operands.length; i++)
|
||||
operands[i].columnInserted(sheetIndex, col, currentSheet);
|
||||
}
|
||||
|
||||
void columnRemoved(int sheetIndex, int col, boolean currentSheet) {
|
||||
ParseItem[] operands = null;
|
||||
if (isIf()) {
|
||||
operands = this.ifConditions.getOperands();
|
||||
} else {
|
||||
operands = getOperands();
|
||||
}
|
||||
for (int i = 0; i < operands.length; i++)
|
||||
operands[i].columnRemoved(sheetIndex, col, currentSheet);
|
||||
}
|
||||
|
||||
void rowInserted(int sheetIndex, int row, boolean currentSheet) {
|
||||
ParseItem[] operands = null;
|
||||
if (isIf()) {
|
||||
operands = this.ifConditions.getOperands();
|
||||
} else {
|
||||
operands = getOperands();
|
||||
}
|
||||
for (int i = 0; i < operands.length; i++)
|
||||
operands[i].rowInserted(sheetIndex, row, currentSheet);
|
||||
}
|
||||
|
||||
void rowRemoved(int sheetIndex, int row, boolean currentSheet) {
|
||||
ParseItem[] operands = null;
|
||||
if (isIf()) {
|
||||
operands = this.ifConditions.getOperands();
|
||||
} else {
|
||||
operands = getOperands();
|
||||
}
|
||||
for (int i = 0; i < operands.length; i++)
|
||||
operands[i].rowRemoved(sheetIndex, row, currentSheet);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user