summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/tags/2.0.1-RC1/modules/databinding/src/main/java/org/apache/tuscany/sca/databinding/impl/DirectedGraph.java
blob: a551671452ace48b328babc75d6436de73a132d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 * 
 *   http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.    
 */
package org.apache.tuscany.sca.databinding.impl;

import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.ConcurrentHashMap;
import java.util.logging.Logger;

/**
 * Directed, weighted graph
 * 
 * @param <V> The type of vertex object
 * @param <E> The type of edge object
 *
 * @version $Rev$ $Date$
 */
public class DirectedGraph<V, E> implements Cloneable {
    private final static Logger logger = Logger.getLogger(DirectedGraph.class.getName());
    private final Map<V, Vertex> vertices = new HashMap<V, Vertex>();

    /**
     * Key for the shortest path cache
     */
    private final class VertexPair {
        private Vertex source;

        private Vertex target;

        /**
         * @param source
         * @param target
         */
        private VertexPair(Vertex source, Vertex target) {
            super();
            this.source = source;
            this.target = target;
        }

        @Override
        public boolean equals(Object object) {
            if (!VertexPair.class.isInstance(object)) {
                return false;
            }
            VertexPair pair = (VertexPair)object;
            return source == pair.source && target == pair.target;
        }

        @Override
        public int hashCode() {
            int x = source == null ? 0 : source.hashCode();
            int y = target == null ? 0 : target.hashCode();
            return x ^ y;
        }

    }

    // Fix for TUSCANY-2069, making the map concurrent
    private final Map<VertexPair, Path> paths = new ConcurrentHashMap<VertexPair, Path>();
    private final Path NULL_PATH = new Path();

    /**
     * Vertex of a graph
     */
    public final class Vertex {
        private V value;

        // TODO: Do we want to support multiple edges for a vertex pair? If so,
        // we should use a List instead of Map
        private Map<Vertex, Edge> outEdges = new HashMap<Vertex, Edge>();
        private Map<Vertex, Edge> inEdges = new HashMap<Vertex, Edge>();

        private Vertex(V value) {
            this.value = value;
        }

        @Override
        public String toString() {
            return "(" + value + ")";
        }

        public V getValue() {
            return value;
        }

        public Map<Vertex, Edge> getOutEdges() {
            return outEdges;
        }

        public Map<Vertex, Edge> getInEdges() {
            return inEdges;
        }

    }

    /**
     * An Edge connects two vertices in one direction
     */
    public final class Edge {
        private Vertex sourceVertex;

        private Vertex targetVertex;

        private E value;

        private int weight;

        private boolean pub = true;

        public Edge(Vertex source, Vertex target, E value, int weight, boolean pub) {
            this.sourceVertex = source;
            this.targetVertex = target;
            this.value = value;
            this.weight = weight;
            this.pub = pub;
        }

        @Override
        public String toString() {
            return sourceVertex + "->" + targetVertex + "[" + value + "," + weight + "]";
        }

        public E getValue() {
            return value;
        }

        public void setValue(E value) {
            this.value = value;
        }

        public Vertex getTargetVertex() {
            return targetVertex;
        }

        public void setTargetVertex(Vertex vertex) {
            this.targetVertex = vertex;
        }

        public int getWeight() {
            return weight;
        }

        public void setWeight(int weight) {
            this.weight = weight;
        }

        public Vertex getSourceVertex() {
            return sourceVertex;
        }

        public void setSourceVertex(Vertex sourceVertex) {
            this.sourceVertex = sourceVertex;
        }

        public boolean isPublic() {
            return pub;
        }

        public void setPublic(boolean pub) {
            this.pub = pub;
        }
    }

    private final class Node implements Comparable<Node> {

        private long distance = Integer.MAX_VALUE;

        private Node previous; // NOPMD by rfeng on 9/26/06 9:17 PM

        private Vertex vertex; // NOPMD by rfeng on 9/26/06 9:17 PM

        private Node(Vertex vertex) {
            this.vertex = vertex;
        }

        public int compareTo(Node o) {
            return (distance > o.distance) ? 1 : ((distance == o.distance) ? 0 : -1);
        }
    }

    public void addEdge(V source, V target, E edgeValue, int weight, boolean publicEdge) {
        // Fix for TUSCANY-3456 
        // First check if we already has an edge
        Edge edge = getEdge(source, target);
        if (edge != null) {
            // An existing edge has higher weight, let's replace it
            if (edge.weight > weight) {
                logger.fine("An edge exists with higher weight: " + edge);
                removeEdge(edge);
            } else {
                // Don't add this edge
                logger.fine("An edge exists with lower weight: " + edge);
                return;
            }
        }

        Vertex s = getVertex(source);
        if (s == null) {
            s = new Vertex(source);
            vertices.put(source, s);
        }
        Vertex t = getVertex(target);
        if (t == null) {
            t = new Vertex(target);
            vertices.put(target, t);
        }
        edge = new Edge(s, t, edgeValue, weight, publicEdge);
        s.outEdges.put(t, edge);
        t.inEdges.put(s, edge);
    }

    public void addEdge(V soure, V target) {
        addEdge(soure, target, null, 0, true);
    }

    public Vertex getVertex(V source) {
        Vertex s = vertices.get(source);
        return s;
    }

    public boolean removeEdge(V source, V target) {
        Vertex s = getVertex(source);
        if (s == null) {
            return false;
        }

        Vertex t = getVertex(target);
        if (t == null) {
            return false;
        }

        return s.outEdges.remove(t) != null && t.inEdges.remove(s) != null;

    }

    public void removeEdge(Edge edge) {
        edge.sourceVertex.outEdges.remove(edge.targetVertex);
        edge.targetVertex.inEdges.remove(edge.sourceVertex);
    }

    public void removeVertex(Vertex vertex) {
        vertices.remove(vertex.getValue());
        for (Edge e : new ArrayList<Edge>(vertex.outEdges.values())) {
            removeEdge(e);
        }
        for (Edge e : new ArrayList<Edge>(vertex.inEdges.values())) {
            removeEdge(e);
        }
    }

    public Edge getEdge(Vertex source, Vertex target) {
        return source.outEdges.get(target);
    }

    public Edge getEdge(V source, V target) {
        Vertex sv = getVertex(source);
        if (sv == null) {
            return null;
        }
        Vertex tv = getVertex(target);
        if (tv == null) {
            return null;
        }
        return getEdge(getVertex(source), getVertex(target));
    }

    /**
     * Get the shortest path from the source vertex to the target vertex using
     * Dijkstra's algorithm. If there's no path, null will be returned. If the
     * source is the same as the target, it returns a path with empty edges with
     * weight 0.
     * 
     * @param sourceValue The value identifies the source
     * @param targetValue The value identifies the target
     * @return The shortest path
     */
    public Path getShortestPath(V sourceValue, V targetValue) {
        Vertex source = getVertex(sourceValue);
        if (source == null) {
            return null;
        }
        Vertex target = getVertex(targetValue);
        if (target == null) {
            return null;
        }

        VertexPair pair = new VertexPair(source, target);
        Path path = null;
        if (paths.containsKey(pair)) {
            path = paths.get(pair);
            return path == NULL_PATH? null: path;
        }

        // Check if there is a direct link, if yes, use it instead
        Edge direct = getEdge(source, target);
        path = new Path();
        if (direct != null) {
            path.addEdge(direct);
            paths.put(pair, path);
            return path;
        }

        Map<Vertex, Node> nodes = new HashMap<Vertex, Node>();
        for (Vertex v : vertices.values()) {
            Node node = new Node(v);
            if (v == source) {
                node.distance = 0;
            }
            nodes.put(v, node);
        }

        Set<Node> otherNodes = new HashSet<Node>(nodes.values());
        Set<Node> nodesOnPath = new HashSet<Node>();
        Node nextNode = null;
        while (!otherNodes.isEmpty()) {
            nextNode = extractMin(otherNodes);
            if (nextNode.vertex == target) {
                path = getPath(nextNode);
                paths.put(pair, path); // Cache it
                return path == NULL_PATH? null: path;
            }
            nodesOnPath.add(nextNode);
            for (Edge edge : nextNode.vertex.outEdges.values()) {
                Node adjacentNode = nodes.get(edge.targetVertex);
                // The private edge can only be used if the edge connects to the target directly
                if (edge.isPublic() || edge.getTargetVertex() == target) {
                    if (nextNode.distance + edge.weight < adjacentNode.distance) {
                        adjacentNode.distance = nextNode.distance + edge.weight;
                        adjacentNode.previous = nextNode;
                    }
                }
            }
        }
        paths.put(pair, NULL_PATH); // Cache it
        return null;
    }

    /**
     * Searches for the vertex u in the vertex set Q that has the least d[u]
     * value. That vertex is removed from the set Q and returned to the user.
     * 
     * @param nodes
     * @return
     */
    private Node extractMin(Set<Node> nodes) {
        Node node = Collections.min(nodes);
        nodes.remove(node);
        return node;
    }

    /**
     * The path between two vertices
     */
    public final class Path {
        private List<Edge> edges = new LinkedList<Edge>();

        private int weight;

        public int getWeight() {
            return weight;
        }

        public List<Edge> getEdges() {
            return edges;
        }

        public void addEdge(Edge edge) {
            edges.add(0, edge);
            weight += edge.weight;
        }

        @Override
        public String toString() {
            return edges + ", " + weight;
        }
    }

    private Path getPath(Node t) {
        if (t.distance == Integer.MAX_VALUE) {
            return NULL_PATH;
        }
        Path path = new Path();
        Node u = t;
        while (u.previous != null) {
            Edge edge = getEdge(u.previous.vertex, u.vertex);
            path.addEdge(edge);
            u = u.previous;
        }
        return path;
    }

    @Override
    public String toString() {
        StringBuffer sb = new StringBuffer();
        for (Vertex v : vertices.values()) {
            sb.append(v.outEdges.values()).append("\n");
        }
        return sb.toString();
    }

    public Map<V, Vertex> getVertices() {
        return vertices;
    }

    public void addGraph(DirectedGraph<V, E> otherGraph) {
        for (Vertex v : otherGraph.vertices.values()) {
            for (Edge e : v.outEdges.values()) {
                addEdge(e.sourceVertex.value, e.targetVertex.value, e.value, e.weight, true);
            }
        }
    }

    private Vertex getFirst() {
        for (Vertex v : vertices.values()) {
            if (v.inEdges.isEmpty()) {
                return v;
            }
        }
        if (!vertices.isEmpty()) {
            throw new IllegalArgumentException("Circular ordering has been detected: " + toString());
        } else {
            return null;
        }
    }

    public List<V> topologicalSort(boolean readOnly) {
        DirectedGraph<V, E> graph = (!readOnly) ? this : (DirectedGraph<V, E>)clone();
        List<V> list = new ArrayList<V>();
        while (true) {
            Vertex v = graph.getFirst();
            if (v == null) {
                break;
            }
            list.add(v.getValue());
            graph.removeVertex(v);
        }

        return list;
    }

    @Override
    public Object clone() {
        DirectedGraph<V, E> copy = new DirectedGraph<V, E>();
        copy.addGraph(this);
        return copy;
    }
}