package com.sun.xml.internal.bind.v2.runtime.property;
import java.io.IOException;
import java.util.Collection;
import javax.xml.namespace.QName;
import javax.xml.stream.XMLStreamException;
import com.sun.xml.internal.bind.api.AccessorException;
import com.sun.xml.internal.bind.v2.util.QNameMap;
import com.sun.xml.internal.bind.v2.model.runtime.RuntimePropertyInfo;
import com.sun.xml.internal.bind.v2.runtime.JAXBContextImpl;
import com.sun.xml.internal.bind.v2.runtime.Name;
import com.sun.xml.internal.bind.v2.runtime.XMLSerializer;
import com.sun.xml.internal.bind.v2.runtime.reflect.Lister;
import com.sun.xml.internal.bind.v2.runtime.reflect.Accessor;
import com.sun.xml.internal.bind.v2.runtime.unmarshaller.ChildLoader;
import com.sun.xml.internal.bind.v2.runtime.unmarshaller.TagName;
import com.sun.xml.internal.bind.v2.runtime.unmarshaller.Loader;
import com.sun.xml.internal.bind.v2.runtime.unmarshaller.Receiver;
import com.sun.xml.internal.bind.v2.runtime.unmarshaller.Scope;
import com.sun.xml.internal.bind.v2.runtime.unmarshaller.UnmarshallingContext;
import com.sun.xml.internal.bind.v2.runtime.unmarshaller.XsiNilLoader;
import org.xml.sax.SAXException;
abstract class ArrayERProperty<BeanT,ListT,ItemT> extends ArrayProperty<BeanT,ListT,ItemT> {
protected final Name wrapperTagName;
protected final boolean isWrapperNillable;
protected ArrayERProperty(JAXBContextImpl grammar, RuntimePropertyInfo prop, QName tagName, boolean isWrapperNillable) {
super(grammar,prop);
if(tagName==null)
this.wrapperTagName = null;
else
this.wrapperTagName = grammar.nameBuilder.createElementName(tagName);
this.isWrapperNillable = isWrapperNillable;
}
private static final class ItemsLoader extends Loader {
private final Accessor acc;
private final Lister lister;
public ItemsLoader(Accessor acc, Lister lister, QNameMap<ChildLoader> children) {
super(false);
this.acc = acc;
this.lister = lister;
this.children = children;
}
@Override
public void startElement(UnmarshallingContext.State state, TagName ea) throws SAXException {
UnmarshallingContext context = state.getContext();
context.startScope(1);
state.setTarget(state.getPrev().getTarget());
context.getScope(0).start(acc,lister);
}
private final QNameMap<ChildLoader> children;
@Override
public void childElement(UnmarshallingContext.State state, TagName ea) throws SAXException {
ChildLoader child = children.get(ea.uri,ea.local);
if (child == null) {
child = children.get(CATCH_ALL);
}
if (child == null) {
super.childElement(state,ea);
return;
}
state.setLoader(child.loader);
state.setReceiver(child.receiver);
}
@Override
public void leaveElement(UnmarshallingContext.State state, TagName ea) throws SAXException {
state.getContext().endScope(1);
}
@Override
public Collection<QName> getExpectedChildElements() {
return children.keySet();
}
}
public final void serializeBody(BeanT o, XMLSerializer w, Object outerPeer) throws SAXException, AccessorException, IOException, XMLStreamException {
ListT list = acc.get(o);
if(list!=null) {
if(wrapperTagName!=null) {
w.startElement(wrapperTagName,null);
w.endNamespaceDecls(list);
w.endAttributes();
}
serializeListBody(o,w,list);
if(wrapperTagName!=null)
w.endElement();
} else {
if(isWrapperNillable) {
w.startElement(wrapperTagName,null);
w.writeXsiNilTrue();
w.endElement();
}
}
}
protected abstract void serializeListBody(BeanT o, XMLSerializer w, ListT list) throws IOException, XMLStreamException, SAXException, AccessorException;
protected abstract void createBodyUnmarshaller(UnmarshallerChain chain, QNameMap<ChildLoader> loaders);
public final void buildChildElementUnmarshallers(UnmarshallerChain chain, QNameMap<ChildLoader> loaders) {
if(wrapperTagName!=null) {
UnmarshallerChain c = new UnmarshallerChain(chain.context);
QNameMap<ChildLoader> m = new QNameMap<ChildLoader>();
createBodyUnmarshaller(c,m);
Loader loader = new ItemsLoader(acc, lister, m);
if(isWrapperNillable || chain.context.allNillable)
loader = new XsiNilLoader(loader);
loaders.put(wrapperTagName,new ChildLoader(loader,null));
} else {
createBodyUnmarshaller(chain,loaders);
}
}
protected final class ReceiverImpl implements Receiver {
private final int offset;
protected ReceiverImpl(int offset) {
this.offset = offset;
}
public void receive(UnmarshallingContext.State state, Object o) throws SAXException {
state.getContext().getScope(offset).add(acc,lister,o);
}
}}