blob: 6e947a50c2b01cfb305c2cc943554720b29f54ad [file] [log] [blame]
Author Namea594e632018-08-10 11:33:58 -04001/*
2 Copyright 2017 the original author or authors.
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*/
16package chassisSerialize
17
18import (
19 "encoding/json"
20
21 "gerrit.opencord.org/abstract-olt/models/abstract"
22)
23
24func Serialize(chassis *abstract.Chassis) ([]byte, error) {
25 return json.Marshal(chassis)
26}
27
28func Deserialize(jsonData []byte) (*abstract.Chassis, error) {
29 var chassis abstract.Chassis
30 err := json.Unmarshal(jsonData, &chassis)
31
32 for i := 0; i < len(chassis.Slots); i++ {
33 var slot *abstract.Slot
34 slot = &chassis.Slots[i]
35 slot.Parent = &chassis
36 for j := 0; j < len(slot.Ports); j++ {
37 var port *abstract.Port
38 port = &slot.Ports[j]
39 port.Parent = slot
40 for k := 0; k < len(port.Onts); k++ {
41 port.Onts[k].Parent = port
42 }
43 }
44 }
45
46 return &chassis, err
47}