Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 2010 Oracle and/or its affiliates. All rights reserved.
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common Development
* and Distribution License("CDDL") (collectively, the "License"). You
* may not use this file except in compliance with the License. You can
* obtain a copy of the License at
* https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html
* or packager/legal/LICENSE.txt. See the License for the specific
* language governing permissions and limitations under the License.
*
* When distributing the software, include this License Header Notice in each
* file and include the License file at packager/legal/LICENSE.txt.
*
* GPL Classpath Exception:
* Oracle designates this particular file as subject to the "Classpath"
* exception as provided by Oracle in the GPL Version 2 section of the License
* file that accompanied this code.
*
* Modifications:
* If applicable, add the following below the License Header, with the fields
* enclosed by brackets [] replaced by your own identifying information:
* "Portions Copyright [year] [name of copyright owner]"
*
* Contributor(s):
* If you wish your version of this file to be governed by only the CDDL or
* only the GPL Version 2, indicate your decision by adding "[Contributor]
* elects to include this software in this distribution under the [CDDL or GPL
* Version 2] license." If you don't indicate a single choice of license, a
* recipient has the option to distribute your version of this file under
* either the CDDL, the GPL Version 2 or to extend the choice of license to
* its licensees as provided above. However, if you add GPL Version 2 code
* and therefore, elected the GPL Version 2 license, then the option applies
* only if the new code is made subject to such option by the copyright
* holder.
*/
package com.sun.xml.bind.v2.runtime.property;
import java.io.IOException;
import java.lang.reflect.InvocationTargetException;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.JAXBException;
import javax.xml.bind.annotation.DomHandler;
import javax.xml.stream.XMLStreamException;
import com.sun.xml.bind.api.AccessorException;
import com.sun.xml.bind.v2.ClassFactory;
import com.sun.xml.bind.v2.model.core.PropertyKind;
import com.sun.xml.bind.v2.model.core.WildcardMode;
import com.sun.xml.bind.v2.model.runtime.RuntimeElement;
import com.sun.xml.bind.v2.model.runtime.RuntimeReferencePropertyInfo;
import com.sun.xml.bind.v2.runtime.ElementBeanInfoImpl;
import com.sun.xml.bind.v2.runtime.JAXBContextImpl;
import com.sun.xml.bind.v2.runtime.JaxBeanInfo;
import com.sun.xml.bind.v2.runtime.XMLSerializer;
import com.sun.xml.bind.v2.runtime.reflect.Accessor;
import com.sun.xml.bind.v2.runtime.unmarshaller.ChildLoader;
import com.sun.xml.bind.v2.runtime.unmarshaller.WildcardLoader;
import com.sun.xml.bind.v2.util.QNameMap;
import org.xml.sax.SAXException;
/**
* @author Kohsuke Kawaguchi
*/
final class SingleReferenceNodeProperty extends PropertyImpl {
private final Accessor acc;
private final QNameMap expectedElements = new QNameMap();
private final DomHandler domHandler;
private final WildcardMode wcMode;
public SingleReferenceNodeProperty(JAXBContextImpl context, RuntimeReferencePropertyInfo prop) {
super(context,prop);
acc = prop.getAccessor().optimize(context);
for (RuntimeElement e : prop.getElements()) {
expectedElements.put( e.getElementName(), context.getOrCreate(e) );
}
if(prop.getWildcard()!=null) {
domHandler = (DomHandler) ClassFactory.create(prop.getDOMHandler());
wcMode = prop.getWildcard();
} else {
domHandler = null;
wcMode = null;
}
}
public void reset(BeanT bean) throws AccessorException {
acc.set(bean,null);
}
public String getIdValue(BeanT beanT) {
return null;
}
public void serializeBody(BeanT o, XMLSerializer w, Object outerPeer) throws SAXException, AccessorException, IOException, XMLStreamException {
ValueT v = acc.get(o);
if(v!=null) {
try {
JaxBeanInfo bi = w.grammar.getBeanInfo(v,true);
if(bi.jaxbType==Object.class && domHandler!=null)
// even if 'v' is a DOM node, it always derive from Object,
// so the getBeanInfo returns BeanInfo for Object
w.writeDom(v,domHandler,o,fieldName);
else
bi.serializeRoot(v,w);
} catch (JAXBException e) {
w.reportError(fieldName,e);
// recover by ignoring this property
}
}
}
public void buildChildElementUnmarshallers(UnmarshallerChain chain, QNameMap handlers) {
for (QNameMap.Entry n : expectedElements.entrySet())
handlers.put(n.nsUri,n.localName, new ChildLoader(n.getValue().getLoader(chain.context,true),acc));
if(domHandler!=null)
handlers.put(CATCH_ALL,new ChildLoader(new WildcardLoader(domHandler,wcMode),acc));
}
public PropertyKind getKind() {
return PropertyKind.REFERENCE;
}
@Override
public Accessor getElementPropertyAccessor(String nsUri, String localName) {
JaxBeanInfo bi = expectedElements.get(nsUri, localName);
if(bi!=null) {
if(bi instanceof ElementBeanInfoImpl) {
final ElementBeanInfoImpl ebi = (ElementBeanInfoImpl) bi;
// a JAXBElement. We need to handle JAXBElement for JAX-WS
return new Accessor(ebi.expectedType) {
public Object get(BeanT bean) throws AccessorException {
ValueT r = acc.get(bean);
if(r instanceof JAXBElement) {
return ((JAXBElement)r).getValue();
} else
// this is sloppy programming, but hey...
return r;
}
public void set(BeanT bean, Object value) throws AccessorException {
if(value!=null) {
try {
value = ebi.createInstanceFromValue(value);
} catch (IllegalAccessException e) {
throw new AccessorException(e);
} catch (InvocationTargetException e) {
throw new AccessorException(e);
} catch (InstantiationException e) {
throw new AccessorException(e);
}
}
acc.set(bean,(ValueT)value);
}
};
} else {
// a custom element type, like @XmlRootElement class Foo { ... }
return acc;
}
} else
return null;
}
}