
com.alipay.remoting.AbstractRemotingProcessor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bolt Show documentation
Show all versions of bolt Show documentation
a light weight, easy to use and high performance remoting framework based on netty.
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.alipay.remoting;
import java.util.concurrent.ExecutorService;
import org.slf4j.Logger;
import com.alipay.remoting.log.BoltLoggerFactory;
import com.alipay.remoting.util.RemotingUtil;
/**
* Processor to process remoting command.
*
* @author jiangping
* @version $Id: RemotingProcessor.java, v 0.1 2015-9-6 PM2:50:51 tao Exp $
* @param
*/
public abstract class AbstractRemotingProcessor implements
RemotingProcessor {
private static final Logger logger = BoltLoggerFactory.getLogger("CommonDefault");
private ExecutorService executor;
private CommandFactory commandFactory;
/**
* Default constructor.
*/
public AbstractRemotingProcessor() {
}
/**
* Constructor.
*/
public AbstractRemotingProcessor(CommandFactory commandFactory) {
this.commandFactory = commandFactory;
}
/**
* Constructor.
* @param executor
*/
public AbstractRemotingProcessor(ExecutorService executor) {
this.executor = executor;
}
/**
* Constructor.
* @param executor
*/
public AbstractRemotingProcessor(CommandFactory commandFactory, ExecutorService executor) {
this.commandFactory = commandFactory;
this.executor = executor;
}
/**
* Do the process.
*
* @param ctx
* @param msg
* @throws Exception
*/
public abstract void doProcess(RemotingContext ctx, T msg) throws Exception;
/**
* Process the remoting command with its own executor or with the defaultExecutor if its own if null.
*
* @param ctx
* @param msg
* @param defaultExecutor
* @throws Exception
*/
@Override
public void process(RemotingContext ctx, T msg, ExecutorService defaultExecutor)
throws Exception {
ProcessTask task = new ProcessTask(ctx, msg);
if (this.getExecutor() != null) {
this.getExecutor().execute(task);
} else {
defaultExecutor.execute(task);
}
}
/**
* Getter method for property executor.
*
* @return property value of executor
*/
public ExecutorService getExecutor() {
return executor;
}
/**
* Setter method for property executor.
*
* @param executor value to be assigned to property executor
*/
public void setExecutor(ExecutorService executor) {
this.executor = executor;
}
public CommandFactory getCommandFactory() {
return commandFactory;
}
public void setCommandFactory(CommandFactory commandFactory) {
this.commandFactory = commandFactory;
}
/**
* Task for asynchronous process.
*
* @author jiangping
* @version $Id: RemotingProcessor.java, v 0.1 2015-10-14 PM7:40:44 tao Exp $
*/
class ProcessTask implements Runnable {
RemotingContext ctx;
T msg;
public ProcessTask(RemotingContext ctx, T msg) {
this.ctx = ctx;
this.msg = msg;
}
/**
* @see java.lang.Runnable#run()
*/
@Override
public void run() {
try {
AbstractRemotingProcessor.this.doProcess(ctx, msg);
} catch (Throwable e) {
//protect the thread running this task
String remotingAddress = RemotingUtil.parseRemoteAddress(ctx.getChannelContext()
.channel());
logger
.error(
"Exception caught when process rpc request command in AbstractRemotingProcessor, Id="
+ msg.getId() + "! Invoke source address is [" + remotingAddress
+ "].", e);
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy