diff --git a/internal/dict/dict.go b/internal/dict/dict.go index a52c420..25196dc 100644 --- a/internal/dict/dict.go +++ b/internal/dict/dict.go @@ -1,5 +1,10 @@ package dict +import ( + "fmt" + "strings" +) + type Dict map[string]interface{} func New() Dict { @@ -15,3 +20,44 @@ func (d Dict) HasKey(key string) bool { _, ok := d[key] return ok } + +func (d Dict) Print() { + pp, err := d.DumpJsonStrIndent("", " ") + if err != nil { + panic(err) + } + fmt.Println(pp) +} + +func (d Dict) GetValue(path string) Dict { + var value Dict + current := make(Dict) + g := make(Dict) + current.CopyFrom(d) + keys := strings.Split(path, ".") + lastIndex := len(keys) - 1 + for i, key := range keys { + if current.HasKey("globals") { + g.MergeWith(current["globals"].(Dict)) + current.SoftMergeWith(g) + } + if !current.HasKey(key) { + value = nil + break + } + v := current[key] + if i == lastIndex { + if vv, ok := v.(Dict); ok { + vv.SoftMergeWith(g) + value = vv + } else { + value = Dict{"value": v} + } + break + } + if IsDict(v) { + current = v.(Dict) + } + } + return value +} diff --git a/internal/dict/dict_test.go b/internal/dict/dict_test.go index 3a8c9af..c83c559 100644 --- a/internal/dict/dict_test.go +++ b/internal/dict/dict_test.go @@ -1,6 +1,7 @@ package dict import ( + "reflect" "testing" ) @@ -52,3 +53,19 @@ func TestIsDict(t *testing.T) { t.Errorf("Expected false, got %v", r) } } + +func TestGeValue(t *testing.T) { + testCases := []dictStrToDictTestCase{} + loadYamlFile("test_data/getvalue_cases.yaml", &testCases) + for _, testCase := range testCases { + copy := make(Dict) + copy.CopyFrom(testCase.Arg1) + result := testCase.Arg1.GetValue(testCase.Arg2) + if !reflect.DeepEqual(testCase.Result, result) { + t.Errorf("Expected dict to be %v, got %v", testCase.Result, result) + } + if !reflect.DeepEqual(testCase.Arg1, copy) { + t.Errorf("Expected dict to be %v, got %v", copy, testCase.Arg1) + } + } +} diff --git a/internal/dict/testutils_test.go b/internal/dict/testutils_test.go index f9cabd3..2b38dac 100644 --- a/internal/dict/testutils_test.go +++ b/internal/dict/testutils_test.go @@ -14,11 +14,11 @@ type dictDictToDictTestCase struct { Result Dict `yaml:"result"` } -type dictStrToAnyTestCase struct { +type dictStrToDictTestCase struct { Name string `yaml:"name"` Arg1 Dict `yaml:"arg1"` Arg2 string `yaml:"arg2"` - Result any `yaml:"result"` + Result Dict `yaml:"result"` } func loadYamlFile(fn string, out interface{}) { diff --git a/main.go b/main.go index f477bbf..ce1f88a 100644 --- a/main.go +++ b/main.go @@ -1,9 +1,19 @@ package main import ( - "fmt" + "git.behzadan.ir/reza/GoDict/internal/dict" ) -func main() { - fmt.Println("hi") +func load(fn string) dict.Dict { + d, err := dict.LoadYaml(fn) + if err != nil { + panic(err) + } + return d +} + +func main() { + d := load("internal/dict/test_data/dict4.yaml") + v := d.GetValue("nginx.sites.www") + v.Print() }