Package co.cask.cdap.data2.dataset2.module.lib

Source Code of co.cask.cdap.data2.dataset2.module.lib.DatasetModules

/*
* Copyright © 2014 Cask Data, Inc.
*
* 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 co.cask.cdap.data2.dataset2.module.lib;

import co.cask.cdap.api.dataset.Dataset;
import co.cask.cdap.api.dataset.module.DatasetModule;
import co.cask.cdap.data2.dataset2.SingleTypeModule;

/**
* Utility class for dealing with {@link DatasetModule}s
*/
public final class DatasetModules {

  private DatasetModules() {}

  /**
   * Creates {@link DatasetModule} given a class of {@link DatasetModule} type or {@link Dataset}. In latter case uses
   * {@link SingleTypeModule} to construct a {@link DatasetModule}.
   * @param clazz class to be used
   * @return {@link DatasetModule} instance
   */
  public static DatasetModule getDatasetModule(Class clazz)
    throws ClassNotFoundException, InstantiationException, IllegalAccessException {

    DatasetModule module;
    if (DatasetModule.class.isAssignableFrom(clazz)) {
      module = (DatasetModule) clazz.newInstance();
    } else if (Dataset.class.isAssignableFrom(clazz)) {
      module = new SingleTypeModule(clazz);
    } else {
      String msg = String.format(
        "Cannot use class %s to instantiate dataset module: it must be of type DatasetModule or Dataset",
        clazz.getName());
      throw new IllegalArgumentException(msg);
    }
    return module;
  }

  /**
   * Gets class of the dataset module to be used in {@link #getDatasetModule(Class)};
   */
  public static Class getDatasetModuleClass(DatasetModule module) {

    if (module instanceof SingleTypeModule) {
      return ((SingleTypeModule) module).getDataSetClass();
    } else {
      return module.getClass();
    }
  }
}
TOP

Related Classes of co.cask.cdap.data2.dataset2.module.lib.DatasetModules

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.