summaryrefslogtreecommitdiffstats
path: root/src/orchestrator/pkg/infra/contextdb/contextdb.go
blob: 58832a19c35a6aa600cffe02f1863f67d5c573b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/*
Copyright 2020 Intel Corporation.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
    http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

package contextdb

import (
	"github.com/onap/multicloud-k8s/src/orchestrator/pkg/infra/config"
	pkgerrors "github.com/pkg/errors"
)

// Db interface used to talk a concrete Database connection
var Db ContextDb

// ContextDb is an interface for accessing the context database
type ContextDb interface {
	// Returns nil if db health is good
	HealthCheck() error
	// Puts Json Struct in db with key
	Put(key string, value interface{}) error
	// Delete k,v
	Delete(key string) error
	// Delete all keys in heirarchy
	DeleteAll(key string) error
	// Gets Json Struct from db
	Get(key string, value interface{}) error
	// Returns all keys with a prefix
	GetAllKeys(path string) ([]string, error)
}

// createContextDBClient creates the DB client
func createContextDBClient(dbType string) error {
	var err error
	switch dbType {
	case "etcd":
		c := EtcdConfig{
			Endpoint: config.GetConfiguration().EtcdIP,
			CertFile: config.GetConfiguration().EtcdCert,
			KeyFile:  config.GetConfiguration().EtcdKey,
			CAFile:   config.GetConfiguration().EtcdCAFile,
		}
		Db, err = NewEtcdClient(nil, c)
		if err != nil {
			pkgerrors.Wrap(err, "Etcd Client Initialization failed with error")
		}
	default:
		return pkgerrors.New(dbType + "DB not supported")
	}
	return err
}

// InitializeContextDatabase sets up the connection to the
// configured database to allow the application to talk to it.
func InitializeContextDatabase() error {
	// Only support Etcd for now
	err := createContextDBClient("etcd")
	if err != nil {
		return pkgerrors.Cause(err)
	}
	err = Db.HealthCheck()
	if err != nil {
		return pkgerrors.Cause(err)
	}
	return nil
}