org.plasma.profile.ProfileConfigDataBinding Maven / Gradle / Ivy
/**
* Copyright 2017 TerraMeta Software, Inc.
*
* 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.plasma.profile;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.URL;
import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBException;
import javax.xml.bind.UnmarshalException;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.plasma.common.bind.BindingValidationEventHandler;
import org.plasma.common.bind.DataBinding;
import org.plasma.common.bind.ValidatingUnmarshaler;
import org.xml.sax.SAXException;
public class ProfileConfigDataBinding implements DataBinding {
private static Log log = LogFactory.getLog(ProfileConfigDataBinding.class);
public static String FILENAME_SCHEMA_CHAIN_ROOT = "profile-config.xsd";
// just classes in the same package where can find the above respective
// schema files via Class.getResource*
public static Class> RESOURCE_CLASS = ProfileConfigDataBinding.class;
private ValidatingUnmarshaler validatingUnmarshaler;
public static Class>[] FACTORIES = { org.plasma.profile.ObjectFactory.class, };
@SuppressWarnings("unused")
private ProfileConfigDataBinding() {
}
public ProfileConfigDataBinding(BindingValidationEventHandler validationEventHandler)
throws JAXBException, SAXException {
log.debug("loading schema chain...");
URL url = RESOURCE_CLASS.getResource(FILENAME_SCHEMA_CHAIN_ROOT);
if (url == null)
url = RESOURCE_CLASS.getClassLoader().getResource(FILENAME_SCHEMA_CHAIN_ROOT);
if (url == null)
throw new IllegalArgumentException("could not find schema root file '"
+ FILENAME_SCHEMA_CHAIN_ROOT + "' on classpath");
validatingUnmarshaler = new ValidatingUnmarshaler(url, JAXBContext.newInstance(FACTORIES),
validationEventHandler);
}
public Class>[] getObjectFactories() {
return FACTORIES;
}
public String marshal(Object root) throws JAXBException {
return validatingUnmarshaler.marshal(root);
}
public void marshal(Object root, OutputStream stream) throws JAXBException {
validatingUnmarshaler.marshal(root, stream);
}
public Object unmarshal(String xml) throws JAXBException {
return validatingUnmarshaler.unmarshal(xml);
}
public Object unmarshal(InputStream stream) throws JAXBException {
return validatingUnmarshaler.unmarshal(stream);
}
public Object validate(String xml) throws JAXBException {
return validatingUnmarshaler.validate(xml);
}
public Object validate(InputStream xml) throws JAXBException, UnmarshalException {
return validatingUnmarshaler.validate(xml);
}
public BindingValidationEventHandler getValidationEventHandler() throws JAXBException {
return this.validatingUnmarshaler.getValidationEventHandler();
}
}