blob: 66949cde15dd71aea25a841de50c0113407cb7c6 [file] [log] [blame]
Don Newton98fd8812019-09-23 15:15:02 -04001/*
2 Copyright 2017 the original author or authors.
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15*/
16
17package openflow
18
19import (
20 "encoding/json"
Don Newtone0d34a82019-11-14 10:58:06 -050021 ofp "github.com/donNewtonAlpha/goloxi/of13"
Don Newton98fd8812019-09-23 15:15:02 -040022 pb "github.com/opencord/voltha-protos/go/voltha"
Don Newton98fd8812019-09-23 15:15:02 -040023 "log"
24)
25
26func handlePacketOut(packetOut *ofp.PacketOut, deviceId string) {
27 jsonMessage, _ := json.Marshal(packetOut)
28 log.Printf("handlePacketOut called with %s", jsonMessage)
29 pktOut := pb.OfpPacketOut{}
30 pktOut.BufferId = packetOut.GetBufferId()
31 pktOut.InPort = uint32(packetOut.GetInPort())
32 var actions []*pb.OfpAction
33 inActions := packetOut.GetActions()
34 for i := 0; i < len(inActions); i++ {
35 action := inActions[i]
Don Newtone0d34a82019-11-14 10:58:06 -050036 newAction := extractAction(action)
37 /*var newAction = pb.OfpAction{}
Don Newton98fd8812019-09-23 15:15:02 -040038 newAction.Type = pb.OfpActionType(action.GetType())
Don Newtone0d34a82019-11-14 10:58:06 -050039 action.
40
41 */
42 actions = append(actions, newAction)
Don Newton98fd8812019-09-23 15:15:02 -040043 }
44 pktOut.Actions = actions
45 pktOut.Data = packetOut.GetData()
Don Newtone0d34a82019-11-14 10:58:06 -050046 js, _ := json.Marshal(pktOut)
47 log.Printf("PacketOut %s", js)
Don Newton98fd8812019-09-23 15:15:02 -040048 pbPacketOut := pb.PacketOut{}
49 pbPacketOut.PacketOut = &pktOut
50 pbPacketOut.Id = deviceId
51 packetOutChannel <- pbPacketOut
52}