blob: beb134d56190288f4bd51a97fcd58b83026a6c03 [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 "context"
21 "encoding/json"
Don Newton98fd8812019-09-23 15:15:02 -040022 "log"
Don Newtonb437c6f2019-12-18 11:51:57 -050023
24 ofp "github.com/donNewtonAlpha/goloxi/of13"
25 "github.com/opencord/voltha-protos/v2/go/common"
26 pb "github.com/opencord/voltha-protos/v2/go/voltha"
Don Newton98fd8812019-09-23 15:15:02 -040027)
28
29func handleFeatureRequest(request *ofp.FeaturesRequest, deviceId string, client *Client) error {
30 message, _ := json.Marshal(request)
31 log.Printf("handleFeatureRequest called with %s\n ", message)
32 var grpcClient = *getGrpcClient()
33 var id = common.ID{Id: deviceId}
34 logicalDevice, err := grpcClient.GetLogicalDevice(context.Background(), &id)
35 reply := createFeaturesRequestReply(request.GetXid(), logicalDevice)
36 err = client.SendMessage(reply)
37 return err
38}
39func createFeaturesRequestReply(xid uint32, device *pb.LogicalDevice) *ofp.FeaturesReply {
40
41 featureReply := ofp.NewFeaturesReply()
Don Newtone0d34a82019-11-14 10:58:06 -050042 featureReply.SetVersion(4)
Don Newton98fd8812019-09-23 15:15:02 -040043 featureReply.SetXid(xid)
44 features := device.GetSwitchFeatures()
45 featureReply.SetDatapathId(device.GetDatapathId())
46 featureReply.SetNBuffers(features.GetNBuffers())
47 featureReply.SetNTables(uint8(features.GetNTables()))
48 featureReply.SetAuxiliaryId(uint8(features.GetAuxiliaryId()))
49 capabilities := features.GetCapabilities()
50 featureReply.SetCapabilities(ofp.Capabilities(capabilities))
51 return featureReply
52}