HelloWorld for protobuf-based servlet with integration test example
parent
16ec188f68
commit
c34e3b77c6
|
@ -63,50 +63,67 @@ protobuf {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
idea {
|
idea {
|
||||||
module {
|
module {
|
||||||
// add protobuf generated sources to generated source dir.
|
project.sourceSets.each { sourceSet ->
|
||||||
sourceDirs += file(protobuf.generatedFilesBaseDir)
|
|
||||||
generatedSourceDirs += file(protobuf.generatedFilesBaseDir)
|
|
||||||
|
|
||||||
// Don't exclude build directory
|
def srcDir = "${protobuf.generatedFilesBaseDir}/$sourceSet.name/java"
|
||||||
excludeDirs -= file(buildDir)
|
|
||||||
|
println "Adding $srcDir"
|
||||||
|
// add protobuf generated sources to generated source dir.
|
||||||
|
if ("test".equals(sourceSet.name)) {
|
||||||
|
testSourceDirs += file(srcDir)
|
||||||
|
} else {
|
||||||
|
sourceDirs += file(srcDir)
|
||||||
|
}
|
||||||
|
generatedSourceDirs += file(srcDir)
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
// Don't exclude build directory
|
||||||
|
excludeDirs -= file(buildDir)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*===================================
|
/*===================================
|
||||||
* "Fat" Build targets
|
* "Fat" Build targets
|
||||||
*===================================*/
|
*===================================*/
|
||||||
|
|
||||||
|
|
||||||
task mavenCapsule(type: MavenCapsule){
|
if (project.hasProperty('mainClassName') && (mainClassName != null)) {
|
||||||
description = "Generate a capsule jar that automatically downloads and caches dependencies when run."
|
|
||||||
applicationClass mainClassName
|
|
||||||
destinationDir = buildDir
|
|
||||||
}
|
|
||||||
|
|
||||||
task fatCapsule(type: FatCapsule){
|
task mavenCapsule(type: MavenCapsule) {
|
||||||
description = "Generate a single capsule jar containing everything. Use -Pfatmain=... to override main class"
|
description = "Generate a capsule jar that automatically downloads and caches dependencies when run."
|
||||||
|
applicationClass mainClassName
|
||||||
destinationDir = buildDir
|
destinationDir = buildDir
|
||||||
|
|
||||||
def fatMain = hasProperty('fatmain') ? fatmain : mainClassName
|
|
||||||
|
|
||||||
applicationClass fatMain
|
|
||||||
|
|
||||||
def testJar = hasProperty('test')
|
|
||||||
|
|
||||||
if (hasProperty('fatmain')) {
|
|
||||||
appendix = "fat-${fatMain}"
|
|
||||||
} else {
|
|
||||||
appendix = "fat"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (testJar) {
|
task fatCapsule(type: FatCapsule) {
|
||||||
from sourceSets.test.output
|
description = "Generate a single capsule jar containing everything. Use -Pfatmain=... to override main class"
|
||||||
|
|
||||||
|
destinationDir = buildDir
|
||||||
|
|
||||||
|
def fatMain = hasProperty('fatmain') ? fatmain : mainClassName
|
||||||
|
|
||||||
|
applicationClass fatMain
|
||||||
|
|
||||||
|
def testJar = hasProperty('test')
|
||||||
|
|
||||||
|
if (hasProperty('fatmain')) {
|
||||||
|
appendix = "fat-${fatMain}"
|
||||||
|
} else {
|
||||||
|
appendix = "fat"
|
||||||
|
}
|
||||||
|
|
||||||
|
if (testJar) {
|
||||||
|
from sourceSets.test.output
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*===================================
|
/*===================================
|
||||||
* Repositories
|
* Repositories
|
||||||
*===================================*/
|
*===================================*/
|
||||||
|
|
|
@ -27,7 +27,7 @@ ext {
|
||||||
nexusPassword = project.hasProperty('nexusPassword') ? project.property('nexusPassword') : ""
|
nexusPassword = project.hasProperty('nexusPassword') ? project.property('nexusPassword') : ""
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "TODO: Add a description"
|
description = "Bulletin-board server web application"
|
||||||
|
|
||||||
// Your project version
|
// Your project version
|
||||||
version = "0.0.1"
|
version = "0.0.1"
|
||||||
|
@ -38,6 +38,7 @@ version += "${isSnapshot ? '-SNAPSHOT' : ''}"
|
||||||
dependencies {
|
dependencies {
|
||||||
// Meerkat common
|
// Meerkat common
|
||||||
compile project(':meerkat-common')
|
compile project(':meerkat-common')
|
||||||
|
compile project(':restful-api-common')
|
||||||
|
|
||||||
// Jersey for RESTful API
|
// Jersey for RESTful API
|
||||||
compile 'org.glassfish.jersey.containers:jersey-container-servlet:2.22.+'
|
compile 'org.glassfish.jersey.containers:jersey-container-servlet:2.22.+'
|
||||||
|
@ -82,17 +83,30 @@ protobuf {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
idea {
|
idea {
|
||||||
module {
|
module {
|
||||||
// add protobuf generated sources to generated source dir.
|
project.sourceSets.each { sourceSet ->
|
||||||
sourceDirs += file(protobuf.generatedFilesBaseDir)
|
|
||||||
generatedSourceDirs += file(protobuf.generatedFilesBaseDir)
|
|
||||||
|
|
||||||
// Don't exclude build directory
|
def srcDir = "${protobuf.generatedFilesBaseDir}/$sourceSet.name/java"
|
||||||
excludeDirs -= file(buildDir)
|
|
||||||
|
println "Adding $srcDir"
|
||||||
|
// add protobuf generated sources to generated source dir.
|
||||||
|
if ("test".equals(sourceSet.name)) {
|
||||||
|
testSourceDirs += file(srcDir)
|
||||||
|
} else {
|
||||||
|
sourceDirs += file(srcDir)
|
||||||
|
}
|
||||||
|
generatedSourceDirs += file(srcDir)
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
// Don't exclude build directory
|
||||||
|
excludeDirs -= file(buildDir)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*===================================
|
/*===================================
|
||||||
* "Fat" Build targets
|
* "Fat" Build targets
|
||||||
*===================================*/
|
*===================================*/
|
||||||
|
|
|
@ -0,0 +1,29 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
|
||||||
|
<root>
|
||||||
|
<setting name="task-tab">
|
||||||
|
<setting name="show-description" value="true"/>
|
||||||
|
</setting>
|
||||||
|
<setting name="favorites-tab"/>
|
||||||
|
<setting name="command_line-tab"/>
|
||||||
|
<setting name="setup-tab">
|
||||||
|
<setting name="setup">
|
||||||
|
<setting name="custom-gradle-executor"/>
|
||||||
|
<setting name="current-directory" value="/home/talm/proj/meerkat/bulletin-board-server"/>
|
||||||
|
<setting name="log-level" value="LIFECYCLE"/>
|
||||||
|
</setting>
|
||||||
|
</setting>
|
||||||
|
<setting name="SinglePaneUIInstance_splitter-id">
|
||||||
|
<setting name="divider_location" value="387"/>
|
||||||
|
</setting>
|
||||||
|
<setting name="main_panel">
|
||||||
|
<setting name="current-tab" value="Task Tree"/>
|
||||||
|
</setting>
|
||||||
|
<setting name="Application_window-id">
|
||||||
|
<setting name="window_x" value="306"/>
|
||||||
|
<setting name="window_y" value="1042"/>
|
||||||
|
<setting name="window_width" value="800"/>
|
||||||
|
<setting name="window_height" value="800"/>
|
||||||
|
<setting name="extended-state" value="0"/>
|
||||||
|
</setting>
|
||||||
|
</root>
|
|
@ -0,0 +1,31 @@
|
||||||
|
package meerkat.bulletinboard.service;
|
||||||
|
|
||||||
|
import com.google.protobuf.ByteString;
|
||||||
|
import com.google.protobuf.Message;
|
||||||
|
import meerkat.protobuf.Crypto;
|
||||||
|
import meerkat.protobuf.Voting;
|
||||||
|
import meerkat.protobuf.Voting.BulletinBoardMessage;
|
||||||
|
|
||||||
|
import java.util.Arrays;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Created by talm on 10/11/15.
|
||||||
|
*/
|
||||||
|
public class HelloProtoBuf {
|
||||||
|
public Message sayHello() {
|
||||||
|
BulletinBoardMessage.Builder msg = BulletinBoardMessage.newBuilder();
|
||||||
|
|
||||||
|
Voting.UnsignedBulletinBoardMessage.Builder unsigned = Voting.UnsignedBulletinBoardMessage.newBuilder();
|
||||||
|
unsigned.setData(ByteString.copyFromUtf8("Hello World!"));
|
||||||
|
List<String> tags = Arrays.asList("Greetings", "FirstPrograms");
|
||||||
|
unsigned.addAllTags(tags);
|
||||||
|
msg.setMsg(unsigned);
|
||||||
|
|
||||||
|
Crypto.Signature.Builder sig = Crypto.Signature.newBuilder();
|
||||||
|
sig.setData(ByteString.copyFromUtf8("deadbeef"));
|
||||||
|
msg.setSig(sig);
|
||||||
|
|
||||||
|
return msg.build();
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,22 @@
|
||||||
|
package meerkat.bulletinboard.webapp;
|
||||||
|
|
||||||
|
|
||||||
|
import com.google.protobuf.Message;
|
||||||
|
import meerkat.bulletinboard.service.HelloProtoBuf;
|
||||||
|
import meerkat.rest.Constants;
|
||||||
|
import service.HelloWorldService;
|
||||||
|
|
||||||
|
import javax.ws.rs.GET;
|
||||||
|
import javax.ws.rs.Path;
|
||||||
|
import javax.ws.rs.Produces;
|
||||||
|
|
||||||
|
@Path("/proto")
|
||||||
|
public class HelloProtoWebApp {
|
||||||
|
private static HelloProtoBuf helloProtoBuf = new HelloProtoBuf();
|
||||||
|
|
||||||
|
@GET
|
||||||
|
@Produces(Constants.MEDIATYPE_PROTOBUF)
|
||||||
|
public Message hello() {
|
||||||
|
return helloProtoBuf.sayHello();
|
||||||
|
}
|
||||||
|
}
|
|
@ -6,7 +6,7 @@
|
||||||
</servlet-class>
|
</servlet-class>
|
||||||
<init-param>
|
<init-param>
|
||||||
<param-name>jersey.config.server.provider.packages</param-name>
|
<param-name>jersey.config.server.provider.packages</param-name>
|
||||||
<param-value>webapp</param-value>
|
<param-value>webapp, meerkat</param-value>
|
||||||
</init-param>
|
</init-param>
|
||||||
<load-on-startup>1</load-on-startup>
|
<load-on-startup>1</load-on-startup>
|
||||||
</servlet>
|
</servlet>
|
||||||
|
|
|
@ -0,0 +1,41 @@
|
||||||
|
package meerkat.bulletinboard;
|
||||||
|
|
||||||
|
import meerkat.protobuf.Voting;
|
||||||
|
import meerkat.rest.Constants;
|
||||||
|
import meerkat.rest.ProtobufMessageBodyReader;
|
||||||
|
import meerkat.rest.ProtobufMessageBodyWriter;
|
||||||
|
import org.junit.Test;
|
||||||
|
|
||||||
|
import javax.ws.rs.client.Client;
|
||||||
|
import javax.ws.rs.client.ClientBuilder;
|
||||||
|
import javax.ws.rs.client.WebTarget;
|
||||||
|
|
||||||
|
import static org.hamcrest.CoreMatchers.is;
|
||||||
|
import static org.hamcrest.MatcherAssert.assertThat;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Created by talm on 10/11/15.
|
||||||
|
*/
|
||||||
|
public class HelloProtoIntegrationTest {
|
||||||
|
|
||||||
|
private static String PROP_GETTY_URL = "gretty.httpBaseURI";
|
||||||
|
private static String BASE_URL = System.getProperty(PROP_GETTY_URL);
|
||||||
|
private static String HELLO_URL = BASE_URL + "/proto";
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testHello() throws Exception {
|
||||||
|
Client client = ClientBuilder.newClient();
|
||||||
|
client.register(ProtobufMessageBodyReader.class);
|
||||||
|
client.register(ProtobufMessageBodyWriter.class);
|
||||||
|
|
||||||
|
WebTarget webTarget = client.target(HELLO_URL);
|
||||||
|
Voting.BulletinBoardMessage response = webTarget.request(Constants.MEDIATYPE_PROTOBUF).get(Voting.BulletinBoardMessage.class);
|
||||||
|
|
||||||
|
System.out.println(response.getMsg().getData());
|
||||||
|
|
||||||
|
assertThat(response.getMsg().getData().toStringUtf8(), is("Hello World!"));
|
||||||
|
assertThat(response.getMsg().getTagsCount(), is(2));
|
||||||
|
assertThat(response.getMsg().getTags(0), is("Greetings"));
|
||||||
|
assertThat(response.getMsg().getTags(1), is("FirstPrograms"));
|
||||||
|
}
|
||||||
|
}
|
|
@ -63,12 +63,23 @@ protobuf {
|
||||||
|
|
||||||
idea {
|
idea {
|
||||||
module {
|
module {
|
||||||
// add protobuf generated sources to generated source dir.
|
project.sourceSets.each { sourceSet ->
|
||||||
sourceDirs += file(protobuf.generatedFilesBaseDir)
|
|
||||||
generatedSourceDirs += file(protobuf.generatedFilesBaseDir)
|
|
||||||
|
|
||||||
// Don't exclude build directory
|
def srcDir = "${protobuf.generatedFilesBaseDir}/$sourceSet.name/java"
|
||||||
excludeDirs -= file(buildDir)
|
|
||||||
|
println "Adding $srcDir"
|
||||||
|
// add protobuf generated sources to generated source dir.
|
||||||
|
if ("test".equals(sourceSet.name)) {
|
||||||
|
testSourceDirs += file(srcDir)
|
||||||
|
} else {
|
||||||
|
sourceDirs += file(srcDir)
|
||||||
|
}
|
||||||
|
generatedSourceDirs += file(srcDir)
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
// Don't exclude build directory
|
||||||
|
excludeDirs -= file(buildDir)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -25,7 +25,7 @@ ext {
|
||||||
nexusPassword = project.hasProperty('nexusPassword') ? project.property('nexusPassword') : ""
|
nexusPassword = project.hasProperty('nexusPassword') ? project.property('nexusPassword') : ""
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "TODO: Add a description"
|
description = "Meerkat polling-station application"
|
||||||
|
|
||||||
// Your project version
|
// Your project version
|
||||||
version = "0.0"
|
version = "0.0"
|
||||||
|
@ -61,14 +61,26 @@ protobuf {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
idea {
|
idea {
|
||||||
module {
|
module {
|
||||||
// add protobuf generated sources to generated source dir.
|
project.sourceSets.each { sourceSet ->
|
||||||
sourceDirs += file(protobuf.generatedFilesBaseDir)
|
|
||||||
generatedSourceDirs += file(protobuf.generatedFilesBaseDir)
|
|
||||||
|
|
||||||
// Don't exclude build directory
|
def srcDir = "${protobuf.generatedFilesBaseDir}/$sourceSet.name/java"
|
||||||
excludeDirs -= file(buildDir)
|
|
||||||
|
println "Adding $srcDir"
|
||||||
|
// add protobuf generated sources to generated source dir.
|
||||||
|
if ("test".equals(sourceSet.name)) {
|
||||||
|
testSourceDirs += file(srcDir)
|
||||||
|
} else {
|
||||||
|
sourceDirs += file(srcDir)
|
||||||
|
}
|
||||||
|
generatedSourceDirs += file(srcDir)
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
// Don't exclude build directory
|
||||||
|
excludeDirs -= file(buildDir)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,161 @@
|
||||||
|
|
||||||
|
plugins {
|
||||||
|
id "us.kirchmeier.capsule" version "1.0.1"
|
||||||
|
id 'com.google.protobuf' version '0.7.0'
|
||||||
|
}
|
||||||
|
|
||||||
|
apply plugin: 'java'
|
||||||
|
apply plugin: 'eclipse'
|
||||||
|
apply plugin: 'idea'
|
||||||
|
|
||||||
|
// Uncomment both lines below to define an application (must set mainClassName
|
||||||
|
//apply plugin: 'application'
|
||||||
|
//mainClassName='your.main.ApplicationClass'
|
||||||
|
|
||||||
|
apply plugin: 'maven-publish'
|
||||||
|
|
||||||
|
// Is this a snapshot version?
|
||||||
|
ext { isSnapshot = false }
|
||||||
|
|
||||||
|
ext {
|
||||||
|
groupId = 'org.factcenter.meerkat'
|
||||||
|
nexusRepository = "https://cs.idc.ac.il/nexus/content/groups/${isSnapshot ? 'unstable' : 'public'}/"
|
||||||
|
|
||||||
|
// Credentials for IDC nexus repositories (needed only for using unstable repositories and publishing)
|
||||||
|
// Should be set in ${HOME}/.gradle/gradle.properties
|
||||||
|
nexusUser = project.hasProperty('nexusUser') ? project.property('nexusUser') : ""
|
||||||
|
nexusPassword = project.hasProperty('nexusPassword') ? project.property('nexusPassword') : ""
|
||||||
|
}
|
||||||
|
|
||||||
|
description = "Common classes for implementing Meerkat's RESTful API"
|
||||||
|
|
||||||
|
// Your project version
|
||||||
|
version = "0.0.1"
|
||||||
|
|
||||||
|
version += "${isSnapshot ? '-SNAPSHOT' : ''}"
|
||||||
|
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
// Meerkat common
|
||||||
|
compile project(':meerkat-common')
|
||||||
|
|
||||||
|
// Jersey for RESTful API
|
||||||
|
compile 'org.glassfish.jersey.containers:jersey-container-servlet:2.22.+'
|
||||||
|
|
||||||
|
// Logging
|
||||||
|
compile 'org.slf4j:slf4j-api:1.7.7'
|
||||||
|
runtime 'ch.qos.logback:logback-classic:1.1.2'
|
||||||
|
runtime 'ch.qos.logback:logback-core:1.1.2'
|
||||||
|
|
||||||
|
// Google protobufs
|
||||||
|
compile 'com.google.protobuf:protobuf-java:3.+'
|
||||||
|
|
||||||
|
testCompile 'junit:junit:4.+'
|
||||||
|
|
||||||
|
runtime 'org.codehaus.groovy:groovy:2.4.+'
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*==== You probably don't have to edit below this line =======*/
|
||||||
|
|
||||||
|
protobuf {
|
||||||
|
// Configure the protoc executable
|
||||||
|
protoc {
|
||||||
|
// Download from repositories
|
||||||
|
artifact = 'com.google.protobuf:protoc:3.+'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
idea {
|
||||||
|
module {
|
||||||
|
project.sourceSets.each { sourceSet ->
|
||||||
|
|
||||||
|
def srcDir = "${protobuf.generatedFilesBaseDir}/$sourceSet.name/java"
|
||||||
|
|
||||||
|
println "Adding $srcDir"
|
||||||
|
// add protobuf generated sources to generated source dir.
|
||||||
|
if ("test".equals(sourceSet.name)) {
|
||||||
|
testSourceDirs += file(srcDir)
|
||||||
|
} else {
|
||||||
|
sourceDirs += file(srcDir)
|
||||||
|
}
|
||||||
|
generatedSourceDirs += file(srcDir)
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
// Don't exclude build directory
|
||||||
|
excludeDirs -= file(buildDir)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*===================================
|
||||||
|
* Repositories
|
||||||
|
*===================================*/
|
||||||
|
|
||||||
|
repositories {
|
||||||
|
|
||||||
|
// Prefer the local nexus repository (it may have 3rd party artifacts not found in mavenCentral)
|
||||||
|
maven {
|
||||||
|
url nexusRepository
|
||||||
|
|
||||||
|
if (isSnapshot) {
|
||||||
|
credentials { username
|
||||||
|
password
|
||||||
|
|
||||||
|
username nexusUser
|
||||||
|
password nexusPassword
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Use local maven repository
|
||||||
|
mavenLocal()
|
||||||
|
|
||||||
|
// Use 'maven central' for other dependencies.
|
||||||
|
mavenCentral()
|
||||||
|
}
|
||||||
|
|
||||||
|
task "info" << {
|
||||||
|
println "Project: ${project.name}"
|
||||||
|
println "Description: ${project.description}"
|
||||||
|
println "--------------------------"
|
||||||
|
println "GroupId: $groupId"
|
||||||
|
println "Version: $version (${isSnapshot ? 'snapshot' : 'release'})"
|
||||||
|
println ""
|
||||||
|
}
|
||||||
|
info.description 'Print some information about project parameters'
|
||||||
|
|
||||||
|
|
||||||
|
/*===================================
|
||||||
|
* Publishing
|
||||||
|
*===================================*/
|
||||||
|
|
||||||
|
publishing {
|
||||||
|
publications {
|
||||||
|
mavenJava(MavenPublication) {
|
||||||
|
groupId project.groupId
|
||||||
|
pom.withXml {
|
||||||
|
asNode().appendNode('description', project.description)
|
||||||
|
}
|
||||||
|
from project.components.java
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
repositories {
|
||||||
|
maven {
|
||||||
|
url "https://cs.idc.ac.il/nexus/content/repositories/${project.isSnapshot ? 'snapshots' : 'releases'}"
|
||||||
|
credentials { username
|
||||||
|
password
|
||||||
|
|
||||||
|
username nexusUser
|
||||||
|
password nexusPassword
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
../gradlew
|
|
@ -0,0 +1,8 @@
|
||||||
|
package meerkat.rest;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Created by talm on 10/11/15.
|
||||||
|
*/
|
||||||
|
public interface Constants {
|
||||||
|
public static final String MEDIATYPE_PROTOBUF = "application/x-protobuf";
|
||||||
|
}
|
|
@ -0,0 +1,41 @@
|
||||||
|
package meerkat.rest;
|
||||||
|
|
||||||
|
import com.google.protobuf.GeneratedMessage;
|
||||||
|
import com.google.protobuf.Message;
|
||||||
|
|
||||||
|
|
||||||
|
import javax.ws.rs.*;
|
||||||
|
import javax.ws.rs.core.MediaType;
|
||||||
|
import javax.ws.rs.core.MultivaluedMap;
|
||||||
|
import javax.ws.rs.ext.MessageBodyReader;
|
||||||
|
import javax.ws.rs.ext.Provider;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.io.InputStream;
|
||||||
|
import java.lang.annotation.Annotation;
|
||||||
|
import java.lang.reflect.Method;
|
||||||
|
import java.lang.reflect.Type;
|
||||||
|
|
||||||
|
import static meerkat.rest.Constants.*;
|
||||||
|
|
||||||
|
@Provider
|
||||||
|
@Consumes(MEDIATYPE_PROTOBUF)
|
||||||
|
public class ProtobufMessageBodyReader implements MessageBodyReader<Message> {
|
||||||
|
@Override
|
||||||
|
public boolean isReadable(Class<?> type, Type genericType, Annotation[] annotations,
|
||||||
|
MediaType mediaType) {
|
||||||
|
return Message.class.isAssignableFrom(type);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Message readFrom(Class<Message> type, Type genericType, Annotation[] annotations,
|
||||||
|
MediaType mediaType, MultivaluedMap<String, String> httpHeaders,
|
||||||
|
InputStream entityStream) throws IOException, WebApplicationException {
|
||||||
|
try {
|
||||||
|
Method newBuilder = type.getMethod("newBuilder");
|
||||||
|
GeneratedMessage.Builder builder = (GeneratedMessage.Builder) newBuilder.invoke(type);
|
||||||
|
return builder.mergeFrom(entityStream).build();
|
||||||
|
} catch (Exception e) {
|
||||||
|
throw new WebApplicationException(e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,41 @@
|
||||||
|
package meerkat.rest;
|
||||||
|
|
||||||
|
import com.google.protobuf.Message;
|
||||||
|
|
||||||
|
import javax.ws.rs.*;
|
||||||
|
import javax.ws.rs.core.MediaType;
|
||||||
|
import javax.ws.rs.core.MultivaluedMap;
|
||||||
|
import javax.ws.rs.ext.MessageBodyWriter;
|
||||||
|
import javax.ws.rs.ext.Provider;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.io.OutputStream;
|
||||||
|
import java.lang.annotation.Annotation;
|
||||||
|
import java.lang.reflect.Type;
|
||||||
|
|
||||||
|
import static meerkat.rest.Constants.*;
|
||||||
|
|
||||||
|
@Provider
|
||||||
|
@Produces(MEDIATYPE_PROTOBUF)
|
||||||
|
public class ProtobufMessageBodyWriter implements MessageBodyWriter<Message> {
|
||||||
|
@Override
|
||||||
|
public boolean isWriteable(Class<?> type, Type genericType, Annotation[] annotations,
|
||||||
|
MediaType mediaType) {
|
||||||
|
return Message.class.isAssignableFrom(type);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public long getSize(Message message, Class<?> type, Type genericType, Annotation[] annotations,
|
||||||
|
MediaType mediaType) {
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void writeTo(Message message, Class<?> type, Type genericType, Annotation[] annotations,
|
||||||
|
MediaType mediaType, MultivaluedMap<String, Object> httpHeaders, OutputStream entityStream)
|
||||||
|
throws IOException, WebApplicationException {
|
||||||
|
message.writeTo(entityStream);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
include 'meerkat-common'
|
include 'meerkat-common'
|
||||||
include 'voting-booth'
|
include 'voting-booth'
|
||||||
include 'bulletin-board-server'
|
include 'bulletin-board-server'
|
||||||
include 'polling-station'
|
include 'polling-station'
|
||||||
|
include 'restful-api-common'
|
||||||
|
|
|
@ -25,7 +25,7 @@ ext {
|
||||||
nexusPassword = project.hasProperty('nexusPassword') ? project.property('nexusPassword') : ""
|
nexusPassword = project.hasProperty('nexusPassword') ? project.property('nexusPassword') : ""
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "TODO: Add a description"
|
description = "Meerkat voting booth application"
|
||||||
|
|
||||||
// Your project version
|
// Your project version
|
||||||
version = "0.0"
|
version = "0.0"
|
||||||
|
@ -61,17 +61,30 @@ protobuf {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
idea {
|
idea {
|
||||||
module {
|
module {
|
||||||
// add protobuf generated sources to generated source dir.
|
project.sourceSets.each { sourceSet ->
|
||||||
sourceDirs += file(protobuf.generatedFilesBaseDir)
|
|
||||||
generatedSourceDirs += file(protobuf.generatedFilesBaseDir)
|
|
||||||
|
|
||||||
// Don't exclude build directory
|
def srcDir = "${protobuf.generatedFilesBaseDir}/$sourceSet.name/java"
|
||||||
excludeDirs -= file(buildDir)
|
|
||||||
|
println "Adding $srcDir"
|
||||||
|
// add protobuf generated sources to generated source dir.
|
||||||
|
if ("test".equals(sourceSet.name)) {
|
||||||
|
testSourceDirs += file(srcDir)
|
||||||
|
} else {
|
||||||
|
sourceDirs += file(srcDir)
|
||||||
|
}
|
||||||
|
generatedSourceDirs += file(srcDir)
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
// Don't exclude build directory
|
||||||
|
excludeDirs -= file(buildDir)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*===================================
|
/*===================================
|
||||||
* "Fat" Build targets
|
* "Fat" Build targets
|
||||||
*===================================*/
|
*===================================*/
|
||||||
|
|
Loading…
Reference in New Issue