use of org.bboxdb.network.client.future.EmptyResultFuture in project bboxdb by jnidzwetzki.
the class ConnectionMainteinanceRunnable method runThread.
@Override
public void runThread() {
while (!connection.getConnectionState().isInTerminatedState()) {
try {
if (lastDataSendTimestamp + keepAliveTime < System.currentTimeMillis()) {
// Send keep alive only on open connections
if (connection.getConnectionState().isInRunningState()) {
final EmptyResultFuture resultFuture = sendKeepAlivePackage();
waitForResult(resultFuture);
}
}
Thread.sleep(keepAliveTime / 2);
} catch (InterruptedException e) {
// Handle InterruptedException directly
return;
}
}
}
use of org.bboxdb.network.client.future.EmptyResultFuture in project bboxdb by jnidzwetzki.
the class TestNetworkCommunication method testGetByKey.
/**
* Insert a tuple and request it via key
* @throws ExecutionException
* @throws InterruptedException
* @throws BBoxDBException
*/
@Test(timeout = 60000)
public void testGetByKey() throws InterruptedException, ExecutionException, BBoxDBException {
System.out.println("=== Running testGetByKey");
final String table = DISTRIBUTION_GROUP + "_relation12333";
final BBoxDBConnection bboxdbConnection = connectToServer();
final BBoxDBClient bboxDBClient = bboxdbConnection.getBboxDBClient();
// Create table
final EmptyResultFuture resultCreateTable = bboxDBClient.createTable(table, new TupleStoreConfiguration());
resultCreateTable.waitForAll();
Assert.assertFalse(resultCreateTable.isFailed());
// Inside our bbox query
final Tuple tuple1 = new Tuple("abc", new BoundingBox(0d, 1d, 0d, 1d), "abc".getBytes());
final EmptyResultFuture result1 = bboxDBClient.insertTuple(table, tuple1);
result1.waitForAll();
final TupleListFuture future = bboxDBClient.queryKey(table, "abc");
future.waitForAll();
final List<Tuple> resultList = Lists.newArrayList(future.iterator());
Assert.assertEquals(1, resultList.size());
System.out.println("=== End testGetByKey");
disconnect(bboxDBClient);
}
use of org.bboxdb.network.client.future.EmptyResultFuture in project bboxdb by jnidzwetzki.
the class TestNetworkCommunication method testPaging.
/**
* Insert some tuples and request it via paging
* @throws ExecutionException
* @throws InterruptedException
* @throws BBoxDBException
*/
@Test(timeout = 60000)
public void testPaging() throws InterruptedException, ExecutionException, BBoxDBException {
System.out.println("=== Running testPaging");
final String table = DISTRIBUTION_GROUP + "_relation9999";
final BBoxDBConnection bboxdbConnection = connectToServer();
final BBoxDBClient bboxDBClient = bboxdbConnection.getBboxDBClient();
// Create table
final EmptyResultFuture resultCreateTable = bboxDBClient.createTable(table, new TupleStoreConfiguration());
resultCreateTable.waitForAll();
Assert.assertFalse(resultCreateTable.isFailed());
// Inside our bbox query
final Tuple tuple1 = new Tuple("abc", new BoundingBox(0d, 1d, 0d, 1d), "abc".getBytes());
final EmptyResultFuture result1 = bboxDBClient.insertTuple(table, tuple1);
final Tuple tuple2 = new Tuple("def", new BoundingBox(0d, 0.5d, 0d, 0.5d), "def".getBytes());
final EmptyResultFuture result2 = bboxDBClient.insertTuple(table, tuple2);
final Tuple tuple3 = new Tuple("geh", new BoundingBox(0.5d, 1.5d, 0.5d, 1.5d), "geh".getBytes());
final EmptyResultFuture result3 = bboxDBClient.insertTuple(table, tuple3);
final Tuple tuple4 = new Tuple("ijk", new BoundingBox(-10d, -9d, -10d, -9d), "ijk".getBytes());
final EmptyResultFuture result4 = bboxDBClient.insertTuple(table, tuple4);
final Tuple tuple5 = new Tuple("lmn", new BoundingBox(1d, 2d, 1d, 2d), "lmn".getBytes());
final EmptyResultFuture result5 = bboxDBClient.insertTuple(table, tuple5);
result1.waitForAll();
result2.waitForAll();
result3.waitForAll();
result4.waitForAll();
result5.waitForAll();
// Without paging
System.out.println("Pages = unlimited");
bboxDBClient.setPagingEnabled(false);
bboxDBClient.setTuplesPerPage((short) 0);
final TupleListFuture future = bboxDBClient.queryBoundingBox(table, new BoundingBox(-10d, 10d, -10d, 10d));
future.waitForAll();
final List<Tuple> resultList = Lists.newArrayList(future.iterator());
Assert.assertEquals(5, resultList.size());
// With paging (tuples per page 10)
System.out.println("Pages = 10");
bboxDBClient.setPagingEnabled(true);
bboxDBClient.setTuplesPerPage((short) 10);
final TupleListFuture future2 = bboxDBClient.queryBoundingBox(table, new BoundingBox(-10d, 10d, -10d, 10d));
future2.waitForAll();
final List<Tuple> resultList2 = Lists.newArrayList(future2.iterator());
Assert.assertEquals(5, resultList2.size());
// With paging (tuples per page 5)
System.out.println("Pages = 5");
bboxDBClient.setPagingEnabled(true);
bboxDBClient.setTuplesPerPage((short) 5);
final TupleListFuture future3 = bboxDBClient.queryBoundingBox(table, new BoundingBox(-10d, 10d, -10d, 10d));
future3.waitForAll();
final List<Tuple> resultList3 = Lists.newArrayList(future3.iterator());
Assert.assertEquals(5, resultList3.size());
// With paging (tuples per page 2)
System.out.println("Pages = 2");
bboxDBClient.setPagingEnabled(true);
bboxDBClient.setTuplesPerPage((short) 2);
final TupleListFuture future4 = bboxDBClient.queryBoundingBox(table, new BoundingBox(-10d, 10d, -10d, 10d));
System.out.println("Client is waiting on: " + future4);
future4.waitForAll();
final List<Tuple> resultList4 = Lists.newArrayList(future4.iterator());
Assert.assertEquals(5, resultList4.size());
// With paging (tuples per page 1)
System.out.println("Pages = 1");
bboxDBClient.setPagingEnabled(true);
bboxDBClient.setTuplesPerPage((short) 1);
final TupleListFuture future5 = bboxDBClient.queryBoundingBox(table, new BoundingBox(-10d, 10d, -10d, 10d));
future5.waitForAll();
final List<Tuple> resultList5 = Lists.newArrayList(future5.iterator());
Assert.assertEquals(5, resultList5.size());
System.out.println("=== End testPaging");
disconnect(bboxDBClient);
}
use of org.bboxdb.network.client.future.EmptyResultFuture in project bboxdb by jnidzwetzki.
the class NetworkQueryHelper method executeJoinQuery.
/**
* Execute a join
* @param bboxDBConnection
* @throws InterruptedException
* @throws BBoxDBException
*/
public static void executeJoinQuery(final BBoxDB bboxDBClient, final String distributionGroup) throws InterruptedException, BBoxDBException {
System.out.println("=== Execute join");
final String table1 = distributionGroup + "_table1";
final String table2 = distributionGroup + "_table2";
// Create table1
System.out.println("Create table 1");
final EmptyResultFuture resultCreateTable1 = bboxDBClient.createTable(table1, new TupleStoreConfiguration());
resultCreateTable1.waitForAll();
Assert.assertFalse(resultCreateTable1.isFailed());
System.out.println("Create table 2");
final EmptyResultFuture resultCreateTable2 = bboxDBClient.createTable(table2, new TupleStoreConfiguration());
resultCreateTable2.waitForAll();
Assert.assertFalse(resultCreateTable2.isFailed());
// Insert tuples
System.out.println("Insert tuple 1");
final Tuple tuple1 = new Tuple("abc", new BoundingBox(1.0, 2.0, 1.0, 2.0), "abc".getBytes());
final EmptyResultFuture insertResult1 = bboxDBClient.insertTuple(table1, tuple1);
insertResult1.waitForAll();
Assert.assertFalse(insertResult1.isFailed());
Assert.assertTrue(insertResult1.isDone());
System.out.println("Insert tuple 2");
final Tuple tuple2 = new Tuple("def", new BoundingBox(1.5, 2.5, 1.5, 2.5), "abc".getBytes());
final EmptyResultFuture insertResult2 = bboxDBClient.insertTuple(table1, tuple2);
insertResult2.waitForAll();
Assert.assertFalse(insertResult2.isFailed());
Assert.assertTrue(insertResult2.isDone());
System.out.println("Insert tuple 3");
final Tuple tuple3 = new Tuple("123", new BoundingBox(0.0, 5.0, 0.0, 5.0), "abc".getBytes());
final EmptyResultFuture insertResult3 = bboxDBClient.insertTuple(table2, tuple3);
insertResult3.waitForAll();
Assert.assertFalse(insertResult3.isFailed());
Assert.assertTrue(insertResult3.isDone());
// Execute the join
final JoinedTupleListFuture joinResult = bboxDBClient.queryJoin(Arrays.asList(table1, table2), new BoundingBox(0.0, 10.0, 0.0, 10.0));
joinResult.waitForAll();
final List<JoinedTuple> resultList = Lists.newArrayList(joinResult.iterator());
System.out.println(resultList);
Assert.assertEquals(2, resultList.size());
Assert.assertEquals(2, resultList.get(0).getNumberOfTuples());
Assert.assertEquals(table1, resultList.get(0).getTupleStoreName(0));
Assert.assertEquals(table2, resultList.get(0).getTupleStoreName(1));
Assert.assertEquals(new BoundingBox(1.0, 2.0, 1.0, 2.0), resultList.get(0).getBoundingBox());
Assert.assertEquals(2, resultList.get(1).getNumberOfTuples());
Assert.assertEquals(table1, resultList.get(1).getTupleStoreName(0));
Assert.assertEquals(table2, resultList.get(1).getTupleStoreName(1));
Assert.assertEquals(new BoundingBox(1.5, 2.5, 1.5, 2.5), resultList.get(1).getBoundingBox());
System.out.println("=== End Execute join");
}
use of org.bboxdb.network.client.future.EmptyResultFuture in project bboxdb by jnidzwetzki.
the class NetworkQueryHelper method executeBoudingboxAndTimeQuery.
/**
* Execute a bounding box and time query
* @param bboxDBConnection
* @throws BBoxDBException
* @throws InterruptedException
*/
public static void executeBoudingboxAndTimeQuery(final BBoxDB bboxDBClient, final String distributionGroup) throws BBoxDBException, InterruptedException {
final String table = distributionGroup + "_relation9990";
// Create table
final EmptyResultFuture resultCreateTable = bboxDBClient.createTable(table, new TupleStoreConfiguration());
resultCreateTable.waitForAll();
Assert.assertFalse(resultCreateTable.isFailed());
// Inside our bbox query
final Tuple tuple1 = new Tuple("abc", new BoundingBox(0d, 1d, 0d, 1d), "abc".getBytes(), 4);
final EmptyResultFuture result1 = bboxDBClient.insertTuple(table, tuple1);
final Tuple tuple2 = new Tuple("def", new BoundingBox(0d, 0.5d, 0d, 0.5d), "def".getBytes(), 4);
final EmptyResultFuture result2 = bboxDBClient.insertTuple(table, tuple2);
final Tuple tuple3 = new Tuple("geh", new BoundingBox(0.5d, 1.5d, 0.5d, 1.5d), "geh".getBytes(), 1);
final EmptyResultFuture result3 = bboxDBClient.insertTuple(table, tuple3);
// Outside our bbox query
final Tuple tuple4 = new Tuple("ijk", new BoundingBox(-10d, -9d, -10d, -9d), "ijk".getBytes());
final EmptyResultFuture result4 = bboxDBClient.insertTuple(table, tuple4);
final Tuple tuple5 = new Tuple("lmn", new BoundingBox(1000d, 1001d, 1000d, 1001d), "lmn".getBytes());
final EmptyResultFuture result5 = bboxDBClient.insertTuple(table, tuple5);
result1.waitForAll();
result2.waitForAll();
result3.waitForAll();
result4.waitForAll();
result5.waitForAll();
final TupleListFuture future = bboxDBClient.queryBoundingBoxAndTime(table, new BoundingBox(-1d, 2d, -1d, 2d), 2);
future.waitForAll();
final List<Tuple> resultList = Lists.newArrayList(future.iterator());
Assert.assertEquals(3, resultList.size());
Assert.assertTrue(resultList.contains(tuple1));
Assert.assertTrue(resultList.contains(tuple2));
Assert.assertTrue(resultList.contains(tuple3));
Assert.assertFalse(resultList.contains(tuple4));
Assert.assertFalse(resultList.contains(tuple5));
}
Aggregations