jimu-decompiled/sources/com/thoughtworks/xstream/io/xml/XppReader.java
2025-05-13 19:24:51 +02:00

141 lines
4.6 KiB
Java

package com.thoughtworks.xstream.io.xml;
import com.thoughtworks.xstream.converters.ErrorWriter;
import com.thoughtworks.xstream.io.StreamException;
import com.thoughtworks.xstream.io.naming.NameCoder;
import java.io.IOException;
import java.io.Reader;
import org.xmlpull.v1.XmlPullParser;
import org.xmlpull.v1.XmlPullParserException;
/* loaded from: classes.dex */
public class XppReader extends AbstractPullReader {
static /* synthetic */ Class class$org$xmlpull$v1$XmlPullParser;
private final XmlPullParser parser;
private final Reader reader;
public XppReader(Reader reader, XmlPullParser xmlPullParser) {
this(reader, xmlPullParser, new XmlFriendlyNameCoder());
}
static /* synthetic */ Class class$(String str) {
try {
return Class.forName(str);
} catch (ClassNotFoundException e) {
throw new NoClassDefFoundError().initCause(e);
}
}
@Override // com.thoughtworks.xstream.io.HierarchicalStreamReader, com.thoughtworks.xstream.converters.ErrorReporter
public void appendErrors(ErrorWriter errorWriter) {
errorWriter.add("line number", String.valueOf(this.parser.getLineNumber()));
}
@Override // com.thoughtworks.xstream.io.HierarchicalStreamReader
public void close() {
try {
this.reader.close();
} catch (IOException e) {
throw new StreamException(e);
}
}
protected XmlPullParser createParser() {
Class cls;
try {
if (class$org$xmlpull$v1$XmlPullParser == null) {
cls = class$("org.xmlpull.v1.XmlPullParser");
class$org$xmlpull$v1$XmlPullParser = cls;
} else {
cls = class$org$xmlpull$v1$XmlPullParser;
}
return (XmlPullParser) Class.forName("org.xmlpull.mxp1.MXParser", true, cls.getClassLoader()).newInstance();
} catch (ClassNotFoundException | IllegalAccessException | InstantiationException e) {
throw new StreamException("Cannot create Xpp3 parser instance.", e);
}
}
@Override // com.thoughtworks.xstream.io.HierarchicalStreamReader
public String getAttribute(String str) {
return this.parser.getAttributeValue(null, encodeAttribute(str));
}
@Override // com.thoughtworks.xstream.io.HierarchicalStreamReader
public int getAttributeCount() {
return this.parser.getAttributeCount();
}
@Override // com.thoughtworks.xstream.io.HierarchicalStreamReader
public String getAttributeName(int i) {
return decodeAttribute(this.parser.getAttributeName(i));
}
@Override // com.thoughtworks.xstream.io.xml.AbstractPullReader
protected String pullElementName() {
return this.parser.getName();
}
@Override // com.thoughtworks.xstream.io.xml.AbstractPullReader
protected int pullNextEvent() {
try {
int next = this.parser.next();
if (next != 0) {
if (next != 1) {
if (next != 2) {
if (next != 3) {
if (next != 4) {
return next != 9 ? 0 : 4;
}
return 3;
}
}
}
return 2;
}
return 1;
} catch (IOException e) {
throw new StreamException(e);
} catch (XmlPullParserException e2) {
throw new StreamException(e2);
}
}
@Override // com.thoughtworks.xstream.io.xml.AbstractPullReader
protected String pullText() {
return this.parser.getText();
}
public XppReader(Reader reader, XmlPullParser xmlPullParser, NameCoder nameCoder) {
super(nameCoder);
this.parser = xmlPullParser;
this.reader = reader;
try {
xmlPullParser.setInput(this.reader);
moveDown();
} catch (XmlPullParserException e) {
throw new StreamException(e);
}
}
@Override // com.thoughtworks.xstream.io.HierarchicalStreamReader
public String getAttribute(int i) {
return this.parser.getAttributeValue(i);
}
public XppReader(Reader reader) {
this(reader, new XmlFriendlyReplacer());
}
public XppReader(Reader reader, XmlFriendlyReplacer xmlFriendlyReplacer) {
super(xmlFriendlyReplacer);
try {
this.parser = createParser();
this.reader = reader;
this.parser.setInput(this.reader);
moveDown();
} catch (XmlPullParserException e) {
throw new StreamException(e);
}
}
}