Package com.opengamma.component.factory.tool

Source Code of com.opengamma.component.factory.tool.DbToolContextComponentFactory$Meta

/**
* Copyright (C) 2012 - present by OpenGamma Inc. and the OpenGamma group of companies
*
* Please see distribution for license.
*/
package com.opengamma.component.factory.tool;

import java.util.HashMap;
import java.util.HashSet;
import java.util.LinkedHashMap;
import java.util.Map;
import java.util.Set;

import org.joda.beans.BeanBuilder;
import org.joda.beans.BeanDefinition;
import org.joda.beans.JodaBeanUtils;
import org.joda.beans.MetaProperty;
import org.joda.beans.Property;
import org.joda.beans.PropertyDefinition;
import org.joda.beans.impl.direct.DirectBeanBuilder;
import org.joda.beans.impl.direct.DirectMetaProperty;
import org.joda.beans.impl.direct.DirectMetaPropertyMap;

import com.opengamma.OpenGammaRuntimeException;
import com.opengamma.component.ComponentRepository;
import com.opengamma.component.factory.AbstractComponentFactory;
import com.opengamma.util.db.DbConnector;
import com.opengamma.util.db.management.DbManagement;
import com.opengamma.util.db.tool.DbToolContext;

/**
* Component factory for setting up a database tool context.
*/
@BeanDefinition
public class DbToolContextComponentFactory extends AbstractComponentFactory {

  private static final String MSSQL_MARKER = "jdbc:sqlserver";
  private static final String MSSQL_DB_PROP = "databaseName=";
  private static final String MSSQL_DELIMITER = ";";

  /**
   * The classifier under which to publish.
   */
  @PropertyDefinition(validate = "notNull")
  private String _classifier;
  /**
   * The database connector.
   */
  @PropertyDefinition
  private DbConnector _dbConnector;
  /**
   * The JDBC URL.
   */
  @PropertyDefinition
  private String _jdbcUrl;
  /**
   * The database schema, if different from the default.
   */
  @PropertyDefinition
  private String _schema;
  /**
   * The database management instance.
   */
  @PropertyDefinition
  private DbManagement _dbManagement;
  /**
   * A comma-separated list of database schema names on which to operate.
   */
  @PropertyDefinition
  private String _schemaNamesList;

  //-------------------------------------------------------------------------
  @Override
  public void init(ComponentRepository repo, LinkedHashMap<String, String> configuration) {
    DbToolContext dbToolContext = new DbToolContext();
    Map<String, MetaProperty<?>> mapTarget = new HashMap<String, MetaProperty<?>>(dbToolContext.metaBean().metaPropertyMap());
    mapTarget.keySet().retainAll(this.metaBean().metaPropertyMap().keySet());
    for (MetaProperty<?> mp : mapTarget.values()) {
      mp.set(dbToolContext, mp.get(this));
    }
    final String catalog = getCatalog(getJdbcUrl());
    if (catalog != null) {
      dbToolContext.setCatalog(catalog);
    }
    if (getSchemaNamesList() != null) {
      Set<String> schemaGroups = new HashSet<String>();
      for (String schemaGroup : getSchemaNamesList().split(",")) {
        schemaGroups.add(schemaGroup.toLowerCase().trim());
      }
      dbToolContext.setSchemaNames(schemaGroups);
    }
    repo.registerComponent(DbToolContext.class, getClassifier(), dbToolContext);
  }

  static final String getCatalog(final String jdbcUrl) {
    if (jdbcUrl == null) {
      return null;
    } else if (jdbcUrl.startsWith(MSSQL_MARKER)) {
      return getMSSQLCatalog(jdbcUrl);
    } else {
      return getStandardCatalog(jdbcUrl);
    }
  }

