jdk/src/share/classes/javax/imageio/spi/DigraphNode.java
author ohair
Tue, 25 May 2010 15:58:33 -0700
changeset 5506 202f599c92aa
parent 2 90ce3da70b43
child 22657 654c573cb341
permissions -rw-r--r--
6943119: Rebrand source copyright notices Reviewed-by: darcy, weijun
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     2
 * Copyright (c) 2000, 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
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
class DigraphNode implements Cloneable, Serializable {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
    /** The data associated with this node. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
    protected Object data;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
     * A <code>Set</code> of neighboring nodes pointed to by this
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
     * node.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    protected Set outNodes = new HashSet();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
    /** The in-degree of the node. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
    protected int inDegree = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
     * A <code>Set</code> of neighboring nodes that point to this
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
     * node.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
    private Set inNodes = new HashSet();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
    public DigraphNode(Object data) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
        this.data = data;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
    /** Returns the <code>Object</code> referenced by this node. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
    public Object getData() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
        return data;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
     * Returns an <code>Iterator</code> containing the nodes pointed
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
     * to by this node.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
    public Iterator getOutNodes() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
        return outNodes.iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
     * Adds a directed edge to the graph.  The outNodes list of this
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
     * node is updated and the in-degree of the other node is incremented.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
     * @param node a <code>DigraphNode</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
     * @return <code>true</code> if the node was not previously the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
     * target of an edge.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
    public boolean addEdge(DigraphNode node) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
        if (outNodes.contains(node)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        outNodes.add(node);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        node.inNodes.add(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        node.incrementInDegree();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
     * Returns <code>true</code> if an edge exists between this node
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
     * and the given node.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
     * @param node a <code>DigraphNode</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
     * @return <code>true</code> if the node is the target of an edge.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
    public boolean hasEdge(DigraphNode node) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
        return outNodes.contains(node);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
     * Removes a directed edge from the graph.  The outNodes list of this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     * node is updated and the in-degree of the other node is decremented.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
     * @return <code>true</code> if the node was previously the target
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     * of an edge.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
    public boolean removeEdge(DigraphNode node) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
        if (!outNodes.contains(node)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
        outNodes.remove(node);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
        node.inNodes.remove(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
        node.decrementInDegree();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
     * Removes this node from the graph, updating neighboring nodes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     * appropriately.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
    public void dispose() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
        Object[] inNodesArray = inNodes.toArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
        for(int i=0; i<inNodesArray.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
            DigraphNode node = (DigraphNode) inNodesArray[i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
            node.removeEdge(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
        Object[] outNodesArray = outNodes.toArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
        for(int i=0; i<outNodesArray.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
            DigraphNode node = (DigraphNode) outNodesArray[i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
            removeEdge(node);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
    /** Returns the in-degree of this node. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
    public int getInDegree() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
        return inDegree;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
    /** Increments the in-degree of this node. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
    private void incrementInDegree() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
        ++inDegree;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
    /** Decrements the in-degree of this node. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
    private void decrementInDegree() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
        --inDegree;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
}