jimu-decompiled/sources/com/thoughtworks/xstream/converters/enums/EnumSetConverter.java
2025-05-13 19:24:51 +02:00

72 lines
3.0 KiB
Java

package com.thoughtworks.xstream.converters.enums;
import com.thoughtworks.xstream.converters.ConversionException;
import com.thoughtworks.xstream.converters.Converter;
import com.thoughtworks.xstream.converters.MarshallingContext;
import com.thoughtworks.xstream.converters.UnmarshallingContext;
import com.thoughtworks.xstream.core.util.Fields;
import com.thoughtworks.xstream.io.HierarchicalStreamReader;
import com.thoughtworks.xstream.io.HierarchicalStreamWriter;
import com.thoughtworks.xstream.mapper.Mapper;
import java.lang.reflect.Field;
import java.util.EnumSet;
import java.util.Iterator;
/* loaded from: classes.dex */
public class EnumSetConverter implements Converter {
private static final Field typeField = Fields.locate(EnumSet.class, Class.class, false);
private final Mapper mapper;
public EnumSetConverter(Mapper mapper) {
this.mapper = mapper;
}
private String joinEnumValues(EnumSet enumSet) {
StringBuffer stringBuffer = new StringBuffer();
Iterator it = enumSet.iterator();
boolean z = false;
while (it.hasNext()) {
Enum r2 = (Enum) it.next();
if (z) {
stringBuffer.append(',');
} else {
z = true;
}
stringBuffer.append(r2.name());
}
return stringBuffer.toString();
}
@Override // com.thoughtworks.xstream.converters.ConverterMatcher
public boolean canConvert(Class cls) {
return (typeField == null || cls == null || !EnumSet.class.isAssignableFrom(cls)) ? false : true;
}
@Override // com.thoughtworks.xstream.converters.Converter
public void marshal(Object obj, HierarchicalStreamWriter hierarchicalStreamWriter, MarshallingContext marshallingContext) {
EnumSet enumSet = (EnumSet) obj;
Class cls = (Class) Fields.read(typeField, enumSet);
String aliasForSystemAttribute = this.mapper.aliasForSystemAttribute("enum-type");
if (aliasForSystemAttribute != null) {
hierarchicalStreamWriter.addAttribute(aliasForSystemAttribute, this.mapper.serializedClass(cls));
}
hierarchicalStreamWriter.setValue(joinEnumValues(enumSet));
}
@Override // com.thoughtworks.xstream.converters.Converter
public Object unmarshal(HierarchicalStreamReader hierarchicalStreamReader, UnmarshallingContext unmarshallingContext) {
String aliasForSystemAttribute = this.mapper.aliasForSystemAttribute("enum-type");
if (aliasForSystemAttribute == null) {
throw new ConversionException("No EnumType specified for EnumSet");
}
Class realClass = this.mapper.realClass(hierarchicalStreamReader.getAttribute(aliasForSystemAttribute));
EnumSet noneOf = EnumSet.noneOf(realClass);
for (String str : hierarchicalStreamReader.getValue().split(",")) {
if (str.length() > 0) {
noneOf.add(Enum.valueOf(realClass, str));
}
}
return noneOf;
}
}