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

com.torodb.backend.tables.MetaFieldTable Maven / Gradle / Ivy

There is a newer version: 0.50.3
Show newest version
/*
 * ToroDB
 * Copyright © 2014 8Kdata Technology (www.8kdata.com)
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program. If not, see .
 */

package com.torodb.backend.tables;

import com.torodb.backend.meta.TorodbSchema;
import com.torodb.backend.tables.records.MetaFieldRecord;
import com.torodb.core.transaction.metainf.FieldType;
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
import org.jooq.Field;
import org.jooq.Table;
import org.jooq.TableField;
import org.jooq.UniqueKey;
import org.jooq.impl.AbstractKeys;

import java.util.Arrays;
import java.util.List;

@SuppressFBWarnings(
    value = "HE_HASHCODE_NO_EQUALS",
    justification =
    "Equals comparation is done in TableImpl class, which compares schema, name and fields")
@SuppressWarnings({"checkstyle:LineLength", "checkstyle:AbbreviationAsWordInName",
    "checkstyle:MemberName"})
public abstract class MetaFieldTable>
    extends SemanticTable {

  private static final long serialVersionUID = -3500177946436569355L;

  public static final String TABLE_NAME = "field";

  public enum TableFields {
    DATABASE("database"),
    COLLECTION("collection"),
    TABLE_REF("table_ref"),
    NAME("name"),
    TYPE("type"),
    IDENTIFIER("identifier");

    public final String fieldName;

    TableFields(String fieldName) {
      this.fieldName = fieldName;
    }

    @Override
    public String toString() {
      return fieldName;
    }
  }

  /**
   * The class holding records for this type
   *
   * @return
   */
  @Override
  public abstract Class getRecordType();

  /**
   * The column torodb.field.database.
   */
  public final TableField DATABASE =
      createDatabaseField();

  /**
   * The column torodb.field.collection.
   */
  public final TableField COLLECTION =
      createCollectionField();

  /**
   * The column torodb.field.path.
   */
  public final TableField TABLE_REF =
      createTableRefField();

  /**
   * The column torodb.field.name.
   */
  public final TableField NAME =
      createNameField();

  /**
   * The column torodb.field.type.
   */
  public final TableField TYPE =
      createTypeField();

  /**
   * The column torodb.field.identifier.
   */
  public final TableField IDENTIFIER =
      createIdentifierField();

  protected abstract TableField createDatabaseField();

  protected abstract TableField createCollectionField();

  protected abstract TableField createTableRefField();

  protected abstract TableField createNameField();

  protected abstract TableField createTypeField();

  protected abstract TableField createIdentifierField();

  private final UniqueKeys uniqueKeys;

  /**
   * Create a torodb.field table reference
   */
  public MetaFieldTable() {
    this(TABLE_NAME, null);
  }

  protected MetaFieldTable(String alias, Table aliased) {
    this(alias, aliased, null);
  }

  protected MetaFieldTable(String alias, Table aliased, Field[] parameters) {
    super(alias, TorodbSchema.TORODB, aliased, parameters, "");

    this.uniqueKeys = new UniqueKeys(this);
  }

  /**
   * {@inheritDoc}
   */
  @Override
  public UniqueKey getPrimaryKey() {
    return uniqueKeys.FIELD_PKEY;
  }

  /**
   * {@inheritDoc}
   */
  @Override
  public List> getKeys() {
    return Arrays.>asList(uniqueKeys.FIELD_PKEY,
        uniqueKeys.FIELD_COLUMN_NAME_UNIQUE_PKEY
    );
  }

  /**
   * {@inheritDoc}
   */
  @Override
  public abstract MetaFieldTable as(String alias);

  /**
   * Rename this table
   */
  public abstract MetaFieldTable rename(String name);

  public UniqueKeys getUniqueKeys() {
    return uniqueKeys;
  }

  @SuppressWarnings({"checkstyle:AbbreviationAsWordInName", "checkstyle:MemberName"})
  public static class UniqueKeys>
      extends AbstractKeys {

    private final UniqueKey FIELD_PKEY;
    private final UniqueKey FIELD_COLUMN_NAME_UNIQUE_PKEY;

    private UniqueKeys(MetaFieldTable fieldTable) {
      FIELD_PKEY = createUniqueKey(fieldTable, fieldTable.DATABASE, fieldTable.COLLECTION,
          fieldTable.TABLE_REF, fieldTable.NAME, fieldTable.TYPE);
      FIELD_COLUMN_NAME_UNIQUE_PKEY = createUniqueKey(fieldTable, fieldTable.DATABASE,
          fieldTable.TABLE_REF, fieldTable.IDENTIFIER);
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy