Created
March 22, 2015 18:23
-
-
Save sithu/e6b714c6999aa58890c7 to your computer and use it in GitHub Desktop.
Poll Service Client
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package edu.sjsu.cmpe273.lab2; | |
import io.grpc.ChannelImpl; | |
import io.grpc.transport.netty.NegotiationType; | |
import io.grpc.transport.netty.NettyChannelBuilder; | |
import java.util.concurrent.TimeUnit; | |
import java.util.logging.Level; | |
import java.util.logging.Logger; | |
public class PollServiceClient { | |
private static final Logger logger = Logger.getLogger(PollServiceClient.class.getName()); | |
private final ChannelImpl channel; | |
private final PollServiceGrpc.PollServiceBlockingStub blockingStub; | |
public PollServiceClient(String host, int port) { | |
channel = | |
NettyChannelBuilder.forAddress(host, port).negotiationType(NegotiationType.PLAINTEXT) | |
.build(); | |
blockingStub = PollServiceGrpc.newBlockingStub(channel); | |
} | |
public void shutdown() throws InterruptedException { | |
channel.shutdown().awaitTerminated(5, TimeUnit.SECONDS); | |
} | |
public void createPoll(String moderatorId , String question, String startedAt, String expiredAt, String[] choice) { | |
if (choice == null || choice.length < 2) { | |
new RuntimeException("choice must have two items in it"); | |
} | |
try { | |
logger.info("Creating a new poll for moderator " + moderatorId); | |
PollRequest request = PollRequest.newBuilder() | |
.setModeratorId(moderatorId) | |
.setQuestion(question) | |
.setStartedAt(startedAt) | |
.setExpiredAt(expiredAt) | |
.addChoice(choice[0]) | |
.addChoice(choice[1]) | |
.build(); | |
PollResponse response = blockingStub.createPoll(request); | |
logger.info("Created a new poll with id = " + response.getId()); | |
} catch (RuntimeException e) { | |
logger.log(Level.WARNING, "RPC failed", e); | |
return; | |
} | |
} | |
public static void main(String[] args) throws Exception { | |
PollServiceClient client = new PollServiceClient("localhost", 50051); | |
try { | |
/* Access a service running on the local machine on port 50051 */ | |
String moderatorId = "1"; | |
String question = "What type of smartphone do you have?"; | |
String startedAt = "2015-03-18T13:00:00.000Z"; | |
String expiredAt = "2015-03-19T13:00:00.000Z"; | |
String[] choice = new String[] { "Android", "iPhone" }; | |
client.createPoll(moderatorId, question, startedAt, expiredAt, choice); | |
} finally { | |
client.shutdown(); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment