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

com.rapiddweller.jdbacl.model.DBSchema Maven / Gradle / Ivy

Go to download

'jdbacl' stands for 'Java DataBase ACcess Layer' and provides utilities for accessing JDBC databases from Java programs, retrieving meta information in an object model and querying database data. 'rapiddweller jdbacl' is forked from Databene jdbacl by Volker Bergmann.

There is a newer version: 1.1.17-jdk-11
Show newest version
/*
 * (c) Copyright 2006-2014 by Volker Bergmann. All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, is permitted under the terms of the
 * GNU General License.
 *
 * For redistributing this software or a derivative work under a license other
 * than the GPL-compatible Free Software License as defined by the Free
 * Software Foundation or approved by OSI, you must first obtain a commercial
 * license to this software product from Volker Bergmann.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * WITHOUT A WARRANTY OF ANY KIND. ALL EXPRESS OR IMPLIED CONDITIONS,
 * REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE
 * HEREBY EXCLUDED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */

package com.rapiddweller.jdbacl.model;

import com.rapiddweller.common.collection.OrderedNameMap;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;

/**
 * Represents a JDBC database schema.

* Created: 06.01.2007 08:57:57 * * @author Volker Bergmann */ public class DBSchema extends AbstractCompositeDBObject implements TableHolder, SequenceHolder, Serializable { private static final long serialVersionUID = -8481832064630225273L; private final List components; private final OrderedNameMap tables; private final OrderedNameMap sequences; private final OrderedNameMap triggers; private final OrderedNameMap packages; // constructors ---------------------------------------------------------------------------------------------------- /** * Instantiates a new Db schema. * * @param name the name */ public DBSchema(String name) { this(name, null); } /** * Instantiates a new Db schema. * * @param name the name * @param catalog the catalog */ public DBSchema(String name, DBCatalog catalog) { super(name, "schema"); if (catalog != null) { catalog.addSchema(this); } this.components = new ArrayList<>(); this.tables = OrderedNameMap.createCaseIgnorantMap(); this.sequences = OrderedNameMap.createCaseIgnorantMap(); this.triggers = OrderedNameMap.createCaseIgnorantMap(); this.packages = OrderedNameMap.createCaseIgnorantMap(); } // properties ------------------------------------------------------------------------------------------------------ @Override public String getName() { return name; } /** * Gets database. * * @return the database */ public Database getDatabase() { return getCatalog().getDatabase(); } // catalog operations ---------------------------------------------------------------------------------------------- /** * Gets catalog. * * @return the catalog */ public DBCatalog getCatalog() { return (DBCatalog) owner; } /** * Sets catalog. * * @param catalog the catalog */ public void setCatalog(DBCatalog catalog) { this.owner = catalog; } // CompositeDBObject implementation -------------------------------------------------------------------------------- @Override public List getComponents() { return components; } // table operations ------------------------------------------------------------------------------------------------ @Override public List getTables() { return tables.values(); } @Override public List getTables(boolean recursive) { return getTables(); } @Override public DBTable getTable(String tableName) { if (tableName != null) { return tables.get(tableName); } else { return null; } } /** * Add table. * * @param table the table */ public void addTable(DBTable table) { tables.put(table.getName(), table); components.add(table); } /** * Remove table. * * @param table the table */ public void removeTable(DBTable table) { tables.remove(table.getName()); components.remove(table); } // sequence operations --------------------------------------------------------------------------------------------- @Override public List getSequences(boolean recursive) { getDatabase().haveSequencesImported(); return sequences.values(); } /** * Add sequence. * * @param sequence the sequence */ public void addSequence(DBSequence sequence) { getDatabase().haveSequencesImported(); receiveSequence(sequence); } /** * Receive sequence. * * @param sequence the sequence */ public void receiveSequence(DBSequence sequence) { this.sequences.put(sequence.getName(), sequence); components.add(sequence); } // trigger operations ---------------------------------------------------------------------------------------------- /** * Gets triggers. * * @return the triggers */ public List getTriggers() { getDatabase().haveTriggersImported(); return triggers.values(); } /** * Add trigger. * * @param trigger the trigger */ public void addTrigger(DBTrigger trigger) { getDatabase().haveTriggersImported(); receiveTrigger(trigger); } /** * Receive trigger. * * @param trigger the trigger */ public void receiveTrigger(DBTrigger trigger) { this.triggers.put(trigger.getName(), trigger); components.add(trigger); } // package operations ---------------------------------------------------------------------------------------------- /** * Gets packages. * * @return the packages */ public List getPackages() { getDatabase().havePackagesImported(); return packages.values(); } /** * Add package. * * @param pkg the pkg */ public void addPackage(DBPackage pkg) { getDatabase().havePackagesImported(); receivePackage(pkg); } /** * Receive package. * * @param pkg the pkg */ public void receivePackage(DBPackage pkg) { packages.put(pkg.getName(), pkg); components.add(pkg); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy