mirror of
https://github.com/emirpasic/gods
synced 2024-11-06 15:20:25 +00:00
- JSON serialization for all sets
This commit is contained in:
parent
696bb0e577
commit
50b47dce4b
@ -62,6 +62,32 @@ func TestSetRemove(t *testing.T) {
|
||||
}
|
||||
}
|
||||
|
||||
func TestSetSerialization(t *testing.T) {
|
||||
set := New()
|
||||
set.Add("a", "b", "c")
|
||||
|
||||
var err error
|
||||
assert := func() {
|
||||
if actualValue, expectedValue := set.Size(), 3; actualValue != expectedValue {
|
||||
t.Errorf("Got %v expected %v", actualValue, expectedValue)
|
||||
}
|
||||
if actualValue := set.Contains("a", "b", "c"); actualValue != true {
|
||||
t.Errorf("Got %v expected %v", actualValue, true)
|
||||
}
|
||||
if err != nil {
|
||||
t.Errorf("Got error %v", err)
|
||||
}
|
||||
}
|
||||
|
||||
assert()
|
||||
|
||||
json, err := set.ToJSON()
|
||||
assert()
|
||||
|
||||
err = set.FromJSON(json)
|
||||
assert()
|
||||
}
|
||||
|
||||
func benchmarkContains(b *testing.B, set *Set, size int) {
|
||||
for i := 0; i < b.N; i++ {
|
||||
for n := 0; n < size; n++ {
|
||||
|
31
sets/hashset/serialization.go
Normal file
31
sets/hashset/serialization.go
Normal file
@ -0,0 +1,31 @@
|
||||
// Copyright (c) 2015, Emir Pasic. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
package hashset
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"github.com/emirpasic/gods/containers"
|
||||
)
|
||||
|
||||
func assertSerializationImplementation() {
|
||||
var _ containers.JSONSerializer = (*Set)(nil)
|
||||
var _ containers.JSONDeserializer = (*Set)(nil)
|
||||
}
|
||||
|
||||
// ToJSON outputs the JSON representation of list's elements.
|
||||
func (set *Set) ToJSON() ([]byte, error) {
|
||||
return json.Marshal(set.Values())
|
||||
}
|
||||
|
||||
// FromJSON populates list's elements from the input JSON representation.
|
||||
func (set *Set) FromJSON(data []byte) error {
|
||||
elements := []interface{}{}
|
||||
err := json.Unmarshal(data, &elements)
|
||||
if err == nil {
|
||||
set.Clear()
|
||||
set.Add(elements...)
|
||||
}
|
||||
return err
|
||||
}
|
31
sets/treeset/serialization.go
Normal file
31
sets/treeset/serialization.go
Normal file
@ -0,0 +1,31 @@
|
||||
// Copyright (c) 2015, Emir Pasic. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
package treeset
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"github.com/emirpasic/gods/containers"
|
||||
)
|
||||
|
||||
func assertSerializationImplementation() {
|
||||
var _ containers.JSONSerializer = (*Set)(nil)
|
||||
var _ containers.JSONDeserializer = (*Set)(nil)
|
||||
}
|
||||
|
||||
// ToJSON outputs the JSON representation of list's elements.
|
||||
func (set *Set) ToJSON() ([]byte, error) {
|
||||
return json.Marshal(set.Values())
|
||||
}
|
||||
|
||||
// FromJSON populates list's elements from the input JSON representation.
|
||||
func (set *Set) FromJSON(data []byte) error {
|
||||
elements := []interface{}{}
|
||||
err := json.Unmarshal(data, &elements)
|
||||
if err == nil {
|
||||
set.Clear()
|
||||
set.Add(elements...)
|
||||
}
|
||||
return err
|
||||
}
|
@ -327,6 +327,32 @@ func TestSetIteratorLast(t *testing.T) {
|
||||
}
|
||||
}
|
||||
|
||||
func TestSetSerialization(t *testing.T) {
|
||||
set := NewWithStringComparator()
|
||||
set.Add("a", "b", "c")
|
||||
|
||||
var err error
|
||||
assert := func() {
|
||||
if actualValue, expectedValue := set.Size(), 3; actualValue != expectedValue {
|
||||
t.Errorf("Got %v expected %v", actualValue, expectedValue)
|
||||
}
|
||||
if actualValue := set.Contains("a", "b", "c"); actualValue != true {
|
||||
t.Errorf("Got %v expected %v", actualValue, true)
|
||||
}
|
||||
if err != nil {
|
||||
t.Errorf("Got error %v", err)
|
||||
}
|
||||
}
|
||||
|
||||
assert()
|
||||
|
||||
json, err := set.ToJSON()
|
||||
assert()
|
||||
|
||||
err = set.FromJSON(json)
|
||||
assert()
|
||||
}
|
||||
|
||||
func benchmarkContains(b *testing.B, set *Set, size int) {
|
||||
for i := 0; i < b.N; i++ {
|
||||
for n := 0; n < size; n++ {
|
||||
|
Loading…
Reference in New Issue
Block a user