org.wildfly.clustering.el.expressly.MethodExpressionImplMarshaller Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wildfly-clustering-el-expressly Show documentation
Show all versions of wildfly-clustering-el-expressly Show documentation
Marshalling optimizations for the Eclipse Expressly implementation of the Jakarta Expression Language API.
/*
* Copyright The WildFly Authors
* SPDX-License-Identifier: Apache-2.0
*/
package org.wildfly.clustering.el.expressly;
import java.io.IOException;
import java.lang.reflect.Field;
import java.security.PrivilegedAction;
import java.util.LinkedList;
import java.util.List;
import org.glassfish.expressly.MethodExpressionImpl;
import org.infinispan.protostream.descriptors.WireType;
import org.wildfly.clustering.marshalling.protostream.ProtoStreamMarshaller;
import org.wildfly.clustering.marshalling.protostream.ProtoStreamReader;
import org.wildfly.clustering.marshalling.protostream.ProtoStreamWriter;
import org.wildfly.clustering.marshalling.protostream.SimpleObjectOutput;
import org.wildfly.security.manager.WildFlySecurityManager;
import jakarta.el.FunctionMapper;
import jakarta.el.VariableMapper;
/**
* {@link ProtoStreamMarshaller} for a {@link MethodExpressionImpl}.
* @author Paul Ferraro
*/
public class MethodExpressionImplMarshaller implements ProtoStreamMarshaller {
private static final int EXPRESSION_INDEX = 1;
private static final int EXPECTED_TYPE_INDEX = 2;
private static final int FUNCTION_MAPPER_INDEX = 3;
private static final int VARIABLE_MAPPER_INDEX = 4;
private static final int PARAMETER_TYPE_INDEX = 5;
private static final Field EXPECTED_TYPE_FIELD = getField(Class.class);
private static final Field PARAMETER_TYPES_FIELD = getField(Class[].class);
private static Field getField(Class> targetType) {
return WildFlySecurityManager.doUnchecked(new PrivilegedAction() {
@Override
public Field run() {
for (Field field : MethodExpressionImpl.class.getDeclaredFields()) {
if (field.getType() == targetType) {
field.setAccessible(true);
return field;
}
}
throw new IllegalStateException();
}
});
}
@Override
public Class extends MethodExpressionImpl> getJavaClass() {
return MethodExpressionImpl.class;
}
@Override
public MethodExpressionImpl readFrom(ProtoStreamReader reader) throws IOException {
String expression = null;
Class> expectedType = null;
FunctionMapper functionMapper = null;
VariableMapper variableMapper = null;
List> parameterTypes = new LinkedList<>();
while (!reader.isAtEnd()) {
int tag = reader.readTag();
switch (WireType.getTagFieldNumber(tag)) {
case EXPRESSION_INDEX:
expression = reader.readString();
break;
case EXPECTED_TYPE_INDEX:
expectedType = reader.readAny(Class.class);
break;
case FUNCTION_MAPPER_INDEX:
functionMapper = reader.readAny(FunctionMapper.class);
break;
case VARIABLE_MAPPER_INDEX:
variableMapper = reader.readAny(VariableMapper.class);
break;
case PARAMETER_TYPE_INDEX:
parameterTypes.add(reader.readAny(Class.class));
break;
default:
reader.skipField(tag);
}
}
return new MethodExpressionImpl(expression, null, functionMapper, variableMapper, expectedType, parameterTypes.toArray(new Class>[0]));
}
@Override
public void writeTo(ProtoStreamWriter writer, MethodExpressionImpl value) throws IOException {
String[] strings = new String[2];
Object[] objects = new Object[3];
value.writeExternal(new SimpleObjectOutput.Builder().with(strings).with(objects).build());
String expression = value.getExpressionString();
if (expression != null) {
writer.writeString(EXPRESSION_INDEX, expression);
}
Class> expectedType = getValue(value, EXPECTED_TYPE_FIELD, Class.class);
if (expectedType != null) {
writer.writeAny(EXPECTED_TYPE_INDEX, expectedType);
}
Class>[] parameterTypes = getValue(value, PARAMETER_TYPES_FIELD, Class[].class);
for (Class> parameterType : parameterTypes) {
writer.writeAny(PARAMETER_TYPE_INDEX, parameterType);
}
Object functionMapper = objects[1];
if (functionMapper != null) {
writer.writeAny(FUNCTION_MAPPER_INDEX, functionMapper);
}
Object variableMapper = objects[2];
if (variableMapper != null) {
writer.writeAny(VARIABLE_MAPPER_INDEX, variableMapper);
}
}
private static T getValue(MethodExpressionImpl value, Field field, Class targetClass) {
return WildFlySecurityManager.doUnchecked(new PrivilegedAction() {
@Override
public T run() {
try {
return targetClass.cast(field.get(value));
} catch (IllegalAccessException e) {
throw new IllegalStateException(e);
}
}
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy