blob: 957e0cad73f6d8ab8e289cf9b692e350a2004e61 [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 */
16
17package model
18
19import (
Scott Baker51290152019-10-24 14:23:20 -070020 "github.com/opencord/voltha-lib-go/v2/pkg/log"
Matt Jeanneretcab955f2019-04-10 15:45:57 -040021 "sync"
22)
23
24// TODO: implement weak references or something equivalent
25// TODO: missing proper logging
26
27// Branch structure is used to classify a collection of transaction based revisions
28type Branch struct {
Manikkaraj kb1d51442019-07-23 10:41:02 -040029 mutex sync.RWMutex
Matt Jeanneret384d8c92019-05-06 14:27:31 -040030 Node *node
31 Txid string
32 Origin Revision
33 Revisions map[string]Revision
34 LatestLock sync.RWMutex
35 Latest Revision
Matt Jeanneretcab955f2019-04-10 15:45:57 -040036}
37
38// NewBranch creates a new instance of the Branch structure
39func NewBranch(node *node, txid string, origin Revision, autoPrune bool) *Branch {
40 b := &Branch{}
41 b.Node = node
42 b.Txid = txid
43 b.Origin = origin
44 b.Revisions = make(map[string]Revision)
45 b.Latest = origin
46
47 return b
48}
49
Matt Jeanneret384d8c92019-05-06 14:27:31 -040050// Utility function to extract all children names for a given revision (mostly for debugging purposes)
51func (b *Branch) retrieveChildrenNames(revision Revision) []string {
52 var childrenNames []string
53
54 for _, child := range revision.GetChildren("devices") {
55 childrenNames = append(childrenNames, child.GetName())
56 }
57
58 return childrenNames
59}
60
61// Utility function to compare children names and report the missing ones (mostly for debugging purposes)
62func (b *Branch) findMissingChildrenNames(previousNames, latestNames []string) []string {
63 var missingNames []string
64
65 for _, previousName := range previousNames {
66 found := false
67
68 if len(latestNames) == 0 {
69 break
70 }
71
72 for _, latestName := range latestNames {
73 if previousName == latestName {
74 found = true
75 break
76 }
77 }
78 if !found {
79 missingNames = append(missingNames, previousName)
80 }
81 }
82
83 return missingNames
84}
85
Matt Jeanneretcab955f2019-04-10 15:45:57 -040086// SetLatest assigns the latest revision for this branch
87func (b *Branch) SetLatest(latest Revision) {
Manikkaraj kb1d51442019-07-23 10:41:02 -040088 b.mutex.Lock()
89 defer b.mutex.Unlock()
Matt Jeanneretcab955f2019-04-10 15:45:57 -040090
91 if b.Latest != nil {
Matt Jeanneret384d8c92019-05-06 14:27:31 -040092 log.Debugw("updating-latest-revision", log.Fields{"current": b.Latest.GetHash(), "new": latest.GetHash()})
Matt Jeanneretcab955f2019-04-10 15:45:57 -040093
Matt Jeanneret384d8c92019-05-06 14:27:31 -040094 // Go through list of children names in current revision and new revision
95 // and then compare the resulting outputs to ensure that we have not lost any entries.
Matt Jeanneret384d8c92019-05-06 14:27:31 -040096
manikkaraj k9eb6cac2019-05-09 12:32:03 -040097 if level, _ := log.GetPackageLogLevel(); level == log.DebugLevel {
98 var previousNames, latestNames, missingNames []string
Matt Jeanneret384d8c92019-05-06 14:27:31 -040099
manikkaraj k9eb6cac2019-05-09 12:32:03 -0400100 if previousNames = b.retrieveChildrenNames(b.Latest); len(previousNames) > 0 {
101 log.Debugw("children-of-previous-revision", log.Fields{"hash": b.Latest.GetHash(), "names": previousNames})
102 }
Matt Jeanneret384d8c92019-05-06 14:27:31 -0400103
manikkaraj k9eb6cac2019-05-09 12:32:03 -0400104 if latestNames = b.retrieveChildrenNames(b.Latest); len(latestNames) > 0 {
105 log.Debugw("children-of-latest-revision", log.Fields{"hash": latest.GetHash(), "names": latestNames})
106 }
107
108 if missingNames = b.findMissingChildrenNames(previousNames, latestNames); len(missingNames) > 0 {
109 log.Debugw("children-missing-in-latest-revision", log.Fields{"hash": latest.GetHash(), "names": missingNames})
110 }
Matt Jeanneret384d8c92019-05-06 14:27:31 -0400111 }
112
113 } else {
114 log.Debugw("setting-latest-revision", log.Fields{"new": latest.GetHash()})
115 }
Matt Jeanneretcab955f2019-04-10 15:45:57 -0400116
117 b.Latest = latest
118}
119
120// GetLatest retrieves the latest revision of the branch
121func (b *Branch) GetLatest() Revision {
Manikkaraj kb1d51442019-07-23 10:41:02 -0400122 b.mutex.RLock()
123 defer b.mutex.RUnlock()
Matt Jeanneretcab955f2019-04-10 15:45:57 -0400124
125 return b.Latest
126}
127
128// GetOrigin retrieves the original revision of the branch
129func (b *Branch) GetOrigin() Revision {
Manikkaraj kb1d51442019-07-23 10:41:02 -0400130 b.mutex.RLock()
131 defer b.mutex.RUnlock()
Matt Jeanneretcab955f2019-04-10 15:45:57 -0400132
133 return b.Origin
134}
135
136// AddRevision inserts a new revision to the branch
137func (b *Branch) AddRevision(revision Revision) {
138 if revision != nil && b.GetRevision(revision.GetHash()) == nil {
139 b.SetRevision(revision.GetHash(), revision)
140 }
141}
142
143// GetRevision pulls a revision entry at the specified hash
144func (b *Branch) GetRevision(hash string) Revision {
Manikkaraj kb1d51442019-07-23 10:41:02 -0400145 b.mutex.RLock()
146 defer b.mutex.RUnlock()
Matt Jeanneretcab955f2019-04-10 15:45:57 -0400147
148 if revision, ok := b.Revisions[hash]; ok {
149 return revision
150 }
151
152 return nil
153}
154
155// SetRevision updates a revision entry at the specified hash
156func (b *Branch) SetRevision(hash string, revision Revision) {
Manikkaraj kb1d51442019-07-23 10:41:02 -0400157 b.mutex.Lock()
158 defer b.mutex.Unlock()
Matt Jeanneretcab955f2019-04-10 15:45:57 -0400159
160 b.Revisions[hash] = revision
161}
Matt Jeanneret384d8c92019-05-06 14:27:31 -0400162
163// DeleteRevision removes a revision with the specified hash
164func (b *Branch) DeleteRevision(hash string) {
Manikkaraj kb1d51442019-07-23 10:41:02 -0400165 b.mutex.Lock()
166 defer b.mutex.Unlock()
Matt Jeanneret384d8c92019-05-06 14:27:31 -0400167
168 if _, ok := b.Revisions[hash]; ok {
169 delete(b.Revisions, hash)
170 }
171}