Menu

[r66]: / ls / graph / script / ScriptableGraph.java  Maximize  Restore  History

Download this file

246 lines (205 with data), 4.9 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
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
package ls.graph.script;
import java.util.Collection;
import java.util.Iterator;
import java.util.Set;
import ls.script.Scriptable;
import ls.util.Utils;
import edu.uci.ics.jung.graph.ArchetypeGraph;
import edu.uci.ics.jung.graph.DirectedGraph;
import edu.uci.ics.jung.graph.Edge;
import edu.uci.ics.jung.graph.Graph;
import edu.uci.ics.jung.graph.Vertex;
import edu.uci.ics.jung.graph.decorators.EdgeWeightLabeller;
import edu.uci.ics.jung.graph.event.GraphEventListener;
import edu.uci.ics.jung.graph.event.GraphEventType;
import edu.uci.ics.jung.utils.UserData;
import edu.uci.ics.jung.utils.UserDataContainer;
public class ScriptableGraph implements Graph, Scriptable
{
@Override
public Object clone() throws CloneNotSupportedException
{
ScriptableGraph sg = new ScriptableGraph((Graph)(graph.clone()));
return sg;
}
private Graph graph = null;
/**
* C'tor.
* Constructs a new instance with the given graph providing the inner implementation
* @param g
* @throws NullPointerException
*/
public ScriptableGraph(Graph g)
throws NullPointerException
{
if (g == null)
throw new NullPointerException("Graph delegate is null");
this.graph = g;
}
public String getBindingName()
{
return "Graph"; //assumption - 1 instance per engine
}
public EdgeWeightLabeller getEdgeWeightLabeller()
{
return EdgeWeightLabeller.getLabeller(this.graph);
}
public boolean isWeighted()
{
return EdgeWeightLabeller.hasWeightLabeller(this.graph);
}
public void setEdgeWeight(Edge e, int w)
{
EdgeWeightLabeller ewl = EdgeWeightLabeller.getLabeller(this.graph);
if (ewl != null)
{
ewl.setWeight(e, w);
}
else
{
Utils.err("ScriptableGraph.setEdgeWeight: Could not get edge weight labeller");
}
}
public int getEdgeWeight(Edge e)
{
if (!isWeighted())
Utils.err("ScriptableGraph.getEdgeWeight: Graph is not weighted");
else
{
try
{
EdgeWeightLabeller ewl = EdgeWeightLabeller.getLabeller(this.graph);
if (ewl != null)
{
int n = ewl.getWeight(e);
return n;
}
else
{
Utils.err("ScriptableGraph.getEdgeWeight: Could not get edge weight labeller");
return 0;
}
}
catch (Exception exn)
{
Utils.exn(exn);
}
}
return 0;
}
public void setVertexData(Vertex v,Object k, Object val)
{
if (v != null && k != null && val != null)
{
v.setUserDatum(k, val, UserData.CLONE);
}
}
public Edge addEdge(Edge e)
{
return this.graph.addEdge(e);
}
public Vertex addVertex(Vertex v)
{
return this.addVertex(v);
}
public boolean isDirected()
{
return (graph instanceof DirectedGraph);
}
public void removeEdge(Edge e)
{
graph.removeEdge(e);
}
public void removeVertex(Vertex v)
{
graph.removeVertex(v);
}
public void addListener(GraphEventListener gel, GraphEventType get)
{
graph.addListener(gel, get);
}
public ArchetypeGraph copy()
{
return graph.copy(); //todo: should also copy other members (decorated)?
}
public Collection getEdgeConstraints()
{
return graph.getEdgeConstraints();
}
public Set getEdges()
{
return graph.getEdges();
}
public Collection getVertexConstraints()
{
return graph.getVertexConstraints();
}
public Set getVertices()
{
return graph.getVertices();
}
public ArchetypeGraph newInstance()
{
return graph.newInstance();
}
public int numEdges()
{
return graph.numEdges();
}
public int numVertices()
{
return graph.numVertices();
}
public void removeAllEdges()
{
graph.removeAllEdges();
}
public void removeAllVertices()
{
graph.removeAllVertices();
}
public void removeEdges(Set edges)
{
graph.removeEdges(edges);
}
public void removeListener(GraphEventListener gel, GraphEventType get)
{
graph.removeListener(gel, get);
}
public void removeVertices(Set vertices)
{
graph.removeVertices(vertices);
}
public void addUserDatum(Object key, Object datum, CopyAction copyAct)
{
graph.addUserDatum(key, datum, copyAct);
}
public boolean containsUserDatumKey(Object key)
{
return graph.containsUserDatumKey(key);
}
public Object getUserDatum(Object key)
{
return graph.getUserDatum(key);
}
public CopyAction getUserDatumCopyAction(Object key)
{
return graph.getUserDatumCopyAction(key);
}
public Iterator getUserDatumKeyIterator()
{
return graph.getUserDatumKeyIterator();
}
public void importUserData(UserDataContainer udc)
{
graph.importUserData(udc);
}
public Object removeUserDatum(Object key)
{
return graph.removeUserDatum(key);
}
public void setUserDatum(Object key, Object datum, CopyAction copyAct)
{
graph.setUserDatum(key, datum, copyAct);
}
}
MongoDB Logo MongoDB