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

org.jgrapht.alg.util.extension.ExtensionManager Maven / Gradle / Ivy

The newest version!
/*
 * (C) Copyright 2015-2023, by Alexey Kudinkin and Contributors.
 *
 * JGraphT : a free Java graph-theory library
 *
 * See the CONTRIBUTORS.md file distributed with this work for additional
 * information regarding copyright ownership.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License 2.0 which is available at
 * http://www.eclipse.org/legal/epl-2.0, or the
 * GNU Lesser General Public License v2.1 or later
 * which is available at
 * http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html.
 *
 * SPDX-License-Identifier: EPL-2.0 OR LGPL-2.1-or-later
 */
package org.jgrapht.alg.util.extension;

import java.util.*;

/**
 * Convenience class to manage extensions/encapsulations. This class creates and manages object
 * extensions and encapsulations. An object, from here on denoted as 'original', can be encapsulated
 * in or extended by another object. An example would be the relation between an edge (original) and
 * an annotated edge. The annotated edge encapsulates/extends an edge, thereby augmenting it with
 * additional data. In symbolic form, if b is the original class, then a(b) would be its extension.
 * This concept is similar to java's extension where one class is derived from (extends) another
 * class (original).
 *
 * @param  class-type to be extended (class-type of original)
 * @param  class-type of extension
 *
 */
public class ExtensionManager
{

    /* Factory class to create new extensions */
    private ExtensionFactory extensionFactory;
    /* Mapping of originals to their extensions */
    private Map originalToExtensionMap = new HashMap<>();

    /**
     * Create a new extension manager.
     * 
     * @param factory the extension factory to use
     */
    public ExtensionManager(ExtensionFactory factory)
    {
        this.extensionFactory = factory;
    }

    /**
     * Creates and returns an extension object.
     * 
     * @return Extension object
     */
    public B createExtension()
    {
        return extensionFactory.create();
    }

    /**
     * Creates a new singleton extension object for original t if no such object exists, returns the
     * old one otherwise.
     * 
     * @param t the original object
     * @return the extension object
     */
    public B getExtension(T t)
    {
        if (originalToExtensionMap.containsKey(t)) {
            return originalToExtensionMap.get(t);
        }

        B extension = createExtension();
        originalToExtensionMap.put(t, extension);
        return extension;
    }
}