aboutsummaryrefslogtreecommitdiffstats
path: root/src/k8splugin/vnfd/vnfd.go
blob: 322b2d7846311097a69d91e3dfbfa7540630e85a (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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/*
 * Copyright 2018 Intel Corporation, Inc
 *
 * 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 vnfd

import (
	"k8splugin/db"
	"log"

	uuid "github.com/hashicorp/go-uuid"
	pkgerrors "github.com/pkg/errors"
)

// VNFDefinition contains the parameters needed for VNF Definitions
// It implements the interface for managing the definitions
type VNFDefinition struct {
	Name        string `json:"name"`
	Description string `json:"description"`
	UUID        string `json:"uuid,omitempty"`
	ServiceType string `json:"service-type"`
}

// VNFDefinitionInterface is an interface exposes the VNFDefinition functionality
type VNFDefinitionInterface interface {
	Create(vnfd VNFDefinition) (VNFDefinition, error)
	List() ([]VNFDefinition, error)
	Get(vnfID string) (VNFDefinition, error)
	Delete(vnfID string) error
}

// VNFDefinitionClient implements the VNFDefinitionInterface
// It will also be used to maintain some localized state
type VNFDefinitionClient struct {
	keyPrefix string
}

// GetVNFDClient Returns an instance of the VNFDefinitionClient
// which implements the VNFDefinitionInterface interface
func GetVNFDClient() *VNFDefinitionClient {
	return &VNFDefinitionClient{
		keyPrefix: "vnfd/"}
}

// Create creates an entry for the VNF in the database
func (v *VNFDefinitionClient) Create(vnfd VNFDefinition) (VNFDefinition, error) {
	// If UUID is empty, we will generate one
	if vnfd.UUID == "" {
		vnfd.UUID, _ = uuid.GenerateUUID()
	}
	key := v.keyPrefix + vnfd.UUID

	serData, err := db.Serialize(v)
	if err != nil {
		return VNFDefinition{}, pkgerrors.Wrap(err, "Serialize VNF Definition")
	}

	err = db.DBconn.CreateEntry(key, serData)
	if err != nil {
		return VNFDefinition{}, pkgerrors.Wrap(err, "Creating DB Entry")
	}

	return vnfd, nil
}

// List lists all vnf entries in the database
func (v *VNFDefinitionClient) List() ([]VNFDefinition, error) {
	strArray, err := db.DBconn.ReadAll(v.keyPrefix)
	if err != nil {
		return []VNFDefinition{}, pkgerrors.Wrap(err, "Listing VNF Definitions")
	}

	var retData []VNFDefinition

	for _, key := range strArray {
		value, ok, err := db.DBconn.ReadEntry(key)
		if err != nil {
			log.Printf("Error Reading Key: %s", key)
			continue
		}
		if ok {
			vnfd := VNFDefinition{}
			err = db.DeSerialize(value, &vnfd)
			if err != nil {
				log.Printf("Error Deserializing Value: %s", value)
				continue
			}
			retData = append(retData, vnfd)
		}
	}

	return retData, nil
}

// Get returns the VNF Definition for corresponding ID
func (v *VNFDefinitionClient) Get(vnfID string) (VNFDefinition, error) {
	value, ok, err := db.DBconn.ReadEntry(v.keyPrefix + vnfID)
	if err != nil {
		return VNFDefinition{}, pkgerrors.Wrap(err, "Get VNF Definitions")
	}

	if ok {
		vnfd := VNFDefinition{}
		err = db.DeSerialize(value, &vnfd)
		if err != nil {
			return VNFDefinition{}, pkgerrors.Wrap(err, "Deserializing Value")
		}
		return vnfd, nil
	}

	return VNFDefinition{}, pkgerrors.New("Error getting VNF Definition")
}

// Delete deletes the VNF Definition from database
func (v *VNFDefinitionClient) Delete(vnfID string) error {
	err := db.DBconn.DeleteEntry(v.keyPrefix + vnfID)
	if err != nil {
		return pkgerrors.Wrap(err, "Delete VNF Definitions")
	}

	return nil
}