use of jakarta.nosql.QueryException in project jnosql-diana by eclipse.
the class InsertQueryParser method query.
Stream<DocumentEntity> query(String query, DocumentCollectionManager collectionManager, DocumentObserverParser observer) {
InsertQuery insertQuery = insertQueryProvider.apply(query);
String collection = insertQuery.getEntity();
Params params = Params.newParams();
DocumentEntity entity = getEntity(insertQuery, collection, params, observer);
Optional<Duration> ttl = insertQuery.getTtl();
if (params.isNotEmpty()) {
throw new QueryException("To run a query with a parameter use a PrepareStatement instead.");
}
if (ttl.isPresent()) {
return Stream.of(collectionManager.insert(entity, ttl.get()));
} else {
return Stream.of(collectionManager.insert(entity));
}
}
use of jakarta.nosql.QueryException in project jnosql-diana by eclipse.
the class SelectQueryParser method getDocumentQuery.
private DocumentQuery getDocumentQuery(String query, DocumentObserverParser observer) {
SelectQuery selectQuery = selectQueryProvider.apply(query);
String collection = observer.fireEntity(selectQuery.getEntity());
long limit = selectQuery.getLimit();
long skip = selectQuery.getSkip();
List<String> documents = selectQuery.getFields().stream().map(f -> observer.fireField(collection, f)).collect(Collectors.toList());
List<Sort> sorts = selectQuery.getOrderBy().stream().map(s -> toSort(s, observer, collection)).collect(toList());
DocumentCondition condition = null;
Params params = Params.newParams();
if (selectQuery.getWhere().isPresent()) {
condition = selectQuery.getWhere().map(c -> Conditions.getCondition(c, params, observer, collection)).get();
}
if (params.isNotEmpty()) {
throw new QueryException("To run a query with a parameter use a PrepareStatement instead.");
}
return new DefaultDocumentQuery(limit, skip, collection, documents, sorts, condition);
}
use of jakarta.nosql.QueryException in project jnosql-diana by eclipse.
the class GetQueryParser method query.
Stream<Value> query(String query, BucketManager manager) {
GetQuery getQuery = provider.apply(query);
Params params = Params.newParams();
List<Value> values = getQuery.getKeys().stream().map(k -> Values.getValue(k, params)).collect(toList());
if (params.isNotEmpty()) {
throw new QueryException("To run a query with a parameter use a PrepareStatement instead.");
}
return values.stream().map(Value::get).map(manager::get).filter(Optional::isPresent).map(Optional::get);
}
use of jakarta.nosql.QueryException in project jnosql-diana by eclipse.
the class Values method get.
static Object get(QueryValue<?> value, Params parameters) {
ValueType type = value.getType();
switch(type) {
case NUMBER:
case STRING:
return value.get();
case PARAMETER:
return parameters.add(ParamQueryValue.class.cast(value).get());
case ARRAY:
return Stream.of(ArrayQueryValue.class.cast(value).get()).map(v -> get(v, parameters)).collect(toList());
case FUNCTION:
Function function = FunctionQueryValue.class.cast(value).get();
String name = function.getName();
Object[] params = function.getParams();
if ("convert".equals(name)) {
return jakarta.nosql.Value.of(get(QueryValue.class.cast(params[0]), parameters)).get((Class<?>) params[1]);
}
String message = String.format("There is not support to the function: %s with parameters %s", name, Arrays.toString(params));
throw new QueryException(message);
case JSON:
return JsonObjects.getDocuments(JSONQueryValue.class.cast(value).get());
case CONDITION:
default:
throw new QueryException("There is not support to the value: " + type);
}
}
use of jakarta.nosql.QueryException in project jnosql-diana by eclipse.
the class ConditionQueryParser method getEntity.
protected DocumentEntity getEntity(ConditionQuerySupplier query, String collection, Params params, DocumentObserverParser observer) {
DocumentEntity entity = DocumentEntity.of(collection);
if (query.useJSONCondition()) {
JSONQueryValue jsonValue = query.getValue().orElseThrow(() -> new QueryException("It is an invalid state of" + " either Update or Insert."));
List<Document> documents = JsonObjects.getDocuments(jsonValue.get());
entity.addAll(documents);
return entity;
}
query.getConditions().stream().map(c -> Conditions.getCondition(c, params, observer, collection)).map(DocumentCondition::getDocument).forEach(entity::add);
return entity;
}
Aggregations