* Add Virtual Kubelet provider for VIC Initial virtual kubelet provider for VMware VIC. This provider currently handles creating and starting of a pod VM via the VIC portlayer and persona server. Image store handling via the VIC persona server. This provider currently requires the feature/wolfpack branch of VIC. * Added pod stop and delete. Also added node capacity. Added the ability to stop and delete pod VMs via VIC. Also retrieve node capacity information from the VCH. * Cleanup and readme file Some file clean up and added a Readme.md markdown file for the VIC provider. * Cleaned up errors, added function comments, moved operation code 1. Cleaned up error handling. Set standard for creating errors. 2. Added method prototype comments for all interface functions. 3. Moved PodCreator, PodStarter, PodStopper, and PodDeleter to a new folder. * Add mocking code and unit tests for podcache, podcreator, and podstarter Used the unit test framework used in VIC to handle assertions in the provider's unit test. Mocking code generated using OSS project mockery, which is compatible with the testify assertion framework. * Vendored packages for the VIC provider Requires feature/wolfpack branch of VIC and a few specific commit sha of projects used within VIC. * Implementation of POD Stopper and Deleter unit tests (#4) * Updated files for initial PR
154 lines
2.9 KiB
Go
154 lines
2.9 KiB
Go
package datastore
|
|
|
|
import (
|
|
"fmt"
|
|
"sync"
|
|
|
|
"github.com/docker/libkv/store"
|
|
"github.com/docker/libkv/store/boltdb"
|
|
)
|
|
|
|
type kvMap map[string]KVObject
|
|
|
|
type cache struct {
|
|
sync.Mutex
|
|
kmm map[string]kvMap
|
|
ds *datastore
|
|
}
|
|
|
|
func newCache(ds *datastore) *cache {
|
|
return &cache{kmm: make(map[string]kvMap), ds: ds}
|
|
}
|
|
|
|
func (c *cache) kmap(kvObject KVObject) (kvMap, error) {
|
|
var err error
|
|
|
|
c.Lock()
|
|
keyPrefix := Key(kvObject.KeyPrefix()...)
|
|
kmap, ok := c.kmm[keyPrefix]
|
|
c.Unlock()
|
|
|
|
if ok {
|
|
return kmap, nil
|
|
}
|
|
|
|
kmap = kvMap{}
|
|
|
|
// Bail out right away if the kvObject does not implement KVConstructor
|
|
ctor, ok := kvObject.(KVConstructor)
|
|
if !ok {
|
|
return nil, fmt.Errorf("error while populating kmap, object does not implement KVConstructor interface")
|
|
}
|
|
|
|
kvList, err := c.ds.store.List(keyPrefix)
|
|
if err != nil {
|
|
// In case of BoltDB it may return ErrBoltBucketNotFound when no writes
|
|
// have ever happened on the db bucket. So check for both err codes
|
|
if err == store.ErrKeyNotFound || err == boltdb.ErrBoltBucketNotFound {
|
|
// If the store doesn't have anything then there is nothing to
|
|
// populate in the cache. Just bail out.
|
|
goto out
|
|
}
|
|
|
|
return nil, fmt.Errorf("error while populating kmap: %v", err)
|
|
}
|
|
|
|
for _, kvPair := range kvList {
|
|
// Ignore empty kvPair values
|
|
if len(kvPair.Value) == 0 {
|
|
continue
|
|
}
|
|
|
|
dstO := ctor.New()
|
|
err = dstO.SetValue(kvPair.Value)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// Make sure the object has a correct view of the DB index in
|
|
// case we need to modify it and update the DB.
|
|
dstO.SetIndex(kvPair.LastIndex)
|
|
|
|
kmap[Key(dstO.Key()...)] = dstO
|
|
}
|
|
|
|
out:
|
|
// There may multiple go routines racing to fill the
|
|
// cache. The one which places the kmap in c.kmm first
|
|
// wins. The others should just use what the first populated.
|
|
c.Lock()
|
|
kmapNew, ok := c.kmm[keyPrefix]
|
|
if ok {
|
|
c.Unlock()
|
|
return kmapNew, nil
|
|
}
|
|
|
|
c.kmm[keyPrefix] = kmap
|
|
c.Unlock()
|
|
|
|
return kmap, nil
|
|
}
|
|
|
|
func (c *cache) add(kvObject KVObject) error {
|
|
kmap, err := c.kmap(kvObject)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
c.Lock()
|
|
kmap[Key(kvObject.Key()...)] = kvObject
|
|
c.Unlock()
|
|
return nil
|
|
}
|
|
|
|
func (c *cache) del(kvObject KVObject) error {
|
|
kmap, err := c.kmap(kvObject)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
c.Lock()
|
|
delete(kmap, Key(kvObject.Key()...))
|
|
c.Unlock()
|
|
return nil
|
|
}
|
|
|
|
func (c *cache) get(key string, kvObject KVObject) error {
|
|
kmap, err := c.kmap(kvObject)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
c.Lock()
|
|
defer c.Unlock()
|
|
|
|
o, ok := kmap[Key(kvObject.Key()...)]
|
|
if !ok {
|
|
return ErrKeyNotFound
|
|
}
|
|
|
|
ctor, ok := o.(KVConstructor)
|
|
if !ok {
|
|
return fmt.Errorf("kvobject does not implement KVConstructor interface. could not get object")
|
|
}
|
|
|
|
return ctor.CopyTo(kvObject)
|
|
}
|
|
|
|
func (c *cache) list(kvObject KVObject) ([]KVObject, error) {
|
|
kmap, err := c.kmap(kvObject)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
c.Lock()
|
|
defer c.Unlock()
|
|
|
|
var kvol []KVObject
|
|
for _, v := range kmap {
|
|
kvol = append(kvol, v)
|
|
}
|
|
|
|
return kvol, nil
|
|
}
|