  static final String getMSSQLCatalog(final String jdbcUrl) {
    // MSSQL specific - tmw PLAT-4277
    // e.g. db.url = jdbc:sqlserver://mysvr:1433;integratedSecurity=true;databaseName=mydb
    if (!jdbcUrl.contains(MSSQL_DB_PROP)) {
      throw new OpenGammaRuntimeException(String.format("MSSQL url must contain %s: %s", MSSQL_DB_PROP, jdbcUrl));
    }
    String[] fragments = jdbcUrl.split(MSSQL_DELIMITER);
    String catalog = null;
    for (String fragment : fragments) {
      if (fragment.startsWith(MSSQL_DB_PROP)) {
        catalog = fragment.substring(fragment.indexOf(MSSQL_DB_PROP) + MSSQL_DB_PROP.length());
      }
    }
    if (catalog == null || catalog.isEmpty()) {
      throw new OpenGammaRuntimeException(String.format("%s is null: %s", MSSQL_DB_PROP, jdbcUrl));
    }
    return catalog;
  }

  static final String getStandardCatalog(final String jdbcUrl) {
    // REVIEW jonathan 2012-10-12 -- workaround for PLAT-2745
    int lastSlashIdx = jdbcUrl.lastIndexOf("/");
    if (lastSlashIdx == -1) {
      throw new OpenGammaRuntimeException("JDBC URL must contain '/' before the database name");
    }
    return jdbcUrl.substring(lastSlashIdx + 1);
  }

  //------------------------- AUTOGENERATED START -------------------------
  ///CLOVER:OFF
  /**
   * The meta-bean for {@code DbToolContextComponentFactory}.
   * @return the meta-bean, not null
   */
  public static DbToolContextComponentFactory.Meta meta() {
    return DbToolContextComponentFactory.Meta.INSTANCE;
  }

  static {
    JodaBeanUtils.registerMetaBean(DbToolContextComponentFactory.Meta.INSTANCE);
  }

  @Override
  public DbToolContextComponentFactory.Meta metaBean() {
    return DbToolContextComponentFactory.Meta.INSTANCE;
  }

  @Override
  protected Object propertyGet(String propertyName, boolean quiet) {
    switch (propertyName.hashCode()) {
      case -281470431// classifier
        return getClassifier();
      case 39794031// dbConnector
        return getDbConnector();
      case -1752402828// jdbcUrl
        return getJdbcUrl();
      case -907987551// schema
        return getSchema();
      case 209279841// dbManagement
        return getDbManagement();
      case 1541392229// schemaNamesList
        return getSchemaNamesList();
    }
    return super.propertyGet(propertyName, quiet);
  }

  @Override
  protected void propertySet(String propertyName, Object newValue, boolean quiet) {
    switch (propertyName.hashCode()) {
      case -281470431// classifier
        setClassifier((String) newValue);
        return;
      case 39794031// dbConnector
        setDbConnector((DbConnector) newValue);
        return;
      case -1752402828// jdbcUrl
        setJdbcUrl((String) newValue);
        return;
      case -907987551// schema
        setSchema((String) newValue);
        return;
      case 209279841// dbManagement
        setDbManagement((DbManagement) newValue);
        return;
      case 1541392229// schemaNamesList
        setSchemaNamesList((String) newValue);
        return;
    }
    super.propertySet(propertyName, newValue, quiet);
  }

  @Override
  protected void validate() {
    JodaBeanUtils.notNull(_classifier, "classifier");
    super.validate();
  }

  @Override
  public boolean equals(Object obj) {
    if (obj == this) {
      return true;
    }
    if (obj != null && obj.getClass() == this.getClass()) {
      DbToolContextComponentFactory other = (DbToolContextComponentFactory) obj;
      return JodaBeanUtils.equal(getClassifier(), other.getClassifier()) &&
          JodaBeanUtils.equal(getDbConnector(), other.getDbConnector()) &&
          JodaBeanUtils.equal(getJdbcUrl(), other.getJdbcUrl()) &&
          JodaBeanUtils.equal(getSchema(), other.getSchema()) &&
          JodaBeanUtils.equal(getDbManagement(), other.getDbManagement()) &&
          JodaBeanUtils.equal(getSchemaNamesList(), other.getSchemaNamesList()) &&
          super.equals(obj);
    }
    return false;
  }

  @Override
  public int hashCode() {
    int hash = 7;
    hash += hash * 31 + JodaBeanUtils.hashCode(getClassifier());
    hash += hash * 31 + JodaBeanUtils.hashCode(getDbConnector());
    hash += hash * 31 + JodaBeanUtils.hashCode(getJdbcUrl());
    hash += hash * 31 + JodaBeanUtils.hashCode(getSchema());
    hash += hash * 31 + JodaBeanUtils.hashCode(getDbManagement());
    hash += hash * 31 + JodaBeanUtils.hashCode(getSchemaNamesList());
    return hash ^ super.hashCode();
  }

