xmlspineimpl.java
来自「开源的axis2框架的源码。用于开发WEBSERVER」· Java 代码 · 共 693 行 · 第 1/2 页
JAVA
693 行
om.insertSiblingBefore(newOM);
om.detach();
}
}
public void setBodyBlock(Block block) throws WebServiceException {
// Forces the parser to read all of the blocks
getNumBodyBlocks();
block.setParent(getParent());
// Remove all of the children
OMElement bElement = _getBodyBlockParent();
Iterator it = bElement.getChildren();
while (it.hasNext()) {
it.next();
it.remove();
}
if (block.isElementData()) {
// If the block is element data then it is safe to create
// an OMElement representing the block
// The block is supposed to represent a single element.
// But if it does not represent an element , the following will fail.
QName qName = block.getQName();
OMElement newOM = _createOMElementFromBlock(qName, block, soapFactory);
bElement.addChild(newOM);
} else {
// This needs to be fixed, but for now we will require that there must be an
// element...otherwise no block is added
try {
QName qName = block.getQName();
OMElement newOM = _createOMElementFromBlock(qName, block, soapFactory);
bElement.addChild(newOM);
} catch (Throwable t) {
if (log.isDebugEnabled()) {
log.debug(
"An attempt was made to pass a Source or String that does not " +
"have an xml element. Processing continues with an empty payload.");
}
}
}
}
public void removeBodyBlock(int index) throws WebServiceException {
// Forces the parser to read all of the blocks
getNumBodyBlocks();
OMElement om = this._getChildOMElement(_getBodyBlockParent(), index);
if (om != null) {
om.detach();
}
}
public int getNumHeaderBlocks() throws WebServiceException {
return _getNumChildElements(root.getHeader());
}
public Block getHeaderBlock(String namespace, String localPart, Object context,
BlockFactory blockFactory) throws WebServiceException {
OMElement om = _getChildOMElement(root.getHeader(), namespace, localPart);
if (om == null) {
return null;
}
return this._getBlockFromOMElement(om, context, blockFactory, false);
}
public void setHeaderBlock(String namespace, String localPart, Block block)
throws WebServiceException {
block.setParent(getParent());
OMElement newOM =
_createOMElementFromBlock(new QName(namespace, localPart), block, soapFactory);
OMElement om = this._getChildOMElement(root.getHeader(), namespace, localPart);
if (om == null) {
if (root.getHeader() == null) {
soapFactory.createSOAPHeader(root);
}
root.getHeader().addChild(newOM);
} else {
om.insertSiblingBefore(newOM);
om.detach();
}
}
public void removeHeaderBlock(String namespace, String localPart) throws WebServiceException {
OMElement om = this._getChildOMElement(root.getHeader(), namespace, localPart);
if (om != null) {
om.detach();
}
}
public String traceString(String indent) {
// TODO Trace String Support
return null;
}
public String getXMLPartContentType() {
return "SPINE";
}
public boolean isFault() throws WebServiceException {
return XMLFaultUtils.isFault(root);
}
public Style getStyle() {
return style;
}
public QName getOperationElement() {
OMElement omElement = this._getBodyBlockParent();
if (omElement instanceof SOAPBody) {
return null;
} else {
return omElement.getQName();
}
}
public void setOperationElement(QName operationQName) {
OMElement opElement = this._getBodyBlockParent();
if (!(opElement instanceof SOAPBody)) {
OMNamespace ns = soapFactory.createOMNamespace(operationQName.getNamespaceURI(),
operationQName.getPrefix());
opElement.setLocalName(operationQName.getLocalPart());
opElement.setNamespace(ns);
}
}
private Block _getBlockFromOMElement(OMElement om, Object context, BlockFactory blockFactory,
boolean setComplete) throws WebServiceException {
try {
QName qName = om.getQName();
/* TODO We could gain performance if OMSourcedElement exposed a getDataSource method
if (om instanceof OMSourcedElementImpl &&
((OMSourcedElementImpl) om).getDataSource() instanceof Block) {
Block oldBlock = (Block) ((OMSourcedElementImpl) om).getDataSource();
Block newBlock = blockFactory.createFrom(oldBlock, context);
newBlock.setParent(getParent());
if (newBlock != oldBlock) {
// Replace the OMElement with the OMSourcedElement that delegates to the block
OMSourcedElementImpl newOM = new OMSourcedElementImpl(qName, soapFactory, newBlock);
om.insertSiblingBefore(newOM);
om.detach();
}
return newBlock;
}
*/
// Create the block
Block block = blockFactory.createFrom(om, context, qName);
block.setParent(getParent());
// Get the business object to force a parse
block.getBusinessObject(false);
// Replace the OMElement with the OMSourcedElement that delegates to the block
OMElement newOM = _createOMElementFromBlock(qName, block, soapFactory);
om.insertSiblingBefore(newOM);
// We want to set the om element and its parents to complete to
// shutdown the parsing.
if (setComplete) {
// Get the root of the document
OMElementImpl root = (OMElementImpl) om;
while(root.getParent() instanceof OMElementImpl) {
root = (OMElementImpl) root.getParent();
}
try {
if (!root.isComplete() && root.getBuilder() != null &&
!root.getBuilder().isCompleted()) {
// Forward the parser to the end so it will close
while (root.getBuilder().next() != XMLStreamConstants.END_DOCUMENT) {
//do nothing
}
}
} catch (Exception e) {
// Log and continue
if (log.isDebugEnabled()) {
log.debug("Builder next error:" + e.getMessage());
log.debug(JavaUtils.stackToString(e));
}
}
OMContainer o = om;
while (o != null && o instanceof OMContainerEx) {
((OMContainerEx)o).setComplete(true);
if ((o instanceof OMNode) &&
(((OMNode)o).getParent()) instanceof OMContainer) {
o = ((OMNode)o).getParent();
} else {
o = null;
}
}
}
om.detach();
return block;
} catch (XMLStreamException xse) {
throw ExceptionFactory.makeWebServiceException(xse);
}
}
private static OMElement _createOMElementFromBlock(QName qName, Block b,
SOAPFactory soapFactory) {
return new OMSourcedElementImpl(qName, soapFactory, b);
}
/**
* Gets the OMElement that is the parent of where the the body blocks are located
*
* @return
*/
private OMElement _getBodyBlockParent() {
SOAPBody body = root.getBody();
if (!body.hasFault() && indirection == 1) {
// For RPC the blocks are within the operation element
OMElement op = body.getFirstElement();
if (op == null) {
// Create one
OMNamespace ns = soapFactory.createOMNamespace("", "");
op = soapFactory.createOMElement("PLACEHOLDER_OPERATION", ns, body);
}
return op;
}
return body;
}
/**
* Create a factory for the specified protocol
*
* @param protocol
* @return
*/
private static SOAPFactory _getFactory(Protocol protocol) {
SOAPFactory soapFactory;
if (protocol == Protocol.soap11) {
soapFactory = new SOAP11Factory();
} else if (protocol == Protocol.soap12) {
soapFactory = new SOAP12Factory();
} else if (protocol == Protocol.rest) {
// For REST, create a SOAP 1.1 Envelope to contain the message
// This is consistent with Axis2.
soapFactory = new SOAP11Factory();
} else {
throw ExceptionFactory
.makeWebServiceException(Messages.getMessage("RESTIsNotSupported"), null);
}
return soapFactory;
}
/**
* Create an emtpy envelope
*
* @param protocol
* @param style
* @param factory
* @return
*/
private static SOAPEnvelope _createEmptyEnvelope(Style style, SOAPFactory factory) {
SOAPEnvelope env = factory.createSOAPEnvelope();
// Add an empty body and header
factory.createSOAPBody(env);
factory.createSOAPHeader(env);
// Create a dummy operation element if this is an rpc message
if (style == Style.RPC) {
OMNamespace ns = factory.createOMNamespace("", "");
factory.createOMElement("PLACEHOLDER_OPERATION", ns, env.getBody());
}
return env;
}
/* (non-Javadoc)
* @see org.apache.axis2.jaxws.message.XMLPart#getNumBodyBlocks()
*/
private static int _getNumChildElements(OMElement om) throws WebServiceException {
// Avoid calling this method. It advances the parser.
if (om == null) {
return 0;
}
int num = 0;
Iterator iterator = om.getChildElements();
while (iterator.hasNext()) {
num++;
iterator.next();
}
return num;
}
/**
* Get the child om at the indicated index
*
* @param om
* @param index
* @return child om or null
*/
private static OMElement _getChildOMElement(OMElement om, int index) {
if (om == null) {
return null;
}
int i = 0;
for (OMNode child = om.getFirstOMChild();
child != null;
child = child.getNextOMSibling()) {
if (child instanceof OMElement) {
if (i == index) {
return (OMElement)child;
}
i++;
}
}
return null;
}
/**
* Get the child om at the indicated index
*
* @param om
* @param index
* @return child om or null
*/
private static OMElement _getChildOMElement(OMElement om, String namespace,
String localPart) {
if (om == null) {
return null;
}
QName qName = new QName(namespace, localPart);
Iterator it = om.getChildrenWithName(qName);
if (it != null && it.hasNext()) {
return (OMElement)it.next();
}
return null;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?