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

org.slingerxv.limitart.collections.AtomicLongMap Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2016-present The Limitart Project
 *
 * 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 org.slingerxv.limitart.collections;

import java.io.Serializable;
import java.util.Collection;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.atomic.AtomicLong;
import java.util.function.LongBinaryOperator;
import java.util.function.LongUnaryOperator;

/**
 * 线程安全计数Map
 * 
 * @author hank
 *
 * @param 
 */
public final class AtomicLongMap implements Map, Serializable {
	private static final long serialVersionUID = 1L;
	private final ConcurrentHashMap map = new ConcurrentHashMap<>();;

	public long getCount(K key) {
		return map.getOrDefault(key, 0L);
	}

	public long putCount(K key, long newValue) {
		return getAndUpdate(key, x -> newValue);
	}

	public long sum() {
		return map.values().stream().mapToLong(Long::longValue).sum();
	}

	public long incrementAndGet(K key) {
		return addAndGet(key, 1);
	}

	public long decrementAndGet(K key) {
		return addAndGet(key, -1);
	}

	public long addAndGet(K key, long delta) {
		return accumulateAndGet(key, delta, Long::sum);
	}

	public long getAndIncrement(K key) {
		return getAndAdd(key, 1);
	}

	public long getAndDecrement(K key) {
		return getAndAdd(key, -1);
	}

	public long getAndAdd(K key, long delta) {
		return getAndAccumulate(key, delta, Long::sum);
	}

	public long updateAndGet(K key, LongUnaryOperator updaterFunction) {
		return map.compute(key, (k, value) -> updaterFunction.applyAsLong((value == null) ? 0L : value.longValue()));
	}

	private long getAndUpdate(K key, LongUnaryOperator updaterFunction) {
		AtomicLong holder = new AtomicLong();
		map.compute(key, (k, value) -> {
			int oldValue = (value == null) ? 0 : value.intValue();
			holder.set(oldValue);
			return updaterFunction.applyAsLong(oldValue);
		});
		return holder.get();
	}

	private long accumulateAndGet(K key, long x, LongBinaryOperator accumulatorFunction) {
		return updateAndGet(key, oldValue -> accumulatorFunction.applyAsLong(oldValue, x));
	}

	private long getAndAccumulate(K key, long x, LongBinaryOperator accumulatorFunction) {
		return getAndUpdate(key, oldValue -> accumulatorFunction.applyAsLong(oldValue, x));
	}

	@Override
	public int size() {
		return map.size();
	}

	@Override
	public boolean isEmpty() {
		return map.isEmpty();
	}

	@Override
	public boolean containsKey(Object key) {
		return map.containsKey(key);
	}

	@Override
	public boolean containsValue(Object value) {
		return map.containsValue(value);
	}

	@Override
	public Long get(Object key) {
		return map.get(key);
	}

	@Override
	public Long put(K key, Long value) {
		return map.put(key, value);
	}

	@Override
	public Long remove(Object key) {
		return map.remove(key);
	}

	@Override
	public void putAll(Map m) {
		map.putAll(m);
	}

	@Override
	public void clear() {
		map.clear();
	}

	@Override
	public Set keySet() {
		return map.keySet();
	}

	@Override
	public Collection values() {
		return map.values();
	}

	@Override
	public Set> entrySet() {
		return map.entrySet();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy