-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathGraph.java
More file actions
155 lines (123 loc) · 3.62 KB
/
Graph.java
File metadata and controls
155 lines (123 loc) · 3.62 KB
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
/*
* Copyright 2024-2025, Seqera Labs
*
* Licensed 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 nextflow.lsp.services.script.dag;
import java.net.URI;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.Stack;
/**
*
* @author Ben Sherman <bentshermann@gmail.com>
* @author Erik Danielsson <danielsson.erik.0@gmail.com>
*/
class Graph {
public final Map<String,Node> inputs = new HashMap<>();
public final Map<Integer,Node> nodes = new HashMap<>();
public final Map<String,Node> outputs = new HashMap<>();
private Stack<Subgraph> subgraphs = new Stack<>();
private int nextSubgraphId = 0;
public Graph() {
pushSubgraph();
}
public Subgraph peekSubgraph() {
return subgraphs.peek();
}
public void pushSubgraph() {
subgraphs.push(new Subgraph(nextSubgraphId, null));
nextSubgraphId += 1;
}
public void pushSubgraph(Node dn) {
subgraphs.push(new Subgraph(nextSubgraphId, dn));
nextSubgraphId += 1;
}
public Subgraph popSubgraph() {
var result = subgraphs.pop();
subgraphs.peek().subgraphs.add(result);
return result;
}
public Node addNode(String label, Node.Type type, URI uri, Set<Node> preds) {
var id = nodes.size();
var dn = new Node(id, label, type, uri, preds);
nodes.put(id, dn);
subgraphs.peek().nodes.add(dn);
return dn;
}
}
class Subgraph {
public final int id;
public final Node pred;
public final List<Subgraph> subgraphs = new ArrayList<>();
public final Set<Node> nodes = new HashSet<>();
public Subgraph(int id, Node pred) {
this.id = id;
this.pred = pred;
}
public boolean isVerbose() {
return nodes.stream().allMatch(n -> n.verbose);
}
@Override
public boolean equals(Object other) {
return other instanceof Subgraph s && this.id == s.id;
}
@Override
public int hashCode() {
return id;
}
}
class Node {
public enum Type {
NAME,
OPERATOR,
CONTROL,
INPUT,
OUTPUT
}
public final int id;
public final String label;
public final Type type;
public final URI uri;
public final Set<Node> preds;
public boolean verbose;
public Node(int id, String label, Type type, URI uri, Set<Node> preds) {
this.id = id;
this.label = label;
this.type = type;
this.uri = uri;
this.preds = preds;
this.verbose = (type == Type.NAME);
}
public void addPredecessors(Set<Node> preds) {
this.preds.addAll(preds);
}
@Override
public boolean equals(Object other) {
return other instanceof Node n && this.id == n.id;
}
@Override
public int hashCode() {
return id;
}
@Override
public String toString() {
var predIds = preds.stream().map(p -> p.id).toList();
return String.format("id=%s,label='%s',type=%s,preds=%s", id, label, type, predIds);
}
}