📄 soapserializationenvelope.java
字号:
/* Copyright (c) 2003,2004, Stefan Haustein, Oberhausen, Rhld., Germany
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or
* sell copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
* IN THE SOFTWARE. */
package org.ksoap2.serialization;
import java.io.IOException;
import java.util.Hashtable;
import java.util.Vector;
import org.ksoap2.SoapEnvelope;
import org.ksoap2.SoapFault;
import org.xmlpull.v1.XmlPullParser;
import org.xmlpull.v1.XmlPullParserException;
import org.xmlpull.v1.XmlSerializer;
/**
* @author Stefan Haustein
*
* This class extends the SoapEnvelope with Soap Serialization functionality.
*/
public class SoapSerializationEnvelope extends SoapEnvelope {
private static final String ANY_TYPE_LABEL = "anyType";
private static final String ARRAY_MAPPING_NAME = "Array";
private static final String NULL_LABEL = "null";
private static final String NIL_LABEL = "nil";
private static final String HREF_LABEL = "href";
private static final String ID_LABEL = "id";
private static final String ROOT_LABEL = "root";
private static final String TYPE_LABEL = "type";
private static final String ITEM_LABEL = "item";
private static final String ARRAY_TYPE_LABEL = "arrayType";
static final Marshal DEFAULT_MARSHAL = new DM();
public Hashtable properties = new Hashtable();
Hashtable idMap = new Hashtable();
Vector multiRef; // = new Vector();
Vector types = new Vector();
public boolean implicitTypes;
/**
* Map from XML qualified names to Java classes
*/
protected Hashtable qNameToClass = new Hashtable();
/**
* Map from Java class names to XML name and namespace pairs
*/
protected Hashtable classToQName = new Hashtable();
/**
* Set to true to add and ID and ROOT label to the envelope.
* Change to false for compatibility with WSDL.
*/
protected boolean addAdornments = true;
public SoapSerializationEnvelope(int version) {
super(version);
addMapping(enc, ARRAY_MAPPING_NAME, PropertyInfo.VECTOR_CLASS);
DEFAULT_MARSHAL.register(this);
}
public void parseBody(XmlPullParser parser) throws IOException, XmlPullParserException {
bodyIn = null;
parser.nextTag();
if (parser.getEventType() == XmlPullParser.START_TAG && parser.getNamespace().equals(env) && parser.getName().equals("Fault")) {
SoapFault fault = new SoapFault();
fault.parse(parser);
bodyIn = fault;
} else {
while (parser.getEventType() == XmlPullParser.START_TAG) {
String rootAttr = parser.getAttributeValue(enc, ROOT_LABEL);
Object o = read(parser, null, -1, parser.getNamespace(), parser.getName(), PropertyInfo.OBJECT_TYPE);
if ("1".equals(rootAttr) || bodyIn == null)
bodyIn = o;
parser.nextTag();
}
}
}
/** Read a SoapObject. This extracts any attributes and then reads the object as a KvmSerializable. */
protected void readSerializable(XmlPullParser parser, SoapObject obj) throws IOException, XmlPullParserException {
for (int counter = 0; counter < parser.getAttributeCount(); counter++) {
String attributeName = parser.getAttributeName(counter);
String value = parser.getAttributeValue(counter);
((SoapObject) obj).addAttribute(attributeName, value);
}
readSerializable(parser, (KvmSerializable) obj);
}
/** Read a KvmSerializable. */
protected void readSerializable(XmlPullParser parser, KvmSerializable obj) throws IOException, XmlPullParserException {
int testIndex = -1; // inc at beg. of loop for perf. reasons
int propertyCount = obj.getPropertyCount();
PropertyInfo info = new PropertyInfo();
while (parser.nextTag() != XmlPullParser.END_TAG) {
String name = parser.getName();
int countdown = propertyCount;
// I don't really understand what's going on in this "while(true)"
// clause. The structure surely is wrong "while(true)" with a break is
// pretty much always because the person who wrote it couldn't figure out what
// it was really supposed to be doing.
// So, here's a little CYA since I think the code is only broken for
// implicitTypes
if (!implicitTypes || !(obj instanceof SoapObject)) {
while (true) {
if (countdown-- == 0) {
throw new RuntimeException("Unknown Property: " + name);
}
if (++testIndex >= propertyCount) {
testIndex = 0;
}
obj.getPropertyInfo(testIndex, properties, info);
if (info.namespace == null && name.equals(info.name) || info.name == null && testIndex == 0 || name.equals(info.name) && parser.getNamespace().equals(info.namespace)) {
break;
}
}
obj.setProperty(testIndex, read(parser, obj, testIndex, null, null, info));
} else {
// I can only make this work for SoapObjects - hence the check above
// I don't understand namespaces well enough to know whether it is correct in the next line...
((SoapObject) obj).addProperty(parser.getName(), read(parser, obj, obj.getPropertyCount(), ((SoapObject) obj).getNamespace(), name, PropertyInfo.OBJECT_TYPE));
}
}
parser.require(XmlPullParser.END_TAG, null, null);
}
/**
* If the type of the object cannot be determined, and thus no Marshal class
* can handle the object, this method is called. It will build either a
* SoapPrimitive or a SoapObject
*
* @param parser
* @param typeNamespace
* @param typeName
* @return unknownObject wrapped as a SoapPrimitive or SoapObject
* @throws IOException
* @throws XmlPullParserException
*/
protected Object readUnknown(XmlPullParser parser, String typeNamespace, String typeName) throws IOException, XmlPullParserException {
String name = parser.getName();
String namespace = parser.getNamespace();
parser.next(); // move to text, inner start tag or end tag
Object result = null;
String text = null;
if (parser.getEventType() == XmlPullParser.TEXT) {
text = parser.getText();
result = new SoapPrimitive(typeNamespace, typeName, text);
parser.next();
} else if (parser.getEventType() == XmlPullParser.END_TAG) {
result = new SoapObject(typeNamespace, typeName);
}
if (parser.getEventType() == XmlPullParser.START_TAG) {
if (text != null && text.trim().length() != 0) {
throw new RuntimeException("Malformed input: Mixed content");
}
SoapObject so = new SoapObject(typeNamespace, typeName);
while (parser.getEventType() != XmlPullParser.END_TAG) {
so.addProperty(parser.getName(), read(parser, so, so.getPropertyCount(), null, null, PropertyInfo.OBJECT_TYPE));
parser.nextTag();
}
result = so;
}
parser.require(XmlPullParser.END_TAG, namespace, name);
return result;
}
private int getIndex(String value, int start, int dflt) {
if (value == null)
return dflt;
return value.length() - start < 3 ? dflt : Integer.parseInt(value.substring(start + 1, value.length() - 1));
}
protected void readVector(XmlPullParser parser, Vector v, PropertyInfo elementType) throws IOException, XmlPullParserException {
String namespace = null;
String name = null;
int size = v.size();
boolean dynamic = true;
String type = parser.getAttributeValue(enc, ARRAY_TYPE_LABEL);
if (type != null) {
int cut0 = type.indexOf(':');
int cut1 = type.indexOf("[", cut0);
name = type.substring(cut0 + 1, cut1);
String prefix = cut0 == -1 ? "" : type.substring(0, cut0);
namespace = parser.getNamespace(prefix);
size = getIndex(type, cut1, -1);
if (size != -1) {
v.setSize(size);
dynamic = false;
}
}
if (elementType == null)
elementType = PropertyInfo.OBJECT_TYPE;
parser.nextTag();
int position = getIndex(parser.getAttributeValue(enc, "offset"), 0, 0);
while (parser.getEventType() != XmlPullParser.END_TAG) {
// handle position
position = getIndex(parser.getAttributeValue(enc, "position"), 0, position);
if (dynamic && position >= size) {
size = position + 1;
v.setSize(size);
}
// implicit handling of position exceeding specified size
v.setElementAt(read(parser, v, position, namespace, name, elementType), position);
position++;
parser.nextTag();
}
parser.require(XmlPullParser.END_TAG, null, null);
}
/**
* Builds an object from the XML stream. This method is public for usage in
* conjuction with Marshal subclasses. Precondition: On the start tag of the
* object or property, so href can be read.
*/
public Object read(XmlPullParser parser, Object owner, int index, String namespace, String name, PropertyInfo expected) throws IOException, XmlPullParserException {
String elementName = parser.getName();
String href = parser.getAttributeValue(null, HREF_LABEL);
Object obj;
if (href != null) {
if (owner == null)
throw new RuntimeException("href at root level?!?");
href = href.substring(1);
obj = idMap.get(href);
if (obj == null || obj instanceof FwdRef) {
FwdRef f = new FwdRef();
f.next = (FwdRef) obj;
f.obj = owner;
f.index = index;
idMap.put(href, f);
obj = null;
}
parser.nextTag(); // start tag
parser.require(XmlPullParser.END_TAG, null, elementName);
} else {
String nullAttr = parser.getAttributeValue(xsi, NIL_LABEL);
String id = parser.getAttributeValue(null, ID_LABEL);
if (nullAttr == null)
nullAttr = parser.getAttributeValue(xsi, NULL_LABEL);
if (nullAttr != null && SoapEnvelope.stringToBoolean(nullAttr)) {
obj = null;
parser.nextTag();
parser.require(XmlPullParser.END_TAG, null, elementName);
} else {
String type = parser.getAttributeValue(xsi, TYPE_LABEL);
if (type != null) {
int cut = type.indexOf(':');
name = type.substring(cut + 1);
String prefix = cut == -1 ? "" : type.substring(0, cut);
namespace = parser.getNamespace(prefix);
} else if (name == null && namespace == null) {
if (parser.getAttributeValue(enc, ARRAY_TYPE_LABEL) != null) {
namespace = enc;
name = ARRAY_MAPPING_NAME;
} else {
Object[] names = getInfo(expected.type, null);
namespace = (String) names[0];
name = (String) names[1];
}
}
// be sure to set this flag if we don't know the types.
if (type == null) {
implicitTypes = true;
}
obj = readInstance(parser, namespace, name, expected);
if (obj == null)
obj = readUnknown(parser, namespace, name);
}
// finally, care about the id....
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -