Chip Boling | 6e27b35 | 2020-02-14 09:10:01 -0600 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2018 - present. Boling Consulting Solutions (bcsw.net) |
Andrea Campanella | 7167ebb | 2020-02-24 09:56:38 +0100 | [diff] [blame] | 3 | * Copyright 2020-present Open Networking Foundation |
| 4 | |
Chip Boling | 6e27b35 | 2020-02-14 09:10:01 -0600 | [diff] [blame] | 5 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | * you may not use this file except in compliance with the License. |
| 7 | * You may obtain a copy of the License at |
Andrea Campanella | 7167ebb | 2020-02-24 09:56:38 +0100 | [diff] [blame] | 8 | |
Chip Boling | 6e27b35 | 2020-02-14 09:10:01 -0600 | [diff] [blame] | 9 | * http://www.apache.org/licenses/LICENSE-2.0 |
Andrea Campanella | 7167ebb | 2020-02-24 09:56:38 +0100 | [diff] [blame] | 10 | |
Chip Boling | 6e27b35 | 2020-02-14 09:10:01 -0600 | [diff] [blame] | 11 | * Unless required by applicable law or agreed to in writing, software |
| 12 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | * See the License for the specific language governing permissions and |
| 15 | * limitations under the License. |
Chip Boling | 6e27b35 | 2020-02-14 09:10:01 -0600 | [diff] [blame] | 16 | */ |
| 17 | |
| 18 | package omci |
| 19 | |
| 20 | import ( |
| 21 | "encoding/binary" |
| 22 | "fmt" |
Andrea Campanella | 7167ebb | 2020-02-24 09:56:38 +0100 | [diff] [blame] | 23 | me "github.com/opencord/omci-lib-go/generated" |
Chip Boling | 6e27b35 | 2020-02-14 09:10:01 -0600 | [diff] [blame] | 24 | "github.com/google/gopacket" |
| 25 | "github.com/google/gopacket/layers" |
| 26 | ) |
| 27 | |
| 28 | type MeBasePacket struct { |
| 29 | EntityClass me.ClassID |
| 30 | EntityInstance uint16 |
| 31 | |
| 32 | gopacket.Layer |
| 33 | layers.BaseLayer |
| 34 | MsgLayerType gopacket.LayerType |
| 35 | } |
| 36 | |
| 37 | func (msg *MeBasePacket) String() string { |
| 38 | return fmt.Sprintf("ClassID: %v, InstanceId: %d/%#x", |
| 39 | msg.EntityClass, msg.EntityInstance, msg.EntityInstance) |
| 40 | } |
| 41 | |
| 42 | // CanDecode returns the set of layer types that this DecodingLayer can decode |
| 43 | func (msg *MeBasePacket) CanDecode() gopacket.LayerClass { |
| 44 | return msg.MsgLayerType |
| 45 | } |
| 46 | |
| 47 | // LayerType returns MsgLayerType. It partially satisfies Layer and SerializableLayer |
| 48 | func (msg *MeBasePacket) LayerType() gopacket.LayerType { |
| 49 | return msg.MsgLayerType |
| 50 | } |
| 51 | |
| 52 | // LayerContents returns the bytes of the packet layer. |
| 53 | func (msg *MeBasePacket) LayerContents() []byte { |
| 54 | return msg.Contents |
| 55 | } |
| 56 | |
| 57 | // LayerPayload returns the bytes contained within the packet layer |
| 58 | func (msg *MeBasePacket) LayerPayload() []byte { |
| 59 | return msg.Payload |
| 60 | } |
| 61 | |
| 62 | // NextLayerType returns the layer type contained by this DecodingLayer |
| 63 | func (msg *MeBasePacket) NextLayerType() gopacket.LayerType { |
| 64 | return gopacket.LayerTypeZero |
| 65 | } |
| 66 | |
| 67 | // DecodeFromBytes decodes the given bytes into this layer |
| 68 | func (msg *MeBasePacket) DecodeFromBytes(data []byte, p gopacket.PacketBuilder) error { |
| 69 | // Note: Base OMCI frame already checked for frame with at least 10 octets |
| 70 | msg.EntityClass = me.ClassID(binary.BigEndian.Uint16(data[0:])) |
| 71 | msg.EntityInstance = binary.BigEndian.Uint16(data[2:]) |
| 72 | msg.BaseLayer = layers.BaseLayer{Contents: data[:4], Payload: data[4:]} |
| 73 | return nil |
| 74 | } |
| 75 | |
| 76 | // SerializeTo provides serialization of this message layer |
| 77 | func (msg *MeBasePacket) SerializeTo(b gopacket.SerializeBuffer) error { |
| 78 | // Add class ID and entity ID |
| 79 | bytes, err := b.PrependBytes(4) |
| 80 | if err != nil { |
| 81 | return err |
| 82 | } |
| 83 | binary.BigEndian.PutUint16(bytes, uint16(msg.EntityClass)) |
| 84 | binary.BigEndian.PutUint16(bytes[2:], msg.EntityInstance) |
| 85 | return nil |
| 86 | } |
| 87 | |
| 88 | type layerDecodingLayer interface { |
| 89 | gopacket.Layer |
| 90 | DecodeFromBytes([]byte, gopacket.PacketBuilder) error |
| 91 | NextLayerType() gopacket.LayerType |
| 92 | } |
| 93 | |
| 94 | func decodingLayerDecoder(d layerDecodingLayer, data []byte, p gopacket.PacketBuilder) error { |
| 95 | err := d.DecodeFromBytes(data, p) |
| 96 | if err != nil { |
| 97 | return err |
| 98 | } |
| 99 | p.AddLayer(d) |
| 100 | next := d.NextLayerType() |
| 101 | if next == gopacket.LayerTypeZero { |
| 102 | return nil |
| 103 | } |
| 104 | return p.NextDecoder(next) |
| 105 | } |