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

com.hazelcast.aggregation.impl.CanonicalizingHashSet Maven / Gradle / Ivy

There is a newer version: 5.4.0
Show newest version
/*
 * Copyright (c) 2008-2020, Hazelcast, Inc. All Rights Reserved.
 *
 * 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.hazelcast.aggregation.impl;

import com.hazelcast.nio.ObjectDataInput;
import com.hazelcast.nio.ObjectDataOutput;
import com.hazelcast.nio.serialization.IdentifiedDataSerializable;
import com.hazelcast.query.impl.Comparables;
import com.hazelcast.internal.util.MapUtil;

import java.io.IOException;
import java.util.Collection;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Set;

/**
 * A read-only hash set that canonicalizes its mixed-type numeric elements for
 * lookup operations while still preserving the original element values.
 * 

* That canonicalization logic is required for the consistency with the * mixed-type numeric equality logic used inside query engine. * * @param the element type. */ public final class CanonicalizingHashSet implements Set, IdentifiedDataSerializable { private HashMap map; /** * Constructs a new empty instance of canonicalizing hash set. */ public CanonicalizingHashSet() { this.map = new HashMap(); } /** * Constructs a new empty instance of canonicalizing hash set with the given * expected capacity. * @param capacity the expected capacity */ public CanonicalizingHashSet(int capacity) { this.map = new HashMap(capacity); } /** * Adds all elements of the given canonicalizing hash set into this * canonicalizing hash set. * * @param set the set to add elements of. */ void addAllInternal(CanonicalizingHashSet set) { // elements are already canonicalized map.putAll(set.map); } /** * Adds the given element to this canonicalizing hash set. * * @param e the element to add. */ void addInternal(E e) { map.put(canonicalize(e), e); } @Override public void writeData(ObjectDataOutput out) throws IOException { out.writeInt(size()); for (Object element : this) { out.writeObject(element); } } @Override public void readData(ObjectDataInput in) throws IOException { int count = in.readInt(); this.map = new HashMap(MapUtil.calculateInitialCapacity(count)); for (int i = 0; i < count; i++) { E element = in.readObject(); addInternal(element); } } @Override public int getFactoryId() { return AggregatorDataSerializerHook.F_ID; } @Override public int getClassId() { return AggregatorDataSerializerHook.CANONICALIZING_SET; } @Override public int size() { return map.size(); } @Override public boolean isEmpty() { return map.isEmpty(); } @Override public boolean contains(Object o) { return map.containsKey(canonicalize(o)); } @Override public Iterator iterator() { return map.values().iterator(); } @Override public Object[] toArray() { return map.values().toArray(); } @SuppressWarnings({"NullableProblems", "SuspiciousToArrayCall"}) @Override public T[] toArray(T[] a) { return map.values().toArray(a); } @Override public boolean add(E e) { throw new UnsupportedOperationException(); } @Override public boolean remove(Object o) { throw new UnsupportedOperationException(); } @Override public boolean containsAll(Collection c) { for (Object element : c) { if (!contains(element)) { return false; } } return true; } @SuppressWarnings("NullableProblems") @Override public boolean addAll(Collection c) { throw new UnsupportedOperationException(); } @SuppressWarnings("NullableProblems") @Override public boolean retainAll(Collection c) { throw new UnsupportedOperationException(); } @SuppressWarnings("NullableProblems") @Override public boolean removeAll(Collection c) { throw new UnsupportedOperationException(); } @Override public void clear() { throw new UnsupportedOperationException(); } @Override public int hashCode() { return map.keySet().hashCode(); } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (!(obj instanceof Set)) { return false; } Set that = (Set) obj; return containsAll(that); } @Override public String toString() { return map.values().toString(); } private static Object canonicalize(Object value) { if (value instanceof Comparable) { return Comparables.canonicalizeForHashLookup((Comparable) value); } return value; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy