use of org.openkilda.server42.stats.messaging.Statistics.LatencyPacketBucket.Builder in project open-kilda by telstra.
the class Gate method removeFlow.
private void removeFlow(String flowId, FlowDirection direction) throws InvalidProtocolBufferException {
Builder builder = CommandPacket.newBuilder();
Flow flow = Flow.newBuilder().setFlowId(flowId).setDirection(FlowDirection.toBoolean(direction)).build();
FlowRttControl.RemoveFlow removeFlow = FlowRttControl.RemoveFlow.newBuilder().setFlow(flow).build();
builder.setType(Type.REMOVE_FLOW);
builder.addCommand(Any.pack(removeFlow));
CommandPacket packet = builder.build();
zeroMqClient.send(packet);
}
use of org.openkilda.server42.stats.messaging.Statistics.LatencyPacketBucket.Builder in project open-kilda by telstra.
the class Gate method listen.
@KafkaHandler
void listen(@Payload AddFlow data, @Header(KafkaHeaders.RECEIVED_MESSAGE_KEY) String switchIdKey) {
SwitchId switchId = new SwitchId(switchIdKey);
Builder builder = CommandPacket.newBuilder();
Flow flow = Flow.newBuilder().setFlowId(data.getFlowId()).setEncapsulationType(Flow.EncapsulationType.VLAN).setTunnelId(data.getTunnelId()).setTransitEncapsulationType(Flow.EncapsulationType.VLAN).setInnerTunnelId(data.getInnerTunnelId()).setTransitTunnelId(switchToVlanMap.get(switchIdKey)).setDirection(FlowDirection.toBoolean(data.getDirection())).setUdpSrcPort(flowRttUdpSrcPortOffset + data.getPort()).setDstMac(switchId.toMacAddress()).setHashCode(data.hashCode()).build();
FlowRttControl.AddFlow addFlow = FlowRttControl.AddFlow.newBuilder().setFlow(flow).build();
builder.setType(Type.ADD_FLOW);
builder.addCommand(Any.pack(addFlow));
CommandPacket packet = builder.build();
try {
zeroMqClient.send(packet);
} catch (InvalidProtocolBufferException e) {
log.error("Marshalling error on {}", data);
}
}
use of org.openkilda.server42.stats.messaging.Statistics.LatencyPacketBucket.Builder in project open-kilda by telstra.
the class Gate method listen.
@KafkaHandler
void listen(ClearFlows data, @Header(KafkaHeaders.RECEIVED_MESSAGE_KEY) String switchIdKey) {
Builder builder = CommandPacket.newBuilder();
builder.setType(Type.CLEAR_FLOWS);
SwitchId switchId = new SwitchId(switchIdKey);
FlowRttControl.ClearFlowsFilter clearFlowsFilter = FlowRttControl.ClearFlowsFilter.newBuilder().setDstMac(switchId.toMacAddress()).build();
builder.addCommand(Any.pack(clearFlowsFilter));
try {
zeroMqClient.send(builder.build());
} catch (InvalidProtocolBufferException e) {
log.error("Marshalling error on {}", data);
}
}
use of org.openkilda.server42.stats.messaging.Statistics.LatencyPacketBucket.Builder in project open-kilda by telstra.
the class GateTest method listFlowsTest.
@Test
public void listFlowsTest() throws Exception {
Builder commandPacketResponseBuilded = CommandPacketResponse.newBuilder();
Flow flow1 = Flow.newBuilder().setFlowId("some-flow-id-01").build();
Flow flow2 = Flow.newBuilder().setFlowId("some-flow-id-02").build();
commandPacketResponseBuilded.addResponse(Any.pack(flow1));
commandPacketResponseBuilded.addResponse(Any.pack(flow2));
CommandPacketResponse commandPacketResponse = commandPacketResponseBuilded.build();
when(zeroMqClient.send(argThat(commandPacket -> commandPacket.getType() == Type.LIST_FLOWS))).thenReturn(commandPacketResponse);
String switchId = "00:00:1b:45:18:d6:71:5a";
Headers headers = Headers.builder().correlationId("some-correlation-id").build();
gate.listen(new ListFlowsRequest(headers), switchId);
ArgumentCaptor<ListFlowsResponse> argument = ArgumentCaptor.forClass(ListFlowsResponse.class);
verify(template).send(eq(toStorm), argument.capture());
ListFlowsResponse response = argument.getValue();
assertThat(response.getFlowIds()).contains(flow1.getFlowId(), flow2.getFlowId());
}
use of org.openkilda.server42.stats.messaging.Statistics.LatencyPacketBucket.Builder in project open-kilda by telstra.
the class ControlServer method run.
/**
* We get commands from zmq socket and execute them one by one.
*/
@Override
public void run() {
log.info("started");
try (ZContext context = new ZContext()) {
Socket server = context.createSocket(ZMQ.REP);
server.bind(bindEndpoint);
while (!isInterrupted()) {
byte[] request = server.recv();
try {
CommandPacket commandPacket = CommandPacket.parseFrom(request);
Builder builder = CommandPacketResponse.newBuilder();
builder.setCommunicationId(commandPacket.getCommunicationId());
log.info("command type {}", commandPacket.getType().toString());
log.info("flow list before {}", flows.keySet().toString());
switch(commandPacket.getType()) {
case ADD_FLOW:
for (Any any : commandPacket.getCommandList()) {
AddFlow addFlow = any.unpack(AddFlow.class);
flows.put(FlowKey.fromFlow(addFlow.getFlow()), addFlow.getFlow());
statsServer.addFlow(addFlow.getFlow());
}
break;
case REMOVE_FLOW:
for (Any any : commandPacket.getCommandList()) {
RemoveFlow removeFlow = any.unpack(RemoveFlow.class);
FlowKey flowKey = FlowKey.fromFlow(removeFlow.getFlow());
flows.remove(flowKey);
statsServer.removeFlow(flowKey);
}
break;
case CLEAR_FLOWS:
if (commandPacket.getCommandCount() > 0) {
Any command = commandPacket.getCommand(0);
ClearFlowsFilter filter = command.unpack(ClearFlowsFilter.class);
List<FlowKey> keys = flows.values().stream().filter(flow -> flow.getDstMac().equals(filter.getDstMac())).map(FlowKey::fromFlow).collect(Collectors.toList());
flows.keySet().removeAll(keys);
keys.forEach(statsServer::removeFlow);
} else {
flows.clear();
statsServer.clearFlows();
}
break;
case LIST_FLOWS:
if (commandPacket.getCommandCount() > 0) {
Any command = commandPacket.getCommand(0);
ListFlowsFilter filter = command.unpack(ListFlowsFilter.class);
flows.values().stream().filter(flow -> flow.getDstMac().equals(filter.getDstMac())).forEach(flow -> builder.addResponse(Any.pack(flow)));
} else {
for (Flow flow : flows.values()) {
builder.addResponse(Any.pack(flow));
}
}
break;
case PUSH_SETTINGS:
log.warn("will be shipped with stats application");
Any command = commandPacket.getCommand(0);
PushSettings settings = command.unpack(PushSettings.class);
log.info(settings.toString());
break;
case ADD_ISL:
for (Any any : commandPacket.getCommandList()) {
AddIsl addIsl = any.unpack(AddIsl.class);
IslEndpoint endpoint = addIsl.getIsl();
isls.computeIfAbsent(endpoint.getSwitchId(), k -> new HashSet<>()).add(endpoint.getPort());
statsServer.addIsl(endpoint.getSwitchId(), endpoint.getPort());
}
break;
case REMOVE_ISL:
for (Any any : commandPacket.getCommandList()) {
RemoveIsl removeIsl = any.unpack(RemoveIsl.class);
IslEndpoint endpoint = removeIsl.getIsl();
isls.getOrDefault(endpoint.getSwitchId(), emptySet()).remove(endpoint.getPort());
statsServer.removeIsl(endpoint.getSwitchId(), endpoint.getPort());
}
break;
case CLEAR_ISLS:
if (commandPacket.getCommandCount() > 0) {
ClearIslsFilter filter = commandPacket.getCommand(0).unpack(ClearIslsFilter.class);
Set<Integer> ports = Optional.ofNullable(isls.get(filter.getSwitchId())).orElse(emptySet());
isls.remove(filter.getSwitchId());
ports.forEach(p -> statsServer.removeIsl(filter.getSwitchId(), p));
} else {
isls.clear();
statsServer.clearIsls();
}
break;
case LIST_ISLS:
if (commandPacket.getCommandCount() > 0) {
ListIslsFilter filter = commandPacket.getCommand(0).unpack(ListIslsFilter.class);
Optional.ofNullable(isls.get(filter.getSwitchId())).orElse(emptySet()).forEach(port -> builder.addResponse(Any.pack(IslEndpoint.newBuilder().setSwitchId(filter.getSwitchId()).setPort(port).build())));
} else {
isls.forEach((switchId, ports) -> ports.forEach(port -> builder.addResponse(Any.pack(IslEndpoint.newBuilder().setSwitchId(switchId).setPort(port).build()))));
}
break;
case UNRECOGNIZED:
default:
log.error("Unknown command type");
break;
}
log.info("flow list after {}", flows.keySet().toString());
server.send(builder.build().toByteArray());
} catch (InvalidProtocolBufferException e) {
log.error("marshalling error");
}
}
}
}
Aggregations