blob: 6075b3f8d1cef7e30acc5cae9e3d7ef580d9951a [file] [log] [blame]
Matt Jeanneretcab955f2019-04-10 15:45:57 -04001/*
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 */
16package model
17
18import (
19 "bytes"
20 "crypto/md5"
21 "fmt"
22 "github.com/golang/protobuf/proto"
23 "github.com/opencord/voltha-go/common/log"
manikkaraj k9eb6cac2019-05-09 12:32:03 -040024 "github.com/opencord/voltha-go/db/kvstore"
Matt Jeanneretcab955f2019-04-10 15:45:57 -040025 "reflect"
26 "sort"
27 "sync"
Chaitrashree G Sbe6ab942019-05-24 06:42:49 -040028 "time"
Matt Jeanneretcab955f2019-04-10 15:45:57 -040029)
30
Matt Jeanneret384d8c92019-05-06 14:27:31 -040031// TODO: Cache logic will have to be revisited to cleanup unused entries in memory (disabled for now)
32//
manikkaraj k9eb6cac2019-05-09 12:32:03 -040033type revCacheSingleton struct {
34 sync.RWMutex
35 Cache sync.Map
36}
37
38var revCacheInstance *revCacheSingleton
39var revCacheOnce sync.Once
40
41func GetRevCache() *revCacheSingleton {
42 revCacheOnce.Do(func() {
43 revCacheInstance = &revCacheSingleton{Cache: sync.Map{}}
44 })
45 return revCacheInstance
46}
Matt Jeanneretcab955f2019-04-10 15:45:57 -040047
48type NonPersistedRevision struct {
Matt Jeanneret384d8c92019-05-06 14:27:31 -040049 mutex sync.RWMutex
50 Root *root
51 Config *DataRevision
52 childrenLock sync.RWMutex
53 Children map[string][]Revision
54 Hash string
55 Branch *Branch
56 WeakRef string
57 Name string
58 discarded bool
Chaitrashree G Sbe6ab942019-05-24 06:42:49 -040059 lastUpdate time.Time
Matt Jeanneretcab955f2019-04-10 15:45:57 -040060}
61
62func NewNonPersistedRevision(root *root, branch *Branch, data interface{}, children map[string][]Revision) Revision {
63 r := &NonPersistedRevision{}
64 r.Root = root
65 r.Branch = branch
66 r.Config = NewDataRevision(root, data)
67 r.Children = children
68 r.Hash = r.hashContent()
Matt Jeanneret384d8c92019-05-06 14:27:31 -040069 r.discarded = false
Matt Jeanneretcab955f2019-04-10 15:45:57 -040070 return r
71}
72
Matt Jeanneret384d8c92019-05-06 14:27:31 -040073func (npr *NonPersistedRevision) IsDiscarded() bool {
74 return npr.discarded
75}
76
Matt Jeanneretcab955f2019-04-10 15:45:57 -040077func (npr *NonPersistedRevision) SetConfig(config *DataRevision) {
78 npr.mutex.Lock()
79 defer npr.mutex.Unlock()
80 npr.Config = config
81}
82
83func (npr *NonPersistedRevision) GetConfig() *DataRevision {
84 npr.mutex.Lock()
85 defer npr.mutex.Unlock()
86 return npr.Config
87}
88
89func (npr *NonPersistedRevision) SetAllChildren(children map[string][]Revision) {
Matt Jeanneret384d8c92019-05-06 14:27:31 -040090 npr.childrenLock.Lock()
91 defer npr.childrenLock.Unlock()
92 npr.Children = make(map[string][]Revision)
Matt Jeanneretcab955f2019-04-10 15:45:57 -040093
Matt Jeanneret384d8c92019-05-06 14:27:31 -040094 for key, value := range children {
95 npr.Children[key] = make([]Revision, len(value))
96 copy(npr.Children[key], value)
Matt Jeanneretcab955f2019-04-10 15:45:57 -040097 }
98}
99
Matt Jeanneret384d8c92019-05-06 14:27:31 -0400100func (npr *NonPersistedRevision) SetChildren(name string, children []Revision) {
101 npr.childrenLock.Lock()
102 defer npr.childrenLock.Unlock()
103
104 npr.Children[name] = make([]Revision, len(children))
105 copy(npr.Children[name], children)
106}
107
Matt Jeanneretcab955f2019-04-10 15:45:57 -0400108func (npr *NonPersistedRevision) GetAllChildren() map[string][]Revision {
Matt Jeanneret384d8c92019-05-06 14:27:31 -0400109 npr.childrenLock.Lock()
110 defer npr.childrenLock.Unlock()
111
Matt Jeanneretcab955f2019-04-10 15:45:57 -0400112 return npr.Children
113}
114
115func (npr *NonPersistedRevision) GetChildren(name string) []Revision {
Matt Jeanneret384d8c92019-05-06 14:27:31 -0400116 npr.childrenLock.Lock()
117 defer npr.childrenLock.Unlock()
118
Matt Jeanneretcab955f2019-04-10 15:45:57 -0400119 if _, exists := npr.Children[name]; exists {
120 return npr.Children[name]
121 }
122 return nil
123}
124
125func (npr *NonPersistedRevision) SetHash(hash string) {
126 npr.mutex.Lock()
127 defer npr.mutex.Unlock()
128 npr.Hash = hash
129}
130
131func (npr *NonPersistedRevision) GetHash() string {
132 //npr.mutex.Lock()
133 //defer npr.mutex.Unlock()
134 return npr.Hash
135}
136
137func (npr *NonPersistedRevision) ClearHash() {
138 npr.mutex.Lock()
139 defer npr.mutex.Unlock()
140 npr.Hash = ""
141}
142
143func (npr *NonPersistedRevision) GetName() string {
144 //npr.mutex.Lock()
145 //defer npr.mutex.Unlock()
146 return npr.Name
147}
148
149func (npr *NonPersistedRevision) SetName(name string) {
150 //npr.mutex.Lock()
151 //defer npr.mutex.Unlock()
152 npr.Name = name
153}
154func (npr *NonPersistedRevision) SetBranch(branch *Branch) {
155 npr.mutex.Lock()
156 defer npr.mutex.Unlock()
157 npr.Branch = branch
158}
159
160func (npr *NonPersistedRevision) GetBranch() *Branch {
161 npr.mutex.Lock()
162 defer npr.mutex.Unlock()
163 return npr.Branch
164}
165
166func (npr *NonPersistedRevision) GetData() interface{} {
167 npr.mutex.Lock()
168 defer npr.mutex.Unlock()
169 if npr.Config == nil {
170 return nil
171 }
172 return npr.Config.Data
173}
174
175func (npr *NonPersistedRevision) GetNode() *node {
176 npr.mutex.Lock()
177 defer npr.mutex.Unlock()
178 return npr.Branch.Node
179}
180
181func (npr *NonPersistedRevision) Finalize(skipOnExist bool) {
Matt Jeanneret384d8c92019-05-06 14:27:31 -0400182 npr.Hash = npr.hashContent()
Matt Jeanneretcab955f2019-04-10 15:45:57 -0400183}
184
Matt Jeanneret384d8c92019-05-06 14:27:31 -0400185// hashContent generates a hash string based on the contents of the revision.
186// The string should be unique to avoid conflicts with other revisions
Matt Jeanneretcab955f2019-04-10 15:45:57 -0400187func (npr *NonPersistedRevision) hashContent() string {
188 var buffer bytes.Buffer
189 var childrenKeys []string
190
191 if npr.Config != nil {
192 buffer.WriteString(npr.Config.Hash)
193 }
194
Matt Jeanneret384d8c92019-05-06 14:27:31 -0400195 if npr.Name != "" {
196 buffer.WriteString(npr.Name)
197 }
198
Matt Jeanneretcab955f2019-04-10 15:45:57 -0400199 for key := range npr.Children {
200 childrenKeys = append(childrenKeys, key)
201 }
202
203 sort.Strings(childrenKeys)
204
205 if len(npr.Children) > 0 {
206 // Loop through sorted Children keys
207 for _, key := range childrenKeys {
208 for _, child := range npr.Children[key] {
209 if child != nil && child.GetHash() != "" {
210 buffer.WriteString(child.GetHash())
211 }
212 }
213 }
214 }
215
216 return fmt.Sprintf("%x", md5.Sum(buffer.Bytes()))[:12]
217}
218
Matt Jeanneret384d8c92019-05-06 14:27:31 -0400219// Get will retrieve the data for the current revision
Matt Jeanneretcab955f2019-04-10 15:45:57 -0400220func (npr *NonPersistedRevision) Get(depth int) interface{} {
221 // 1. Clone the data to avoid any concurrent access issues
222 // 2. The current rev might still be pointing to an old config
223 // thus, force the revision to get its latest value
224 latestRev := npr.GetBranch().GetLatest()
225 originalData := proto.Clone(latestRev.GetData().(proto.Message))
Matt Jeanneretcab955f2019-04-10 15:45:57 -0400226 data := originalData
Matt Jeanneretcab955f2019-04-10 15:45:57 -0400227
228 if depth != 0 {
Matt Jeanneret384d8c92019-05-06 14:27:31 -0400229 // FIXME: Traversing the struct through reflection sometimes corrupts the data.
230 // Unlike the original python implementation, golang structs are not lazy loaded.
231 // Keeping this non-critical logic for now, but Get operations should be forced to
232 // depth=0 to avoid going through the following loop.
Matt Jeanneretcab955f2019-04-10 15:45:57 -0400233 for fieldName, field := range ChildrenFields(latestRev.GetData()) {
234 childDataName, childDataHolder := GetAttributeValue(data, fieldName, 0)
235 if field.IsContainer {
236 for _, rev := range latestRev.GetChildren(fieldName) {
237 childData := rev.Get(depth - 1)
238 foundEntry := false
239 for i := 0; i < childDataHolder.Len(); i++ {
240 cdh_if := childDataHolder.Index(i).Interface()
241 if cdh_if.(proto.Message).String() == childData.(proto.Message).String() {
242 foundEntry = true
243 break
244 }
245 }
246 if !foundEntry {
247 // avoid duplicates by adding it only if the child was not found in the holder
248 childDataHolder = reflect.Append(childDataHolder, reflect.ValueOf(childData))
249 }
250 }
251 } else {
Matt Jeanneret384d8c92019-05-06 14:27:31 -0400252 if revs := npr.GetBranch().GetLatest().GetChildren(fieldName); revs != nil && len(revs) > 0 {
253 rev := revs[0]
Matt Jeanneretcab955f2019-04-10 15:45:57 -0400254 if rev != nil {
255 childData := rev.Get(depth - 1)
256 if reflect.TypeOf(childData) == reflect.TypeOf(childDataHolder.Interface()) {
257 childDataHolder = reflect.ValueOf(childData)
258 }
259 }
260 }
261 }
262 // Merge child data with cloned object
263 reflect.ValueOf(data).Elem().FieldByName(childDataName).Set(childDataHolder)
264 }
265 }
266
267 result := data
268
269 if result != nil {
270 // We need to send back a copy of the retrieved object
271 result = proto.Clone(data.(proto.Message))
272 }
273
274 return result
275}
276
Matt Jeanneret384d8c92019-05-06 14:27:31 -0400277// UpdateData will refresh the data content of the revision
Matt Jeanneretcab955f2019-04-10 15:45:57 -0400278func (npr *NonPersistedRevision) UpdateData(data interface{}, branch *Branch) Revision {
279 npr.mutex.Lock()
280 defer npr.mutex.Unlock()
281
Matt Jeanneret384d8c92019-05-06 14:27:31 -0400282 // Do not update the revision if data is the same
Matt Jeanneretcab955f2019-04-10 15:45:57 -0400283 if npr.Config.Data != nil && npr.Config.hashData(npr.Root, data) == npr.Config.Hash {
284 log.Debugw("stored-data-matches-latest", log.Fields{"stored": npr.Config.Data, "provided": data})
285 return npr
286 }
287
Matt Jeanneret384d8c92019-05-06 14:27:31 -0400288 // Construct a new revision based on the current one
Matt Jeanneretcab955f2019-04-10 15:45:57 -0400289 newRev := NonPersistedRevision{}
290 newRev.Config = NewDataRevision(npr.Root, data)
291 newRev.Hash = npr.Hash
Matt Jeanneret384d8c92019-05-06 14:27:31 -0400292 newRev.Root = npr.Root
293 newRev.Name = npr.Name
Matt Jeanneretcab955f2019-04-10 15:45:57 -0400294 newRev.Branch = branch
Chaitrashree G Sbe6ab942019-05-24 06:42:49 -0400295 newRev.lastUpdate = npr.lastUpdate
Matt Jeanneretcab955f2019-04-10 15:45:57 -0400296
297 newRev.Children = make(map[string][]Revision)
Matt Jeanneret384d8c92019-05-06 14:27:31 -0400298 for entryName, childrenEntry := range branch.GetLatest().GetAllChildren() {
Matt Jeanneretcab955f2019-04-10 15:45:57 -0400299 newRev.Children[entryName] = append(newRev.Children[entryName], childrenEntry...)
300 }
301
302 newRev.Finalize(false)
303
304 return &newRev
305}
306
Matt Jeanneret384d8c92019-05-06 14:27:31 -0400307// UpdateChildren will refresh the list of children with the provided ones
308// It will carefully go through the list and ensure that no child is lost
Matt Jeanneretcab955f2019-04-10 15:45:57 -0400309func (npr *NonPersistedRevision) UpdateChildren(name string, children []Revision, branch *Branch) Revision {
310 npr.mutex.Lock()
311 defer npr.mutex.Unlock()
312
Matt Jeanneret384d8c92019-05-06 14:27:31 -0400313 // Construct a new revision based on the current one
314 updatedRev := &NonPersistedRevision{}
Matt Jeanneretcab955f2019-04-10 15:45:57 -0400315 updatedRev.Config = NewDataRevision(npr.Root, npr.Config.Data)
316 updatedRev.Hash = npr.Hash
317 updatedRev.Branch = branch
Matt Jeanneret384d8c92019-05-06 14:27:31 -0400318 updatedRev.Name = npr.Name
Chaitrashree G Sbe6ab942019-05-24 06:42:49 -0400319 updatedRev.lastUpdate = npr.lastUpdate
Matt Jeanneret384d8c92019-05-06 14:27:31 -0400320
321 updatedRev.Children = make(map[string][]Revision)
322 for entryName, childrenEntry := range branch.GetLatest().GetAllChildren() {
323 updatedRev.Children[entryName] = append(updatedRev.Children[entryName], childrenEntry...)
324 }
325
326 var updatedChildren []Revision
327
328 // Verify if the map contains already contains an entry matching the name value
329 // If so, we need to retain the contents of that entry and merge them with the provided children revision list
330 if existingChildren := branch.GetLatest().GetChildren(name); existingChildren != nil {
331 // Construct a map of unique child names with the respective index value
332 // for the children in the existing revision as well as the new ones
333 existingNames := make(map[string]int)
334 newNames := make(map[string]int)
335
336 for i, newChild := range children {
337 newNames[newChild.GetName()] = i
338 }
339
340 for i, existingChild := range existingChildren {
341 existingNames[existingChild.GetName()] = i
342
343 // If an existing entry is not in the new list, add it to the updated list, so it is not forgotten
344 if _, exists := newNames[existingChild.GetName()]; !exists {
345 updatedChildren = append(updatedChildren, existingChild)
346 }
347 }
348
349 log.Debugw("existing-children-names", log.Fields{"hash": npr.GetHash(), "names": existingNames})
350
351 // Merge existing and new children
352 for _, newChild := range children {
353 nameIndex, nameExists := existingNames[newChild.GetName()]
354
355 // Does the existing list contain a child with that name?
356 if nameExists {
357 // Check if the data has changed or not
358 if existingChildren[nameIndex].GetData().(proto.Message).String() != newChild.GetData().(proto.Message).String() {
359 // replace entry
360 newChild.GetNode().Root = existingChildren[nameIndex].GetNode().Root
361 updatedChildren = append(updatedChildren, newChild)
362 } else {
363 // keep existing entry
364 updatedChildren = append(updatedChildren, existingChildren[nameIndex])
365 }
366 } else {
367 // new entry ... just add it
368 updatedChildren = append(updatedChildren, newChild)
369 }
370 }
371
372 // Save children in new revision
373 updatedRev.SetChildren(name, updatedChildren)
374
375 updatedNames := make(map[string]int)
376 for i, updatedChild := range updatedChildren {
377 updatedNames[updatedChild.GetName()] = i
378 }
379
380 log.Debugw("updated-children-names", log.Fields{"hash": npr.GetHash(), "names": updatedNames})
381
382 } else {
383 // There are no children available, just save the provided ones
384 updatedRev.SetChildren(name, children)
385 }
386
Matt Jeanneretcab955f2019-04-10 15:45:57 -0400387 updatedRev.Finalize(false)
388
389 return updatedRev
390}
391
Matt Jeanneret384d8c92019-05-06 14:27:31 -0400392// UpdateAllChildren will replace the current list of children with the provided ones
Matt Jeanneretcab955f2019-04-10 15:45:57 -0400393func (npr *NonPersistedRevision) UpdateAllChildren(children map[string][]Revision, branch *Branch) Revision {
394 npr.mutex.Lock()
395 defer npr.mutex.Unlock()
396
397 newRev := npr
398 newRev.Config = npr.Config
399 newRev.Hash = npr.Hash
400 newRev.Branch = branch
Matt Jeanneret384d8c92019-05-06 14:27:31 -0400401 newRev.Name = npr.Name
Chaitrashree G Sbe6ab942019-05-24 06:42:49 -0400402 newRev.lastUpdate = npr.lastUpdate
Matt Jeanneret384d8c92019-05-06 14:27:31 -0400403
Matt Jeanneretcab955f2019-04-10 15:45:57 -0400404 newRev.Children = make(map[string][]Revision)
405 for entryName, childrenEntry := range children {
406 newRev.Children[entryName] = append(newRev.Children[entryName], childrenEntry...)
407 }
408 newRev.Finalize(false)
409
410 return newRev
411}
412
Matt Jeanneret384d8c92019-05-06 14:27:31 -0400413// Drop is used to indicate when a revision is no longer required
Matt Jeanneretcab955f2019-04-10 15:45:57 -0400414func (npr *NonPersistedRevision) Drop(txid string, includeConfig bool) {
manikkaraj k9eb6cac2019-05-09 12:32:03 -0400415 log.Debugw("dropping-revision", log.Fields{"hash": npr.GetHash(), "name": npr.GetName()})
Matt Jeanneret384d8c92019-05-06 14:27:31 -0400416 npr.discarded = true
417}
Matt Jeanneretcab955f2019-04-10 15:45:57 -0400418
Matt Jeanneret384d8c92019-05-06 14:27:31 -0400419// ChildDrop will remove a child entry matching the provided parameters from the current revision
420func (npr *NonPersistedRevision) ChildDrop(childType string, childHash string) {
421 if childType != "" {
422 children := make([]Revision, len(npr.GetChildren(childType)))
423 copy(children, npr.GetChildren(childType))
424 for i, child := range children {
425 if child.GetHash() == childHash {
426 children = append(children[:i], children[i+1:]...)
427 npr.SetChildren(childType, children)
428 break
429 }
430 }
Matt Jeanneretcab955f2019-04-10 15:45:57 -0400431 }
Matt Jeanneretcab955f2019-04-10 15:45:57 -0400432}
433
Chaitrashree G Sbe6ab942019-05-24 06:42:49 -0400434func (npr *NonPersistedRevision) SetLastUpdate(ts ...time.Time) {
435 npr.mutex.Lock()
436 defer npr.mutex.Unlock()
437
438 if ts != nil && len(ts) > 0 {
439 npr.lastUpdate = ts[0]
440 } else {
441 npr.lastUpdate = time.Now()
442 }
443}
444
445func (npr *NonPersistedRevision) GetLastUpdate() time.Time {
446 npr.mutex.RLock()
447 defer npr.mutex.RUnlock()
448
449 return npr.lastUpdate
450}
451
manikkaraj k9eb6cac2019-05-09 12:32:03 -0400452func (npr *NonPersistedRevision) LoadFromPersistence(path string, txid string, blobs map[string]*kvstore.KVPair) []Revision {
Matt Jeanneretcab955f2019-04-10 15:45:57 -0400453 // stub... required by interface
454 return nil
455}
456
457func (npr *NonPersistedRevision) SetupWatch(key string) {
458 // stub ... required by interface
459}
460
461func (pr *NonPersistedRevision) StorageDrop(txid string, includeConfig bool) {
462 // stub ... required by interface
463}