org.tentackle.sql.metadata.ModelMetaData Maven / Gradle / Ivy
/*
* Tentackle - http://www.tentackle.org.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package org.tentackle.sql.metadata;
import java.sql.DatabaseMetaData;
import java.util.Collection;
import java.util.Map;
import java.util.TreeMap;
import org.tentackle.sql.Backend;
import org.tentackle.sql.BackendInfo;
/**
* The whole metadata for the connected database.
*
* @author harald
*/
public class ModelMetaData {
protected final Backend backend; // the backend
protected final DatabaseMetaData[] metaData; // the connection's meta data
protected final Map tableMap; // the tables
protected final String[] schemas; // optional schemas
/**
* Creates a database meta instance.
*
* @param backend the backend
* @param metaData the connections meta data
* @param schemas optional schemas, null if no schema check
*/
public ModelMetaData(Backend backend, DatabaseMetaData[] metaData, String[] schemas) {
this.backend = backend;
this.metaData = metaData;
this.tableMap = new TreeMap<>();
this.schemas = schemas;
}
/**
* Adds a table to this model.
* If schemas are set, only tables belonging to one of given schemas will be appended.
*
* @param tableMetaData the table
* @return true if added, false if wrong schema
*/
public boolean addTableMetaData(TableMetaData tableMetaData) {
boolean add = false;
if (schemas != null) {
for (String schema: schemas) {
if (tableMetaData.getSchemaName() != null && tableMetaData.getSchemaName().equalsIgnoreCase(schema)) {
add = true;
break;
}
}
}
else {
add = true;
}
if (add) {
tableMap.put(tableMetaData.getModelTableName(), tableMetaData);
}
return add;
}
/**
* Gets the tables of this model.
*
* @return the tables
*/
public Collection getTables() {
return tableMap.values();
}
/**
* Gets the backend.
*
* @return the backend
*/
public Backend getBackend() {
return backend;
}
/**
* Gets the JDBC-connection's meta data.
* May be more than one if different schemas and schema-option was given in {@link BackendInfo}.
*
* @return the meta data
*/
public DatabaseMetaData[] getMetaData() {
return metaData;
}
@Override
public String toString() {
StringBuilder buf = new StringBuilder();
for (TableMetaData table: getTables()) {
buf.append("\n");
buf.append(table);
}
return buf.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy