blob: eeb621e4b775366c6ecd9ec5bbfe08783ab64d20 [file] [log] [blame]
Matteo Scandolof9d43412021-01-12 11:11:34 -08001/*
2 * Copyright 2018-present Open Networking Foundation
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 omci
18
19import (
20 "errors"
21 "github.com/google/gopacket"
22 "github.com/opencord/omci-lib-go"
23 me "github.com/opencord/omci-lib-go/generated"
24 log "github.com/sirupsen/logrus"
25)
26
27func ParseSetRequest(omciPkt gopacket.Packet) (*omci.SetRequest, error) {
28 msgLayer := omciPkt.Layer(omci.LayerTypeSetRequest)
29 if msgLayer == nil {
30 err := "omci Msg layer could not be detected for LayerTypeSetRequest"
31 omciLogger.Error(err)
32 return nil, errors.New(err)
33 }
34 msgObj, msgOk := msgLayer.(*omci.SetRequest)
35 if !msgOk {
36 err := "omci Msg layer could not be assigned for LayerTypeSetRequest"
37 omciLogger.Error(err)
38 return nil, errors.New(err)
39 }
40 return msgObj, nil
41}
42
43func CreateSetResponse(omciPkt gopacket.Packet, omciMsg *omci.OMCI) ([]byte, error) {
44
45 msgObj, err := ParseSetRequest(omciPkt)
46
47 if err != nil {
48 return nil, err
49 }
50
51 omciLogger.WithFields(log.Fields{
52 "EntityClass": msgObj.EntityClass,
53 "EntityInstance": msgObj.EntityInstance,
54 "AttributeMask": msgObj.AttributeMask,
55 }).Trace("received-omci-set-request")
56
57 response := &omci.SetResponse{
58 MeBasePacket: omci.MeBasePacket{
59 EntityClass: msgObj.EntityClass,
60 EntityInstance: msgObj.EntityInstance,
61 },
62 Result: me.Success,
63 }
64
65 pkt, err := serialize(omci.SetResponseType, response, omciMsg.TransactionID)
66 if err != nil {
67 omciLogger.WithFields(log.Fields{
68 "Err": err,
69 }).Error("cannot-serialize-SetResponse")
70 return nil, err
71 }
72
73 return pkt, nil
74
75}