mirror of
https://github.com/emirpasic/gods
synced 2024-11-16 12:12:59 +00:00
- hash map (de)serialization
This commit is contained in:
parent
0887bbc9f4
commit
706042c8bc
@ -118,6 +118,37 @@ func TestMapRemove(t *testing.T) {
|
||||
}
|
||||
}
|
||||
|
||||
func TestMapSerialization(t *testing.T) {
|
||||
m := New()
|
||||
m.Put("a", 1.0)
|
||||
m.Put("b", 2.0)
|
||||
m.Put("c", 3.0)
|
||||
|
||||
var err error
|
||||
assert := func() {
|
||||
if actualValue, expectedValue := m.Keys(), []interface{}{"a", "b", "c"}; !sameElements(actualValue, expectedValue) {
|
||||
t.Errorf("Got %v expected %v", actualValue, expectedValue)
|
||||
}
|
||||
if actualValue, expectedValue := m.Values(), []interface{}{1.0, 2.0, 3.0}; !sameElements(actualValue, expectedValue) {
|
||||
t.Errorf("Got %v expected %v", actualValue, expectedValue)
|
||||
}
|
||||
if actualValue, expectedValue := m.Size(), 3; actualValue != expectedValue {
|
||||
t.Errorf("Got %v expected %v", actualValue, expectedValue)
|
||||
}
|
||||
if err != nil {
|
||||
t.Errorf("Got error %v", err)
|
||||
}
|
||||
}
|
||||
|
||||
assert()
|
||||
|
||||
json, err := m.ToJSON()
|
||||
assert()
|
||||
|
||||
err = m.FromJSON(json)
|
||||
assert()
|
||||
}
|
||||
|
||||
func sameElements(a []interface{}, b []interface{}) bool {
|
||||
if len(a) != len(b) {
|
||||
return false
|
||||
|
38
maps/hashmap/serialization.go
Normal file
38
maps/hashmap/serialization.go
Normal file
@ -0,0 +1,38 @@
|
||||
// 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 hashmap
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"github.com/emirpasic/gods/containers"
|
||||
"github.com/emirpasic/gods/utils"
|
||||
)
|
||||
|
||||
func assertSerializationImplementation() {
|
||||
var _ containers.JSONSerializer = (*Map)(nil)
|
||||
var _ containers.JSONDeserializer = (*Map)(nil)
|
||||
}
|
||||
|
||||
// ToJSON outputs the JSON representation of list's elements.
|
||||
func (m *Map) ToJSON() ([]byte, error) {
|
||||
elements := make(map[string]interface{})
|
||||
for key, value := range m.m {
|
||||
elements[utils.ToString(key)] = value
|
||||
}
|
||||
return json.Marshal(&elements)
|
||||
}
|
||||
|
||||
// FromJSON populates list's elements from the input JSON representation.
|
||||
func (m *Map) FromJSON(data []byte) error {
|
||||
elements := make(map[string]interface{})
|
||||
err := json.Unmarshal(data, &elements)
|
||||
if err == nil {
|
||||
m.Clear()
|
||||
for key, value := range elements {
|
||||
m.m[key] = value
|
||||
}
|
||||
}
|
||||
return err
|
||||
}
|
Loading…
Reference in New Issue
Block a user