net.ymate.platform.module.MongoDBModule Maven / Gradle / Ivy
/*
* Copyright 2007-2107 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.ymate.platform.module;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;
import net.ymate.platform.base.AbstractModule;
import net.ymate.platform.commons.lang.BlurObject;
import net.ymate.platform.persistence.mongodb.IMongoConfig;
import net.ymate.platform.persistence.mongodb.MongoDB;
import net.ymate.platform.persistence.support.DataSourceCfgMeta;
import org.apache.commons.lang.StringUtils;
/**
*
* MongoDBModule
*
*
* MongoDB持久层框架模块加载器接口实现类;
*
*
* @author 刘镇([email protected])
* @version 0.0.0
*
*
* 版本号 动作 修改人 修改时间
*
*
*
* 0.0.0
* 创建类
* 刘镇
* 2014年3月4日下午12:42:28
*
*
*/
public class MongoDBModule extends AbstractModule {
/* (non-Javadoc)
* @see net.ymate.platform.module.base.AbstractModule#initialize(java.util.Map)
*/
public void initialize(final Map moduleCfgs) throws Exception {
final boolean _showLog = new BlurObject(moduleCfgs.get("base.show_log")).toBooleanValue();
final Set _metas = new HashSet();
for (String _name : StringUtils.split(StringUtils.trimToEmpty(moduleCfgs.get("base.datasource_list")), "|")) {
String _connectionUrl = moduleCfgs.get("datasource." + _name + ".connection_url");
String _userName = moduleCfgs.get("datasource." + _name + ".username");
String _password = moduleCfgs.get("datasource." + _name + ".password");
//
Map _params = new HashMap();
String _paramKey = "datasource." + _name + ".params.";
for (String _cfgKey : moduleCfgs.keySet()) {
if (_cfgKey.startsWith(_paramKey)) {
_params.put(StringUtils.substringAfter(_cfgKey, _paramKey), moduleCfgs.get(_cfgKey));
}
}
_metas.add(new DataSourceCfgMeta(_name, _connectionUrl, _userName, _password, _params));
}
//
MongoDB.initialize(new IMongoConfig() {
public boolean isShowLog() {
return _showLog;
}
public String[] getRepositoryPackages() {
return StringUtils.split(moduleCfgs.get("base.repository_packages"), "|");
}
public String getDefaultDataSourceName() {
return moduleCfgs.get("base.datasource_default");
}
public Set getDataSourceCfgMetas() {
return _metas;
}
public String getCollectionPrefix() {
return moduleCfgs.get("base.collection_prefix");
}
});
}
/* (non-Javadoc)
* @see net.ymate.platform.module.base.AbstractModule#destroy()
*/
public void destroy() throws Exception {
MongoDB.destroy();
}
}