
org.eclipse.collections.impl.multimap.bag.ImmutableBagMultimapImpl Maven / Gradle / Ivy
/*
* Copyright (c) 2016 Goldman Sachs.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* and Eclipse Distribution License v. 1.0 which accompany this distribution.
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*/
package org.eclipse.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 org.eclipse.collections.api.bag.ImmutableBag;
import org.eclipse.collections.api.bag.MutableBag;
import org.eclipse.collections.api.block.function.Function;
import org.eclipse.collections.api.block.function.Function2;
import org.eclipse.collections.api.block.predicate.Predicate2;
import org.eclipse.collections.api.map.ImmutableMap;
import org.eclipse.collections.api.map.MutableMap;
import org.eclipse.collections.api.multimap.MutableMultimap;
import org.eclipse.collections.api.multimap.bag.ImmutableBagMultimap;
import org.eclipse.collections.api.multimap.bag.MutableBagMultimap;
import org.eclipse.collections.api.tuple.Pair;
import org.eclipse.collections.impl.block.procedure.checked.CheckedObjectIntProcedure;
import org.eclipse.collections.impl.block.procedure.checked.CheckedProcedure2;
import org.eclipse.collections.impl.factory.Bags;
import org.eclipse.collections.impl.factory.Maps;
import org.eclipse.collections.impl.multimap.AbstractImmutableMultimap;
import org.eclipse.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();
}
@Override
public ImmutableBagMultimap newEmpty()
{
return new ImmutableBagMultimapImpl<>(Maps.immutable.of());
}
@Override
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();
}
@Override
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);
}
}
@Override
public void writeExternal(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 extends V> values)
{
return (ImmutableBagMultimap) super.newWithAll(key, values);
}
@Override
public ImmutableBagMultimap newWithoutAll(Object key)
{
return (ImmutableBagMultimap) super.newWithoutAll(key);
}
@Override
public ImmutableBagMultimap flip()
{
return Iterate.flip(this).toImmutable();
}
@Override
public ImmutableBagMultimap selectKeysValues(Predicate2 super K, ? super V> predicate)
{
return this.selectKeysValues(predicate, HashBagMultimap.newMultimap()).toImmutable();
}
@Override
public ImmutableBagMultimap rejectKeysValues(Predicate2 super K, ? super V> predicate)
{
return this.rejectKeysValues(predicate, HashBagMultimap.newMultimap()).toImmutable();
}
@Override
public ImmutableBagMultimap selectKeysMultiValues(Predicate2 super K, ? super Iterable> predicate)
{
return this.selectKeysMultiValues(predicate, HashBagMultimap.newMultimap()).toImmutable();
}
@Override
public ImmutableBagMultimap rejectKeysMultiValues(Predicate2 super K, ? super Iterable> predicate)
{
return this.rejectKeysMultiValues(predicate, HashBagMultimap.newMultimap()).toImmutable();
}
@Override
public ImmutableBagMultimap collectKeysValues(Function2 super K, ? super V, Pair> function)
{
return this.collectKeysValues(function, HashBagMultimap.newMultimap()).toImmutable();
}
@Override
public ImmutableBagMultimap collectValues(Function super V, ? extends V2> function)
{
return this.collectValues(function, HashBagMultimap.newMultimap()).toImmutable();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy