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

org.wildfly.clustering.marshalling.jboss.SimpleClassTable Maven / Gradle / Ivy

/*
 * JBoss, Home of Professional Open Source.
 * Copyright 2013, Red Hat, Inc., and individual contributors
 * as indicated by the @author tags. See the copyright.txt file in the
 * distribution for a full listing of individual contributors.
 *
 * This is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation; either version 2.1 of
 * the License, or (at your option) any later version.
 *
 * This software is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this software; if not, write to the Free
 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
 */
package org.wildfly.clustering.marshalling.jboss;

import java.io.IOException;
import java.util.Arrays;
import java.util.IdentityHashMap;
import java.util.List;
import java.util.ListIterator;
import java.util.Map;

import org.jboss.marshalling.ClassTable;
import org.jboss.marshalling.Marshaller;
import org.jboss.marshalling.Unmarshaller;
import org.wildfly.clustering.marshalling.spi.IndexSerializer;
import org.wildfly.clustering.marshalling.spi.IntSerializer;

/**
 * Simple {@link ClassTable} implementation based on an array of recognized classes.
 * @author Paul Ferraro
 */
public class SimpleClassTable implements ClassTable {

    private final List> classes;
    private final Map, Integer> indexes = new IdentityHashMap<>();
    private final IntSerializer indexSerializer;

    public SimpleClassTable(Class... classes) {
        this(Arrays.asList(classes));
    }

    public SimpleClassTable(List> classes) {
        this(IndexSerializer.select(classes.size()), classes);
    }

    private SimpleClassTable(IntSerializer indexSerializer, List> classes) {
        this.indexSerializer = indexSerializer;
        this.classes = classes;
        ListIterator> iterator = classes.listIterator();
        while (iterator.hasNext()) {
            this.indexes.putIfAbsent(iterator.next(), iterator.previousIndex());
        }
    }

    @Override
    public Writer getClassWriter(Class targetClass) {
        Integer index = this.indexes.get(targetClass);
        return (index != null) ? new ClassTableWriter(index, this.indexSerializer) : null;
    }

    @Override
    public Class readClass(Unmarshaller input) throws IOException {
        return this.classes.get(this.indexSerializer.readInt(input));
    }

    private static class ClassTableWriter implements ClassTable.Writer {
        private final int index;
        private final IntSerializer serializer;

        ClassTableWriter(int index, IntSerializer serializer) {
            this.index = index;
            this.serializer = serializer;
        }

        @Override
        public void writeClass(Marshaller marshaller, Class clazz) throws IOException {
            this.serializer.writeInt(marshaller, this.index);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy