org.zbus.rpc.direct.Service Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zbus Show documentation
Show all versions of zbus Show documentation
lightweight message queue, service bus
/**
* The MIT License (MIT)
* Copyright (c) 2009-2015 HONG LEIMING
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package org.zbus.rpc.direct;
import java.io.IOException;
import org.zbus.broker.ha.ServerEntry;
import org.zbus.broker.ha.TrackPub;
import org.zbus.mq.server.UrlInfo;
import org.zbus.net.Client.ConnectedHandler;
import org.zbus.net.Server;
import org.zbus.net.core.SelectorGroup;
import org.zbus.net.core.IoAdaptor;
import org.zbus.net.core.Session;
import org.zbus.net.http.Message;
import org.zbus.net.http.Message.MessageProcessor;
import org.zbus.net.http.MessageCodec;
public class Service extends Server {
private boolean ownDispatcher = false;
private final String trackServerList;
private final String entryId;
public Service(ServiceConfig config){
serverName = "RpcServer";
trackServerList = config.trackServerList;
entryId = config.entryId;
if(config.selectorGroup != null){
selectorGroup = config.selectorGroup;
} else {
selectorGroup = new SelectorGroup()
.selectorCount(config.selectorCount)
.executorCount(config.executorCount);
ownDispatcher = true;
}
IoAdaptor serverAdaptor = new DirectMessageAdaptor(config.messageProcessor);
String address = config.serverHost+":"+config.serverPort;
registerAdaptor(address, serverAdaptor);
}
@Override
public void close() throws IOException {
super.close();
if(ownDispatcher){
selectorGroup.close();
}
}
@Override
public void start() throws IOException {
super.start();
if(trackServerList != null){
setupTracker();
}
}
private TrackPub trackPub;
private void setupTracker() {
if(entryId == null){
throw new IllegalStateException("Missing entryId for HA discovery");
}
trackPub = new TrackPub(trackServerList, selectorGroup);
trackPub.onConnected(new ConnectedHandler() {
@Override
public void onConnected(Session sess) throws IOException {
trackPub.pubServerJoin(serverAddr);
ServerEntry se = new ServerEntry();
se.entryId = entryId;
se.serverAddr = serverAddr;
se.lastUpdateTime = System.currentTimeMillis();
se.mode = ServerEntry.RPC;
trackPub.pubEntryUpdate(se);
}
});
trackPub.start();
}
static class DirectMessageAdaptor extends IoAdaptor {
private final MessageProcessor processor;
public DirectMessageAdaptor(final MessageProcessor processor) {
codec(new MessageCodec());
this.processor = processor;
}
private Message handleUrlMessage(Message msg, Session sess) throws IOException{
if(msg.getBody() == null || msg.getBody().length == 0){
UrlInfo url = new UrlInfo(msg.getRequestString(), true);
String module = url.module == null? "" : url.module;
String method = url.method == null? "" : url.method;
String json = "{";
json += "\"module\": " + "\"" + module + "\"";
json += ", \"method\": " + "\"" + method + "\"";
if(url.params != null){
json += ", \"params\": " + "[" + url.params + "]";
}
json += "}";
msg.setJsonBody(json);
}
return msg;
}
protected void onMessage(Object obj, Session sess) throws IOException {
Message msg = (Message) obj;
if(Message.HEARTBEAT.equals(msg.getCmd())){
return;
}
final String msgId = msg.getId();
msg = handleUrlMessage(msg, sess);
if(msg == null) return;
Message res = processor.process(msg);
if (res != null) {
res.setId(msgId);
if (res.getResponseStatus() == null) {
res.setResponseStatus(200); // default to 200
}
sess.write(res);
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy