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

craterdog.collections.Map Maven / Gradle / Ivy

There is a newer version: 3.18
Show newest version
/************************************************************************
 * Copyright (c) Crater Dog Technologies(TM).  All Rights Reserved.     *
 ************************************************************************
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.        *
 *                                                                      *
 * This code is free software; you can redistribute it and/or modify it *
 * under the terms of The MIT License (MIT), as published by the Open   *
 * Source Initiative. (See http://opensource.org/licenses/MIT)          *
 ************************************************************************/
package craterdog.collections;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import craterdog.collections.abstractions.Collection;
import craterdog.core.Iterator;
import craterdog.core.Manipulator;
import craterdog.collections.abstractions.SortableCollection;
import craterdog.collections.interfaces.Associative;
import craterdog.collections.primitives.HashTable;
import craterdog.collections.primitives.Link;
import org.slf4j.ext.XLogger;
import org.slf4j.ext.XLoggerFactory;


/**
 * This collection class implements a sortable collection containing key-value associations.  The
 * implementation is optimized for both inserting new associations and looking up values based on
 * their key.  The implementation also dynamically scales up and down the number of buckets as the
 * number of associations changes over time.
 *
 * @author Derk Norton
 * @param  The type of the key in the association.
 * @param  The type of the value in the association.
 */
public class Map extends SortableCollection> implements Associative {

    static private final XLogger logger = XLoggerFactory.getXLogger(Map.class);

    // a hash table mapping each association key to its corresponding link in the linked list
    private final HashTable>> indexes = new HashTable<>();

    // a linked list containing the key value associations in their proper order
    private Link> associations = null;


    /**
     * This constructor creates a new empty map.
     */
    public Map() {
        logger.entry();
        logger.exit();
    }


    /**
     * This constructor creates a new map using the specified key and value arrays.  The
     * number of keys must equal the number of values or an exception is thrown.
     *
     * @param keys The array of keys that should be used to create the map.
     * @param values The array of values that should be used to create the map.
     */
    public Map(K[] keys, V[] values) {
        logger.entry(keys, values);
        int size = keys.length;
        if (values.length != size) throw new IllegalArgumentException("The number of keys is different than the number of values.");
        for (int i = 0; i < size; i++) {
            K key = keys[i];
            V value = values[i];
            logger.debug("Associating key: {} with value: {}", key, value);
            setValue(key, value);
        }
        logger.exit();
    }


    /**
     * This constructor creates a new map using the specified keys and values.  The
     * number of keys must equal the number of values or an exception is thrown.
     *
     * @param keys The keys that should be used to create the map.
     * @param values The values that should be used to create the map.
     */
    public Map(Collection keys, Collection values) {
        logger.entry(keys, values);
        int size = keys.getSize();
        if (values.getSize() != size) throw new IllegalArgumentException("The number of keys is different than the number of values.");
        Iterator keyIterator = keys.createIterator();
        Iterator valueIterator = values.createIterator();
        while (keyIterator.hasNext()) {
            K key = keyIterator.getNext();
            V value = valueIterator.getNext();
            logger.debug("Associating key: {} with value: {}", key, value);
            setValue(key, value);
        }
        logger.exit();
    }


    /**
     * This constructor creates a new map using the elements provided in the specified map.
     *
     * @param elements The map containing the key-value pairs to be mapped.
     */
    public Map(Map elements) {
        logger.entry(elements);
        Collection> entries = elements.getAssociations();
        for (Association association : entries) {
            K key = association.key;
            V value = association.value;
            logger.debug("Associating key: {} with value: {}", key, value);
            setValue(key, value);
        }
        logger.exit();
    }


    /**
     * This constructor creates a new map using the elements provided in a java map.
     *
     * @param elements The java map containing the key-value pairs to be mapped.
     */
    @JsonCreator
    public Map(java.util.Map elements) {
        logger.entry(elements);
        java.util.Set> entries = elements.entrySet();
        for (java.util.Map.Entry entry : entries) {
            K key = entry.getKey();
            V value = entry.getValue();
            logger.debug("Associating key: {} with value: {}", key, value);
            setValue(key, value);
        }
        logger.exit();
    }


    @JsonValue
    public java.util.LinkedHashMap toMap() {
        java.util.LinkedHashMap map = new java.util.LinkedHashMap<>();
        for (Association association : this) {
            K key = association.key;
            V value = association.value;
            map.put(key, value);
        }
        return map;
    }


    @Override
    @SuppressWarnings("unchecked")
    public Map copy() {
        return (Map) super.copy();
    }


    @Override
    public final int getSize() {
        logger.entry();
        int result = indexes.size();
        logger.exit(result);
        return result;
    }


    @Override
    public final boolean containsElement(Association element) {
        logger.entry();
        boolean result = indexes.containsKey(element.key);
        logger.exit(result);
        return result;
    }


    @Override
    public Iterator> createIterator() {
        logger.entry();
        Iterator> result = new MapManipulator();
        logger.exit(result);
        return result;
    }


    @Override
    public final Association getElement(int index) {
        logger.entry(index);
        index = normalizedIndex(index);
        Iterator> iterator = new MapManipulator();
        iterator.toIndex(index);
        Association element = iterator.getNext();
        logger.exit(element);
        return element;
    }


    @Override
    public final int getIndex(Association element) {
        logger.entry(element);
        int index = 0;
        Iterator> iterator = createIterator();
        while (iterator.hasNext()) {
            Association association = iterator.getNext();
            index++;
            if (element.equals(association)) break;
        }
        logger.exit(index);
        return index;
    }


    @Override
    public final List> getElements(int firstIndex, int lastIndex) {
        logger.entry(firstIndex, lastIndex);
        firstIndex = normalizedIndex(firstIndex);
        lastIndex = normalizedIndex(lastIndex);
        List> result = new List<>();
        Iterator> iterator = createIterator();
        iterator.toIndex(firstIndex);
        int numberOfElements = lastIndex - firstIndex + 1;
        while (numberOfElements-- > 0) {
            Association element = iterator.getNext();
            logger.debug("Including element: {}", element);
            result.addElement(element);
        }
        logger.exit(result);
        return result;
    }


    /*
    NOTE: This method has different semantics from the setValue() method.  This
    method only inserts a new value if the key does not already exist in the map.  Otherwise
    it does nothing.
    */
    @Override
    public final boolean addElement(Association element) {
        logger.entry(element);
        boolean result = false;
        K key = element.key;
        V value = element.value;
        if (!indexes.containsKey(element.key)) {
        setValue(key, value);
            result = true;
        }
        logger.exit(result);
        return result;
    }


    @Override
    public final boolean removeElement(Association element) {
        logger.entry(element);
        boolean result = removeValue(element.key) != null;
        logger.exit(result);
        return result;
    }


    @Override
    public final void removeAll() {
        logger.entry();
        indexes.clear();
        associations = null;
        logger.exit();
    }


    @Override
    public Manipulator> createManipulator() {
        logger.entry();
        Manipulator> result = new MapManipulator();
        logger.exit(result);
        return result;
    }


    @Override
    public final List getKeys() {
        logger.entry();
        List keys = new List<>();
        Link> link = associations;
        for (int i = 0; i < indexes.size(); i++) {
            K key = link.value.key;
            logger.debug("Found key: {}", key);
            keys.addElement(key);
            link = link.next;
        }
        logger.exit(keys);
        return keys;
    }


    @Override
    public final List getValues() {
        logger.entry();
        List values = new List<>();
        Link> link = associations;
        for (int i = 0; i < indexes.size(); i++) {
            V value = link.value.value;
            logger.debug("Found value: {}", value);
            values.addElement(value);
            link = link.next;
        }
        logger.exit(values);
        return values;
    }


    @Override
    public final List> getAssociations() {
        logger.entry();
        List> results = new List<>();
        Link> link = associations;
        for (int i = 0; i < indexes.size(); i++) {
            Association association = link.value;
            logger.debug("Found association: {}", association);
            results.addElement(association);
            link = link.next;
        }
        logger.exit();
        return results;
    }


    @Override
    public final V getValue(K key) {
        logger.entry(key);
        V value = null;
        Link> link = indexes.get(key);
        if (link != null) {
            value = link.value.value;
            logger.debug("Found value: {} at key: {}", value, key);
        }
        logger.exit(value);
        return value;
    }


    @Override
    public final void setValue(K key, V value) {
        logger.entry(key, value);
        Link> link = indexes.get(key);
        if (link != null) {
            link.value.value = value;
        } else {
            Association association = new Association<>(key, value);
            Link> newLink = new Link<>(association);
            if (associations == null) {
                // the map is currently empty
                newLink.previous = newLink;
                newLink.next = newLink;
                associations = newLink;
            } else {
                Link.insertBeforeLink(newLink, associations);
            }
            indexes.put(key, newLink);
        }
        logger.exit();
    }


    @Override
    public final V removeValue(K key) {
        logger.entry(key);
        V value = null;
        Link> link = indexes.remove(key);
        if (link != null) {
            if (link == associations) {
                // the head link is about to be removed
                associations = link.next;
            }
            Link.removeLink(link);
            if (indexes.isEmpty()) {
                // the linked list is now empty
                associations = null;
            }
            value = link.value.value;
        }
        logger.exit(value);
        return value;
    }


