All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.wildfly.clustering.el.expressly.lang.VariableMapperImplMarshaller Maven / Gradle / Ivy

Go to download

Marshalling optimizations for the Eclipse Expressly implementation of the Jakarta Expression Language API.

There is a newer version: 34.0.1.Final
Show newest version
/*
 * Copyright The WildFly Authors
 * SPDX-License-Identifier: Apache-2.0
 */

package org.wildfly.clustering.el.expressly.lang;

import java.io.IOException;
import java.util.Iterator;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;

import org.glassfish.expressly.lang.VariableMapperImpl;
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 jakarta.el.ValueExpression;

/**
 * @author Paul Ferraro
 */
public class VariableMapperImplMarshaller implements ProtoStreamMarshaller {

    private static final int VARIABLE_INDEX = 1;
    private static final int EXPRESSION_INDEX = 2;

    @Override
    public Class getJavaClass() {
        return VariableMapperImpl.class;
    }

    @Override
    public VariableMapperImpl readFrom(ProtoStreamReader reader) throws IOException {
        List variables = new LinkedList<>();
        List expressions = new LinkedList<>();
        while (!reader.isAtEnd()) {
            int tag = reader.readTag();
            switch (WireType.getTagFieldNumber(tag)) {
                case VARIABLE_INDEX:
                    variables.add(reader.readString());
                    break;
                case EXPRESSION_INDEX:
                    expressions.add(reader.readAny(ValueExpression.class));
                    break;
                default:
                    reader.skipField(tag);
            }
        }
        VariableMapperImpl mapper = new VariableMapperImpl();
        Iterator variableIterator = variables.iterator();
        Iterator expressionIterator = expressions.iterator();
        while (variableIterator.hasNext() && expressionIterator.hasNext()) {
            String variable = variableIterator.next();
            ValueExpression expression = expressionIterator.next();
            mapper.setVariable(variable, expression);
        }
        return mapper;
    }

    @Override
    public void writeTo(ProtoStreamWriter writer, VariableMapperImpl value) throws IOException {
        Object[] objects = new Object[1];
        value.writeExternal(new SimpleObjectOutput.Builder().with(objects).build());

        @SuppressWarnings("unchecked")
        Map expressions = (Map) objects[0];
        if (expressions != null) {
            for (Map.Entry entry : expressions.entrySet()) {
                writer.writeString(VARIABLE_INDEX, entry.getKey());
                writer.writeAny(EXPRESSION_INDEX, entry.getValue());
            }
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy