blob: 3a5c9e20c4eec7b46e49ae212bce95e2a35bcfd5 [file] [log] [blame]
HIGUCHI Yuta20514902013-06-12 11:24:16 -07001package net.onrc.onos.ofcontroller.core;
Pankaj Berde1b8a42f2013-02-15 08:25:03 -08002
HIGUCHI Yuta60a10142013-06-14 15:50:10 -07003import net.onrc.onos.ofcontroller.flowmanager.web.DatapathSummarySerializer;
Jonathan Hart01f2d272013-04-04 20:03:46 -07004
Pankaj Berde1b8a42f2013-02-15 08:25:03 -08005import org.codehaus.jackson.annotate.JsonIgnore;
6import org.codehaus.jackson.annotate.JsonProperty;
Jonathan Hart01f2d272013-04-04 20:03:46 -07007import org.codehaus.jackson.map.annotate.JsonSerialize;
Pankaj Berde1b8a42f2013-02-15 08:25:03 -08008
9import com.tinkerpop.blueprints.Direction;
10import com.tinkerpop.frames.Adjacency;
11import com.tinkerpop.frames.Incidence;
12import com.tinkerpop.frames.Property;
13import com.tinkerpop.frames.annotations.gremlin.GremlinGroovy;
Pankaj Berdef2f2f032013-06-10 21:08:14 -070014import com.tinkerpop.frames.annotations.gremlin.GremlinParam;
Pankaj Berde1b8a42f2013-02-15 08:25:03 -080015import com.tinkerpop.frames.VertexFrame;
16
Teru68076a42013-06-27 14:57:49 -070017/*
18 * This is the interfaces to make the objects for Cassandra DB.
19 * They are interfaces, but it is also implementation,
20 * so this handles various control to the objects.
21 * Please take a look at tinkerpop/frames annotation doc to understand more.
22 */
Pankaj Berde1b8a42f2013-02-15 08:25:03 -080023public interface INetMapTopologyObjects {
24
25public interface IBaseObject extends VertexFrame {
26
27 @JsonProperty("state")
28 @Property("state")
29 public String getState();
Pankaj Berde1cde50b2013-02-19 20:16:06 -080030
Pankaj Berde1b8a42f2013-02-15 08:25:03 -080031 @Property("state")
32 public void setState(final String state);
33
34 @JsonIgnore
35 @Property("type")
36 public String getType();
37 @Property("type")
38 public void setType(final String type);
39
40}
41
42public interface ISwitchObject extends IBaseObject{
43
44 @JsonProperty("dpid")
45 @Property("dpid")
46 public String getDPID();
47
48 @Property("dpid")
49 public void setDPID(String dpid);
50
51 @JsonProperty("ports")
52 @Adjacency(label="on")
53 public Iterable<IPortObject> getPorts();
Pankaj Berde62016142013-04-09 15:35:50 -070054
55// Requires Frames 2.3.0
Pankaj Berdef2f2f032013-06-10 21:08:14 -070056 @JsonIgnore
Toshio Koide46dec822013-06-17 14:21:16 -070057 @GremlinGroovy("it.out('on').has('number',port_num)")
Pankaj Berdef2f2f032013-06-10 21:08:14 -070058 public IPortObject getPort(@GremlinParam("port_num") final short port_num);
Pankaj Berdeda809572013-02-22 15:31:20 -080059
60 @Adjacency(label="on")
Pankaj Berde1b8a42f2013-02-15 08:25:03 -080061 public void addPort(final IPortObject port);
62
63 @Adjacency(label="on")
64 public void removePort(final IPortObject port);
65
66 @JsonIgnore
Toshio Koide46dec822013-06-17 14:21:16 -070067 @GremlinGroovy("it.out('on').out('host')")
Pankaj Berde1b8a42f2013-02-15 08:25:03 -080068 public Iterable<IDeviceObject> getDevices();
Pankaj Berded0079742013-03-27 17:53:25 -070069
70 @JsonIgnore
Teru68076a42013-06-27 14:57:49 -070071 @Adjacency(label="switch",direction = Direction.IN)
Pankaj Berded0079742013-03-27 17:53:25 -070072 public Iterable<IFlowEntry> getFlowEntries();
Pankaj Berdef2f2f032013-06-10 21:08:14 -070073
Pankaj Berde1b8a42f2013-02-15 08:25:03 -080074 }
75
76 public interface IPortObject extends IBaseObject{
77
78 @JsonProperty("number")
79 @Property("number")
80 public Short getNumber();
81
Pankaj Berdebbd38612013-06-22 05:59:12 -070082 @JsonIgnore
83 @Property("port_id")
84 public void setPortId(String id);
85
86 @JsonIgnore
87 @Property("port_id")
88 public String getPortId();
89
Pankaj Berde15193092013-03-21 17:30:14 -070090 @Property("number")
91 public void setNumber(Short n);
92
Pankaj Berde1b8a42f2013-02-15 08:25:03 -080093 @JsonProperty("desc")
94 @Property("desc")
95 public String getDesc();
96
Pankaj Berde15193092013-03-21 17:30:14 -070097 @Property("desc")
98 public void setDesc(String s);
99
100 @JsonIgnore
Pankaj Berdef1404a72013-04-03 11:50:07 -0700101 @Property("port_state")
Pankaj Berde15193092013-03-21 17:30:14 -0700102 public Integer getPortState();
103
104 @Property("port_state")
105 public void setPortState(Integer s);
106
Pankaj Berde1b8a42f2013-02-15 08:25:03 -0800107 @JsonIgnore
Toshio Koide2bab79f2013-06-17 14:29:15 -0700108// @GremlinGroovy("it.in('on')")
Teru87cd2da2013-06-15 20:33:08 -0700109 @Adjacency(label="on",direction = Direction.IN)
Teru80f75132013-06-16 05:16:32 -0700110 public ISwitchObject getSwitch();
Pankaj Berdea6b80c32013-03-29 09:02:56 -0700111
Pankaj Berdeac1a8c32013-02-26 17:45:57 -0800112 @JsonProperty("devices")
Pankaj Berde1b8a42f2013-02-15 08:25:03 -0800113 @Adjacency(label="host")
114 public Iterable<IDeviceObject> getDevices();
115
116 @Adjacency(label="host")
117 public void setDevice(final IDeviceObject device);
118
119 @Adjacency(label="host")
120 public void removeDevice(final IDeviceObject device);
121
Pankaj Berded0079742013-03-27 17:53:25 -0700122 @JsonIgnore
Teru68076a42013-06-27 14:57:49 -0700123 @Adjacency(label="inport",direction = Direction.IN)
Pankaj Berded0079742013-03-27 17:53:25 -0700124 public Iterable<IFlowEntry> getInFlowEntries();
125
126 @JsonIgnore
Teru68076a42013-06-27 14:57:49 -0700127 @Adjacency(label="outport",direction = Direction.IN)
Pankaj Berded0079742013-03-27 17:53:25 -0700128 public Iterable<IFlowEntry> getOutFlowEntries();
129
Pankaj Berde5fb27632013-04-05 08:56:12 -0700130 @JsonIgnore
131 @Adjacency(label="link")
132 public Iterable<IPortObject> getLinkedPorts();
133
Pankaj Berdea6b80c32013-03-29 09:02:56 -0700134 @Adjacency(label="link")
135 public void removeLink(final IPortObject dest_port);
136
Pankaj Berde5fb27632013-04-05 08:56:12 -0700137 @Adjacency(label="link")
138 public void setLinkPort(final IPortObject dest_port);
139
Pankaj Berde1b8a42f2013-02-15 08:25:03 -0800140// @JsonIgnore
141// @Adjacency(label="link")
142// public Iterable<ILinkObject> getLinks();
143 }
144
145 public interface IDeviceObject extends IBaseObject {
146
147 @JsonProperty("mac")
148 @Property("dl_addr")
149 public String getMACAddress();
150 @Property("dl_addr")
Pankaj Berde2497e542013-02-19 18:51:24 -0800151 public void setMACAddress(String macaddr);
Pankaj Berde1b8a42f2013-02-15 08:25:03 -0800152
153 @JsonProperty("ipv4")
154 @Property("nw_addr")
155 public String getIPAddress();
Teru87cd2da2013-06-15 20:33:08 -0700156 @Property("nw_addr")
Pankaj Berde2497e542013-02-19 18:51:24 -0800157 public void setIPAddress(String ipaddr);
Pankaj Berde1b8a42f2013-02-15 08:25:03 -0800158
159 @JsonIgnore
Teru87cd2da2013-06-15 20:33:08 -0700160 @Adjacency(label="host",direction = Direction.IN)
Pankaj Berde2497e542013-02-19 18:51:24 -0800161 public Iterable<IPortObject> getAttachedPorts();
162
163 @JsonIgnore
Teru68076a42013-06-27 14:57:49 -0700164 @Adjacency(label="host",direction=Direction.IN)
Pankaj Berde2497e542013-02-19 18:51:24 -0800165 public void setHostPort(final IPortObject port);
166
167 @JsonIgnore
Teru68076a42013-06-27 14:57:49 -0700168 @Adjacency(label="host",direction=Direction.IN)
Pankaj Berde2497e542013-02-19 18:51:24 -0800169 public void removeHostPort(final IPortObject port);
Pankaj Berde1b8a42f2013-02-15 08:25:03 -0800170
171 @JsonIgnore
Toshio Koide13260102013-06-17 13:44:27 -0700172 @GremlinGroovy("it.in('host').in('on')")
Pankaj Berde2497e542013-02-19 18:51:24 -0800173 public Iterable<ISwitchObject> getSwitch();
174
Pankaj Berdeac1a8c32013-02-26 17:45:57 -0800175/* @JsonProperty("dpid")
176 @GremlinGroovy("_().in('host').in('on').next().getProperty('dpid')")
177 public Iterable<String> getSwitchDPID();
178
179 @JsonProperty("number")
180 @GremlinGroovy("_().in('host').transform{it.number}")
181 public Iterable<Short> getPortNumber();
182
Pankaj Berde2497e542013-02-19 18:51:24 -0800183 @JsonProperty("AttachmentPoint")
184 @GremlinGroovy("_().in('host').in('on').path(){it.number}{it.dpid}")
Pankaj Berdeac1a8c32013-02-26 17:45:57 -0800185 public Iterable<SwitchPort> getAttachmentPoints();*/
Pankaj Berde1b8a42f2013-02-15 08:25:03 -0800186 }
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -0800187
188public interface IFlowPath extends IBaseObject {
Jonathan Hart01f2d272013-04-04 20:03:46 -0700189 @JsonProperty("flowId")
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -0800190 @Property("flow_id")
191 public String getFlowId();
192
193 @Property("flow_id")
194 public void setFlowId(String flowId);
195
Jonathan Hart01f2d272013-04-04 20:03:46 -0700196 @JsonProperty("installerId")
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -0800197 @Property("installer_id")
198 public String getInstallerId();
199
200 @Property("installer_id")
201 public void setInstallerId(String installerId);
202
Jonathan Hart01f2d272013-04-04 20:03:46 -0700203 @JsonProperty("srcDpid")
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -0800204 @Property("src_switch")
205 public String getSrcSwitch();
206
207 @Property("src_switch")
208 public void setSrcSwitch(String srcSwitch);
209
Jonathan Hart01f2d272013-04-04 20:03:46 -0700210 @JsonProperty("srcPort")
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -0800211 @Property("src_port")
212 public Short getSrcPort();
213
214 @Property("src_port")
215 public void setSrcPort(Short srcPort);
216
Jonathan Hart01f2d272013-04-04 20:03:46 -0700217 @JsonProperty("dstDpid")
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -0800218 @Property("dst_switch")
219 public String getDstSwitch();
220
221 @Property("dst_switch")
222 public void setDstSwitch(String dstSwitch);
223
Jonathan Hart01f2d272013-04-04 20:03:46 -0700224 @JsonProperty("dstPort")
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -0800225 @Property("dst_port")
226 public Short getDstPort();
227
228 @Property("dst_port")
229 public void setDstPort(Short dstPort);
230
Jonathan Hart01f2d272013-04-04 20:03:46 -0700231 @JsonProperty("dataPath")
232 @JsonSerialize(using=DatapathSummarySerializer.class)
Pavlin Radoslavovdbaaf2e2013-03-29 04:25:55 -0700233 @Property("data_path_summary")
234 public String getDataPathSummary();
235
236 @Property("data_path_summary")
237 public void setDataPathSummary(String dataPathSummary);
238
Jonathan Hart01f2d272013-04-04 20:03:46 -0700239 @JsonIgnore
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -0800240 @Adjacency(label="flow", direction=Direction.IN)
241 public Iterable<IFlowEntry> getFlowEntries();
242
243 @Adjacency(label="flow", direction=Direction.IN)
244 public void addFlowEntry(final IFlowEntry flowEntry);
245
246 @Adjacency(label="flow", direction=Direction.IN)
247 public void removeFlowEntry(final IFlowEntry flowEntry);
Pavlin Radoslavov67b3ef32013-04-03 02:44:48 -0700248
Jonathan Hart01f2d272013-04-04 20:03:46 -0700249 @JsonIgnore
Pavlin Radoslavov67b3ef32013-04-03 02:44:48 -0700250 @Property("matchEthernetFrameType")
251 public Short getMatchEthernetFrameType();
252
253 @Property("matchEthernetFrameType")
254 public void setMatchEthernetFrameType(Short matchEthernetFrameType);
255
Jonathan Hart01f2d272013-04-04 20:03:46 -0700256 @JsonIgnore
Pavlin Radoslavov67b3ef32013-04-03 02:44:48 -0700257 @Property("matchSrcMac")
258 public String getMatchSrcMac();
259
260 @Property("matchSrcMac")
261 public void setMatchSrcMac(String matchSrcMac);
262
Jonathan Hart01f2d272013-04-04 20:03:46 -0700263 @JsonIgnore
Pavlin Radoslavov67b3ef32013-04-03 02:44:48 -0700264 @Property("matchDstMac")
265 public String getMatchDstMac();
266
267 @Property("matchDstMac")
268 public void setMatchDstMac(String matchDstMac);
269
Jonathan Hart01f2d272013-04-04 20:03:46 -0700270 @JsonIgnore
Pavlin Radoslavov67b3ef32013-04-03 02:44:48 -0700271 @Property("matchSrcIPv4Net")
272 public String getMatchSrcIPv4Net();
273
274 @Property("matchSrcIPv4Net")
275 public void setMatchSrcIPv4Net(String matchSrcIPv4Net);
276
Jonathan Hart01f2d272013-04-04 20:03:46 -0700277 @JsonIgnore
Pavlin Radoslavov67b3ef32013-04-03 02:44:48 -0700278 @Property("matchDstIPv4Net")
279 public String getMatchDstIPv4Net();
280
281 @Property("matchDstIPv4Net")
282 public void setMatchDstIPv4Net(String matchDstIPv4Net);
Pankaj Berded0079742013-03-27 17:53:25 -0700283
284 @JsonIgnore
Toshio Koide13260102013-06-17 13:44:27 -0700285 @GremlinGroovy("it.in('flow').out('switch')")
Pankaj Berdef1404a72013-04-03 11:50:07 -0700286 public Iterable<ISwitchObject> getSwitches();
Jonathan Hart01f2d272013-04-04 20:03:46 -0700287
288 @JsonIgnore
289 @Property("state")
290 public String getState();
Pavlin Radoslavov710e2a72013-04-08 02:31:05 +0000291
292 @JsonIgnore
293 @Property("user_state")
294 public String getUserState();
295
296 @Property("user_state")
297 public void setUserState(String userState);
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -0800298 }
299
300public interface IFlowEntry extends IBaseObject {
301 @Property("flow_entry_id")
302 public String getFlowEntryId();
303
304 @Property("flow_entry_id")
305 public void setFlowEntryId(String flowEntryId);
306
307 @Property("switch_dpid")
308 public String getSwitchDpid();
309
310 @Property("switch_dpid")
311 public void setSwitchDpid(String switchDpid);
312
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -0800313 @Property("user_state")
314 public String getUserState();
315
316 @Property("user_state")
317 public void setUserState(String userState);
318
319 @Property("switch_state")
320 public String getSwitchState();
321
322 @Property("switch_state")
323 public void setSwitchState(String switchState);
324
325 @Property("error_state_type")
326 public String getErrorStateType();
327
328 @Property("error_state_type")
329 public void setErrorStateType(String errorStateType);
330
331 @Property("error_state_code")
332 public String getErrorStateCode();
333
334 @Property("error_state_code")
335 public void setErrorStateCode(String errorStateCode);
Pavlin Radoslavove2f0de82013-03-12 01:39:30 -0700336
337 @Property("matchInPort")
338 public Short getMatchInPort();
339
340 @Property("matchInPort")
341 public void setMatchInPort(Short matchInPort);
342
343 @Property("matchEthernetFrameType")
344 public Short getMatchEthernetFrameType();
345
346 @Property("matchEthernetFrameType")
347 public void setMatchEthernetFrameType(Short matchEthernetFrameType);
348
349 @Property("matchSrcMac")
350 public String getMatchSrcMac();
351
352 @Property("matchSrcMac")
353 public void setMatchSrcMac(String matchSrcMac);
354
355 @Property("matchDstMac")
356 public String getMatchDstMac();
357
358 @Property("matchDstMac")
359 public void setMatchDstMac(String matchDstMac);
360
361 @Property("matchSrcIPv4Net")
362 public String getMatchSrcIPv4Net();
363
364 @Property("matchSrcIPv4Net")
365 public void setMatchSrcIPv4Net(String matchSrcIPv4Net);
366
367 @Property("matchDstIPv4Net")
368 public String getMatchDstIPv4Net();
369
370 @Property("matchDstIPv4Net")
371 public void setMatchDstIPv4Net(String matchDstIPv4Net);
372
373 @Property("actionOutput")
374 public Short getActionOutput();
375
376 @Property("actionOutput")
377 public void setActionOutput(Short actionOutput);
Pavlin Radoslavov1d4a1072013-03-28 05:29:49 -0700378
379 @Adjacency(label="flow")
380 public IFlowPath getFlow();
381
382 @Adjacency(label="flow")
383 public void setFlow(IFlowPath flow);
384
Pankaj Berded0079742013-03-27 17:53:25 -0700385 @Adjacency(label="switch")
386 public ISwitchObject getSwitch();
Pavlin Radoslavov1d4a1072013-03-28 05:29:49 -0700387
Pankaj Berded0079742013-03-27 17:53:25 -0700388 @Adjacency(label="switch")
389 public void setSwitch(ISwitchObject sw);
Pavlin Radoslavov1d4a1072013-03-28 05:29:49 -0700390
Pankaj Berded0079742013-03-27 17:53:25 -0700391 @Adjacency(label="inport")
392 public IPortObject getInPort();
Pavlin Radoslavov1d4a1072013-03-28 05:29:49 -0700393
Pankaj Berded0079742013-03-27 17:53:25 -0700394 @Adjacency(label="inport")
395 public void setInPort(IPortObject port);
Pavlin Radoslavov1d4a1072013-03-28 05:29:49 -0700396
Pankaj Berded0079742013-03-27 17:53:25 -0700397 @Adjacency(label="outport")
398 public IPortObject getOutPort();
Pavlin Radoslavov1d4a1072013-03-28 05:29:49 -0700399
Pavlin Radoslavov4fead9c2013-03-28 03:09:27 -0700400 @Adjacency(label="outport")
Pankaj Berded0079742013-03-27 17:53:25 -0700401 public void setOutPort(IPortObject port);
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -0800402 }
Pankaj Berde1b8a42f2013-02-15 08:25:03 -0800403}