/* Copyright (c) 2012 LinkedIn Corp. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package com.example.fortune; import com.linkedin.common.callback.Callback; import com.linkedin.common.callback.FutureCallback; import com.linkedin.common.util.None; import com.linkedin.r2.filter.CompressionConfig; import com.linkedin.r2.filter.FilterChains; import com.linkedin.r2.filter.compression.ClientCompressionFilter; import com.linkedin.r2.filter.compression.EncodingType; import com.linkedin.r2.transport.common.Client; import com.linkedin.r2.transport.common.bridge.client.TransportClient; import com.linkedin.r2.transport.common.bridge.client.TransportClientAdapter; import com.linkedin.r2.transport.http.client.HttpClientFactory; import com.linkedin.restli.client.Request; import com.linkedin.restli.client.Response; import com.linkedin.restli.client.ResponseFuture; import com.linkedin.restli.client.RestClient; import com.example.fortune.FortunesBuilders; import java.util.Collections; /** * @author Doug Young */ public class RestLiFortunesClient { private static final int THRESHOLD = 4096; /** * This stand-alone app demos the client-side Pegasus API. * To see the demo, run RestLiFortuneServer, then start the client */ public static void main(String[] args) throws Exception { // Create an HttpClient and wrap it in an abstraction layer final HttpClientFactory http = new HttpClientFactory(FilterChains.createRestChain( new ClientCompressionFilter(EncodingType.IDENTITY, new CompressionConfig(THRESHOLD), new EncodingType[] { EncodingType.SNAPPY }, new CompressionConfig(THRESHOLD), Collections.singletonList("*")) )); final Client r2Client = new TransportClientAdapter( http.getClient(Collections.<String, String>emptyMap())); // Create a RestClient to talk to localhost:8080 RestClient restClient = new RestClient(r2Client, "http://localhost:8080/"); // Generate a random ID for a fortune cookie, in the range 0-5 long fortuneId = (long) (Math.random() * 5); // Construct a request for the specified fortune FortunesGetBuilder getBuilder = _fortuneBuilder.get(); Request<Fortune> getReq = getBuilder.id(fortuneId).build(); // Send the request and wait for a response final ResponseFuture<Fortune> getFuture = restClient.sendRequest(getReq); final Response<Fortune> resp = getFuture.getResponse(); // Print the response System.out.println(resp.getEntity().getFortune()); // shutdown restClient.shutdown(new FutureCallback<None>()); http.shutdown(new FutureCallback<None>()); } private static final FortunesBuilders _fortuneBuilder = new FortunesBuilders(); }