File: valuemap.go

package info (click to toggle)
golang-entgo-ent 0.11.3-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 21,952 kB
  • sloc: javascript: 641; makefile: 8; sql: 2
file content (57 lines) | stat: -rw-r--r-- 1,311 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
// Copyright 2019-present Facebook Inc. All rights reserved.
// This source code is licensed under the Apache 2.0 license found
// in the LICENSE file in the root directory of this source tree.

package graph

import (
	"errors"
	"fmt"
	"reflect"

	"github.com/mitchellh/mapstructure"
)

// ValueMap models a .valueMap() gremlin response.
type ValueMap []map[string]any

// Decode decodes a value map into v.
func (m ValueMap) Decode(v any) error {
	rv := reflect.ValueOf(v)
	if rv.Kind() != reflect.Ptr {
		return errors.New("cannot unmarshal into a non pointer")
	}
	if rv.IsNil() {
		return errors.New("cannot unmarshal into a nil pointer")
	}

	if rv.Elem().Kind() != reflect.Slice {
		v = &[]any{v}
	}
	return m.decode(v)
}

func (m ValueMap) decode(v any) error {
	cfg := mapstructure.DecoderConfig{
		DecodeHook: func(f, t reflect.Kind, data any) (any, error) {
			if f == reflect.Slice && t != reflect.Slice {
				rv := reflect.ValueOf(data)
				if rv.Len() == 1 {
					data = rv.Index(0).Interface()
				}
			}
			return data, nil
		},
		Result:  v,
		TagName: "json",
	}

	dec, err := mapstructure.NewDecoder(&cfg)
	if err != nil {
		return fmt.Errorf("creating structure decoder: %w", err)
	}
	if err := dec.Decode(m); err != nil {
		return fmt.Errorf("decoding value map: %w", err)
	}
	return nil
}