blob: d8a46d0e8d8313ab9644b20965a88ee103f2191e [file] [log] [blame]
/*
* 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 org.apache.tephra.util;
import com.google.inject.Provider;
import com.google.inject.ProvisionException;
import org.apache.twill.internal.utils.Instances;
/**
* Common class factory behavior for classes which need specific implementations depending on HBase versions.
* Specific factories can subclass this class and simply plug in the class names for their implementations.
*
* @param <T> Version specific class provided by this factory.
*/
public abstract class HBaseVersionSpecificFactory<T> implements Provider<T> {
@Override
public T get() {
T instance;
try {
switch (HBaseVersion.get()) {
case HBASE_94:
throw new ProvisionException("HBase 0.94 is no longer supported. Please upgrade to HBase 0.96 or newer.");
case HBASE_96:
instance = createInstance(getHBase96Classname());
break;
case HBASE_98:
instance = createInstance(getHBase98Classname());
break;
case HBASE_10:
instance = createInstance(getHBase10Classname());
break;
case HBASE_10_CDH:
instance = createInstance(getHBase10CDHClassname());
break;
case HBASE_11:
case HBASE_12:
instance = createInstance(getHBase11Classname());
break;
case HBASE_13:
instance = createInstance(getHBase13Classname());
break;
case HBASE_14:
case HBASE_15:
case HBASE_16:
instance = createInstance(getHBase14Classname());
break;
case HBASE_20:
case HBASE_21:
case HBASE_22:
instance = createInstance(getHBase20Classname());
break;
case HBASE_23:
instance = createInstance(getHBase23Classname());
break;
case UNKNOWN:
default:
throw new ProvisionException("Unknown HBase version: " + HBaseVersion.getVersionString());
}
} catch (ClassNotFoundException cnfe) {
throw new ProvisionException(cnfe.getMessage(), cnfe);
}
return instance;
}
protected T createInstance(String className) throws ClassNotFoundException {
Class clz = Class.forName(className);
return (T) Instances.newInstance(clz);
}
protected abstract String getHBase96Classname();
protected abstract String getHBase98Classname();
protected abstract String getHBase10Classname();
protected abstract String getHBase10CDHClassname();
protected abstract String getHBase11Classname();
protected abstract String getHBase13Classname();
protected abstract String getHBase14Classname();
protected abstract String getHBase20Classname();
protected abstract String getHBase23Classname();
}