blob: bb613552410892adbac88a6d7ada5bc2ae7972f9 [file] [log] [blame]
Scott Baker2c1c4822019-10-16 11:02:41 -07001/*
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 "context"
20 "github.com/opencord/voltha-lib-go/pkg/db/kvstore"
21 "time"
22)
23
24type Revision interface {
25 Finalize(bool)
26 SetConfig(revision *DataRevision)
27 GetConfig() *DataRevision
28 Drop(txid string, includeConfig bool)
29 StorageDrop(txid string, includeConfig bool)
30 ChildDrop(childType string, childHash string)
31 SetChildren(name string, children []Revision)
32 GetChildren(name string) []Revision
33 SetAllChildren(children map[string][]Revision)
34 GetAllChildren() map[string][]Revision
35 SetHash(hash string)
36 GetHash() string
37 ClearHash()
38 getVersion() int64
39 SetupWatch(key string)
40 SetName(name string)
41 GetName() string
42 SetBranch(branch *Branch)
43 GetBranch() *Branch
44 Get(int) interface{}
45 GetData() interface{}
46 GetNode() *node
47 SetLastUpdate(ts ...time.Time)
48 GetLastUpdate() time.Time
49 LoadFromPersistence(ctx context.Context, path string, txid string, blobs map[string]*kvstore.KVPair) []Revision
50 UpdateData(ctx context.Context, data interface{}, branch *Branch) Revision
51 UpdateChildren(ctx context.Context, name string, children []Revision, branch *Branch) Revision
52 UpdateAllChildren(children map[string][]Revision, branch *Branch) Revision
53}