use of com.cinchapi.concourse.server.storage.AtomicSupport in project concourse by cinchapi.
the class ConcourseServer method maxKeyCriteria.
@Override
@TranslateClientExceptions
@VerifyAccessToken
@VerifyReadPermission
public TObject maxKeyCriteria(String key, TCriteria criteria, AccessToken creds, TransactionToken transaction, String environment) throws TException {
AbstractSyntaxTree ast = compiler.parse(criteria);
AtomicSupport store = getStore(transaction, environment);
return AtomicOperations.supplyWithRetry(store, (atomic) -> {
Set<Long> records = ast.accept(Finder.instance(), atomic);
Number max = Operations.maxKeyRecordsAtomic(key, records, Time.NONE, atomic);
return Convert.javaToThrift(max);
});
}
use of com.cinchapi.concourse.server.storage.AtomicSupport in project concourse by cinchapi.
the class ConcourseServer method sumKeyCclTime.
@Override
@TranslateClientExceptions
@VerifyAccessToken
@VerifyReadPermission
public TObject sumKeyCclTime(String key, String ccl, long timestamp, AccessToken creds, TransactionToken transaction, String environment) throws TException {
AbstractSyntaxTree ast = compiler.parse(ccl);
AtomicSupport store = getStore(transaction, environment);
return AtomicOperations.supplyWithRetry(store, (atomic) -> {
Set<Long> records = ast.accept(Finder.instance(), atomic);
Number sum = Operations.sumKeyRecordsAtomic(key, records, timestamp, atomic);
return Convert.javaToThrift(sum);
});
}
use of com.cinchapi.concourse.server.storage.AtomicSupport in project concourse by cinchapi.
the class ConcourseServer method getCriteriaTimeOrderPage.
@Override
@TranslateClientExceptions
@VerifyAccessToken
@VerifyReadPermission
public Map<Long, Map<String, TObject>> getCriteriaTimeOrderPage(TCriteria criteria, long timestamp, TOrder order, TPage page, AccessToken creds, TransactionToken transaction, String environment) throws TException {
AbstractSyntaxTree ast = compiler.parse(criteria);
AtomicSupport store = getStore(transaction, environment);
Supplier<SortableTable<TObject>> supplier = () -> SortableTable.singleValued(new LinkedHashMap<>());
return AtomicOperations.supplyWithRetry(store, atomic -> Operations.getAstOptionalAtomic(atomic, ast, timestamp, Orders.from(order), Pages.from(page), supplier));
}
use of com.cinchapi.concourse.server.storage.AtomicSupport in project concourse by cinchapi.
the class OperationsTest method testBrowseNavigationKeyAtomic.
@Test
public void testBrowseNavigationKeyAtomic() {
AtomicSupport store = getStore();
try {
setupGraph(store);
String key = "foo.bar.baz.name";
Map<TObject, Set<Long>> data = Operations.browseNavigationKeyOptionalAtomic(key, Time.NONE, store);
Assert.assertEquals(ImmutableMap.of(Convert.javaToThrift("C"), ImmutableSet.of(1L, 4L), Convert.javaToThrift("D"), ImmutableSet.of(1L, 4L), Convert.javaToThrift("E"), ImmutableSet.of(1L, 4L)), data);
} finally {
store.stop();
}
}
use of com.cinchapi.concourse.server.storage.AtomicSupport in project concourse by cinchapi.
the class OperationsTest method testTraverseKeyRecordAtomic.
@Test
public void testTraverseKeyRecordAtomic() {
AtomicSupport store = getStore();
try {
setupGraph(store);
String key = "bar.baz.name";
Set<TObject> data = Operations.traverseKeyRecordOptionalAtomic(key, 3, Time.NONE, store);
Assert.assertTrue(data.isEmpty());
} finally {
store.stop();
}
}
Aggregations