src/java.desktop/share/classes/javax/imageio/spi/DigraphNode.java
author darcy
Tue, 24 Sep 2019 18:25:54 -0700
changeset 58309 c6f8b2c3dc66
parent 47216 71c04702a3d5
permissions -rw-r--r--
8231334: Suppress warnings on non-serializable instance fields in client libs serializable classes Reviewed-by: 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
35667
ed476aba94de 8138838: docs cleanup for java.desktop
avstepan
parents: 25859
diff changeset
    35
 * {@code Object} containing user data associated with the node,
ed476aba94de 8138838: docs cleanup for java.desktop
avstepan
parents: 25859
diff changeset
    36
 * each node maintains a {@code Set}s of nodes which are pointed
ed476aba94de 8138838: docs cleanup for java.desktop
avstepan
parents: 25859
diff changeset
    37
 * to by the current node (available from {@code getOutNodes}).
2
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. */
58309
c6f8b2c3dc66 8231334: Suppress warnings on non-serializable instance fields in client libs serializable classes
darcy
parents: 47216
diff changeset
    46
    @SuppressWarnings("serial") // Not statically typed as Serializable
23313
f100f0d49e0b 8035487: Fix raw and unchecked lint warnings in javax.imageio.spi
henryjen
parents: 22657
diff changeset
    47
    protected E data;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
    /**
35667
ed476aba94de 8138838: docs cleanup for java.desktop
avstepan
parents: 25859
diff changeset
    50
     * A {@code Set} of neighboring nodes pointed to by this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
     * node.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
     */
58309
c6f8b2c3dc66 8231334: Suppress warnings on non-serializable instance fields in client libs serializable classes
darcy
parents: 47216
diff changeset
    53
    @SuppressWarnings("serial") // Not statically typed as Serializable
23313
f100f0d49e0b 8035487: Fix raw and unchecked lint warnings in javax.imageio.spi
henryjen
parents: 22657
diff changeset
    54
    protected Set<DigraphNode<E>> outNodes = new HashSet<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
    /** The in-degree of the node. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
    protected int inDegree = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
    /**
35667
ed476aba94de 8138838: docs cleanup for java.desktop
avstepan
parents: 25859
diff changeset
    60
     * A {@code Set} of neighboring nodes that point to this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
     * node.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
     */
58309
c6f8b2c3dc66 8231334: Suppress warnings on non-serializable instance fields in client libs serializable classes
darcy
parents: 47216
diff changeset
    63
    @SuppressWarnings("serial") // Not statically typed as Serializable
23313
f100f0d49e0b 8035487: Fix raw and unchecked lint warnings in javax.imageio.spi
henryjen
parents: 22657
diff changeset
    64
    private Set<DigraphNode<E>> inNodes = new HashSet<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
23313
f100f0d49e0b 8035487: Fix raw and unchecked lint warnings in javax.imageio.spi
henryjen
parents: 22657
diff changeset
    66
    public DigraphNode(E data) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
        this.data = data;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
35667
ed476aba94de 8138838: docs cleanup for java.desktop
avstepan
parents: 25859
diff changeset
    70
    /** Returns the {@code Object} referenced by this node. */
23313
f100f0d49e0b 8035487: Fix raw and unchecked lint warnings in javax.imageio.spi
henryjen
parents: 22657
diff changeset
    71
    public E getData() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
        return data;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
    /**
35667
ed476aba94de 8138838: docs cleanup for java.desktop
avstepan
parents: 25859
diff changeset
    76
     * Returns an {@code Iterator} containing the nodes pointed
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
     * to by this node.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
     */
23313
f100f0d49e0b 8035487: Fix raw and unchecked lint warnings in javax.imageio.spi
henryjen
parents: 22657
diff changeset
    79
    public Iterator<DigraphNode<E>> getOutNodes() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
        return outNodes.iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
     * Adds a directed edge to the graph.  The outNodes list of this
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
     * node is updated and the in-degree of the other node is incremented.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
     *
35667
ed476aba94de 8138838: docs cleanup for java.desktop
avstepan
parents: 25859
diff changeset
    87
     * @param node a {@code DigraphNode}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
     *
35667
ed476aba94de 8138838: docs cleanup for java.desktop
avstepan
parents: 25859
diff changeset
    89
     * @return {@code true} if the node was not previously the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
     * target of an edge.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
     */
23313
f100f0d49e0b 8035487: Fix raw and unchecked lint warnings in javax.imageio.spi
henryjen
parents: 22657
diff changeset
    92
    public boolean addEdge(DigraphNode<E> node) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        if (outNodes.contains(node)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
        outNodes.add(node);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
        node.inNodes.add(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
        node.incrementInDegree();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
    /**
35667
ed476aba94de 8138838: docs cleanup for java.desktop
avstepan
parents: 25859
diff changeset
   104
     * Returns {@code true} if an edge exists between this node
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
     * and the given node.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
     *
35667
ed476aba94de 8138838: docs cleanup for java.desktop
avstepan
parents: 25859
diff changeset
   107
     * @param node a {@code DigraphNode}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
     *
35667
ed476aba94de 8138838: docs cleanup for java.desktop
avstepan
parents: 25859
diff changeset
   109
     * @return {@code true} if the node is the target of an edge.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
     */
23313
f100f0d49e0b 8035487: Fix raw and unchecked lint warnings in javax.imageio.spi
henryjen
parents: 22657
diff changeset
   111
    public boolean hasEdge(DigraphNode<E> node) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
        return outNodes.contains(node);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     * Removes a directed edge from the graph.  The outNodes list of this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     * node is updated and the in-degree of the other node is decremented.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     *
35667
ed476aba94de 8138838: docs cleanup for java.desktop
avstepan
parents: 25859
diff changeset
   119
     * @return {@code true} if the node was previously the target
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     * of an edge.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     */
23313
f100f0d49e0b 8035487: Fix raw and unchecked lint warnings in javax.imageio.spi
henryjen
parents: 22657
diff changeset
   122
    public boolean removeEdge(DigraphNode<E> node) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
        if (!outNodes.contains(node)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
        outNodes.remove(node);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
        node.inNodes.remove(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
        node.decrementInDegree();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
     * Removes this node from the graph, updating neighboring nodes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
     * appropriately.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
    public void dispose() {
23677
a14db4279874 8037743: 2d nightly: wrong class cast to DigraphNode
henryjen
parents: 23313
diff changeset
   138
        Object[] inNodesArray = inNodes.toArray();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
        for(int i=0; i<inNodesArray.length; i++) {
23677
a14db4279874 8037743: 2d nightly: wrong class cast to DigraphNode
henryjen
parents: 23313
diff changeset
   140
            @SuppressWarnings("unchecked")
a14db4279874 8037743: 2d nightly: wrong class cast to DigraphNode
henryjen
parents: 23313
diff changeset
   141
            DigraphNode<E> node = (DigraphNode<E>)inNodesArray[i];
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
            node.removeEdge(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
23677
a14db4279874 8037743: 2d nightly: wrong class cast to DigraphNode
henryjen
parents: 23313
diff changeset
   145
        Object[] outNodesArray = outNodes.toArray();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
        for(int i=0; i<outNodesArray.length; i++) {
23677
a14db4279874 8037743: 2d nightly: wrong class cast to DigraphNode
henryjen
parents: 23313
diff changeset
   147
            @SuppressWarnings("unchecked")
a14db4279874 8037743: 2d nightly: wrong class cast to DigraphNode
henryjen
parents: 23313
diff changeset
   148
            DigraphNode<E> node = (DigraphNode<E>)outNodesArray[i];
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
            removeEdge(node);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
    /** Returns the in-degree of this node. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
    public int getInDegree() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
        return inDegree;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
    /** Increments the in-degree of this node. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
    private void incrementInDegree() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
        ++inDegree;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
    /** Decrements the in-degree of this node. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
    private void decrementInDegree() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
        --inDegree;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
}