blob: 5a981f3258445634875465ec538a1229f2211444 [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"
Andrea Campanella18448bc2021-07-08 18:47:22 +020023 "github.com/opencord/voltha-lib-go/v5/pkg/log"
Don Newton98fd8812019-09-23 15:15:02 -040024)
25
Rohan Agrawalc32d9932020-06-15 11:01:47 +000026func (ofc *OFConnection) handleBarrierRequest(ctx context.Context, request *ofp.BarrierRequest) {
Don Newton7577f072020-01-06 12:41:11 -050027
David K. Bainbridge157bdab2020-01-16 14:38:05 -080028 if logger.V(log.DebugLevel) {
Don Newton7577f072020-01-06 12:41:11 -050029 js, _ := json.Marshal(request)
Rohan Agrawalc32d9932020-06-15 11:01:47 +000030 logger.Debugw(ctx, "handleBarrierRequest called with %s",
David K. Bainbridge157bdab2020-01-16 14:38:05 -080031 log.Fields{
32 "device-id": ofc.DeviceID,
33 "request": js})
Don Newton7577f072020-01-06 12:41:11 -050034 }
Don Newton98fd8812019-09-23 15:15:02 -040035 reply := ofp.NewBarrierReply()
Don Newtone0d34a82019-11-14 10:58:06 -050036 reply.SetVersion(4)
Don Newton98fd8812019-09-23 15:15:02 -040037 reply.SetXid(request.GetXid())
Rohan Agrawalc32d9932020-06-15 11:01:47 +000038 if err := ofc.SendMessage(ctx, reply); err != nil {
39 logger.Errorw(ctx, "barrier-request-send-message", log.Fields{"error": err})
David K. Bainbridgecac73ac2020-02-19 07:00:12 -080040 }
Don Newton98fd8812019-09-23 15:15:02 -040041}