Browse Source

libnetwork/datastore: remove unused PutObject(), DeleteObject()

all code is using the atomic alternatives for these (PutObjectAtomic,
DeleteObjectAtomic)

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Sebastiaan van Stijn 2 years ago
parent
commit
58d2f21dae
2 changed files with 1 additions and 60 deletions
  1. 0 59
      libnetwork/datastore/datastore.go
  2. 1 1
      libnetwork/datastore/datastore_test.go

+ 0 - 59
libnetwork/datastore/datastore.go

@@ -16,12 +16,8 @@ import (
 type DataStore interface {
 type DataStore interface {
 	// GetObject gets data from datastore and unmarshals to the specified object
 	// GetObject gets data from datastore and unmarshals to the specified object
 	GetObject(key string, o KVObject) error
 	GetObject(key string, o KVObject) error
-	// PutObject adds a new Record based on an object into the datastore
-	PutObject(kvObject KVObject) error
 	// PutObjectAtomic provides an atomic add and update operation for a Record
 	// PutObjectAtomic provides an atomic add and update operation for a Record
 	PutObjectAtomic(kvObject KVObject) error
 	PutObjectAtomic(kvObject KVObject) error
-	// DeleteObject deletes a record
-	DeleteObject(kvObject KVObject) error
 	// DeleteObjectAtomic performs an atomic delete operation
 	// DeleteObjectAtomic performs an atomic delete operation
 	DeleteObjectAtomic(kvObject KVObject) error
 	DeleteObjectAtomic(kvObject KVObject) error
 	// DeleteTree deletes a record
 	// DeleteTree deletes a record
@@ -303,42 +299,6 @@ add_cache:
 	return nil
 	return nil
 }
 }
 
 
-// PutObject adds a new Record based on an object into the datastore
-func (ds *datastore) PutObject(kvObject KVObject) error {
-	ds.Lock()
-	defer ds.Unlock()
-
-	if kvObject == nil {
-		return types.BadRequestErrorf("invalid KV Object : nil")
-	}
-
-	if kvObject.Skip() {
-		goto add_cache
-	}
-
-	if err := ds.putObjectWithKey(kvObject, kvObject.Key()...); err != nil {
-		return err
-	}
-
-add_cache:
-	if ds.cache != nil {
-		// If persistent store is skipped, sequencing needs to
-		// happen in cache.
-		return ds.cache.add(kvObject, kvObject.Skip())
-	}
-
-	return nil
-}
-
-func (ds *datastore) putObjectWithKey(kvObject KVObject, key ...string) error {
-	kvObjValue := kvObject.Value()
-
-	if kvObjValue == nil {
-		return types.BadRequestErrorf("invalid KV Object with a nil Value for key %s", Key(kvObject.Key()...))
-	}
-	return ds.store.Put(Key(key...), kvObjValue)
-}
-
 // GetObject returns a record matching the key
 // GetObject returns a record matching the key
 func (ds *datastore) GetObject(key string, o KVObject) error {
 func (ds *datastore) GetObject(key string, o KVObject) error {
 	ds.Lock()
 	ds.Lock()
@@ -445,25 +405,6 @@ func (ds *datastore) Map(key string, kvObject KVObject) (map[string]KVObject, er
 	return kvol, nil
 	return kvol, nil
 }
 }
 
 
-// DeleteObject unconditionally deletes a record from the store
-func (ds *datastore) DeleteObject(kvObject KVObject) error {
-	ds.Lock()
-	defer ds.Unlock()
-
-	// cleanup the cache first
-	if ds.cache != nil {
-		// If persistent store is skipped, sequencing needs to
-		// happen in cache.
-		ds.cache.del(kvObject, kvObject.Skip())
-	}
-
-	if kvObject.Skip() {
-		return nil
-	}
-
-	return ds.store.Delete(Key(kvObject.Key()...))
-}
-
 // DeleteObjectAtomic performs atomic delete on a record
 // DeleteObjectAtomic performs atomic delete on a record
 func (ds *datastore) DeleteObjectAtomic(kvObject KVObject) error {
 func (ds *datastore) DeleteObjectAtomic(kvObject KVObject) error {
 	ds.Lock()
 	ds.Lock()

+ 1 - 1
libnetwork/datastore/datastore_test.go

@@ -51,7 +51,7 @@ func TestInvalidDataStore(t *testing.T) {
 func TestKVObjectFlatKey(t *testing.T) {
 func TestKVObjectFlatKey(t *testing.T) {
 	store := NewTestDataStore()
 	store := NewTestDataStore()
 	expected := dummyKVObject("1000", true)
 	expected := dummyKVObject("1000", true)
-	err := store.PutObject(expected)
+	err := store.PutObjectAtomic(expected)
 	if err != nil {
 	if err != nil {
 		t.Fatal(err)
 		t.Fatal(err)
 	}
 	}