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

com.gs.collections.impl.multimap.bag.ImmutableBagMultimapImpl Maven / Gradle / Ivy

Go to download

GS Collections is a collections framework for Java. It has JDK-compatible List, Set and Map implementations with a rich API and set of utility classes that work with any JDK compatible Collections, Arrays, Maps or Strings. The iteration protocol was inspired by the Smalltalk collection framework.

There is a newer version: 7.0.3
Show newest version
/*
 * Copyright 2015 Goldman Sachs.
 *
 * 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 com.gs.collections.impl.multimap.bag;

import java.io.Externalizable;
import java.io.IOException;
import java.io.ObjectInput;
import java.io.ObjectOutput;
import java.io.Serializable;

import com.gs.collections.api.bag.ImmutableBag;
import com.gs.collections.api.bag.MutableBag;
import com.gs.collections.api.block.function.Function;
import com.gs.collections.api.block.function.Function2;
import com.gs.collections.api.block.predicate.Predicate2;
import com.gs.collections.api.map.ImmutableMap;
import com.gs.collections.api.map.MutableMap;
import com.gs.collections.api.multimap.MutableMultimap;
import com.gs.collections.api.multimap.bag.ImmutableBagMultimap;
import com.gs.collections.api.multimap.bag.MutableBagMultimap;
import com.gs.collections.api.tuple.Pair;
import com.gs.collections.impl.block.procedure.checked.CheckedObjectIntProcedure;
import com.gs.collections.impl.block.procedure.checked.CheckedProcedure2;
import com.gs.collections.impl.factory.Bags;
import com.gs.collections.impl.factory.Maps;
import com.gs.collections.impl.multimap.AbstractImmutableMultimap;
import com.gs.collections.impl.utility.Iterate;

/**
 * The default ImmutableBagMultimap implementation.
 *
 * @since 1.0
 */
public final class ImmutableBagMultimapImpl
        extends AbstractImmutableMultimap>
        implements ImmutableBagMultimap, Serializable
{
    private static final long serialVersionUID = 1L;

    public ImmutableBagMultimapImpl(MutableMap> map)
    {
        super(map);
    }

    public ImmutableBagMultimapImpl(ImmutableMap> map)
    {
        super(map);
    }

    @Override
    protected ImmutableBag createCollection()
    {
        return Bags.immutable.empty();
    }

    public ImmutableBagMultimap newEmpty()
    {
        return new ImmutableBagMultimapImpl(Maps.immutable.>of());
    }

    public MutableBagMultimap toMutable()
    {
        return new HashBagMultimap(this);
    }

    @Override
    public ImmutableBagMultimap toImmutable()
    {
        return this;
    }

    private Object writeReplace()
    {
        return new ImmutableBagMultimapSerializationProxy(this.map);
    }

    private static class ImmutableBagMultimapSerializationProxy
            implements Externalizable
    {
        private static final long serialVersionUID = 1L;

        private ImmutableMap> map;
        private MutableMultimap multimap;

        @SuppressWarnings("UnusedDeclaration")
        public ImmutableBagMultimapSerializationProxy()
        {
            // For Externalizable use only
        }

        private ImmutableBagMultimapSerializationProxy(ImmutableMap> map)
        {
            this.map = map;
        }

        protected Object readResolve()
        {
            return this.multimap.toImmutable();
        }

        public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
        {
            this.multimap = new HashBagMultimap();
            int keyCount = in.readInt();
            for (int i = 0; i < keyCount; i++)
            {
                K key = (K) in.readObject();
                int valuesSize = in.readInt();
                MutableBag bag = Bags.mutable.empty();
                for (int j = 0; j < valuesSize; j++)
                {
                    V value = (V) in.readObject();
                    int count = in.readInt();

                    bag.addOccurrences(value, count);
                }
                this.multimap.putAll(key, bag);
            }
        }

        public void writeExternal(final ObjectOutput out) throws IOException
        {
            int keysCount = this.map.size();
            out.writeInt(keysCount);
            this.map.forEachKeyValue(new CheckedProcedure2>()
            {
                public void safeValue(K key, ImmutableBag bag) throws IOException
                {
                    out.writeObject(key);
                    out.writeInt(bag.sizeDistinct());
                    bag.forEachWithOccurrences(new CheckedObjectIntProcedure()
                    {
                        public void safeValue(V value, int count) throws IOException
                        {
                            out.writeObject(value);
                            out.writeInt(count);
                        }
                    });
                }
            });
        }
    }

    @Override
    public ImmutableBagMultimap newWith(K key, V value)
    {
        return (ImmutableBagMultimap) super.newWith(key, value);
    }

    @Override
    public ImmutableBagMultimap newWithout(Object key, Object value)
    {
        return (ImmutableBagMultimap) super.newWithout(key, value);
    }

    @Override
    public ImmutableBagMultimap newWithAll(K key, Iterable values)
    {
        return (ImmutableBagMultimap) super.newWithAll(key, values);
    }

    @Override
    public ImmutableBagMultimap newWithoutAll(Object key)
    {
        return (ImmutableBagMultimap) super.newWithoutAll(key);
    }

    public ImmutableBagMultimap flip()
    {
        return Iterate.flip(this).toImmutable();
    }

    public ImmutableBagMultimap selectKeysValues(Predicate2 predicate)
    {
        return this.selectKeysValues(predicate, HashBagMultimap.newMultimap()).toImmutable();
    }

    public ImmutableBagMultimap rejectKeysValues(Predicate2 predicate)
    {
        return this.rejectKeysValues(predicate, HashBagMultimap.newMultimap()).toImmutable();
    }

    public ImmutableBagMultimap selectKeysMultiValues(Predicate2> predicate)
    {
        return this.selectKeysMultiValues(predicate, HashBagMultimap.newMultimap()).toImmutable();
    }

    public ImmutableBagMultimap rejectKeysMultiValues(Predicate2> predicate)
    {
        return this.rejectKeysMultiValues(predicate, HashBagMultimap.newMultimap()).toImmutable();
    }

    public  ImmutableBagMultimap collectKeysValues(Function2> function)
    {
        return this.collectKeysValues(function, HashBagMultimap.newMultimap()).toImmutable();
    }

    public  ImmutableBagMultimap collectValues(Function function)
    {
        return this.collectValues(function, HashBagMultimap.newMultimap()).toImmutable();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy