Search in sources :

Example 1 with DefaultEventLoop

use of com.datatorrent.netlet.DefaultEventLoop in project apex-core by apache.

the class GenericNodeTest method testBufferServerSubscriberActivationBeforeOperator.

@Test
public void testBufferServerSubscriberActivationBeforeOperator() throws InterruptedException, IOException {
    final String streamName = "streamName";
    final String upstreamNodeId = "upstreamNodeId";
    final String downstreamNodeId = "downStreamNodeId";
    EventLoop eventloop = DefaultEventLoop.createEventLoop("StreamTestEventLoop");
    ((DefaultEventLoop) eventloop).start();
    // find random port
    final Server bufferServer = new Server(eventloop, 0);
    final int bufferServerPort = bufferServer.run().getPort();
    final StreamCodec<Object> serde = new DefaultStatefulStreamCodec<>();
    final BlockingQueue<Object> tuples = new ArrayBlockingQueue<>(10);
    GenericTestOperator go = new GenericTestOperator();
    final GenericNode gn = new GenericNode(go, new com.datatorrent.stram.engine.OperatorContext(0, "operator", new DefaultAttributeMap(), null));
    gn.setId(1);
    Sink<Object> output = new Sink<Object>() {

        @Override
        public void put(Object tuple) {
            tuples.add(tuple);
        }

        @Override
        public int getCount(boolean reset) {
            return 0;
        }
    };
    InetSocketAddress socketAddress = new InetSocketAddress("localhost", bufferServerPort);
    StreamContext issContext = new StreamContext(streamName);
    issContext.setSourceId(upstreamNodeId);
    issContext.setSinkId(downstreamNodeId);
    issContext.setFinishedWindowId(-1);
    issContext.setBufferServerAddress(socketAddress);
    issContext.put(StreamContext.CODEC, serde);
    issContext.put(StreamContext.EVENT_LOOP, eventloop);
    StreamContext ossContext = new StreamContext(streamName);
    ossContext.setSourceId(upstreamNodeId);
    ossContext.setSinkId(downstreamNodeId);
    ossContext.setBufferServerAddress(socketAddress);
    ossContext.put(StreamContext.CODEC, serde);
    ossContext.put(StreamContext.EVENT_LOOP, eventloop);
    BufferServerPublisher oss = new BufferServerPublisher(upstreamNodeId, 1024);
    oss.setup(ossContext);
    oss.activate(ossContext);
    oss.put(new Tuple(MessageType.BEGIN_WINDOW, 0x1L));
    byte[] buff = PayloadTuple.getSerializedTuple(0, 1);
    buff[buff.length - 1] = (byte) 1;
    oss.put(buff);
    oss.put(new EndWindowTuple(0x1L));
    oss.put(new Tuple(MessageType.BEGIN_WINDOW, 0x2L));
    buff = PayloadTuple.getSerializedTuple(0, 1);
    buff[buff.length - 1] = (byte) 2;
    oss.put(buff);
    oss.put(new EndWindowTuple(0x2L));
    oss.put(new Tuple(MessageType.BEGIN_WINDOW, 0x3L));
    buff = PayloadTuple.getSerializedTuple(0, 1);
    buff[buff.length - 1] = (byte) 3;
    oss.put(buff);
    oss.put(new EndWindowTuple(0x3L));
    oss.put(new EndStreamTuple(0L));
    BufferServerSubscriber iss = new BufferServerSubscriber(downstreamNodeId, 1024);
    iss.setup(issContext);
    gn.connectInputPort(GenericTestOperator.IPORT1, iss.acquireReservoir("testReservoir", 10));
    gn.connectOutputPort(GenericTestOperator.OPORT1, output);
    SweepableReservoir tupleWait = iss.acquireReservoir("testReservoir2", 10);
    iss.activate(issContext);
    while (tupleWait.sweep() == null) {
        Thread.sleep(100);
    }
    gn.firstWindowMillis = 0;
    gn.windowWidthMillis = 100;
    Thread t = new Thread() {

        @Override
        public void run() {
            gn.activate();
            gn.run();
            gn.deactivate();
        }
    };
    t.start();
    t.join();
    Assert.assertEquals(10, tuples.size());
    List<Object> list = new ArrayList<>(tuples);
    Assert.assertEquals("Payload Tuple 1", 1, ((byte[]) list.get(1))[5]);
    Assert.assertEquals("Payload Tuple 2", 2, ((byte[]) list.get(4))[5]);
    Assert.assertEquals("Payload Tuple 3", 3, ((byte[]) list.get(7))[5]);
    if (bufferServer != null) {
        bufferServer.stop();
    }
    ((DefaultEventLoop) eventloop).stop();
}
Also used : Server(com.datatorrent.bufferserver.server.Server) InetSocketAddress(java.net.InetSocketAddress) BufferServerSubscriber(com.datatorrent.stram.stream.BufferServerSubscriber) ArrayList(java.util.ArrayList) DefaultAttributeMap(com.datatorrent.api.Attribute.AttributeMap.DefaultAttributeMap) BufferServerPublisher(com.datatorrent.stram.stream.BufferServerPublisher) ArrayBlockingQueue(java.util.concurrent.ArrayBlockingQueue) Sink(com.datatorrent.api.Sink) EndWindowTuple(com.datatorrent.stram.tuple.EndWindowTuple) EndStreamTuple(com.datatorrent.stram.tuple.EndStreamTuple) DefaultEventLoop(com.datatorrent.netlet.DefaultEventLoop) Checkpoint(com.datatorrent.stram.api.Checkpoint) EventLoop(com.datatorrent.netlet.EventLoop) DefaultEventLoop(com.datatorrent.netlet.DefaultEventLoop) DefaultStatefulStreamCodec(com.datatorrent.stram.codec.DefaultStatefulStreamCodec) EndStreamTuple(com.datatorrent.stram.tuple.EndStreamTuple) EndWindowTuple(com.datatorrent.stram.tuple.EndWindowTuple) Tuple(com.datatorrent.stram.tuple.Tuple) CustomControlTuple(com.datatorrent.stram.tuple.CustomControlTuple) PayloadTuple(com.datatorrent.bufferserver.packet.PayloadTuple) CustomControlTupleTest(com.datatorrent.stram.CustomControlTupleTest) Test(org.junit.Test)

