donNewtonAlpha | e7ab5b9 | 2018-09-27 15:09:14 -0400 | [diff] [blame] | 1 | /* |
| 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 | */ |
| 16 | |
| 17 | package abstract |
| 18 | |
| 19 | import ( |
| 20 | "encoding/json" |
| 21 | ) |
| 22 | |
| 23 | func (chassis *Chassis) Serialize() ([]byte, error) { |
| 24 | return json.Marshal(chassis) |
| 25 | } |
| 26 | |
| 27 | func (chassis *Chassis) Deserialize(jsonData []byte) error { |
| 28 | err := json.Unmarshal(jsonData, chassis) |
| 29 | |
| 30 | for i := 0; i < len(chassis.Slots); i++ { |
| 31 | var slot *Slot |
| 32 | slot = &chassis.Slots[i] |
| 33 | slot.Parent = chassis |
| 34 | for j := 0; j < len(slot.Ports); j++ { |
| 35 | var port *Port |
| 36 | port = &slot.Ports[j] |
| 37 | port.Parent = slot |
| 38 | for k := 0; k < len(port.Onts); k++ { |
| 39 | port.Onts[k].Parent = port |
| 40 | } |
| 41 | } |
| 42 | } |
| 43 | |
| 44 | return err |
| 45 | } |