/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 2014-2017 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution License("CDDL") (collectively, the "License"). You * may not use this file except in compliance with the License. You can * obtain a copy of the License at * http://glassfish.java.net/public/CDDL+GPL_1_1.html * or packager/legal/LICENSE.txt. See the License for the specific * language governing permissions and limitations under the License. * * When distributing the software, include this License Header Notice in each * file and include the License file at packager/legal/LICENSE.txt. * * GPL Classpath Exception: * Oracle designates this particular file as subject to the "Classpath" * exception as provided by Oracle in the GPL Version 2 section of the License * file that accompanied this code. * * Modifications: * If applicable, add the following below the License Header, with the fields * enclosed by brackets [] replaced by your own identifying information: * "Portions Copyright [year] [name of copyright owner]" * * Contributor(s): * If you wish your version of this file to be governed by only the CDDL or * only the GPL Version 2, indicate your decision by adding "[Contributor] * elects to include this software in this distribution under the [CDDL or GPL * Version 2] license." If you don't indicate a single choice of license, a * recipient has the option to distribute your version of this file under * either the CDDL, the GPL Version 2 or to extend the choice of license to * its licensees as provided above. However, if you add GPL Version 2 code * and therefore, elected the GPL Version 2 license, then the option applies * only if the new code is made subject to such option by the copyright * holder. */ package org.glassfish.jersey.examples.rx.agent; import java.util.Arrays; import java.util.List; import javax.ws.rs.GET; import javax.ws.rs.Path; import javax.ws.rs.Produces; import javax.ws.rs.client.WebTarget; import javax.ws.rs.container.AsyncResponse; import javax.ws.rs.container.Suspended; import javax.ws.rs.core.GenericType; import org.glassfish.jersey.client.rx.guava.RxListenableFutureInvoker; import org.glassfish.jersey.client.rx.guava.RxListenableFutureInvokerProvider; import org.glassfish.jersey.examples.rx.domain.AgentResponse; import org.glassfish.jersey.examples.rx.domain.Calculation; import org.glassfish.jersey.examples.rx.domain.Destination; import org.glassfish.jersey.examples.rx.domain.Forecast; import org.glassfish.jersey.examples.rx.domain.Recommendation; import org.glassfish.jersey.server.ManagedAsync; import org.glassfish.jersey.server.Uri; import com.google.common.collect.Lists; import com.google.common.util.concurrent.AsyncFunction; import com.google.common.util.concurrent.FutureCallback; import com.google.common.util.concurrent.Futures; import com.google.common.util.concurrent.ListenableFuture; /** * Obtain information about visited (destination) and recommended (destination, forecast, price) places for "Guava" user. Uses * Guava ListenableFuture and Jersey Client to obtain the data. * * @author Michal Gajdos * @author Pavel Bucek (pavel.bucek at oracle.com) */ @Path("agent/listenable") @Produces("application/json") public class ListenableFutureAgentResource { @Uri("remote/destination") private WebTarget destination; @Uri("remote/calculation/from/{from}/to/{to}") private WebTarget calculation; @Uri("remote/forecast/{destination}") private WebTarget forecast; @GET @ManagedAsync public void listenable(@Suspended final AsyncResponse async) { final long time = System.nanoTime(); final AgentResponse response = new AgentResponse(); // Obtain and set visited and recommended places to create a response ... final ListenableFuture<List<AgentResponse>> successful = Futures.successfulAsList( Arrays.asList(visited(response), recommended(response))); // ... and when we have them, return response to the client. Futures.addCallback(successful, new FutureCallback<List<AgentResponse>>() { @Override public void onSuccess(final List<AgentResponse> result) { response.setProcessingTime((System.nanoTime() - time) / 1000000); async.resume(response); } @Override public void onFailure(final Throwable t) { async.resume(t); } }); } private ListenableFuture<AgentResponse> visited(final AgentResponse response) { destination.register(RxListenableFutureInvokerProvider.class); // Get a list of visited destinations ... final ListenableFuture<List<Destination>> visited = destination.path("visited").request() // Identify the user. .header("Rx-User", "Guava") // Reactive invoker. .rx(RxListenableFutureInvoker.class) // Return a list of destinations. .get(new GenericType<List<Destination>>() { }); // ... and set them to the final response. return Futures.transform(visited, (AsyncFunction<List<Destination>, AgentResponse>) destinations -> { response.setVisited(destinations); return Futures.immediateFuture(response); }); } private ListenableFuture<AgentResponse> recommended(final AgentResponse response) { destination.register(RxListenableFutureInvokerProvider.class); // Get a list of recommended destinations ... final ListenableFuture<List<Destination>> destinations = destination.path("recommended") .request() // Identify the user. .header("Rx-User", "Guava") // Reactive invoker. .rx(RxListenableFutureInvoker.class) // Return a list of destinations. .get(new GenericType<List<Destination>>() { }); // ... transform them to Recommendation instances ... final ListenableFuture<List<Recommendation>> recommendations = Futures.transform( destinations, (AsyncFunction<List<Destination>, List<Recommendation>>) destinationList -> { // Create new array list to avoid multiple remote calls. final List<Recommendation> recommendationList = Lists.newArrayList(Lists.transform( destinationList, destination -> new Recommendation(destination.getDestination(), null, 0))); return Futures.immediateFuture(recommendationList); }); // ... add forecasts and calculations ... final ListenableFuture<List<List<Recommendation>>> filledRecommendations = Futures .successfulAsList(Arrays.asList( // Add Forecasts to Recommendations. forecasts(recommendations), // Add Forecasts to Recommendations. calculations(recommendations))); // ... and transform the list into agent response with filled recommendations. return Futures .transform(filledRecommendations, (AsyncFunction<List<List<Recommendation>>, AgentResponse>) input -> { response.setRecommended(input.get(0)); return Futures.immediateFuture(response); }); } private ListenableFuture<List<Recommendation>> forecasts(final ListenableFuture<List<Recommendation>> recommendations) { forecast.register(RxListenableFutureInvokerProvider.class); // Fill the list with weather forecast. return Futures.transform(recommendations, (AsyncFunction<List<Recommendation>, List<Recommendation>>) list -> // For each recommendation ... Futures.successfulAsList(Lists.transform(list, recommendation -> Futures.transform( // ... get the weather forecast ... forecast.resolveTemplate("destination", recommendation.getDestination()).request() .rx(RxListenableFutureInvoker.class) .get(Forecast.class), // ... and set it to the recommendation. (AsyncFunction<Forecast, Recommendation>) forecast -> { recommendation.setForecast(forecast.getForecast()); return Futures.immediateFuture(recommendation); })))); } private ListenableFuture<List<Recommendation>> calculations(final ListenableFuture<List<Recommendation>> recommendations) { calculation.register(RxListenableFutureInvokerProvider.class); // Fill the list with price calculations. return Futures.transform(recommendations, (AsyncFunction<List<Recommendation>, List<Recommendation>>) list -> // For each recommendation ... Futures.successfulAsList(Lists.transform(list, recommendation -> Futures.transform( // ... get the price calculation ... calculation.resolveTemplate("from", "Moon") .resolveTemplate("to", recommendation.getDestination()) .request().rx(RxListenableFutureInvoker.class).get(Calculation.class), // ... and set it to the recommendation. (AsyncFunction<Calculation, Recommendation>) calculation -> { recommendation.setPrice(calculation.getPrice()); return Futures.immediateFuture(recommendation); }))) ); } }