blob: 84aa7d2c5de6423aa298baf4ed4cce3e68c12577 [file] [log] [blame]
/* Copyright 2004 The Apache Software Foundation
*
* Licensed under 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.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.xmlbeans.impl.binding.tylar;
import org.apache.xmlbeans.impl.binding.bts.BindingLoader;
import org.apache.xmlbeans.impl.binding.bts.BuiltinBindingLoader;
import org.apache.xmlbeans.impl.binding.bts.CompositeBindingLoader;
import org.apache.xmlbeans.impl.binding.bts.BindingFile;
import org.apache.xmlbeans.impl.jam.JamClassLoader;
import org.apache.xmlbeans.impl.jam.JamServiceFactory;
import org.apache.xmlbeans.*;
import org.w3.x2001.xmlSchema.SchemaDocument;
import java.net.URI;
import java.net.URL;
import java.io.IOException;
/**
* @deprecated phasing this out in favor of RuntimeTylar and BuildtimeTylar.
*
* @author Patrick Calahan <pcal@bea.com>
*/
public abstract class BaseTylarImpl implements Tylar {
// ========================================================================
// Partial default Tylar implementation
public String getDescription() {
return "["+this.getClass().getName()+"]";
}
public URL[] getLocations() {
return null;
}
public URL getLocation() {
return null;
}
public BindingLoader getBindingLoader() /*throws IOException, XmlException*/ {
try {
//REVIEW should consider caching this result
BindingFile[] bfs = getBindingFiles();
BindingLoader[] loaders = new BindingLoader[bfs.length+1];
System.arraycopy(bfs,0,loaders,0,bfs.length);
loaders[loaders.length-1] = BuiltinBindingLoader.getBuiltinBindingLoader(false);
return CompositeBindingLoader.forPath(loaders);
} catch(Exception e) { throw new RuntimeException(e); } //fixme
}
public JamClassLoader getJamClassLoader()
{
return JamServiceFactory.getInstance().createSystemJamClassLoader();
}
// ========================================================================
// Protected methods
/**
* <p>Creates a schema type system by compiling all of the schema documents
* returned by getSchemas(). This can be used as a fallback for
* implementing getSchemaTypeSystem().
*
* @return
*/
protected SchemaTypeSystem getDefaultSchemaTypeSystem()
throws IOException, XmlException
{
SchemaDocument[] xsds = getSchemas();
XmlObject[] xxds = new XmlObject[xsds.length];
for(int i=0; i<xsds.length; i++) xxds[i] = xsds[i].getSchema();
try {
XmlOptions opts = new XmlOptions();
opts.setCompileDownloadUrls();
opts.setLoadUseDefaultResolver();
return XmlBeans.compileXsd(xxds,XmlBeans.getBuiltinTypeSystem(),opts);
} catch(XmlException xe) {
throw (IOException)new IOException().initCause(xe);
}
}
}