Search in sources :

Example 1 with GrpcReadStream

use of io.vertx.grpc.GrpcReadStream in project vertx-examples by vert-x3.

the class Server method start.

@Override
public void start() throws Exception {
    // The rcp service
    ProducerServiceGrpc.ProducerServiceVertxImplBase service = new ProducerServiceGrpc.ProducerServiceVertxImplBase() {

        @Override
        public void streamingInputCall(GrpcReadStream<Messages.StreamingInputCallRequest> request, Future<Messages.StreamingInputCallResponse> future) {
            request.handler(payload -> {
                System.out.println(payload.getPayload().getType().getNumber());
            }).endHandler(v -> {
                System.out.println("Request has ended.");
                future.complete(Messages.StreamingInputCallResponse.newBuilder().build());
            });
        }
    };
    // Create the server
    VertxServer rpcServer = VertxServerBuilder.forPort(vertx, 8080).addService(service).build();
    // start the server
    rpcServer.start(ar -> {
        if (ar.failed()) {
            ar.cause().printStackTrace();
        }
    });
}
Also used : Messages(io.vertx.example.grpc.Messages) AtomicInteger(java.util.concurrent.atomic.AtomicInteger) AbstractVerticle(io.vertx.core.AbstractVerticle) VertxServerBuilder(io.vertx.grpc.VertxServerBuilder) Future(io.vertx.core.Future) Runner(io.vertx.example.util.Runner) GrpcReadStream(io.vertx.grpc.GrpcReadStream) VertxServer(io.vertx.grpc.VertxServer) ProducerServiceGrpc(io.vertx.example.grpc.ProducerServiceGrpc) ProducerServiceGrpc(io.vertx.example.grpc.ProducerServiceGrpc) GrpcReadStream(io.vertx.grpc.GrpcReadStream) Messages(io.vertx.example.grpc.Messages) VertxServer(io.vertx.grpc.VertxServer) Future(io.vertx.core.Future)

Example 2 with GrpcReadStream

use of io.vertx.grpc.GrpcReadStream in project vertx-examples by vert-x3.

the class Server method start.

@Override
public void start() throws Exception {
    URL featureFile = Util.getDefaultFeaturesFile();
    features = Util.parseFeatures(featureFile);
    VertxServer server = VertxServerBuilder.forAddress(vertx, "localhost", 8080).addService(new RouteGuideGrpc.RouteGuideVertxImplBase() {

        @Override
        public void getFeature(Point request, Future<Feature> response) {
            response.complete(checkFeature(request));
        }

        @Override
        public void listFeatures(Rectangle request, GrpcWriteStream<Feature> response) {
            int left = Math.min(request.getLo().getLongitude(), request.getHi().getLongitude());
            int right = Math.max(request.getLo().getLongitude(), request.getHi().getLongitude());
            int top = Math.max(request.getLo().getLatitude(), request.getHi().getLatitude());
            int bottom = Math.min(request.getLo().getLatitude(), request.getHi().getLatitude());
            for (Feature feature : features) {
                if (!Util.exists(feature)) {
                    continue;
                }
                int lat = feature.getLocation().getLatitude();
                int lon = feature.getLocation().getLongitude();
                if (lon >= left && lon <= right && lat >= bottom && lat <= top) {
                    response.write(feature);
                }
            }
            response.end();
        }

        @Override
        public void recordRoute(GrpcReadStream<Point> request, Future<RouteSummary> response) {
            request.exceptionHandler(err -> {
                System.out.println("recordRoute cancelled");
            });
            RouteRecorder recorder = new RouteRecorder();
            request.handler(recorder::append);
            request.endHandler(v -> {
                response.complete(recorder.build());
            });
        }

        @Override
        public void routeChat(GrpcBidiExchange<RouteNote, RouteNote> exchange) {
            exchange.handler(note -> {
                List<RouteNote> notes = getOrCreateNotes(note.getLocation());
                // Respond with all previous notes at this location.
                for (RouteNote prevNote : notes.toArray(new RouteNote[0])) {
                    exchange.write(prevNote);
                }
                // Now add the new note to the list
                notes.add(note);
            });
            exchange.exceptionHandler(err -> {
                System.out.println("routeChat cancelled");
            });
            exchange.endHandler(v -> exchange.end());
        }
    }).build();
    server.start(ar -> {
        if (ar.succeeded()) {
            System.out.println("gRPC service started");
        } else {
            System.out.println("Could not start server " + ar.cause().getMessage());
        }
    });
}
Also used : GrpcBidiExchange(io.vertx.grpc.GrpcBidiExchange) VertxServer(io.vertx.grpc.VertxServer) Rectangle(io.grpc.examples.routeguide.Rectangle) Point(io.grpc.examples.routeguide.Point) Feature(io.grpc.examples.routeguide.Feature) URL(java.net.URL) Point(io.grpc.examples.routeguide.Point) GrpcReadStream(io.vertx.grpc.GrpcReadStream) RouteNote(io.grpc.examples.routeguide.RouteNote) Future(io.vertx.core.Future) GrpcWriteStream(io.vertx.grpc.GrpcWriteStream)

Aggregations

Future (io.vertx.core.Future)2 GrpcReadStream (io.vertx.grpc.GrpcReadStream)2 VertxServer (io.vertx.grpc.VertxServer)2 Feature (io.grpc.examples.routeguide.Feature)1 Point (io.grpc.examples.routeguide.Point)1 Rectangle (io.grpc.examples.routeguide.Rectangle)1 RouteNote (io.grpc.examples.routeguide.RouteNote)1 AbstractVerticle (io.vertx.core.AbstractVerticle)1 Messages (io.vertx.example.grpc.Messages)1 ProducerServiceGrpc (io.vertx.example.grpc.ProducerServiceGrpc)1 Runner (io.vertx.example.util.Runner)1 GrpcBidiExchange (io.vertx.grpc.GrpcBidiExchange)1 GrpcWriteStream (io.vertx.grpc.GrpcWriteStream)1 VertxServerBuilder (io.vertx.grpc.VertxServerBuilder)1 URL (java.net.URL)1 AtomicInteger (java.util.concurrent.atomic.AtomicInteger)1