MockLinkService.java
4.1 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
package org.onosproject.flowanalyzer;
import org.onosproject.net.ConnectPoint;
import org.onosproject.net.DefaultLink;
import org.onosproject.net.DeviceId;
import org.onosproject.net.ElementId;
import org.onosproject.net.HostId;
import org.onosproject.net.Link;
import org.onosproject.net.PortNumber;
import org.onosproject.net.link.LinkServiceAdapter;
import org.onosproject.net.topology.TopologyEdge;
import org.onosproject.net.topology.TopologyVertex;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import static org.onosproject.net.Link.State.ACTIVE;
/**
* Test fixture for the flow analyzer.
*/
public class MockLinkService extends LinkServiceAdapter {
DefaultMutableTopologyGraph createdGraph = new DefaultMutableTopologyGraph(new HashSet<>(), new HashSet<>());
List<Link> links = new ArrayList<>();
@Override
public int getLinkCount() {
return links.size();
}
@Override
public Iterable<Link> getLinks() {
return links;
}
@Override
public Set<Link> getDeviceLinks(DeviceId deviceId) {
Set<Link> egress = getDeviceEgressLinks(deviceId);
egress.addAll(getDeviceIngressLinks(deviceId));
return egress;
}
@Override
public Set<Link> getDeviceEgressLinks(DeviceId deviceId) {
Set<Link> setL = new HashSet<>();
for (Link l : links) {
if (l.src().elementId() instanceof DeviceId && l.src().deviceId().equals(deviceId)) {
setL.add(l);
}
}
return setL;
}
@Override
public Set<Link> getDeviceIngressLinks(DeviceId deviceId) {
Set<Link> setL = new HashSet<>();
for (Link l : links) {
if (l.dst().elementId() instanceof DeviceId && l.dst().deviceId().equals(deviceId)) {
setL.add(l);
}
}
return setL;
}
@Override
public Set<Link> getEgressLinks(ConnectPoint pt) {
Set<Link> setL = new HashSet<>();
for (Link l : links) {
if (l.src().equals(pt)) {
setL.add(l);
}
}
return setL;
}
@Override
public Set<Link> getIngressLinks(ConnectPoint pt) {
Set<Link> setL = new HashSet<>();
for (Link l : links) {
if (l.dst().equals(pt)) {
setL.add(l);
}
}
return setL;
}
@Override
public Set<Link> getLinks(ConnectPoint pt) {
Set<Link> setL = new HashSet<>();
for (Link l : links) {
if (l.src().equals(pt) || l.dst().equals(pt)) {
setL.add(l);
}
}
return setL;
}
public void addLink(String device, long port, String device2, long port2) {
ElementId d1;
if (device.charAt(0) == 'H') {
device = device.substring(1, device.length());
d1 = HostId.hostId(device);
} else {
d1 = DeviceId.deviceId(device);
}
ElementId d2;
if (device2.charAt(0) == 'H') {
d2 = HostId.hostId(device2.substring(1, device2.length()));
} else {
d2 = DeviceId.deviceId(device2);
}
ConnectPoint src = new ConnectPoint(d1, PortNumber.portNumber(port));
ConnectPoint dst = new ConnectPoint(d2, PortNumber.portNumber(port2));
Link curLink;
curLink = DefaultLink.builder().src(src).dst(dst).state(ACTIVE).build();
links.add(curLink);
if (d1 instanceof DeviceId && d2 instanceof DeviceId) {
TopologyVertex v1 = () -> (DeviceId) d1, v2 = () -> (DeviceId) d2;
createdGraph.addVertex(v1);
createdGraph.addVertex(v2);
createdGraph.addEdge(new TopologyEdge() {
@Override
public Link link() {
return curLink;
}
@Override
public TopologyVertex src() {
return v1;
}
@Override
public TopologyVertex dst() {
return v2;
}
});
}
}
}