blob: 32296237f92d4756e4b0d805a4d0276f070fb80c [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 Newtonb437c6f2019-12-18 11:51:57 -050022 pb "github.com/opencord/voltha-protos/v2/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)
Don Newtonb437c6f2019-12-18 11:51:57 -050037 js, _ := json.Marshal(newAction)
38 log.Printf("PACKET_OUT ACTION %s", js)
Don Newtone0d34a82019-11-14 10:58:06 -050039 /*var newAction = pb.OfpAction{}
Don Newton98fd8812019-09-23 15:15:02 -040040 newAction.Type = pb.OfpActionType(action.GetType())
Don Newtone0d34a82019-11-14 10:58:06 -050041 action.
42
43 */
44 actions = append(actions, newAction)
Don Newton98fd8812019-09-23 15:15:02 -040045 }
46 pktOut.Actions = actions
47 pktOut.Data = packetOut.GetData()
Don Newtone0d34a82019-11-14 10:58:06 -050048 js, _ := json.Marshal(pktOut)
49 log.Printf("PacketOut %s", js)
Don Newton98fd8812019-09-23 15:15:02 -040050 pbPacketOut := pb.PacketOut{}
51 pbPacketOut.PacketOut = &pktOut
52 pbPacketOut.Id = deviceId
53 packetOutChannel <- pbPacketOut
54}