raw.runtime.truffle.ast.io.json.reader.JsonReadCollectionNode Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2023 RAW Labs S.A.
*
* Use of this software is governed by the Business Source License
* included in the file licenses/BSL.txt.
*
* As of the Change Date specified in that file, in accordance with
* the Business Source License, use of this software will be governed
* by the Apache License, Version 2.0, included in the file
* licenses/APL.txt.
*/
package raw.runtime.truffle.ast.io.json.reader;
import com.oracle.truffle.api.frame.VirtualFrame;
import com.oracle.truffle.api.nodes.DirectCallNode;
import com.oracle.truffle.api.nodes.NodeInfo;
import com.oracle.truffle.api.nodes.RootNode;
import raw.runtime.RuntimeContext;
import raw.runtime.truffle.ExpressionNode;
import raw.runtime.truffle.RawContext;
import raw.runtime.truffle.runtime.iterable.sources.JsonReadCollection;
import raw.runtime.truffle.runtime.primitives.LocationObject;
@NodeInfo(shortName = "Json.ReadArray")
public class JsonReadCollectionNode extends ExpressionNode {
@Child private ExpressionNode locationExp;
@Child private ExpressionNode encodingExp;
@Child private DirectCallNode childDirectCall;
public JsonReadCollectionNode(
ExpressionNode locationExp, ExpressionNode encodingExp, RootNode readerNode) {
this.locationExp = locationExp;
this.encodingExp = encodingExp;
this.childDirectCall = DirectCallNode.create(readerNode.getCallTarget());
}
@Override
public Object executeGeneric(VirtualFrame virtualFrame) {
LocationObject locationObject = (LocationObject) locationExp.executeGeneric(virtualFrame);
String encoding = (String) encodingExp.executeGeneric(virtualFrame);
RuntimeContext context = RawContext.get(this).getRuntimeContext();
return new JsonReadCollection(locationObject, encoding, context, childDirectCall);
}
}