Prince Pereira | c1c21d6 | 2021-04-22 08:38:15 +0000 | [diff] [blame^] | 1 | /* |
| 2 | * Copyright 2020-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 | |
| 17 | // Package db holds utils for datastore implementation |
| 18 | package db |
| 19 | |
| 20 | import ( |
| 21 | "context" |
| 22 | "errors" |
| 23 | |
| 24 | "github.com/opencord/voltha-lib-go/v4/pkg/log" |
| 25 | ) |
| 26 | |
| 27 | // Read function reads key value pair from db/kvstore |
| 28 | func Read(ctx context.Context, key string) (string, error) { |
| 29 | if kvClient != nil { |
| 30 | logger.Debugw(ctx, "Reading-key-value-pair-from-kv-store", log.Fields{"key": key}) |
| 31 | kvPair, err := kvClient.client.Get(ctx, key) |
| 32 | if err != nil { |
| 33 | return "", err |
| 34 | } |
| 35 | if kvPair == nil { |
| 36 | return "", errors.New("key not found") |
| 37 | } |
| 38 | return string(kvPair.Value.([]byte)), nil |
| 39 | |
| 40 | } |
| 41 | logger.Errorw(ctx, "Reading-key-value-pair-in kv-store-failed-because-kvstore-not-initialised", log.Fields{"key": key}) |
| 42 | return "", errors.New("kvstore not initialised") |
| 43 | } |
| 44 | |
| 45 | // ReadAll function reads all key value pair from db/kvstore |
| 46 | func ReadAll(ctx context.Context, keyPrefix string) (map[string]string, error) { |
| 47 | keyValues := make(map[string]string) |
| 48 | if kvClient != nil { |
| 49 | logger.Debugw(ctx, "Reading-all-key-value-pairs-from-kv-store", log.Fields{"key-prefix": keyPrefix}) |
| 50 | kvPairs, err := kvClient.client.List(ctx, keyPrefix) |
| 51 | if err != nil { |
| 52 | return keyValues, err |
| 53 | } |
| 54 | if kvPairs == nil { |
| 55 | return keyValues, errors.New("key not found") |
| 56 | } |
| 57 | |
| 58 | for key, kvPair := range kvPairs { |
| 59 | keyValues[key] = string(kvPair.Value.([]byte)) |
| 60 | } |
| 61 | return keyValues, nil |
| 62 | } |
| 63 | logger.Errorw(ctx, "Reading-all-key-value-pair-in-kv-store-failed-because-kvstore-not-initialised", log.Fields{"key-prefix": keyPrefix}) |
| 64 | return keyValues, errors.New("kvstore not initialised") |
| 65 | } |
| 66 | |
| 67 | // Del function deletes key value pair from db/kvstore |
| 68 | func Del(ctx context.Context, key string) error { |
| 69 | if kvClient != nil { |
| 70 | logger.Debugw(ctx, "Deleting-key-value-pair-from-kv-store", log.Fields{"key": key}) |
| 71 | return kvClient.client.Delete(ctx, key) |
| 72 | } |
| 73 | logger.Errorw(ctx, "Deleting-key-value-pair-in-kv-store-failed-because-kvstore-not-initialised", log.Fields{"key": key}) |
| 74 | return errors.New("kvstore not initialised") |
| 75 | } |
| 76 | |
| 77 | // DelAll function deletes all key value pair from db/kvstore with provided key prefix |
| 78 | func DelAll(ctx context.Context, keyPrefix string) error { |
| 79 | if kvClient != nil { |
| 80 | logger.Debugw(ctx, "Deleting-all-key-value-pair-from-kv-store-with-prefix", log.Fields{"key-prefix": keyPrefix}) |
| 81 | return kvClient.client.DeleteWithPrefix(ctx, keyPrefix) |
| 82 | } |
| 83 | logger.Errorw(ctx, "Deleting-all-key-value-pair-in-kv-store-with-prefix-failed-because-kvstore-not-initialised", log.Fields{"key-prefix": keyPrefix}) |
| 84 | return errors.New("kvstore not initialised") |
| 85 | } |
| 86 | |
| 87 | // Put function stores key value pair in db/kvstore |
| 88 | func Put(ctx context.Context, key string, val string) error { |
| 89 | if kvClient != nil { |
| 90 | logger.Debugw(ctx, "Storing-key-value-pair-in-kv-store", log.Fields{"key": key, "value": val}) |
| 91 | return kvClient.client.Put(ctx, key, val) |
| 92 | } |
| 93 | logger.Errorw(ctx, "Storing-key-value-pair-in-kv-store-failed-because-kvstore-not-initialised", log.Fields{"key": key, "value": val}) |
| 94 | return errors.New("kvstore not initialised") |
| 95 | } |