All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.anyline.data.hbase.datasource.HBaseDataSourceLoader Maven / Gradle / Ivy

There is a newer version: 8.7.2-20240916
Show newest version
/*
 * Copyright 2006-2023 www.anyline.org
 *
 * 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 org.anyline.data.hbase.datasource;

import org.anyline.annotation.Component;
import org.anyline.data.datasource.DataSourceHolder;
import org.anyline.data.datasource.DataSourceLoader;
import org.anyline.data.datasource.init.AbstractDataSourceLoader;
import org.anyline.data.runtime.DataRuntime;
import org.anyline.data.util.DataSourceUtil;
import org.anyline.util.BasicUtil;
import org.anyline.util.ConfigTable;
import org.apache.hadoop.hbase.client.Connection;
import org.anyline.log.Log;
import org.anyline.log.LogProxy;

import java.util.ArrayList;
import java.util.List;

@Component("anyline.environment.data.datasource.loader.hbase")
public class HBaseDataSourceLoader extends AbstractDataSourceLoader implements DataSourceLoader {
    public static Log log = LogProxy.get(HBaseDataSourceLoader.class);

    private final HBaseDataSourceHolder holder = HBaseDataSourceHolder.instance();

    @Override
    public DataSourceHolder holder() {
        return holder;
    }

    @Override
    public List load() {
        List list = new ArrayList<>();
        boolean loadDefault = true; //是否需要加载default
        if(!ConfigTable.environment().containsBean(DataRuntime.ANYLINE_DATASOURCE_BEAN_PREFIX + ".default")) {
            //如果还没有注册默认数据源
            DataRuntime runtime = null;
            Connection connection = null;
            try{
                connection = ConfigTable.environment().getBean(Connection.class);
            }catch (Exception e) {
                e.printStackTrace();
            }
            if(null != connection) {
                try {
                    runtime =  holder().create("hbase.default", connection, false);
                    loadDefault = false;
                }catch (Exception e) {
                    runtime = null;
                    log.error("加载HBase数据源 异常:", e);
                }
            }

            //有不支持通过connection返回获取连接信息的驱动,所以从配置文件中获取
            if(null != runtime) {
                String url = ConfigTable.environment().string( "spring.datasource.,anyline.datasource.", "url,uri");
                runtime.setUrl(url);
                if (BasicUtil.isNotEmpty(url)) {
                    runtime.setAdapterKey(DataSourceUtil.parseAdapterKey(url));
                }else{
                    String adapterKey = ConfigTable.environment().string("spring.datasource.,anyline.datasource.", "adapter");
                    if(BasicUtil.isNotEmpty(adapterKey)) {
                        runtime.setAdapterKey(adapterKey);
                    }
                }
            }
        }else{
            loadDefault = false;
        }
        list.addAll(load("spring.datasource", loadDefault));
        list.addAll(load("anyline.datasource", loadDefault));
        return list;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy