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

java.fedora.server.utilities.PostgresDDLConverter Maven / Gradle / Ivy

Go to download

The Fedora Client is a Java Library that allows API access to a Fedora Repository. The client is typically one part of a full Fedora installation.

The newest version!
/*
 * -----------------------------------------------------------------------------
 *
 * 

License and Copyright: The contents of this file are subject to the * Apache License, Version 2.0 (the "License"); you may not use * this file except in compliance with the License. You may obtain a copy of * the License at * http://www.fedora-commons.org/licenses.

* *

Software distributed under the License is distributed on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for * the specific language governing rights and limitations under the License.

* *

The entire file consists of original code.

*

Copyright © 2008 Fedora Commons, Inc.
*

Copyright © 2002-2007 The Rector and Visitors of the University of * Virginia and Cornell University
* All rights reserved.

* * ----------------------------------------------------------------------------- */ package fedora.server.utilities; import java.util.ArrayList; import java.util.Iterator; import java.util.List; /** * A DDLConverter that works with Postgres. * * This class is based on Hubert Stigler's contribution to the * fedora-users mailing list on April 4th, 2006. * * It has been modified to create indexes. * * @author [email protected] * @version $Id: PostgresDDLConverter.java 5309 2006-12-05 20:20:13Z cwilper $ */ public class PostgresDDLConverter implements DDLConverter { public PostgresDDLConverter() { } public boolean supportsTableType() { return false; } public String getDropDDL(String command) { String[] parts = command.split(" "); String objectType = parts[1]; String objectName = parts[2]; return "DROP " + objectType + " " + objectName; } public List getDDL(TableSpec spec) { ArrayList l=new ArrayList(); StringBuffer out=new StringBuffer(); StringBuffer end=new StringBuffer(); out.append("CREATE TABLE " + spec.getName() + " (\n"); Iterator csi=spec.columnSpecIterator(); int csNum=0; while (csi.hasNext()) { if (csNum>0) { out.append(",\n"); } csNum++; ColumnSpec cs=(ColumnSpec) csi.next(); out.append(" "); out.append(cs.getName()); out.append(' '); if (cs.isAutoIncremented()) { out.append(" bigserial"); } else { if (cs.getType().toLowerCase().indexOf("int(")==0) { // if precision was specified for int, use postgres's default int precision out.append("int"); } else if (cs.getType().toLowerCase().indexOf("smallint(")==0) { out.append("smallint"); } else { out.append(cs.getType()); } if (cs.isNotNull()) { out.append(" NOT NULL"); } if (cs.getDefaultValue()!=null) { out.append(" DEFAULT "); if (cs.getType().toLowerCase().indexOf("char(") > -1 || cs.getType().toLowerCase().indexOf("text") > -1) out.append("'"); out.append(cs.getDefaultValue()); if (cs.getType().toLowerCase().indexOf("char(") > -1 || cs.getType().toLowerCase().indexOf("text") > -1) out.append("'"); } } if (cs.isUnique()) { if (!end.toString().equals("")) { end.append(",\n"); } end.append(" UNIQUE"); end.append(" ("); end.append(cs.getName()); end.append(")"); } if (cs.getIndexName() != null) { l.add("CREATE INDEX " + spec.getName() + "_" + cs.getName() + " ON " + spec.getName() + " (" + cs.getName() + ")"); } if (cs.getForeignTableName()!=null) { if (!end.toString().equals("")) { end.append(",\n"); } end.append(" FOREIGN KEY "); end.append(cs.getName()); end.append(" ("); end.append(cs.getName()); end.append(") REFERENCES "); end.append(cs.getForeignTableName()); end.append(" ("); end.append(cs.getForeignColumnName()); end.append(")"); if (cs.getOnDeleteAction()!=null) { end.append(" ON DELETE "); end.append(cs.getOnDeleteAction()); } } } if (spec.getPrimaryColumnName()!=null) { out.append(",\n PRIMARY KEY ("); out.append(spec.getPrimaryColumnName()); out.append(")"); } if (!end.toString().equals("")) { out.append(",\n"); out.append(end); } out.append("\n"); out.append(")"); l.add(0, out.toString()); return l; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy