use of net.openhft.chronicle.queue.impl.single.SingleChronicleQueue in project Chronicle-Queue by OpenHFT.
the class OrderManagerTest method testWithQueueHistory.
/*
When all the tests are run gets
[main] WARN net.openhft.chronicle.queue.micros.OrderManagerTest$$Lambda$478/807322507 - Failure to dispatch message: onOrder [!Order {
symbol: EURUSD,
side: Buy,
limitPrice: 1.1167,
quantity: 1E6
}
]
java.lang.AssertionError: expected:<4> but was:<7>
at org.junit.Assert.fail(Assert.java:88)
at org.junit.Assert.failNotEquals(Assert.java:834)
at org.junit.Assert.assertEquals(Assert.java:645)
at org.junit.Assert.assertEquals(Assert.java:631)
at net.openhft.chronicle.queue.micros.OrderManagerTest.lambda$testWithQueueHistory$0(OrderManagerTest.java:163)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at net.openhft.chronicle.wire.MethodReader.invoke(MethodReader.java:284)
at net.openhft.chronicle.wire.MethodReader.lambda$addParseletForMethod$3(MethodReader.java:164)
at net.openhft.chronicle.wire.WireParser.parseOne(WireParser.java:41)
at net.openhft.chronicle.wire.WireParser.accept(WireParser.java:49)
at net.openhft.chronicle.wire.MethodReader.readOne(MethodReader.java:311)
at net.openhft.chronicle.queue.micros.OrderManagerTest.testWithQueueHistory(OrderManagerTest.java:165)
*/
@Ignore("TODO FIX")
@Test
public void testWithQueueHistory() {
File queuePath = new File(OS.TARGET, "testWithQueueHistory-" + System.nanoTime());
File queuePath2 = new File(OS.TARGET, "testWithQueueHistory-down-" + System.nanoTime());
try {
try (SingleChronicleQueue out = SingleChronicleQueueBuilder.binary(queuePath).testBlockSize().build()) {
OrderIdeaListener orderManager = out.acquireAppender().methodWriterBuilder(OrderIdeaListener.class).addInterface(MarketDataListener.class).recordHistory(true).get();
SidedMarketDataCombiner combiner = new SidedMarketDataCombiner((MarketDataListener) orderManager);
// events in
// not expected to trigger
orderManager.onOrderIdea(new OrderIdea("EURUSD", Side.Buy, 1.1180, 2e6));
combiner.onSidedPrice(new SidedPrice("EURUSD", 123456789000L, Side.Sell, 1.1172, 2e6));
combiner.onSidedPrice(new SidedPrice("EURUSD", 123456789100L, Side.Buy, 1.1160, 2e6));
combiner.onSidedPrice(new SidedPrice("EURUSD", 123456789100L, Side.Buy, 1.1167, 2e6));
// expected to trigger
orderManager.onOrderIdea(new OrderIdea("EURUSD", Side.Buy, 1.1165, 1e6));
}
try (SingleChronicleQueue in = SingleChronicleQueueBuilder.binary(queuePath).testBlockSize().sourceId(1).build();
SingleChronicleQueue out = SingleChronicleQueueBuilder.binary(queuePath2).testBlockSize().build()) {
OrderListener listener = out.acquireAppender().methodWriterBuilder(OrderListener.class).recordHistory(true).get();
// build our scenario
OrderManager orderManager = new OrderManager(listener);
MethodReader reader = in.createTailer().methodReader(orderManager);
for (int i = 0; i < 5; i++) assertTrue(reader.readOne());
assertFalse(reader.readOne());
// System.out.println(out.dump());
}
try (SingleChronicleQueue in = SingleChronicleQueueBuilder.binary(queuePath2).testBlockSize().sourceId(2).build()) {
MethodReader reader = in.createTailer().methodReader((OrderListener) order -> {
MessageHistory x = MessageHistory.get();
System.out.println(x);
assertEquals(1, x.sourceId(0));
assertEquals(2, x.sourceId(1));
assertEquals(4, x.timings());
});
assertTrue(reader.readOne());
assertFalse(reader.readOne());
}
} finally {
try {
IOTools.shallowDeleteDirWithFiles(queuePath);
IOTools.shallowDeleteDirWithFiles(queuePath2);
} catch (Exception e) {
}
}
}
use of net.openhft.chronicle.queue.impl.single.SingleChronicleQueue in project Chronicle-Queue by OpenHFT.
the class ChronicleHistoryReaderTest method doTest.
private void doTest(boolean recordHistoryFirst) {
VanillaMessageHistory veh = new VanillaMessageHistory();
veh.addSourceDetails(true);
MessageHistory.set(veh);
int extraTiming = recordHistoryFirst ? 1 : 0;
long nanoTime = System.nanoTime();
File queuePath = new File(OS.TARGET, "testWithQueueHistory-" + nanoTime);
File queuePath2 = new File(OS.TARGET, "testWithQueueHistory2-" + nanoTime);
File queuePath3 = new File(OS.TARGET, "testWithQueueHistory3-" + nanoTime);
try {
try (SingleChronicleQueue out = SingleChronicleQueueBuilder.binary(queuePath).testBlockSize().sourceId(1).build()) {
DummyListener writer = out.acquireAppender().methodWriterBuilder(DummyListener.class).recordHistory(recordHistoryFirst).get();
writer.say("hello");
}
try (SingleChronicleQueue in = SingleChronicleQueueBuilder.binary(queuePath).testBlockSize().sourceId(1).build();
SingleChronicleQueue out = SingleChronicleQueueBuilder.binary(queuePath2).testBlockSize().build()) {
DummyListener writer = out.acquireAppender().methodWriterBuilder(DummyListener.class).recordHistory(true).get();
DummyListener dummy = msg -> {
MessageHistory history = MessageHistory.get();
Assert.assertEquals(1, history.sources());
// written 1st then received by me
Assert.assertEquals(1 + extraTiming, history.timings());
writer.say(msg);
};
MethodReader reader = in.createTailer().methodReader(dummy);
assertTrue(reader.readOne());
assertFalse(reader.readOne());
}
try (SingleChronicleQueue in = SingleChronicleQueueBuilder.binary(queuePath2).testBlockSize().sourceId(2).build();
SingleChronicleQueue out = SingleChronicleQueueBuilder.binary(queuePath3).testBlockSize().build()) {
DummyListener writer = out.acquireAppender().methodWriterBuilder(DummyListener.class).recordHistory(true).get();
DummyListener dummy = msg -> {
MessageHistory history = MessageHistory.get();
Assert.assertEquals(2, history.sources());
Assert.assertEquals(3 + extraTiming, history.timings());
writer.say(msg);
};
MethodReader reader = in.createTailer().methodReader(dummy);
assertTrue(reader.readOne());
assertFalse(reader.readOne());
}
ChronicleHistoryReader chronicleHistoryReader = new ChronicleHistoryReader().withBasePath(queuePath3.toPath()).withTimeUnit(TimeUnit.MICROSECONDS);
Map<String, Histogram> histos = chronicleHistoryReader.readChronicle();
chronicleHistoryReader.withMessageSink(System.out::println);
chronicleHistoryReader.outputData();
if (recordHistoryFirst) {
Assert.assertEquals(5, histos.size());
Assert.assertEquals("[1, startTo1, 2, 1to2, endToEnd]", histos.keySet().toString());
} else {
Assert.assertEquals(4, histos.size());
Assert.assertEquals("[1, 2, 1to2, endToEnd]", histos.keySet().toString());
}
} finally {
try {
IOTools.shallowDeleteDirWithFiles(queuePath);
IOTools.shallowDeleteDirWithFiles(queuePath2);
IOTools.shallowDeleteDirWithFiles(queuePath3);
} catch (Exception e) {
}
}
}
use of net.openhft.chronicle.queue.impl.single.SingleChronicleQueue in project Chronicle-Queue by OpenHFT.
the class ChronicleReaderTest method before.
@Before
public void before() throws Exception {
dataDir = DirectoryUtils.tempDir(ChronicleReaderTest.class.getSimpleName()).toPath();
try (final SingleChronicleQueue queue = SingleChronicleQueueBuilder.binary(dataDir).testBlockSize().build()) {
final ExcerptAppender excerptAppender = queue.acquireAppender();
final MethodWriterBuilder<StringEvents> methodWriterBuilder = excerptAppender.methodWriterBuilder(StringEvents.class);
methodWriterBuilder.recordHistory(true);
final StringEvents events = methodWriterBuilder.build();
for (int i = 0; i < 24; i++) {
events.say(i % 2 == 0 ? "hello" : "goodbye");
}
}
}
use of net.openhft.chronicle.queue.impl.single.SingleChronicleQueue in project Chronicle-Queue by OpenHFT.
the class ChronicleReaderTest method readOnlyQueueTailerShouldObserveChangesAfterInitiallyObservedReadLimit.
@Test(timeout = 5000)
public void readOnlyQueueTailerShouldObserveChangesAfterInitiallyObservedReadLimit() throws Exception {
DirectoryUtils.deleteDir(dataDir.toFile());
dataDir.toFile().mkdirs();
try (final SingleChronicleQueue queue = SingleChronicleQueueBuilder.binary(dataDir).testBlockSize().build()) {
final StringEvents events = queue.acquireAppender().methodWriterBuilder(StringEvents.class).build();
events.say("hello");
final long readerCapacity = getCurrentQueueFileLength(dataDir);
final RecordCounter recordCounter = new RecordCounter();
final ChronicleReader chronicleReader = basicReader().withMessageSink(recordCounter);
final ExecutorService executorService = Executors.newSingleThreadExecutor();
Future<?> submit = executorService.submit(chronicleReader::execute);
final long expectedReadingDocumentCount = (readerCapacity / ONE_KILOBYTE.length) + 1;
int i;
for (i = 0; i < expectedReadingDocumentCount; i++) {
events.say(new String(ONE_KILOBYTE));
}
recordCounter.latch.countDown();
executorService.shutdown();
executorService.awaitTermination(Jvm.isDebug() ? 50 : 5, TimeUnit.SECONDS);
submit.get(1, TimeUnit.SECONDS);
assertEquals(expectedReadingDocumentCount, recordCounter.recordCount.get() - 1);
}
}
use of net.openhft.chronicle.queue.impl.single.SingleChronicleQueue in project Chronicle-Queue by OpenHFT.
the class ChronicleReaderTest method shouldReadQueueWithNonDefaultRollCycle.
@Test
public void shouldReadQueueWithNonDefaultRollCycle() {
Path path = DirectoryUtils.tempDir("shouldReadQueueWithNonDefaultRollCycle").toPath();
path.toFile().mkdirs();
try (final SingleChronicleQueue queue = SingleChronicleQueueBuilder.binary(path).rollCycle(RollCycles.MINUTELY).testBlockSize().build()) {
final ExcerptAppender excerptAppender = queue.acquireAppender();
final MethodWriterBuilder<StringEvents> methodWriterBuilder = excerptAppender.methodWriterBuilder(StringEvents.class);
methodWriterBuilder.recordHistory(true);
final StringEvents events = methodWriterBuilder.build();
for (int i = 0; i < 24; i++) {
events.say(i % 2 == 0 ? "hello" : "goodbye");
}
}
new ChronicleReader().withBasePath(path).withMessageSink(capturedOutput::add).execute();
assertFalse(capturedOutput.isEmpty());
}
Aggregations