blob: cd4c5df85e4ddec511c1c5846892ecaf4f87da6a [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
manikkaraj k9eb6cac2019-05-09 12:32:03 -040018import (
19 "github.com/opencord/voltha-go/db/kvstore"
Chaitrashree G Sbe6ab942019-05-24 06:42:49 -040020 "time"
manikkaraj k9eb6cac2019-05-09 12:32:03 -040021)
22
Matt Jeanneretcab955f2019-04-10 15:45:57 -040023type Revision interface {
24 Finalize(bool)
25 SetConfig(revision *DataRevision)
26 GetConfig() *DataRevision
27 Drop(txid string, includeConfig bool)
28 StorageDrop(txid string, includeConfig bool)
Matt Jeanneret384d8c92019-05-06 14:27:31 -040029 ChildDrop(childType string, childHash string)
Matt Jeanneretcab955f2019-04-10 15:45:57 -040030 SetChildren(name string, children []Revision)
31 GetChildren(name string) []Revision
32 SetAllChildren(children map[string][]Revision)
33 GetAllChildren() map[string][]Revision
34 SetHash(hash string)
35 GetHash() string
36 ClearHash()
37 SetupWatch(key string)
38 SetName(name string)
39 GetName() string
40 SetBranch(branch *Branch)
41 GetBranch() *Branch
42 Get(int) interface{}
43 GetData() interface{}
44 GetNode() *node
manikkaraj k9eb6cac2019-05-09 12:32:03 -040045 LoadFromPersistence(path string, txid string, blobs map[string]*kvstore.KVPair) []Revision
Chaitrashree G Sbe6ab942019-05-24 06:42:49 -040046 SetLastUpdate(ts ...time.Time)
47 GetLastUpdate() time.Time
Matt Jeanneretcab955f2019-04-10 15:45:57 -040048 UpdateData(data interface{}, branch *Branch) Revision
49 UpdateChildren(name string, children []Revision, branch *Branch) Revision
50 UpdateAllChildren(children map[string][]Revision, branch *Branch) Revision
51}