blob: f5dfc00ced319af7ad9b6085ca3c7f1fab1f2032 [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"
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +000022
Jonathan Hart828908c2020-04-15 14:23:45 -070023 ofp "github.com/opencord/goloxi/of13"
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +000024 "github.com/opencord/voltha-lib-go/v7/pkg/log"
Don Newton98fd8812019-09-23 15:15:02 -040025)
26
Rohan Agrawalc32d9932020-06-15 11:01:47 +000027func (ofc *OFConnection) handleBarrierRequest(ctx context.Context, request *ofp.BarrierRequest) {
Don Newton7577f072020-01-06 12:41:11 -050028
David K. Bainbridge157bdab2020-01-16 14:38:05 -080029 if logger.V(log.DebugLevel) {
Don Newton7577f072020-01-06 12:41:11 -050030 js, _ := json.Marshal(request)
Rohan Agrawalc32d9932020-06-15 11:01:47 +000031 logger.Debugw(ctx, "handleBarrierRequest called with %s",
David K. Bainbridge157bdab2020-01-16 14:38:05 -080032 log.Fields{
33 "device-id": ofc.DeviceID,
34 "request": js})
Don Newton7577f072020-01-06 12:41:11 -050035 }
Don Newton98fd8812019-09-23 15:15:02 -040036 reply := ofp.NewBarrierReply()
Don Newtone0d34a82019-11-14 10:58:06 -050037 reply.SetVersion(4)
Don Newton98fd8812019-09-23 15:15:02 -040038 reply.SetXid(request.GetXid())
Rohan Agrawalc32d9932020-06-15 11:01:47 +000039 if err := ofc.SendMessage(ctx, reply); err != nil {
40 logger.Errorw(ctx, "barrier-request-send-message", log.Fields{"error": err})
David K. Bainbridgecac73ac2020-02-19 07:00:12 -080041 }
Don Newton98fd8812019-09-23 15:15:02 -040042}