mirror of
https://gitee.com/BDWare/cp.git
synced 2025-01-09 17:34:08 +00:00
support interface
This commit is contained in:
parent
7e8076e075
commit
eb91d17982
@ -14,8 +14,9 @@ public abstract class AnnotationProcessor {
|
||||
FunctionNode functionNode) throws Exception {
|
||||
return;
|
||||
}
|
||||
|
||||
public void processInterface(AnnotationNode anno, ContractNode contractNode,
|
||||
InterfaceNode functionNode) throws Exception {
|
||||
InterfaceNode functionNode) throws Exception {
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
@ -34,8 +34,7 @@ public class YJSCompiler {
|
||||
ContractNode contract;
|
||||
private static final Logger LOGGER = LogManager.getLogger(YJSCompiler.class);
|
||||
|
||||
public YJSCompiler() {
|
||||
}
|
||||
public YJSCompiler() {}
|
||||
|
||||
public static ScriptFunction compileWithGlobal(Source source, Global global, Context context) {
|
||||
Global oldGlobal = Context.getGlobal();
|
||||
@ -56,7 +55,7 @@ public class YJSCompiler {
|
||||
}
|
||||
|
||||
private static Context makeContext(final InputStream in, final OutputStream out,
|
||||
final OutputStream err) {
|
||||
final OutputStream err) {
|
||||
final PrintStream pout =
|
||||
out instanceof PrintStream ? (PrintStream) out : new PrintStream(out);
|
||||
final PrintStream perr =
|
||||
@ -68,7 +67,7 @@ public class YJSCompiler {
|
||||
final ErrorManager errors = new ErrorManager(werr);
|
||||
// Set up options.
|
||||
final Options options = new Options("nashorn", werr);
|
||||
options.process(new String[]{});
|
||||
options.process(new String[] {});
|
||||
// detect scripting mode by any source's first character being '#'
|
||||
options.set("persistent.code.cache", true);
|
||||
options.set("print.code", "true");
|
||||
@ -121,7 +120,7 @@ public class YJSCompiler {
|
||||
Set<String> todo = new HashSet<>();
|
||||
Set<String> allEntries = new HashSet<>();
|
||||
Enumeration<? extends ZipEntry> iter = zf.entries();
|
||||
for (; iter.hasMoreElements(); ) {
|
||||
for (; iter.hasMoreElements();) {
|
||||
ZipEntry ele = iter.nextElement();
|
||||
if (ele != null)
|
||||
allEntries.add(ele.getName());
|
||||
@ -140,7 +139,8 @@ public class YJSCompiler {
|
||||
String cnPath = entry.getName();
|
||||
int i = cnPath.lastIndexOf("/");
|
||||
String cnDir = "";
|
||||
if (i != -1) cnDir = cnPath.substring(0, i);
|
||||
if (i != -1)
|
||||
cnDir = cnPath.substring(0, i);
|
||||
czb.put(str, cn);
|
||||
for (ImportNode in : cn.getImports()) {
|
||||
String path = in.getPath();
|
||||
@ -155,9 +155,10 @@ public class YJSCompiler {
|
||||
if (allEntries.contains(str))
|
||||
toParse.add(str);
|
||||
else {
|
||||
//TODO parse manifest.json first?
|
||||
// TODO parse manifest.json first?
|
||||
for (String entry : allEntries)
|
||||
if (!czb.containsPath(entry) && entry.startsWith(str) && entry.endsWith(".yjs")) {
|
||||
if (!czb.containsPath(entry) && entry.startsWith(str)
|
||||
&& entry.endsWith(".yjs")) {
|
||||
toParse.add(entry);
|
||||
}
|
||||
}
|
||||
@ -181,7 +182,7 @@ public class YJSCompiler {
|
||||
+ " function getGlobal () { return Global; }}";
|
||||
czb.put(globalBeanName + ".yjs",
|
||||
compile(new ByteArrayInputStream(
|
||||
globalBeanContract.getBytes(StandardCharsets.UTF_8)),
|
||||
globalBeanContract.getBytes(StandardCharsets.UTF_8)),
|
||||
globalBeanName + ".yjs"));
|
||||
LOGGER.info("--compile-- " + globalBeanName);
|
||||
czb.setMergedContractNode();
|
||||
|
@ -18,9 +18,10 @@ public class DOOP extends AnnotationProcessor {
|
||||
functionNode.setIsDoipOperation(true);
|
||||
functionNode.setDoipOperationInfo(DoipOperationInfo.create(anno, contractNode));
|
||||
}
|
||||
|
||||
@Override
|
||||
public void processInterface(AnnotationNode anno, ContractNode contractNode,
|
||||
InterfaceNode interfaceNode) throws Exception {
|
||||
InterfaceNode interfaceNode) throws Exception {
|
||||
interfaceNode.setIsDoipOperation(true);
|
||||
interfaceNode.setDoipOperationInfo(DoipOperationInfo.create(anno, contractNode));
|
||||
}
|
||||
|
@ -15,9 +15,10 @@ public class Join extends AnnotationProcessor {
|
||||
// 增加标记,在ContractNode中记录Join相关的函数和Join规则
|
||||
functionNode.setJoinInfo(JoinInfo.create(anno, contractNode));
|
||||
}
|
||||
|
||||
@Override
|
||||
public void processInterface(AnnotationNode anno, ContractNode contractNode,
|
||||
InterfaceNode interfaceNode) {
|
||||
InterfaceNode interfaceNode) {
|
||||
interfaceNode.setJoinInfo(JoinInfo.create(anno, contractNode));
|
||||
}
|
||||
}
|
||||
|
@ -13,9 +13,10 @@ public class Route extends AnnotationProcessor {
|
||||
FunctionNode functionNode) {
|
||||
functionNode.setRouteInfo(RouteInfo.create(anno, contractNode));
|
||||
}
|
||||
|
||||
@Override
|
||||
public void processInterface(AnnotationNode anno, ContractNode contractNode,
|
||||
InterfaceNode interfaceNode) {
|
||||
InterfaceNode interfaceNode) {
|
||||
interfaceNode.setRouteInfo(RouteInfo.create(anno, contractNode));
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user