use of edu.uci.ics.texera.api.exception.TexeraException in project textdb by TextDB.
the class PlanStoreResource method getQueryPlan.
@GET
@Path("/{plan_name}")
public QueryPlanBean getQueryPlan(@PathParam("plan_name") String planName) {
try {
Tuple tuple = planStore.getPlan(planName);
if (tuple == null) {
throw new TexeraWebException("Plan with the given name does not exist");
}
QueryPlanBean queryPlanBean = new QueryPlanBean(tuple.getField(PlanStoreConstants.NAME).getValue().toString(), tuple.getField(PlanStoreConstants.DESCRIPTION).getValue().toString(), mapper.readValue(tuple.getField(PlanStoreConstants.LOGICAL_PLAN_JSON).getValue().toString(), LogicalPlan.class));
return queryPlanBean;
} catch (TexeraException e) {
throw new TexeraWebException(e.getMessage());
} catch (IOException e) {
e.printStackTrace();
}
return null;
}
use of edu.uci.ics.texera.api.exception.TexeraException in project textdb by TextDB.
the class PlanStoreResource method getAllQueryPlans.
@GET
public QueryPlanListBean getAllQueryPlans() {
ArrayList<QueryPlanBean> queryPlans = new ArrayList<>();
try {
// Getting an iterator for the plan store
DataReader reader = planStore.getPlanIterator();
reader.open();
// Iterating through the stored plans, and mapping them to a QueryPlanRequest object
Tuple tuple;
while ((tuple = reader.getNextTuple()) != null) {
String name = tuple.getField(PlanStoreConstants.NAME).getValue().toString();
String description = tuple.getField(PlanStoreConstants.DESCRIPTION).getValue().toString();
String logicalPlanJson = tuple.getField(PlanStoreConstants.LOGICAL_PLAN_JSON).getValue().toString();
queryPlans.add(new QueryPlanBean(name, description, mapper.readValue(logicalPlanJson, LogicalPlan.class)));
}
} catch (TexeraException e) {
throw new TexeraWebException(e.getMessage());
} catch (IOException e) {
throw new TexeraWebException("fail to parse json:\n" + e.getMessage());
}
return new QueryPlanListBean(queryPlans);
}
use of edu.uci.ics.texera.api.exception.TexeraException in project textdb by TextDB.
the class QueryPlanResource method executeQueryPlan.
/**
* This is the edu.uci.ics.texera.web.request handler for the execution of a Query Plan.
* @param logicalPlanJson, the json representation of the logical plan
* @return - Generic TexeraWebResponse object
*/
@POST
@Path("/execute")
public // TODO: investigate how to use LogicalPlan directly
JsonNode executeQueryPlan(String logicalPlanJson) {
try {
LogicalPlan logicalPlan = new ObjectMapper().readValue(logicalPlanJson, LogicalPlan.class);
Plan plan = logicalPlan.buildQueryPlan();
ISink sink = plan.getRoot();
// send response back to frontend
if (sink instanceof TupleSink) {
TupleSink tupleSink = (TupleSink) sink;
tupleSink.open();
List<Tuple> results = tupleSink.collectAllTuples();
tupleSink.close();
// make sure result directory is created
if (Files.notExists(resultDirectory)) {
Files.createDirectories(resultDirectory);
}
// clean up old result files
cleanupOldResults();
// generate new UUID as the result id
String resultID = UUID.randomUUID().toString();
// write original json of the result into a file
java.nio.file.Path resultFile = resultDirectory.resolve(resultID + ".json");
Files.createFile(resultFile);
Files.write(resultFile, new ObjectMapper().writeValueAsBytes(results));
// put readable json of the result into response
ArrayNode resultNode = new ObjectMapper().createArrayNode();
for (Tuple tuple : results) {
resultNode.add(tuple.getReadableJson());
}
ObjectNode response = new ObjectMapper().createObjectNode();
response.put("code", 0);
response.set("result", resultNode);
response.put("resultID", resultID);
return response;
} else {
// execute the plan and return success message
Engine.getEngine().evaluate(plan);
ObjectNode response = new ObjectMapper().createObjectNode();
response.put("code", 1);
response.put("message", "plan sucessfully executed");
return response;
}
} catch (IOException | TexeraException e) {
throw new TexeraWebException(e.getMessage());
}
}
use of edu.uci.ics.texera.api.exception.TexeraException in project textdb by TextDB.
the class TestUtils method testJsonSerialization.
public static JsonNode testJsonSerialization(Object object, boolean printResults) {
try {
ObjectMapper objectMapper = new ObjectMapper();
String json = objectMapper.writeValueAsString(object);
Object resultObject = objectMapper.readValue(json, object.getClass());
String resultJson = objectMapper.writeValueAsString(resultObject);
JsonNode jsonNode = objectMapper.readValue(json, JsonNode.class);
JsonNode resultJsonNode = objectMapper.readValue(resultJson, JsonNode.class);
if (printResults) {
System.out.println(resultJson);
}
Assert.assertEquals(object, resultObject);
Assert.assertEquals(jsonNode, resultJsonNode);
return jsonNode;
} catch (IOException e) {
throw new TexeraException(e);
}
}
use of edu.uci.ics.texera.api.exception.TexeraException in project textdb by TextDB.
the class AbstractSingleInputOperator method getNextTuple.
@Override
public Tuple getNextTuple() throws TexeraException {
if (cursor == CLOSED) {
throw new DataflowException(ErrorMessages.OPERATOR_NOT_OPENED);
}
if (cursor >= limit + offset) {
return null;
}
try {
Tuple resultTuple = null;
while (true) {
resultTuple = computeNextMatchingTuple();
if (resultTuple == null) {
break;
}
cursor++;
if (cursor > offset) {
break;
}
}
return resultTuple;
} catch (Exception e) {
throw new DataflowException(e.getMessage(), e);
}
}
Aggregations