  //-----------------------------------------------------------------------
  /**
   * Gets the classifier under which to publish.
   * @return the value of the property, not null
   */
  public String getClassifier() {
    return _classifier;
  }

  /**
   * Sets the classifier under which to publish.
   * @param classifier  the new value of the property, not null
   */
  public void setClassifier(String classifier) {
    JodaBeanUtils.notNull(classifier, "classifier");
    this._classifier = classifier;
  }

  /**
   * Gets the the {@code classifier} property.
   * @return the property, not null
   */
  public final Property<String> classifier() {
    return metaBean().classifier().createProperty(this);
  }

  //-----------------------------------------------------------------------
  /**
   * Gets the database connector.
   * @return the value of the property
   */
  public DbConnector getDbConnector() {
    return _dbConnector;
  }

  /**
   * Sets the database connector.
   * @param dbConnector  the new value of the property
   */
  public void setDbConnector(DbConnector dbConnector) {
    this._dbConnector = dbConnector;
  }

  /**
   * Gets the the {@code dbConnector} property.
   * @return the property, not null
   */
  public final Property<DbConnector> dbConnector() {
    return metaBean().dbConnector().createProperty(this);
  }

  //-----------------------------------------------------------------------
  /**
   * Gets the JDBC URL.
   * @return the value of the property
   */
  public String getJdbcUrl() {
    return _jdbcUrl;
  }

  /**
   * Sets the JDBC URL.
   * @param jdbcUrl  the new value of the property
   */
  public void setJdbcUrl(String jdbcUrl) {
    this._jdbcUrl = jdbcUrl;
  }

  /**
   * Gets the the {@code jdbcUrl} property.
   * @return the property, not null
   */
  public final Property<String> jdbcUrl() {
    return metaBean().jdbcUrl().createProperty(this);
  }

  //-----------------------------------------------------------------------
  /**
   * Gets the database schema, if different from the default.
   * @return the value of the property
   */
  public String getSchema() {
    return _schema;
  }

  /**
   * Sets the database schema, if different from the default.
   * @param schema  the new value of the property
   */
  public void setSchema(String schema) {
    this._schema = schema;
  }

  /**
   * Gets the the {@code schema} property.
   * @return the property, not null
   */
  public final Property<String> schema() {
    return metaBean().schema().createProperty(this);
  }

  //-----------------------------------------------------------------------
  /**
   * Gets the database management instance.
   * @return the value of the property
   */
  public DbManagement getDbManagement() {
    return _dbManagement;
  }

  /**
   * Sets the database management instance.
   * @param dbManagement  the new value of the property
   */
  public void setDbManagement(DbManagement dbManagement) {
    this._dbManagement = dbManagement;
  }

  /**
   * Gets the the {@code dbManagement} property.
   * @return the property, not null
   */
  public final Property<DbManagement> dbManagement() {
    return metaBean().dbManagement().createProperty(this);
  }

  //-----------------------------------------------------------------------
  /**
   * Gets a comma-separated list of database schema names on which to operate.
   * @return the value of the property
   */
  public String getSchemaNamesList() {
    return _schemaNamesList;
  }

  /**
   * Sets a comma-separated list of database schema names on which to operate.
   * @param schemaNamesList  the new value of the property
   */
  public void setSchemaNamesList(String schemaNamesList) {
    this._schemaNamesList = schemaNamesList;
  }

  /**
   * Gets the the {@code schemaNamesList} property.
   * @return the property, not null
   */
  public final Property<String> schemaNamesList() {
    return metaBean().schemaNamesList().createProperty(this);
  }

  //-----------------------------------------------------------------------
  /**
   * The meta-bean for {@code DbToolContextComponentFactory}.
   */
  public static class Meta extends AbstractComponentFactory.Meta {
    /**
     * The singleton instance of the meta-bean.
     */
    static final Meta INSTANCE = new Meta();