Example 2 with DefaultEventLoop

use of com.datatorrent.netlet.DefaultEventLoop in project apex-core by apache.

the class System method startup.

public static void startup(String identifier) {
    synchronized (eventloops) {
        DefaultEventLoop el = eventloops.get(identifier);
        if (el == null) {
            try {
                eventloops.put(identifier, el = DefaultEventLoop.createEventLoop(identifier));
            } catch (IOException io) {
                throw new RuntimeException(io);
            }
        }
        el.start();
    }
}
Also used : DefaultEventLoop(com.datatorrent.netlet.DefaultEventLoop) IOException(java.io.IOException)

Example 3 with DefaultEventLoop

use of com.datatorrent.netlet.DefaultEventLoop in project apex-core by apache.

the class Server method main.

/**
   *
   * @param args
   * @throws Exception
   */
public static void main(String[] args) throws Exception {
    int port;
    if (args.length > 0) {
        port = Integer.parseInt(args[0]);
    } else {
        port = 0;
    }
    DefaultEventLoop eventloop = DefaultEventLoop.createEventLoop("alone");
    Thread thread = eventloop.start();
    new Server(eventloop, port).run();
    thread.join();
}
Also used : AbstractServer(com.datatorrent.netlet.AbstractServer) DefaultEventLoop(com.datatorrent.netlet.DefaultEventLoop)

Example 4 with DefaultEventLoop

use of com.datatorrent.netlet.DefaultEventLoop in project apex-core by apache.

the class FastStreamTest method setup.

@BeforeClass
public static void setup() throws InterruptedException, IOException, Exception {
    ((DefaultEventLoop) eventloop).start();
    // find random port
    bufferServer = new Server(eventloop, 0);
    InetSocketAddress bindAddr = bufferServer.run();
    bufferServerPort = bindAddr.getPort();
}
Also used : Server(com.datatorrent.bufferserver.server.Server) InetSocketAddress(java.net.InetSocketAddress) DefaultEventLoop(com.datatorrent.netlet.DefaultEventLoop) BeforeClass(org.junit.BeforeClass)

Example 5 with DefaultEventLoop

use of com.datatorrent.netlet.DefaultEventLoop in project apex-core by apache.

the class SocketStreamTest method setup.

@BeforeClass
public static void setup() throws InterruptedException, IOException, Exception {
    ((DefaultEventLoop) eventloop).start();
    // find random port
    bufferServer = new Server(eventloop, 0);
    InetSocketAddress bindAddr = bufferServer.run();
    bufferServerPort = bindAddr.getPort();
}
Also used : Server(com.datatorrent.bufferserver.server.Server) InetSocketAddress(java.net.InetSocketAddress) DefaultEventLoop(com.datatorrent.netlet.DefaultEventLoop) BeforeClass(org.junit.BeforeClass)

Aggregations

DefaultEventLoop (com.datatorrent.netlet.DefaultEventLoop)5 Server (com.datatorrent.bufferserver.server.Server)3 InetSocketAddress (java.net.InetSocketAddress)3 BeforeClass (org.junit.BeforeClass)2 DefaultAttributeMap (com.datatorrent.api.Attribute.AttributeMap.DefaultAttributeMap)1 Sink (com.datatorrent.api.Sink)1 PayloadTuple (com.datatorrent.bufferserver.packet.PayloadTuple)1 AbstractServer (com.datatorrent.netlet.AbstractServer)1 EventLoop (com.datatorrent.netlet.EventLoop)1 CustomControlTupleTest (com.datatorrent.stram.CustomControlTupleTest)1 Checkpoint (com.datatorrent.stram.api.Checkpoint)1 DefaultStatefulStreamCodec (com.datatorrent.stram.codec.DefaultStatefulStreamCodec)1 BufferServerPublisher (com.datatorrent.stram.stream.BufferServerPublisher)1 BufferServerSubscriber (com.datatorrent.stram.stream.BufferServerSubscriber)1 CustomControlTuple (com.datatorrent.stram.tuple.CustomControlTuple)1 EndStreamTuple (com.datatorrent.stram.tuple.EndStreamTuple)1 EndWindowTuple (com.datatorrent.stram.tuple.EndWindowTuple)1 Tuple (com.datatorrent.stram.tuple.Tuple)1 IOException (java.io.IOException)1 ArrayList (java.util.ArrayList)1