khenaidoo | bf6e7bb | 2018-08-14 22:27:29 -0400 | [diff] [blame] | 1 | /* |
| 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 | */ |
Stephane Barbarie | dc5022d | 2018-11-19 15:21:44 -0500 | [diff] [blame] | 16 | |
Stephane Barbarie | 4a2564d | 2018-07-26 11:02:58 -0400 | [diff] [blame] | 17 | package model |
| 18 | |
| 19 | import ( |
| 20 | "bytes" |
| 21 | "crypto/md5" |
| 22 | "encoding/json" |
| 23 | "fmt" |
| 24 | "github.com/golang/protobuf/proto" |
Scott Baker | 807addd | 2019-10-24 15:16:21 -0700 | [diff] [blame] | 25 | "github.com/opencord/voltha-lib-go/v2/pkg/log" |
Stephane Barbarie | 4a2564d | 2018-07-26 11:02:58 -0400 | [diff] [blame] | 26 | "reflect" |
| 27 | ) |
| 28 | |
Stephane Barbarie | dc5022d | 2018-11-19 15:21:44 -0500 | [diff] [blame] | 29 | // DataRevision stores the data associated to a revision along with its calculated checksum hash value |
Stephane Barbarie | 4a2564d | 2018-07-26 11:02:58 -0400 | [diff] [blame] | 30 | type DataRevision struct { |
| 31 | Data interface{} |
| 32 | Hash string |
| 33 | } |
| 34 | |
Stephane Barbarie | dc5022d | 2018-11-19 15:21:44 -0500 | [diff] [blame] | 35 | // NewDataRevision creates a new instance of a DataRevision structure |
| 36 | func NewDataRevision(root *root, data interface{}) *DataRevision { |
| 37 | dr := DataRevision{} |
| 38 | dr.Data = data |
| 39 | dr.Hash = dr.hashData(root, data) |
Stephane Barbarie | 4a2564d | 2018-07-26 11:02:58 -0400 | [diff] [blame] | 40 | |
Stephane Barbarie | dc5022d | 2018-11-19 15:21:44 -0500 | [diff] [blame] | 41 | return &dr |
Stephane Barbarie | 4a2564d | 2018-07-26 11:02:58 -0400 | [diff] [blame] | 42 | } |
| 43 | |
Stephane Barbarie | dc5022d | 2018-11-19 15:21:44 -0500 | [diff] [blame] | 44 | func (dr *DataRevision) hashData(root *root, data interface{}) string { |
Stephane Barbarie | 4a2564d | 2018-07-26 11:02:58 -0400 | [diff] [blame] | 45 | var buffer bytes.Buffer |
| 46 | |
| 47 | if IsProtoMessage(data) { |
| 48 | if pbdata, err := proto.Marshal(data.(proto.Message)); err != nil { |
Stephane Barbarie | dc5022d | 2018-11-19 15:21:44 -0500 | [diff] [blame] | 49 | log.Debugf("problem to marshal protobuf data --> err: %s", err.Error()) |
Stephane Barbarie | 4a2564d | 2018-07-26 11:02:58 -0400 | [diff] [blame] | 50 | } else { |
| 51 | buffer.Write(pbdata) |
Stephane Barbarie | dc5022d | 2018-11-19 15:21:44 -0500 | [diff] [blame] | 52 | // To ensure uniqueness in case data is nil, also include data type |
| 53 | buffer.Write([]byte(reflect.TypeOf(data).String())) |
Stephane Barbarie | 4a2564d | 2018-07-26 11:02:58 -0400 | [diff] [blame] | 54 | } |
| 55 | |
| 56 | } else if reflect.ValueOf(data).IsValid() { |
| 57 | dataObj := reflect.New(reflect.TypeOf(data).Elem()) |
| 58 | if json, err := json.Marshal(dataObj.Interface()); err != nil { |
Stephane Barbarie | dc5022d | 2018-11-19 15:21:44 -0500 | [diff] [blame] | 59 | log.Debugf("problem to marshal data --> err: %s", err.Error()) |
Stephane Barbarie | 4a2564d | 2018-07-26 11:02:58 -0400 | [diff] [blame] | 60 | } else { |
| 61 | buffer.Write(json) |
| 62 | } |
| 63 | } else { |
| 64 | dataObj := reflect.New(reflect.TypeOf(data).Elem()) |
| 65 | buffer.Write(dataObj.Bytes()) |
| 66 | } |
| 67 | |
Stephane Barbarie | dc5022d | 2018-11-19 15:21:44 -0500 | [diff] [blame] | 68 | // Add the root pointer that owns the current data for extra uniqueness |
| 69 | rootPtr := fmt.Sprintf("%p", root) |
| 70 | buffer.Write([]byte(rootPtr)) |
| 71 | |
Stephane Barbarie | 4a2564d | 2018-07-26 11:02:58 -0400 | [diff] [blame] | 72 | return fmt.Sprintf("%x", md5.Sum(buffer.Bytes()))[:12] |
| 73 | } |