blob: 40c66ad1be0e171da9786410cbe1d42bbf816a08 [file] [log] [blame]
khenaidoobf6e7bb2018-08-14 22:27:29 -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 */
Stephane Barbariedc5022d2018-11-19 15:21:44 -050016
Stephane Barbarie4a2564d2018-07-26 11:02:58 -040017package model
18
Stephane Barbarie933b09b2019-01-09 11:12:09 -050019import (
20 "github.com/opencord/voltha-go/common/log"
21 "sync"
22)
Stephane Barbariedc5022d2018-11-19 15:21:44 -050023
Stephane Barbarie4a2564d2018-07-26 11:02:58 -040024// TODO: implement weak references or something equivalent
25// TODO: missing proper logging
26
Stephane Barbariedc5022d2018-11-19 15:21:44 -050027// Branch structure is used to classify a collection of transaction based revisions
Stephane Barbarie4a2564d2018-07-26 11:02:58 -040028type Branch struct {
Stephane Barbariedc5022d2018-11-19 15:21:44 -050029 sync.RWMutex
Stephane Barbarie06c4a742018-10-01 11:09:32 -040030 Node *node
Stephane Barbarie4a2564d2018-07-26 11:02:58 -040031 Txid string
Stephane Barbarieec0919b2018-09-05 14:14:29 -040032 Origin Revision
33 Revisions map[string]Revision
34 Latest Revision
Stephane Barbarie4a2564d2018-07-26 11:02:58 -040035}
36
Stephane Barbariedc5022d2018-11-19 15:21:44 -050037// NewBranch creates a new instance of the Branch structure
Stephane Barbarie06c4a742018-10-01 11:09:32 -040038func NewBranch(node *node, txid string, origin Revision, autoPrune bool) *Branch {
Stephane Barbariedc5022d2018-11-19 15:21:44 -050039 b := &Branch{}
40 b.Node = node
41 b.Txid = txid
42 b.Origin = origin
43 b.Revisions = make(map[string]Revision)
44 b.Latest = origin
Stephane Barbarie4a2564d2018-07-26 11:02:58 -040045
Stephane Barbariedc5022d2018-11-19 15:21:44 -050046 return b
Stephane Barbarie4a2564d2018-07-26 11:02:58 -040047}
48
Stephane Barbariedc5022d2018-11-19 15:21:44 -050049// SetLatest assigns the latest revision for this branch
50func (b *Branch) SetLatest(latest Revision) {
51 b.Lock()
52 defer b.Unlock()
53
Stephane Barbarie933b09b2019-01-09 11:12:09 -050054 if b.Latest != nil {
55 log.Debugf("Switching latest from <%s> to <%s>", b.Latest.GetHash(), latest.GetHash())
Stephane Barbarie933b09b2019-01-09 11:12:09 -050056 } else {
57 log.Debugf("Switching latest from <NIL> to <%s>", latest.GetHash())
58 }
59
60
Stephane Barbariedc5022d2018-11-19 15:21:44 -050061 b.Latest = latest
Stephane Barbarie4a2564d2018-07-26 11:02:58 -040062}
Stephane Barbariedc5022d2018-11-19 15:21:44 -050063
64// GetLatest retrieves the latest revision of the branch
65func (b *Branch) GetLatest() Revision {
66 b.Lock()
67 defer b.Unlock()
68
69 return b.Latest
Stephane Barbarie4a2564d2018-07-26 11:02:58 -040070}
Stephane Barbariedc5022d2018-11-19 15:21:44 -050071
72// GetOrigin retrieves the original revision of the branch
73func (b *Branch) GetOrigin() Revision {
74 b.Lock()
75 defer b.Unlock()
76
77 return b.Origin
78}
79
80// AddRevision inserts a new revision to the branch
81func (b *Branch) AddRevision(revision Revision) {
82 if revision != nil && b.GetRevision(revision.GetHash()) == nil {
83 b.SetRevision(revision.GetHash(), revision)
84 }
85}
86
87// GetRevision pulls a revision entry at the specified hash
88func (b *Branch) GetRevision(hash string) Revision {
89 b.Lock()
90 defer b.Unlock()
91
Stephane Barbarie1039ec42019-02-04 10:43:16 -050092 if revision, ok := b.Revisions[hash]; ok {
Stephane Barbariedc5022d2018-11-19 15:21:44 -050093 return revision
94 }
95
96 return nil
97}
98
99// SetRevision updates a revision entry at the specified hash
100func (b *Branch) SetRevision(hash string, revision Revision) {
101 b.Lock()
102 defer b.Unlock()
103
104 b.Revisions[hash] = revision
Stephane Barbarie4a2564d2018-07-26 11:02:58 -0400105}