Package org.hibernate.ogm.datastore.impl

Source Code of org.hibernate.ogm.datastore.impl.SchemaDefinerInitiator

/*
* Hibernate OGM, Domain model persistence for NoSQL datastores
*
* License: GNU Lesser General Public License (LGPL), version 2.1 or later
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
*/
package org.hibernate.ogm.datastore.impl;

import org.hibernate.cfg.Configuration;
import org.hibernate.engine.spi.SessionFactoryImplementor;
import org.hibernate.metamodel.source.MetadataImplementor;
import org.hibernate.ogm.datastore.spi.BaseSchemaDefiner;
import org.hibernate.ogm.datastore.spi.DatastoreProvider;
import org.hibernate.ogm.datastore.spi.SchemaDefiner;
import org.hibernate.ogm.util.impl.Log;
import org.hibernate.ogm.util.impl.LoggerFactory;
import org.hibernate.service.spi.ServiceRegistryImplementor;
import org.hibernate.service.spi.SessionFactoryServiceInitiator;

/**
* Contributes the {@link SchemaDefiner} service as obtained via
* {@link DatastoreProvider#getSchemaDefinerType()}.
*
* @author Gunnar Morling
*/
public class SchemaDefinerInitiator implements SessionFactoryServiceInitiator<SchemaDefiner> {

  public static final SchemaDefinerInitiator INSTANCE = new SchemaDefinerInitiator();

  private static final Log log = LoggerFactory.make();

  @Override
  public Class<SchemaDefiner> getServiceInitiated() {
    return SchemaDefiner.class;
  }

  @Override
  public SchemaDefiner initiateService(SessionFactoryImplementor sessionFactory, Configuration configuration, ServiceRegistryImplementor registry) {
    DatastoreProvider datastoreProvider = registry.getService( DatastoreProvider.class );
    Class<? extends SchemaDefiner> schemaInitializerType = datastoreProvider.getSchemaDefinerType();

    if ( schemaInitializerType != null ) {
      try {
        return schemaInitializerType.newInstance();
      }
      catch (Exception e) {
        throw log.unableToInstantiateType( schemaInitializerType.getName(), e );
      }
    }

    return new BaseSchemaDefiner();
  }

  @Override
  public SchemaDefiner initiateService(SessionFactoryImplementor sessionFactory, MetadataImplementor metadata, ServiceRegistryImplementor registry) {
    throw new UnsupportedOperationException( "Cannot initiate schema initializer based on meta-data" );
  }
}
TOP

Related Classes of org.hibernate.ogm.datastore.impl.SchemaDefinerInitiator

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.