    /**
     * This function returns a new map that contains the all the associations from
     * both the specified maps.
     *
     * @param  The type of key contained in the maps.
     * @param  The type of value contained in the maps.
     * @param map1 The first map whose elements are to be added.
     * @param map2 The second map whose elements are to be added.
     * @return The resulting map.
     */
    static public  Map concatenation(Map map1, Map map2) {
        logger.entry(map1, map2);
        Map result = new Map<>(map1);
        result.addElements(map2);
        logger.exit(result);
        return result;
    }


    /**
     * This function returns a new map that contains only the associations with
     * the specified keys.
     *
     * @param  The type of key contained in the maps.
     * @param  The type of value contained in the maps.
     * @param map The map whose elements are to be reduced.
     * @param keys The set of keys for the associates to be saved.
     * @return The resulting map.
     */
    static public  Map reduction(Map map, Set keys) {
        logger.entry(map, keys);
        Map result = new Map<>();
        for (K key : keys) {
            V value = map.getValue(key);
            if (value != null) {
                result.setValue(key, value);
            }
        }
        logger.exit(result);
        return result;
    }


    /*
     * This manipulator class implements both the Iterator abstraction
     * and the Manipulator abstraction so it can be used as either depending
     * on how it is returned from the map.  It utilizes the iterator for the underlying
     * implementation.  Like most iterators, it should be used to access a map exclusively
     * without any other requests, especially requests that change the size of the map.
     */
    private class MapManipulator extends Manipulator> {

        private Link> currentLink = associations;
        private int currentIndex = 0;

        @Override
        public void toStart() {
            logger.entry();
            currentLink = associations;
            logger.exit();
        }

        @Override
        public void toIndex(int index) {
            logger.entry(index);
            index = normalizedIndex(index);
            if (currentIndex == index) return;
            if (currentIndex < index) {
                while (currentIndex++ < index) currentLink = currentLink.next;
            } else {
                while (currentIndex-- > index) currentLink = currentLink.previous;
            }
            logger.exit();
        }

        @Override
        public void toEnd() {
            logger.entry();
            if (associations != null) {
                currentLink = associations.previous;
                currentIndex = indexes.size();
            }
            logger.exit();
        }

        @Override
        public boolean hasPrevious() {
            logger.entry();
            boolean result = currentIndex != 0;
            logger.exit(result);
            return result;
        }

        @Override
        public boolean hasNext() {
            logger.entry();
            boolean result = currentIndex < indexes.size();
            logger.exit(result);
            return result;
        }

        @Override
        public Association getNext() {
            logger.entry();
            if (!hasNext()) {
                IllegalStateException exception = new IllegalStateException("The iterator is at the end of the map.");
                throw logger.throwing(exception);
            }
            Association result = currentLink.value;
            currentLink = currentLink.next;
            currentIndex++;
            logger.exit(result);
            return result;
        }

        @Override
        public Association getPrevious() {
            logger.entry();
            if (!hasPrevious()) {
                IllegalStateException exception = new IllegalStateException("The iterator is at the beginning of the map.");
                throw logger.throwing(exception);
            }
            currentIndex--;
            currentLink = currentLink.previous;
            Association result = currentLink.value;
            logger.exit(result);
            return result;
        }

        @Override
        public void insertElement(Association element) {
            logger.entry(element);
            K key = element.key;
            if (!indexes.containsKey(key)) {
                Link> newLink = new Link<>(element);
                if (associations == null) {
                    // the map is currently empty
                    newLink.previous = newLink;
                    newLink.next = newLink;
                    associations = newLink;
                } else {
                    Link.insertBeforeLink(newLink, currentLink);
                    if (associations == currentLink) associations = newLink;
                }
                currentLink = newLink;
                indexes.put(key, newLink);
            } else {
                String message = "Attempted to add a duplicate key with an iterator.";
                RuntimeException exception = new RuntimeException(message);
                throw logger.throwing(exception);
            }
            logger.exit();
        }

        @Override
        public Association removeNext() {
            logger.entry();
            if (!hasNext()) {
                IllegalStateException exception = new IllegalStateException("The iterator is at the end of the map.");
                throw logger.throwing(exception);
            }
            if (associations == currentLink) associations = currentLink.next;
            Link> oldLink = currentLink;
            currentLink = currentLink.next;
            Link.removeLink(oldLink);
            Association result = oldLink.value;
            logger.exit(result);
            return result;
        }

        @Override
        public Association removePrevious() {
            logger.entry();
            if (!hasPrevious()) {
                IllegalStateException exception = new IllegalStateException("The iterator is at the beginning of the map.");
                throw logger.throwing(exception);
            }
            Link> oldLink = currentLink.previous;
            if (associations == oldLink) associations = currentLink;
            Link.removeLink(oldLink);
            Association result = oldLink.value;
            currentIndex--;
            logger.exit(result);
            return result;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy