Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 1 | /* |
| 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 | package kvstore |
| 17 | |
| 18 | import ( |
Scott Baker | e73f91e | 2019-10-17 12:58:11 -0700 | [diff] [blame] | 19 | "github.com/opencord/voltha-lib-go/pkg/log" |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 20 | ) |
| 21 | |
| 22 | const ( |
| 23 | // Default timeout in seconds when making a kvstore request |
| 24 | defaultKVGetTimeout = 5 |
| 25 | // Maximum channel buffer between publisher/subscriber goroutines |
| 26 | maxClientChannelBufferSize = 10 |
| 27 | ) |
| 28 | |
| 29 | // These constants represent the event types returned by the KV client |
| 30 | const ( |
| 31 | PUT = iota |
| 32 | DELETE |
| 33 | CONNECTIONDOWN |
| 34 | UNKNOWN |
| 35 | ) |
| 36 | |
| 37 | // KVPair is a common wrapper for key-value pairs returned from the KV store |
| 38 | type KVPair struct { |
| 39 | Key string |
| 40 | Value interface{} |
| 41 | Version int64 |
| 42 | Session string |
| 43 | Lease int64 |
| 44 | } |
| 45 | |
| 46 | func init() { |
| 47 | log.AddPackage(log.JSON, log.WarnLevel, nil) |
| 48 | } |
| 49 | |
| 50 | // NewKVPair creates a new KVPair object |
| 51 | func NewKVPair(key string, value interface{}, session string, lease int64, version int64) *KVPair { |
| 52 | kv := new(KVPair) |
| 53 | kv.Key = key |
| 54 | kv.Value = value |
| 55 | kv.Session = session |
| 56 | kv.Lease = lease |
| 57 | kv.Version = version |
| 58 | return kv |
| 59 | } |
| 60 | |
| 61 | // Event is generated by the KV client when a key change is detected |
| 62 | type Event struct { |
| 63 | EventType int |
| 64 | Key interface{} |
| 65 | Value interface{} |
| 66 | Version int64 |
| 67 | } |
| 68 | |
| 69 | // NewEvent creates a new Event object |
| 70 | func NewEvent(eventType int, key interface{}, value interface{}, version int64) *Event { |
| 71 | evnt := new(Event) |
| 72 | evnt.EventType = eventType |
| 73 | evnt.Key = key |
| 74 | evnt.Value = value |
| 75 | evnt.Version = version |
| 76 | |
| 77 | return evnt |
| 78 | } |
| 79 | |
| 80 | // Client represents the set of APIs a KV Client must implement |
| 81 | type Client interface { |
| 82 | List(key string, timeout int, lock ...bool) (map[string]*KVPair, error) |
| 83 | Get(key string, timeout int, lock ...bool) (*KVPair, error) |
| 84 | Put(key string, value interface{}, timeout int, lock ...bool) error |
| 85 | Delete(key string, timeout int, lock ...bool) error |
| 86 | Reserve(key string, value interface{}, ttl int64) (interface{}, error) |
| 87 | ReleaseReservation(key string) error |
| 88 | ReleaseAllReservations() error |
| 89 | RenewReservation(key string) error |
| 90 | Watch(key string) chan *Event |
| 91 | AcquireLock(lockName string, timeout int) error |
| 92 | ReleaseLock(lockName string) error |
| 93 | IsConnectionUp(timeout int) bool // timeout in second |
| 94 | CloseWatch(key string, ch chan *Event) |
| 95 | Close() |
| 96 | } |