    /**
     * The meta-property for the {@code classifier} property.
     */
    private final MetaProperty<String> _classifier = DirectMetaProperty.ofReadWrite(
        this, "classifier", DbToolContextComponentFactory.class, String.class);
    /**
     * The meta-property for the {@code dbConnector} property.
     */
    private final MetaProperty<DbConnector> _dbConnector = DirectMetaProperty.ofReadWrite(
        this, "dbConnector", DbToolContextComponentFactory.class, DbConnector.class);
    /**
     * The meta-property for the {@code jdbcUrl} property.
     */
    private final MetaProperty<String> _jdbcUrl = DirectMetaProperty.ofReadWrite(
        this, "jdbcUrl", DbToolContextComponentFactory.class, String.class);
    /**
     * The meta-property for the {@code schema} property.
     */
    private final MetaProperty<String> _schema = DirectMetaProperty.ofReadWrite(
        this, "schema", DbToolContextComponentFactory.class, String.class);
    /**
     * The meta-property for the {@code dbManagement} property.
     */
    private final MetaProperty<DbManagement> _dbManagement = DirectMetaProperty.ofReadWrite(
        this, "dbManagement", DbToolContextComponentFactory.class, DbManagement.class);
    /**
     * The meta-property for the {@code schemaNamesList} property.
     */
    private final MetaProperty<String> _schemaNamesList = DirectMetaProperty.ofReadWrite(
        this, "schemaNamesList", DbToolContextComponentFactory.class, String.class);
    /**
     * The meta-properties.
     */
    private final Map<String, MetaProperty<?>> _metaPropertyMap$ = new DirectMetaPropertyMap(
        this, (DirectMetaPropertyMap) super.metaPropertyMap(),
        "classifier",
        "dbConnector",
        "jdbcUrl",
        "schema",
        "dbManagement",
        "schemaNamesList");

    /**
     * Restricted constructor.
     */
    protected Meta() {
    }

    @Override
    protected MetaProperty<?> metaPropertyGet(String propertyName) {
      switch (propertyName.hashCode()) {
        case -281470431// classifier
          return _classifier;
        case 39794031// dbConnector
          return _dbConnector;
        case -1752402828// jdbcUrl
          return _jdbcUrl;
        case -907987551// schema
          return _schema;
        case 209279841// dbManagement
          return _dbManagement;
        case 1541392229// schemaNamesList
          return _schemaNamesList;
      }
      return super.metaPropertyGet(propertyName);
    }

    @Override
    public BeanBuilder<? extends DbToolContextComponentFactory> builder() {
      return new DirectBeanBuilder<DbToolContextComponentFactory>(new DbToolContextComponentFactory());
    }

    @Override
    public Class<? extends DbToolContextComponentFactory> beanType() {
      return DbToolContextComponentFactory.class;
    }

    @Override
    public Map<String, MetaProperty<?>> metaPropertyMap() {
      return _metaPropertyMap$;
    }

    //-----------------------------------------------------------------------
    /**
     * The meta-property for the {@code classifier} property.
     * @return the meta-property, not null
     */
    public final MetaProperty<String> classifier() {
      return _classifier;
    }

    /**
     * The meta-property for the {@code dbConnector} property.
     * @return the meta-property, not null
     */
    public final MetaProperty<DbConnector> dbConnector() {
      return _dbConnector;
    }

    /**
     * The meta-property for the {@code jdbcUrl} property.
     * @return the meta-property, not null
     */
    public final MetaProperty<String> jdbcUrl() {
      return _jdbcUrl;
    }

    /**
     * The meta-property for the {@code schema} property.
     * @return the meta-property, not null
     */
    public final MetaProperty<String> schema() {
      return _schema;
    }

    /**
     * The meta-property for the {@code dbManagement} property.
     * @return the meta-property, not null
     */
    public final MetaProperty<DbManagement> dbManagement() {
      return _dbManagement;
    }

    /**
     * The meta-property for the {@code schemaNamesList} property.
     * @return the meta-property, not null
     */
    public final MetaProperty<String> schemaNamesList() {
      return _schemaNamesList;
    }

  }

  ///CLOVER:ON
  //-------------------------- AUTOGENERATED END --------------------------
}
TOP

Related Classes of com.opengamma.component.factory.tool.DbToolContextComponentFactory$Meta

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.