| /* |
| * Copyright 2018-present Open Networking Foundation |
| |
| * Licensed under the Apache License, Version 2.0 (the "License"); |
| * you may not use this file except in compliance with the License. |
| * You may obtain a copy of the License at |
| |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| */ |
| package model |
| |
| import ( |
| "bytes" |
| "compress/gzip" |
| "encoding/json" |
| "fmt" |
| "github.com/golang/protobuf/proto" |
| "io/ioutil" |
| "reflect" |
| "time" |
| ) |
| |
| type PersistedRevision struct { |
| Revision |
| Compress bool |
| kvStore *Backend |
| } |
| |
| func NewPersistedRevision(branch *Branch, data interface{}, children map[string][]Revision) Revision { |
| pr := &PersistedRevision{} |
| pr.kvStore = branch.Node.root.KvStore |
| pr.Revision = NewNonPersistedRevision(branch, data, children) |
| pr.Finalize() |
| return pr |
| } |
| |
| func (pr *PersistedRevision) Finalize() { |
| //pr.Revision.Finalize() |
| pr.store() |
| } |
| |
| type revData struct { |
| Children map[string][]string |
| Config string |
| } |
| |
| func (pr *PersistedRevision) store() { |
| if ok, _ := pr.kvStore.Get(pr.Revision.GetHash()); ok != nil { |
| return |
| } |
| |
| pr.storeConfig() |
| |
| childrenHashes := make(map[string][]string) |
| for fieldName, children := range pr.GetChildren() { |
| hashes := []string{} |
| for _, rev := range children { |
| hashes = append(hashes, rev.GetHash()) |
| } |
| childrenHashes[fieldName] = hashes |
| } |
| data := &revData{ |
| Children: childrenHashes, |
| Config: pr.GetConfig().Hash, |
| } |
| if blob, err := json.Marshal(data); err != nil { |
| // TODO report error |
| } else { |
| if pr.Compress { |
| var b bytes.Buffer |
| w := gzip.NewWriter(&b) |
| w.Write(blob) |
| w.Close() |
| blob = b.Bytes() |
| } |
| pr.kvStore.Put(pr.GetHash(), blob) |
| } |
| } |
| |
| func (pr *PersistedRevision) Load(branch *Branch, kvStore *Backend, msgClass interface{}, hash string) Revision { |
| blob, _ := kvStore.Get(hash) |
| |
| start := time.Now() |
| output := blob.Value.([]byte) |
| var data revData |
| if pr.Compress { |
| b := bytes.NewBuffer(blob.Value.([]byte)) |
| if r, err := gzip.NewReader(b); err != nil { |
| // TODO : report error |
| } else { |
| if output, err = ioutil.ReadAll(r); err != nil { |
| // TODO report error |
| } |
| } |
| } |
| if err := json.Unmarshal(output, &data); err != nil { |
| fmt.Errorf("problem to unmarshal data - %s", err.Error()) |
| } |
| |
| stop := time.Now() |
| GetProfiling().AddToInMemoryModelTime(stop.Sub(start).Seconds()) |
| configHash := data.Config |
| configData := pr.loadConfig(kvStore, msgClass, configHash) |
| |
| assembledChildren := make(map[string][]Revision) |
| |
| childrenHashes := data.Children |
| node := branch.Node |
| for fieldName, child := range ChildrenFields(msgClass) { |
| var children []Revision |
| for _, childHash := range childrenHashes[fieldName] { |
| childNode := node.MakeNode(reflect.New(child.ClassType).Elem().Interface(), "") |
| childNode.LoadLatest(kvStore, childHash) |
| childRev := childNode.Latest() |
| children = append(children, childRev) |
| } |
| assembledChildren[fieldName] = children |
| } |
| |
| rev := NewPersistedRevision(branch, configData, assembledChildren) |
| return rev |
| } |
| |
| func (pr *PersistedRevision) assignValue(a, b Revision) Revision { |
| a = b |
| return a |
| } |
| |
| func (pr *PersistedRevision) storeConfig() { |
| if ok, _ := pr.kvStore.Get(pr.GetConfig().Hash); ok != nil { |
| return |
| } |
| if blob, err := proto.Marshal(pr.GetConfig().Data.(proto.Message)); err != nil { |
| // TODO report error |
| } else { |
| if pr.Compress { |
| var b bytes.Buffer |
| w := gzip.NewWriter(&b) |
| w.Write(blob) |
| w.Close() |
| blob = b.Bytes() |
| } |
| pr.kvStore.Put(pr.GetConfig().Hash, blob) |
| } |
| } |
| |
| func (pr *PersistedRevision) loadConfig(kvStore *Backend, msgClass interface{}, hash string) interface{} { |
| blob, _ := kvStore.Get(hash) |
| start := time.Now() |
| output := blob.Value.([]byte) |
| |
| if pr.Compress { |
| b := bytes.NewBuffer(blob.Value.([]byte)) |
| if r, err := gzip.NewReader(b); err != nil { |
| // TODO : report error |
| } else { |
| if output, err = ioutil.ReadAll(r); err != nil { |
| // TODO report error |
| } |
| } |
| } |
| |
| var data reflect.Value |
| if msgClass != nil { |
| data = reflect.New(reflect.TypeOf(msgClass).Elem()) |
| if err := proto.Unmarshal(output, data.Interface().(proto.Message)); err != nil { |
| // TODO report error |
| } |
| } |
| |
| stop := time.Now() |
| |
| GetProfiling().AddToInMemoryModelTime(stop.Sub(start).Seconds()) |
| return data.Interface() |
| } |
| |
| func (pr *PersistedRevision) UpdateData(data interface{}, branch *Branch) Revision { |
| newNPR := pr.Revision.UpdateData(data, branch) |
| |
| newPR := &PersistedRevision{ |
| Revision: newNPR, |
| Compress: pr.Compress, |
| kvStore: pr.kvStore, |
| } |
| |
| newPR.Finalize() |
| |
| return newPR |
| } |
| |
| func (pr *PersistedRevision) UpdateChildren(name string, children []Revision, branch *Branch) Revision { |
| newNPR := pr.Revision.UpdateChildren(name, children, branch) |
| |
| newPR := &PersistedRevision{ |
| Revision: newNPR, |
| Compress: pr.Compress, |
| kvStore: pr.kvStore, |
| } |
| |
| newPR.Finalize() |
| |
| return newPR |
| } |
| |
| func (pr *PersistedRevision) UpdateAllChildren(children map[string][]Revision, branch *Branch) Revision { |
| newNPR := pr.Revision.UpdateAllChildren(children, branch) |
| |
| newPR := &PersistedRevision{ |
| Revision: newNPR, |
| Compress: pr.Compress, |
| kvStore: pr.kvStore, |
| } |
| |
| newPR.Finalize() |
| |
| return newPR |
| } |