org.cristalise.kernel.persistency.outcome.Schema Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cristalise-kernel Show documentation
Show all versions of cristalise-kernel Show documentation
Cristal-ise is a description-driven software platform originally developed to track the construction of
the CMS ECAL detector of the LHC at CERN. This is its core library, known as the kernel, which manages
business objects called Items. Items are entirely configured from data, called descriptions, held in other Items.
Every change of a state in an Item is a consequence of an execution of an activity in that Item's lifecycle,
meaning that Cristal-ise applications are completely traceable, even in their design. It also supports extensive
versioning of Item description data, giving the system a high level of flexibility.
/**
* This file is part of the CRISTAL-iSE kernel.
* Copyright (c) 2001-2015 The CRISTAL Consortium. All rights reserved.
*
* 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 3 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; with out 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.
*
* http://www.fsf.org/licensing/licenses/lgpl.html
*/
package org.cristalise.kernel.persistency.outcome;
import static org.cristalise.kernel.process.resource.BuiltInResources.SCHEMA_RESOURCE;
import java.io.ByteArrayInputStream;
import java.io.File;
import java.io.IOException;
import java.io.StringReader;
import java.io.Writer;
import javax.xml.XMLConstants;
import javax.xml.transform.stream.StreamSource;
import javax.xml.validation.SchemaFactory;
import org.apache.commons.lang3.StringUtils;
import org.cristalise.kernel.collection.CollectionArrayList;
import org.cristalise.kernel.lookup.ItemPath;
import org.cristalise.kernel.process.Gateway;
import org.cristalise.kernel.utils.DescriptionObject;
import org.cristalise.kernel.utils.FileStringUtility;
import org.cristalise.kernel.utils.Logger;
import org.exolab.castor.xml.schema.reader.SchemaReader;
import org.xml.sax.ErrorHandler;
import org.xml.sax.InputSource;
import org.xml.sax.SAXException;
import org.xml.sax.SAXParseException;
import lombok.AccessLevel;
import lombok.Getter;
import lombok.Setter;
@Getter @Setter
public class Schema implements DescriptionObject, ErrorHandler {
private String name;
private Integer version;
private final String schemaData;
private ItemPath itemPath;
@Getter(AccessLevel.NONE) @Setter(AccessLevel.NONE)
protected StringBuffer errors = null;
@Setter(AccessLevel.NONE)
public javax.xml.validation.Schema javaxSchema = null;
public Schema(String name, int version, ItemPath itemPath, String schema) {
super();
this.name = name;
this.version = version;
this.itemPath = itemPath;
this.schemaData = schema;
}
public Schema(String name, int version, String schema) {
super();
this.name = name;
this.version = version;
this.schemaData = schema;
this.itemPath = null;
}
/**
* Sets schema name to 'Schema' and version to 0
*
* @param schema the XSD string
*/
public Schema(String schema) {
this.schemaData = schema;
name = "Schema";
version = 0;
}
/**
* Returns the XSD string. Convenience method
*
* @return the XSD string
*/
public String getXSD() {
return getSchemaData();
}
/**
* Returns the SchemaObjectModel (SOM) implemented by the caster xml schema project.
* WARNING: Castor implementation does not support 'xs:any'
*
* @return castor xml schema object
*/
public org.exolab.castor.xml.schema.Schema getSom() {
try {
errors = new StringBuffer();
SchemaReader mySchemaReader = new SchemaReader(new InputSource(new StringReader(schemaData)));
mySchemaReader.setErrorHandler(this);
mySchemaReader.setValidation(true);
org.exolab.castor.xml.schema.Schema som = mySchemaReader.read();
if (StringUtils.isNotBlank(errors)) {
Logger.error("Schema '" + getName() + "' was invalid:" + errors.toString());
return null;
}
else
return som;
}
catch (Exception e) {
Logger.error(e);
}
return null;
}
public javax.xml.validation.Schema getJavaxSchema() {
if (javaxSchema == null && StringUtils.isNotBlank(schemaData)) {
try {
StreamSource source = new StreamSource(new ByteArrayInputStream(schemaData.getBytes()));
SchemaFactory factory = SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI);
factory.setErrorHandler(this);
javaxSchema = factory.newSchema(source);
}
catch (SAXException e) {
Logger.error(e);
}
}
return javaxSchema;
}
/**
* Validates the schemaData (XML)
*
* @return errors in String format
*/
public synchronized String validate() throws IOException {
errors = new StringBuffer();
javaxSchema = null; //makes sure schema is read from string and validated
getJavaxSchema();
return errors.toString();
}
@Override
public String getItemID() {
if (itemPath == null || itemPath == null || itemPath.getUUID() == null) return "";
return itemPath.getUUID().toString();
}
/**
* ErrorHandler for validation
*
* @param level
* @param ex
*/
private void appendError(String level, Exception ex) {
errors.append(level);
String message = ex.getMessage();
if (message == null || message.length() == 0) message = ex.getClass().getName();
errors.append(message);
errors.append("\n");
}
@Override
public void error(SAXParseException ex) throws SAXException {
appendError("ERROR: ", ex);
}
@Override
public void fatalError(SAXParseException ex) throws SAXException {
appendError("FATAL: ", ex);
}
@Override
public void warning(SAXParseException ex) throws SAXException {
appendError("WARNING: ", ex);
}
@Override
public CollectionArrayList makeDescCollections() {
return new CollectionArrayList();
}
@Override
public void export(Writer imports, File dir, boolean shallow) throws IOException {
String fileName = getName() + (getVersion() == null ? "" : "_" + getVersion()) + ".xsd";
String typeCode = SCHEMA_RESOURCE.getTypeCode();
FileStringUtility.string2File(new File(new File(dir, typeCode), fileName), schemaData);
if (imports == null) return;
if (Gateway.getProperties().getBoolean("Resource.useOldImportFormat", false)) {
imports.write( "boot/"+typeCode+"/"+fileName
+ " \n");
}
else {
imports.write( " \n");
}
}
@Override
public boolean equals(Object obj) {
if (obj == null) return false;
if (name.equals(((Schema) obj).getName()) && version == ((Schema) obj).getVersion())
return true;
else
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy