net.hasor.rsf.container.RsfApiBinerCreator Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2008-2009 the original author or authors.
*
* Licensed 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 net.hasor.rsf.container;
import net.hasor.core.ApiBinder;
import net.hasor.core.BindInfo;
import net.hasor.core.Environment;
import net.hasor.core.binder.ApiBinderCreator;
import net.hasor.rsf.RsfApiBinder;
import net.hasor.rsf.RsfEnvironment;
import net.hasor.rsf.rpc.context.DefaultRsfEnvironment;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.IOException;
import java.util.List;
/**
*
* @version : 2016-12-16
* @author 赵永春 ([email protected])
*/
public class RsfApiBinerCreator implements ApiBinderCreator {
protected Logger logger = LoggerFactory.getLogger(getClass());
@Override
public RsfApiBinder createBinder(ApiBinder apiBinder) throws IOException {
Environment env = apiBinder.getEnvironment();
boolean enable = env.getSettings().getBoolean("hasor.rsfConfig.enable", false);
if (!enable) {
logger.info("rsf framework disable -> 'hasor.rsfConfig.enable' is false");
return null;
}
//
RsfEnvironment rsfEnvironment = initAntGetEnvironment(apiBinder);
return new InnerRsfApiBinder(apiBinder, rsfEnvironment);
}
private RsfEnvironment initAntGetEnvironment(ApiBinder apiBinder) throws IOException {
List> rsfEnvList = apiBinder.findBindingRegister(RsfEnvironment.class);
RsfEnvironment rsfEnv = null;
if (rsfEnvList != null && !rsfEnvList.isEmpty()) {
for (BindInfo info : rsfEnvList) {
rsfEnv = (RsfEnvironment) info.getMetaData(RsfEnvironment.class.getName());
if (rsfEnv != null) {
return rsfEnv;
}
}
}
rsfEnv = new DefaultRsfEnvironment(apiBinder.getEnvironment());
BindInfo info = apiBinder.bindType(RsfEnvironment.class).toInstance(rsfEnv).toInfo();
info.setMetaData(RsfEnvironment.class.getName(), rsfEnv);
return rsfEnv;
}
}