use of com.ociweb.pronghorn.pipe.stream.StreamingReadVisitor in project PronghornPipes by oci-pronghorn.
the class StreamingConsumerTest method sequenceFragmentWriteRead.
@Test
public void sequenceFragmentWriteRead() {
Pipe<MessageSchemaDynamic> ring = new Pipe<MessageSchemaDynamic>(new PipeConfig<MessageSchemaDynamic>(new MessageSchemaDynamic(FROM), 1 << primaryRingSizeInBits, 1 << byteRingSizeInBits));
ring.initBuffers();
int testSize = 5;
// in this method we write two sequence members but only record the count after writing the members
populateRingBufferWithSequence(ring, testSize);
ByteArrayOutputStream baos = new ByteArrayOutputStream();
PrintStream ps = new PrintStream(baos);
StreamingReadVisitor visitor = new StreamingReadVisitorToJSON(ps);
// new StreamingReadVisitorDebugDelegate(visitor) );
StreamingVisitorReader reader = new StreamingVisitorReader(ring, visitor);
// ring is fully populated so we should not need to call this run again
while (Pipe.contentRemaining(ring) > 0) {
reader.run();
}
ps.close();
String results = new String(baos.toByteArray());
// spot check the produced JSON
assertTrue(results, results.indexOf("\"TruckId\":10") > 0);
assertTrue(results, results.indexOf("{\"AThing\":7}") > 0);
assertTrue(results, results.indexOf("{\"JustOneMoreQuestion\":42}") > 0);
}
use of com.ociweb.pronghorn.pipe.stream.StreamingReadVisitor in project PronghornPipes by oci-pronghorn.
the class StreamingConsumerTest method generatorTest.
@Test
public void generatorTest() {
final int seed = 2;
// hard coded value that comes from this seed 2
final long aLongValue = 2945688134060370505l;
// hard coded value that comes from this seed 2
final int aNegIntValue = -29;
Pipe<MessageSchemaDynamic> ring = new Pipe<MessageSchemaDynamic>(new PipeConfig<MessageSchemaDynamic>(new MessageSchemaDynamic(FROM), 50, 30));
ring.initBuffers();
StreamingWriteVisitorGenerator swvg = new StreamingWriteVisitorGenerator(FROM, new Random(seed), 30, 30);
StreamingVisitorWriter svw = new StreamingVisitorWriter(ring, swvg);
ByteArrayOutputStream baos = new ByteArrayOutputStream();
PrintStream ps = new PrintStream(baos);
// PrintStream ps = System.out;
StreamingReadVisitor visitor = new StreamingReadVisitorToJSON(ps);
// , new StreamingReadVisitorDebugDelegate(visitor) );
StreamingVisitorReader reader = new StreamingVisitorReader(ring, visitor);
svw.startup();
reader.startup();
do {
svw.run();
} while (!svw.isAtBreakPoint());
reader.run();
svw.shutdown();
reader.shutdown();
byte[] byteArray = baos.toByteArray();
assertTrue("No JSON was produced", byteArray.length > 0);
String results = new String(byteArray);
// spot check the produced JSON
assertTrue(results, results.indexOf("\"Trucks\":") > 0);
assertTrue(results, results.indexOf("{\"Squad\":") > 0);
assertTrue(results, results.indexOf(Long.toString(aLongValue)) > 0);
assertTrue(results, results.indexOf(Integer.toString(aNegIntValue)) > 0);
}
Aggregations