-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 13512eb
Showing
5 changed files
with
398 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>com.test</groupId> | ||
<artifactId>vertx_replyfailinbridge</artifactId> | ||
<version>1.0.0-SNAPSHOT</version> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>io.vertx</groupId> | ||
<artifactId>vertx-core</artifactId> | ||
<version>3.0.0-SNAPSHOT</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.vertx</groupId> | ||
<artifactId>vertx-apex</artifactId> | ||
<version>3.0.0-SNAPSHOT</version> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
|
||
<pluginManagement> | ||
<plugins> | ||
<!-- We specify the Maven compiler plugin as we need to set it to Java 1.8 --> | ||
<plugin> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>3.1</version> | ||
<configuration> | ||
<source>1.8</source> | ||
<target>1.8</target> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</pluginManagement> | ||
|
||
<plugins> | ||
<!-- Fat executable jars | ||
If you want your project to output a fat executable standalone jar with all the dependencies in it you | ||
can use the shade plugin. --> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-shade-plugin</artifactId> | ||
<version>2.3</version> | ||
<executions> | ||
<execution> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>shade</goal> | ||
</goals> | ||
<configuration> | ||
<transformers> | ||
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> | ||
<manifestEntries> | ||
<Main-Class>com.test.bugnpe.MainVertx</Main-Class> | ||
</manifestEntries> | ||
</transformer> | ||
<transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> | ||
<resource>META-INF/services/io.vertx.core.spi.VerticleFactory</resource> | ||
</transformer> | ||
</transformers> | ||
<artifactSet> | ||
<!-- By default all the deps go into the fat jar, but we don't need some so we can exclude them | ||
here --> | ||
<excludes> | ||
<exclude>io.vertx:vertx-codegen</exclude> | ||
<exclude>junit:junit</exclude> | ||
<exclude>org.mvel:mvel2</exclude> | ||
<exclude>log4j:log4j</exclude> | ||
<exclude>org.slf4j:slf4j-api</exclude> | ||
</excludes> | ||
</artifactSet> | ||
<outputFile>${project.build.directory}/${project.artifactId}-${project.version}-fat.jar</outputFile> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
|
||
</build> | ||
|
||
</project> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/* | ||
* To change this license header, choose License Headers in Project Properties. | ||
* To change this template file, choose Tools | Templates | ||
* and open the template in the editor. | ||
*/ | ||
package com.test.bugnpe; | ||
|
||
import io.vertx.core.Vertx; | ||
|
||
/** | ||
* | ||
*/ | ||
public class MainVertx { | ||
|
||
public static void main(String[] args) { | ||
Vertx vertx = Vertx.vertx(); | ||
vertx.deployVerticle(new ServerVerticle()); | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
package com.test.bugnpe; | ||
|
||
import io.vertx.core.AbstractVerticle; | ||
import io.vertx.core.http.HttpServer; | ||
import io.vertx.core.http.HttpServerOptions; | ||
import io.vertx.ext.apex.Router; | ||
import io.vertx.ext.apex.handler.sockjs.BridgeOptions; | ||
import io.vertx.ext.apex.handler.sockjs.PermittedOptions; | ||
import io.vertx.ext.apex.handler.sockjs.SockJSHandler; | ||
|
||
/** | ||
* | ||
*/ | ||
public class ServerVerticle extends AbstractVerticle { | ||
|
||
public void start() { | ||
HttpServerOptions options = new HttpServerOptions(); | ||
HttpServer http = vertx.createHttpServer(options); | ||
|
||
SockJSHandler sockJS = SockJSHandler.create(vertx); | ||
BridgeOptions allAccessOptions = new BridgeOptions(); | ||
allAccessOptions.addInboundPermitted(new PermittedOptions()); | ||
allAccessOptions.addOutboundPermitted(new PermittedOptions()); | ||
sockJS.bridge(allAccessOptions); | ||
|
||
Router router = Router.router(vertx); | ||
|
||
router.route("/eventbus/*").handler(sockJS); | ||
router.route("/js/vertxbus.js").handler(routingContext -> { | ||
routingContext.response().sendFile("webroot/js/vertxbus.js"); | ||
}); | ||
router.route("/").handler(routingContext -> { | ||
routingContext.response().sendFile("webroot/test.html"); | ||
}); | ||
|
||
http.requestHandler(router::accept).listen(8484); | ||
|
||
vertx.eventBus().consumer("inbound.something", msg->{ | ||
System.out.println("Consumer works"); | ||
msg.fail(0, "send msg.fail() to the 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,228 @@ | ||
/* | ||
* Copyright 2014 Red Hat, Inc. | ||
* | ||
* All rights reserved. This program and the accompanying materials | ||
* are made available under the terms of the Eclipse Public License v1.0 | ||
* and Apache License v2.0 which accompanies this distribution. | ||
* | ||
* The Eclipse Public License is available at | ||
* http://www.eclipse.org/legal/epl-v10.html | ||
* | ||
* The Apache License v2.0 is available at | ||
* http://www.opensource.org/licenses/apache2.0.php | ||
* | ||
* You may elect to redistribute this code under either of these licenses. | ||
*/ | ||
|
||
/* | ||
* Copyright (c) 2011-2013 The original author or authors | ||
* ------------------------------------------------------ | ||
* All rights reserved. This program and the accompanying materials | ||
* are made available under the terms of the Eclipse Public License v1.0 | ||
* and Apache License v2.0 which accompanies this distribution. | ||
* | ||
* The Eclipse Public License is available at | ||
* http://www.eclipse.org/legal/epl-v10.html | ||
* | ||
* The Apache License v2.0 is available at | ||
* http://www.opensource.org/licenses/apache2.0.php | ||
* | ||
* You may elect to redistribute this code under either of these licenses. | ||
*/ | ||
|
||
var vertx = vertx || {}; | ||
|
||
!function(factory) { | ||
if (typeof define === "function" && define.amd) { | ||
// Expose as an AMD module with SockJS dependency. | ||
// "vertxbus" and "sockjs" names are used because | ||
// AMD module names are derived from file names. | ||
define("vertxbus", ["sockjs"], factory); | ||
} else { | ||
// No AMD-compliant loader | ||
factory(SockJS); | ||
} | ||
}(function(SockJS) { | ||
|
||
vertx.EventBus = function(url, options) { | ||
|
||
var that = this; | ||
var sockJSConn = new SockJS(url, undefined, options); | ||
var handlerMap = {}; | ||
var replyHandlers = {}; | ||
var state = vertx.EventBus.CONNECTING; | ||
var pingTimerID = null; | ||
var pingInterval = null; | ||
if (options) { | ||
pingInterval = options['vertxbus_ping_interval']; | ||
} | ||
if (!pingInterval) { | ||
pingInterval = 5000; | ||
} | ||
|
||
that.onopen = null; | ||
that.onclose = null; | ||
|
||
that.send = function(address, message, replyHandler) { | ||
sendOrPub("send", address, message, replyHandler) | ||
} | ||
|
||
that.publish = function(address, message) { | ||
sendOrPub("publish", address, message, null) | ||
} | ||
|
||
that.registerHandler = function(address, handler) { | ||
checkSpecified("address", 'string', address); | ||
checkSpecified("handler", 'function', handler); | ||
checkOpen(); | ||
var handlers = handlerMap[address]; | ||
if (!handlers) { | ||
handlers = [handler]; | ||
handlerMap[address] = handlers; | ||
// First handler for this address so we should register the connection | ||
var msg = { type : "register", | ||
address: address }; | ||
sockJSConn.send(JSON.stringify(msg)); | ||
} else { | ||
handlers[handlers.length] = handler; | ||
} | ||
} | ||
|
||
that.unregisterHandler = function(address, handler) { | ||
checkSpecified("address", 'string', address); | ||
checkSpecified("handler", 'function', handler); | ||
checkOpen(); | ||
var handlers = handlerMap[address]; | ||
if (handlers) { | ||
var idx = handlers.indexOf(handler); | ||
if (idx != -1) handlers.splice(idx, 1); | ||
if (handlers.length == 0) { | ||
// No more local handlers so we should unregister the connection | ||
|
||
var msg = { type : "unregister", | ||
address: address}; | ||
sockJSConn.send(JSON.stringify(msg)); | ||
delete handlerMap[address]; | ||
} | ||
} | ||
} | ||
|
||
that.close = function() { | ||
checkOpen(); | ||
state = vertx.EventBus.CLOSING; | ||
sockJSConn.close(); | ||
} | ||
|
||
that.readyState = function() { | ||
return state; | ||
} | ||
|
||
sockJSConn.onopen = function() { | ||
// Send the first ping then send a ping every pingInterval milliseconds | ||
sendPing(); | ||
pingTimerID = setInterval(sendPing, pingInterval); | ||
state = vertx.EventBus.OPEN; | ||
if (that.onopen) { | ||
that.onopen(); | ||
} | ||
}; | ||
|
||
sockJSConn.onclose = function() { | ||
state = vertx.EventBus.CLOSED; | ||
if (pingTimerID) clearInterval(pingTimerID); | ||
if (that.onclose) { | ||
that.onclose(); | ||
} | ||
}; | ||
|
||
sockJSConn.onmessage = function(e) { | ||
var msg = e.data; | ||
var json = JSON.parse(msg); | ||
var type = json.type; | ||
if (type === 'err') { | ||
console.error("Error received on connection: " + json.body); | ||
return; | ||
} | ||
var body = json.body; | ||
var replyAddress = json.replyAddress; | ||
var address = json.address; | ||
var replyHandler; | ||
if (replyAddress) { | ||
replyHandler = function(reply, replyHandler) { | ||
// Send back reply | ||
that.send(replyAddress, reply, replyHandler); | ||
}; | ||
} | ||
var handlers = handlerMap[address]; | ||
if (handlers) { | ||
// We make a copy since the handler might get unregistered from within the | ||
// handler itself, which would screw up our iteration | ||
var copy = handlers.slice(0); | ||
for (var i = 0; i < copy.length; i++) { | ||
copy[i](body, replyHandler); | ||
} | ||
} else { | ||
// Might be a reply message | ||
var handler = replyHandlers[address]; | ||
if (handler) { | ||
delete replyHandlers[address]; | ||
handler(body, replyHandler); | ||
} | ||
} | ||
} | ||
|
||
function sendPing() { | ||
var msg = { | ||
type: "ping" | ||
} | ||
sockJSConn.send(JSON.stringify(msg)); | ||
} | ||
|
||
function sendOrPub(sendOrPub, address, message, replyHandler) { | ||
checkSpecified("address", 'string', address); | ||
checkSpecified("replyHandler", 'function', replyHandler, true); | ||
checkOpen(); | ||
var envelope = { type : sendOrPub, | ||
address: address, | ||
body: message }; | ||
if (replyHandler) { | ||
var replyAddress = makeUUID(); | ||
envelope.replyAddress = replyAddress; | ||
replyHandlers[replyAddress] = replyHandler; | ||
} | ||
var str = JSON.stringify(envelope); | ||
sockJSConn.send(str); | ||
} | ||
|
||
function checkOpen() { | ||
if (state != vertx.EventBus.OPEN) { | ||
throw new Error('INVALID_STATE_ERR'); | ||
} | ||
} | ||
|
||
function checkSpecified(paramName, paramType, param, optional) { | ||
if (!optional && !param) { | ||
throw new Error("Parameter " + paramName + " must be specified"); | ||
} | ||
if (param && typeof param != paramType) { | ||
throw new Error("Parameter " + paramName + " must be of type " + paramType); | ||
} | ||
} | ||
|
||
function isFunction(obj) { | ||
return !!(obj && obj.constructor && obj.call && obj.apply); | ||
} | ||
|
||
function makeUUID(){return"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx" | ||
.replace(/[xy]/g,function(a,b){return b=Math.random()*16,(a=="y"?b&3|8:b|0).toString(16)})} | ||
|
||
} | ||
|
||
vertx.EventBus.CONNECTING = 0; | ||
vertx.EventBus.OPEN = 1; | ||
vertx.EventBus.CLOSING = 2; | ||
vertx.EventBus.CLOSED = 3; | ||
|
||
return vertx.EventBus; | ||
|
||
}); |
Oops, something went wrong.