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

it.unimi.dsi.fastutil.ints.Int2ObjectFunctions Maven / Gradle / Ivy

Go to download

fastutil extends the Java Collections Framework by providing type-specific maps, sets, lists, and queues with a small memory footprint and fast access and insertion; it provides also big (64-bit) arrays, sets and lists, sorting algorithms, fast, practical I/O classes for binary and text files, and facilities for memory mapping large files. Note that if you have both this jar and fastutil-core.jar in your dependencies, fastutil-core.jar should be excluded.

There is a newer version: 8.5.13
Show newest version
/*
	* Copyright (C) 2002-2023 Sebastiano Vigna
	*
	* 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 it.unimi.dsi.fastutil.ints;

import it.unimi.dsi.fastutil.Function;

/**
 * A class providing static methods and objects that do useful things with type-specific functions.
 *
 * @see it.unimi.dsi.fastutil.Function
 * @see java.util.Collections
 */
public final class Int2ObjectFunctions {
	private Int2ObjectFunctions() {
	}

	/**
	 * An immutable class representing an empty type-specific function.
	 *
	 * 

* This class may be useful to implement your own in case you subclass a type-specific function. */ public static class EmptyFunction extends AbstractInt2ObjectFunction implements java.io.Serializable, Cloneable { private static final long serialVersionUID = -7046029254386353129L; protected EmptyFunction() { } @Override public V get(final int k) { return (null); } @Override public V getOrDefault(final int k, final V defaultValue) { return defaultValue; } @Override public boolean containsKey(final int k) { return false; } @Override public V defaultReturnValue() { return (null); } @Override public void defaultReturnValue(final V defRetValue) { throw new UnsupportedOperationException(); } @Override public int size() { return 0; } @Override public void clear() { } @Override public Object clone() { return EMPTY_FUNCTION; } @Override public int hashCode() { return 0; } @Override public boolean equals(final Object o) { if (!(o instanceof Function)) return false; return ((Function)o).size() == 0; } @Override public String toString() { return "{}"; } private Object readResolve() { return EMPTY_FUNCTION; } } /** An empty type-specific function (immutable). It is serializable and cloneable. */ @SuppressWarnings("rawtypes") public static final EmptyFunction EMPTY_FUNCTION = new EmptyFunction(); /** * An immutable class representing a type-specific singleton function. Note that the default return * value is still settable. * *

* Note that albeit the function is immutable, its default return value may be changed. * *

* This class may be useful to implement your own in case you subclass a type-specific function. */ public static class Singleton extends AbstractInt2ObjectFunction implements java.io.Serializable, Cloneable { private static final long serialVersionUID = -7046029254386353129L; protected final int key; protected final V value; protected Singleton(final int key, final V value) { this.key = key; this.value = value; } @Override public boolean containsKey(final int k) { return ((key) == (k)); } @Override public V get(final int k) { return ((key) == (k)) ? value : defRetValue; } @Override public V getOrDefault(final int k, final V defaultValue) { return ((key) == (k)) ? value : defaultValue; } @Override public int size() { return 1; } @Override public Object clone() { return this; } } /** * Returns a type-specific immutable function containing only the specified pair. The returned * function is serializable and cloneable. * *

* Note that albeit the returned function is immutable, its default return value may be changed. * * @param key the only key of the returned function. * @param value the only value of the returned function. * @return a type-specific immutable function containing just the pair {@code <key,value>}. */ public static Int2ObjectFunction singleton(final int key, V value) { return new Singleton<>(key, value); } /** * Returns a type-specific immutable function containing only the specified pair. The returned * function is serializable and cloneable. * *

* Note that albeit the returned function is immutable, its default return value may be changed. * * @param key the only key of the returned function. * @param value the only value of the returned function. * @return a type-specific immutable function containing just the pair {@code <key,value>}. */ public static Int2ObjectFunction singleton(final Integer key, final V value) { return new Singleton<>((key).intValue(), (value)); } /** A synchronized wrapper class for functions. */ public static class SynchronizedFunction implements Int2ObjectFunction, java.io.Serializable { private static final long serialVersionUID = -7046029254386353129L; protected final Int2ObjectFunction function; protected final Object sync; protected SynchronizedFunction(final Int2ObjectFunction f, final Object sync) { if (f == null) throw new NullPointerException(); this.function = f; this.sync = sync; } protected SynchronizedFunction(final Int2ObjectFunction f) { if (f == null) throw new NullPointerException(); this.function = f; this.sync = this; } @Override public V apply(int operand) { synchronized (sync) { return function.apply(operand); } } /** * {@inheritDoc} * * @deprecated Please use the corresponding type-specific method instead. */ @Deprecated @Override public V apply(final Integer key) { synchronized (sync) { return function.apply(key); } } @Override public int size() { synchronized (sync) { return function.size(); } } @Override public V defaultReturnValue() { synchronized (sync) { return function.defaultReturnValue(); } } @Override public void defaultReturnValue(final V defRetValue) { synchronized (sync) { function.defaultReturnValue(defRetValue); } } @Override public boolean containsKey(final int k) { synchronized (sync) { return function.containsKey(k); } } @Deprecated @Override public boolean containsKey(final Object k) { synchronized (sync) { return function.containsKey(k); } } @Override public V put(final int k, final V v) { synchronized (sync) { return function.put(k, v); } } @Override public V get(final int k) { synchronized (sync) { return function.get(k); } } @Override public V getOrDefault(final int k, final V defaultValue) { synchronized (sync) { return function.getOrDefault(k, defaultValue); } } @Override public V remove(final int k) { synchronized (sync) { return function.remove(k); } } @Override public void clear() { synchronized (sync) { function.clear(); } } /** * {@inheritDoc} * * @deprecated Please use the corresponding type-specific method instead. */ @Deprecated @Override public V put(final Integer k, final V v) { synchronized (sync) { return function.put(k, v); } } /** * {@inheritDoc} * * @deprecated Please use the corresponding type-specific method instead. */ @Deprecated @Override public V get(final Object k) { synchronized (sync) { return function.get(k); } } /** * {@inheritDoc} * * @deprecated Please use the corresponding type-specific method instead. */ @Deprecated @Override public V getOrDefault(final Object k, final V defaultValue) { synchronized (sync) { return function.getOrDefault(k, defaultValue); } } /** * {@inheritDoc} * * @deprecated Please use the corresponding type-specific method instead. */ @Deprecated @Override public V remove(final Object k) { synchronized (sync) { return function.remove(k); } } @Override public int hashCode() { synchronized (sync) { return function.hashCode(); } } @Override public boolean equals(final Object o) { if (o == this) return true; synchronized (sync) { return function.equals(o); } } @Override public String toString() { synchronized (sync) { return function.toString(); } } private void writeObject(java.io.ObjectOutputStream s) throws java.io.IOException { synchronized (sync) { s.defaultWriteObject(); } } } /** * Returns a synchronized type-specific function backed by the given type-specific function. * * @param f the function to be wrapped in a synchronized function. * @return a synchronized view of the specified function. * @see java.util.Collections#synchronizedMap(java.util.Map) */ public static Int2ObjectFunction synchronize(final Int2ObjectFunction f) { return new SynchronizedFunction<>(f); } /** * Returns a synchronized type-specific function backed by the given type-specific function, using * an assigned object to synchronize. * * @param f the function to be wrapped in a synchronized function. * @param sync an object that will be used to synchronize the access to the function. * @return a synchronized view of the specified function. * @see java.util.Collections#synchronizedMap(java.util.Map) */ public static Int2ObjectFunction synchronize(final Int2ObjectFunction f, final Object sync) { return new SynchronizedFunction<>(f, sync); } /** An unmodifiable wrapper class for functions. */ public static class UnmodifiableFunction extends AbstractInt2ObjectFunction implements java.io.Serializable { private static final long serialVersionUID = -7046029254386353129L; protected final Int2ObjectFunction function; protected UnmodifiableFunction(final Int2ObjectFunction f) { if (f == null) throw new NullPointerException(); this.function = f; } @Override public int size() { return function.size(); } @Override public V defaultReturnValue() { return function.defaultReturnValue(); } @Override public void defaultReturnValue(final V defRetValue) { throw new UnsupportedOperationException(); } @Override public boolean containsKey(final int k) { return function.containsKey(k); } @Override public V put(final int k, final V v) { throw new UnsupportedOperationException(); } @Override public V get(final int k) { return function.get(k); } @Override @SuppressWarnings("unchecked") public V getOrDefault(final int k, final V defaultValue) { return ((Int2ObjectFunction)function).getOrDefault(k, defaultValue); } @Override public V remove(final int k) { throw new UnsupportedOperationException(); } @Override public void clear() { throw new UnsupportedOperationException(); } /** * {@inheritDoc} * * @deprecated Please use the corresponding type-specific method instead. */ @Deprecated @Override public V put(final Integer k, final V v) { throw new UnsupportedOperationException(); } /** * {@inheritDoc} * * @deprecated Please use the corresponding type-specific method instead. */ @Deprecated @Override public V get(final Object k) { return function.get(k); } /** * {@inheritDoc} * * @deprecated Please use the corresponding type-specific method instead. */ @Deprecated @Override @SuppressWarnings("unchecked") public V getOrDefault(final Object k, final V defaultValue) { return ((Int2ObjectFunction)function).getOrDefault(k, defaultValue); } /** * {@inheritDoc} * * @deprecated Please use the corresponding type-specific method instead. */ @Deprecated @Override public V remove(final Object k) { throw new UnsupportedOperationException(); } @Override public int hashCode() { return function.hashCode(); } @Override public boolean equals(Object o) { return o == this || function.equals(o); } @Override public String toString() { return function.toString(); } } /** * Returns an unmodifiable type-specific function backed by the given type-specific function. * * @param f the function to be wrapped in an unmodifiable function. * @return an unmodifiable view of the specified function. * @see java.util.Collections#unmodifiableMap(java.util.Map) */ public static Int2ObjectFunction unmodifiable(final Int2ObjectFunction f) { return new UnmodifiableFunction<>(f); } /** An adapter for mapping generic total functions to partial primitive functions. */ public static class PrimitiveFunction implements Int2ObjectFunction { protected final java.util.function.Function function; protected PrimitiveFunction(java.util.function.Function function) { this.function = function; } @Override public boolean containsKey(int key) { return function.apply(Integer.valueOf(key)) != null; } @Deprecated @Override public boolean containsKey(Object key) { if (key == null) return false; return function.apply((Integer)(key)) != null; } @Override public V get(int key) { V v = function.apply(Integer.valueOf(key)); if (v == null) return null; return (v); } @Override public V getOrDefault(int key, V defaultValue) { V v = function.apply(Integer.valueOf(key)); if (v == null) return defaultValue; return (v); } @Deprecated @Override public V get(Object key) { if (key == null) return null; return function.apply((Integer)key); } @Deprecated @Override public V getOrDefault(Object key, V defaultValue) { if (key == null) return defaultValue; final V v; return (v = function.apply((Integer)key)) == null ? defaultValue : v; } @Deprecated @Override public V put(final Integer key, final V value) { throw new UnsupportedOperationException(); } } /** * Returns a (partial) type-specific function based on the given total generic function. *

* The returned function contains all keys which are not mapped to {@code null}. If the function * already is a primitive function, it is returned without changes. *

* Warning: If the given function is a “widened” primitive function * (e.g. an {@code Int2IntFunction} given to {@code Short2ShortFunctions}), it still is wrapped into * a proxy, decreasing performance. * * @param f the function to be converted to a type-specific function. * @return a primitive view of the specified function. * @throws NullPointerException if {@code f} is null. * @see PrimitiveFunction * @since 8.1.0 */ @SuppressWarnings("unchecked") public static Int2ObjectFunction primitive(final java.util.function.Function f) { java.util.Objects.requireNonNull(f); if (f instanceof Int2ObjectFunction) return (Int2ObjectFunction)f; if (f instanceof java.util.function.IntFunction) return ((java.util.function.IntFunction)f)::apply; return new PrimitiveFunction<>(f); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy