com.scudata.thread.CalcJob Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of esproc Show documentation
Show all versions of esproc Show documentation
SPL(Structured Process Language) A programming language specially for structured data computing.
package com.scudata.thread;
import com.scudata.array.IArray;
import com.scudata.dm.ComputeStack;
import com.scudata.dm.Context;
import com.scudata.dm.Current;
import com.scudata.dm.Sequence;
import com.scudata.expression.Expression;
/**
* ????ִ??A.()??????
* @author RunQian
*
*/
class CalcJob extends Job {
private Sequence src; // Դ????
private int start; // ??ʼλ?ã?????
private int end; // ????λ?ã???????
private Expression exp; // ???????ʽ
private Context ctx; // ??????????
private Sequence result; // ???ڴ?Ž????
public CalcJob(Sequence src, int start, int end, Expression exp, Context ctx, Sequence result) {
this.src = src;
this.start = start;
this.end = end;
this.exp = exp;
this.ctx = ctx;
this.result = result;
}
public void run() {
int end = this.end;
Expression exp = this.exp;
Context ctx = this.ctx;
IArray resultMems = result.getMems();
ComputeStack stack = ctx.getComputeStack();
Current current = new Current(src);
stack.push(current);
try {
for (int i = start; i < end; ++i) {
current.setCurrent(i);
resultMems.set(i, exp.calculate(ctx));
}
} finally {
stack.pop();
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy