jdk/src/share/classes/javax/imageio/spi/DigraphNode.java
author henryjen
Fri, 21 Feb 2014 15:28:39 -0800
changeset 23313 f100f0d49e0b
parent 22657 654c573cb341
child 23677 a14db4279874
permissions -rw-r--r--
8035487: Fix raw and unchecked lint warnings in javax.imageio.spi Reviewed-by: darcy, prr
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
22657
654c573cb341 8033616: Fix serial lint warnings in javax.imageio.*
darcy
parents: 5506
diff changeset
     2
 * Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package javax.imageio.spi;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.io.Serializable;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.util.HashSet;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.util.Iterator;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.util.Set;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * A node in a directed graph.  In addition to an arbitrary
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * <code>Object</code> containing user data associated with the node,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * each node maintains a <code>Set</code>s of nodes which are pointed
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * to by the current node (available from <code>getOutNodes</code>).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * The in-degree of the node (that is, number of nodes that point to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * the current node) may be queried.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 */
23313
f100f0d49e0b 8035487: Fix raw and unchecked lint warnings in javax.imageio.spi
henryjen
parents: 22657
diff changeset
    42
class DigraphNode<E> implements Cloneable, Serializable {
22657
654c573cb341 8033616: Fix serial lint warnings in javax.imageio.*
darcy
parents: 5506
diff changeset
    43
    private static final long serialVersionUID = 5308261378582246841L;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
    /** The data associated with this node. */
23313
f100f0d49e0b 8035487: Fix raw and unchecked lint warnings in javax.imageio.spi
henryjen
parents: 22657
diff changeset
    46
    protected E data;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
     * A <code>Set</code> of neighboring nodes pointed to by this
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
     * node.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
     */
23313
f100f0d49e0b 8035487: Fix raw and unchecked lint warnings in javax.imageio.spi
henryjen
parents: 22657
diff changeset
    52
    protected Set<DigraphNode<E>> outNodes = new HashSet<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
    /** The in-degree of the node. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
    protected int inDegree = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
     * A <code>Set</code> of neighboring nodes that point to this
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
     * node.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
     */
23313
f100f0d49e0b 8035487: Fix raw and unchecked lint warnings in javax.imageio.spi
henryjen
parents: 22657
diff changeset
    61
    private Set<DigraphNode<E>> inNodes = new HashSet<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
23313
f100f0d49e0b 8035487: Fix raw and unchecked lint warnings in javax.imageio.spi
henryjen
parents: 22657
diff changeset
    63
    public DigraphNode(E data) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
        this.data = data;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
    /** Returns the <code>Object</code> referenced by this node. */
23313
f100f0d49e0b 8035487: Fix raw and unchecked lint warnings in javax.imageio.spi
henryjen
parents: 22657
diff changeset
    68
    public E getData() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
        return data;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
     * Returns an <code>Iterator</code> containing the nodes pointed
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
     * to by this node.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
     */
23313
f100f0d49e0b 8035487: Fix raw and unchecked lint warnings in javax.imageio.spi
henryjen
parents: 22657
diff changeset
    76
    public Iterator<DigraphNode<E>> getOutNodes() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
        return outNodes.iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
     * Adds a directed edge to the graph.  The outNodes list of this
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
     * node is updated and the in-degree of the other node is incremented.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
     * @param node a <code>DigraphNode</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
     * @return <code>true</code> if the node was not previously the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
     * target of an edge.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
     */
23313
f100f0d49e0b 8035487: Fix raw and unchecked lint warnings in javax.imageio.spi
henryjen
parents: 22657
diff changeset
    89
    public boolean addEdge(DigraphNode<E> node) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
        if (outNodes.contains(node)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        outNodes.add(node);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        node.inNodes.add(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
        node.incrementInDegree();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
     * Returns <code>true</code> if an edge exists between this node
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
     * and the given node.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
     * @param node a <code>DigraphNode</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
     * @return <code>true</code> if the node is the target of an edge.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
     */
23313
f100f0d49e0b 8035487: Fix raw and unchecked lint warnings in javax.imageio.spi
henryjen
parents: 22657
diff changeset
   108
    public boolean hasEdge(DigraphNode<E> node) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
        return outNodes.contains(node);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     * Removes a directed edge from the graph.  The outNodes list of this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
     * node is updated and the in-degree of the other node is decremented.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     * @return <code>true</code> if the node was previously the target
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     * of an edge.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     */
23313
f100f0d49e0b 8035487: Fix raw and unchecked lint warnings in javax.imageio.spi
henryjen
parents: 22657
diff changeset
   119
    public boolean removeEdge(DigraphNode<E> node) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
        if (!outNodes.contains(node)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
        outNodes.remove(node);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
        node.inNodes.remove(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
        node.decrementInDegree();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     * Removes this node from the graph, updating neighboring nodes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
     * appropriately.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
    public void dispose() {
23313
f100f0d49e0b 8035487: Fix raw and unchecked lint warnings in javax.imageio.spi
henryjen
parents: 22657
diff changeset
   135
        @SuppressWarnings("unchecked")
f100f0d49e0b 8035487: Fix raw and unchecked lint warnings in javax.imageio.spi
henryjen
parents: 22657
diff changeset
   136
        DigraphNode<E>[] inNodesArray = (DigraphNode<E>[])inNodes.toArray();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
        for(int i=0; i<inNodesArray.length; i++) {
23313
f100f0d49e0b 8035487: Fix raw and unchecked lint warnings in javax.imageio.spi
henryjen
parents: 22657
diff changeset
   138
            DigraphNode<E> node = inNodesArray[i];
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
            node.removeEdge(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
23313
f100f0d49e0b 8035487: Fix raw and unchecked lint warnings in javax.imageio.spi
henryjen
parents: 22657
diff changeset
   142
        @SuppressWarnings("unchecked")
f100f0d49e0b 8035487: Fix raw and unchecked lint warnings in javax.imageio.spi
henryjen
parents: 22657
diff changeset
   143
        DigraphNode<E>[] outNodesArray = (DigraphNode<E>[])outNodes.toArray();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
        for(int i=0; i<outNodesArray.length; i++) {
23313
f100f0d49e0b 8035487: Fix raw and unchecked lint warnings in javax.imageio.spi
henryjen
parents: 22657
diff changeset
   145
            DigraphNode<E> node = outNodesArray[i];
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
            removeEdge(node);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
    /** Returns the in-degree of this node. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
    public int getInDegree() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
        return inDegree;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
    /** Increments the in-degree of this node. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
    private void incrementInDegree() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
        ++inDegree;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
    /** Decrements the in-degree of this node. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
    private void decrementInDegree() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
        --inDegree;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
}