blob: f720960e2e1845cb7fbd7e64bd7143487049b225 [file] [log] [blame]
Don Newton98fd8812019-09-23 15:15:02 -04001/*
David K. Bainbridge157bdab2020-01-16 14:38:05 -08002 Copyright 2020 the original author or authors.
Don Newton98fd8812019-09-23 15:15:02 -04003
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 (
Rohan Agrawalc32d9932020-06-15 11:01:47 +000020 "context"
Don Newton98fd8812019-09-23 15:15:02 -040021 "encoding/json"
Jonathan Hart828908c2020-04-15 14:23:45 -070022 ofp "github.com/opencord/goloxi/of13"
Maninder12b909f2020-10-23 14:23:36 +053023 "github.com/opencord/voltha-lib-go/v4/pkg/log"
Don Newton98fd8812019-09-23 15:15:02 -040024)
25
Rohan Agrawalc32d9932020-06-15 11:01:47 +000026func (ofc *OFConnection) handleGetConfigRequest(ctx context.Context, request *ofp.GetConfigRequest) {
Girish Kumar01e0c632020-08-10 16:48:56 +000027 span, ctx := log.CreateChildSpan(ctx, "openflow-get-config")
28 defer span.Finish()
29
David K. Bainbridge157bdab2020-01-16 14:38:05 -080030 if logger.V(log.DebugLevel) {
Don Newton7577f072020-01-06 12:41:11 -050031 js, _ := json.Marshal(request)
Rohan Agrawalc32d9932020-06-15 11:01:47 +000032 logger.Debugw(ctx, "handleGetConfigRequest called",
David K. Bainbridge157bdab2020-01-16 14:38:05 -080033 log.Fields{
34 "device-id": ofc.DeviceID,
35 "request": js})
Don Newton7577f072020-01-06 12:41:11 -050036 }
Don Newton98fd8812019-09-23 15:15:02 -040037 reply := ofp.NewGetConfigReply()
Don Newtone0d34a82019-11-14 10:58:06 -050038 reply.SetVersion(4)
Don Newton98fd8812019-09-23 15:15:02 -040039 reply.SetXid(request.GetXid())
40 reply.SetMissSendLen(ofp.OFPCMLNoBuffer)
David K. Bainbridge157bdab2020-01-16 14:38:05 -080041 if logger.V(log.DebugLevel) {
Don Newton7577f072020-01-06 12:41:11 -050042 js, _ := json.Marshal(reply)
Rohan Agrawalc32d9932020-06-15 11:01:47 +000043 logger.Debugw(ctx, "handleGetConfigRequest reply",
David K. Bainbridge157bdab2020-01-16 14:38:05 -080044 log.Fields{
45 "device-id": ofc.DeviceID,
46 "reply": js})
Don Newton7577f072020-01-06 12:41:11 -050047 }
Rohan Agrawalc32d9932020-06-15 11:01:47 +000048 if err := ofc.SendMessage(ctx, reply); err != nil {
49 logger.Errorw(ctx, "handle-get-config-request-send-message", log.Fields{"error": err})
David K. Bainbridgecac73ac2020-02-19 07:00:12 -080050 }
Don Newton98fd8812019-09-23 15:15:02 -040051}