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

de.javakaffee.kryoserializers.wicket.MiniMapSerializer Maven / Gradle / Ivy

Go to download

Additional kryo (http://kryo.googlecode.com) serializers for standard jdk types (e.g. currency, jdk proxies) and some for external libs (e.g. joda time, cglib proxies, wicket).

There is a newer version: 0.45
Show newest version
/*
 * Copyright 2010 Martin Grotzke
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 */
package de.javakaffee.kryoserializers.wicket;

import static com.esotericsoftware.minlog.Log.TRACE;
import static com.esotericsoftware.minlog.Log.trace;

import java.lang.reflect.Field;
import java.util.Map.Entry;

import org.apache.wicket.util.collections.MiniMap;

import com.esotericsoftware.kryo.Kryo;
import com.esotericsoftware.kryo.Serializer;
import com.esotericsoftware.kryo.io.Input;
import com.esotericsoftware.kryo.io.Output;

/**
 * A format for wicket's {@link MiniMap}.
 * 
 * @author Martin Grotzke
 */
public class MiniMapSerializer extends Serializer> {
    
    /* To be correct we need to know the size of the internal array, otherwise
     * we might create a too small MiniMap on deserilization
     */
    private static final Field KEYS_FIELD;
    
    static {
        try {
            KEYS_FIELD = MiniMap.class.getDeclaredField( "keys" );
            KEYS_FIELD.setAccessible( true );
        } catch ( final Exception e ) {
            throw new RuntimeException( "The MiniMap seems to have changed, could not access expected field.", e );
        }
    }

    private int getMaxEntries( final MiniMap map ) {
        try {
            return ( (Object[])KEYS_FIELD.get( map ) ).length;
        } catch ( final Exception e ) {
            throw new RuntimeException( "Could not access keys field.", e );
        }
    }

    @Override
    public void write(final Kryo kryo, final Output output, final MiniMap map) {
        output.writeInt(getMaxEntries( map ), true);
        output.writeInt( map.size(), true);

        for (final Entry entry : map.entrySet()) {
            kryo.writeClassAndObject(output, entry.getKey());
            kryo.writeClassAndObject(output, entry.getValue());
        }

        if ( TRACE ) trace( "kryo", "Wrote map: " + map );
    }

    @Override
    public MiniMap read(final Kryo kryo, final Input input, final Class> type) {
        final int maxEntries = input.readInt( true );
        final MiniMap result = new MiniMap( maxEntries );
        final int size = input.readInt( true );
        for ( int i = 0; i < size; i++ ) {
            final Object key = kryo.readClassAndObject( input );
            final Object value = kryo.readClassAndObject( input );
            result.put( key, value );
        }
        return result;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy