Skip to content

How to report a line number on error when decoding custom struct? #398

Closed
@GreatDanton

Description

@GreatDanton

When decoding built in types, I found out that toml.Decode() method returns a ParseError which contains lots of context about the error. When unmarshalling custom structs, however, I don't know how am I supposed to obtain such context (I would like to know at least the name of the field or the line number of the user text).

func decodeConfig() (*xxx, error) {
        config := &MyConfig{}
	md, err := toml.Decode(tomlData, config)
	if err != nil {
		// pretty print errors if possible
		var pErr toml.ParseError
		if errors.As(err, &pErr) {
			return nil, fmt.Errorf("toml: config parse error: %v", pErr.ErrorWithUsage())
		}

		// err could not be cast to a toml.ParseError, which means our own unmarshaller returned an error
		// TODO: how do I get a line number or the field here? md.context is a private member.
		return nil, fmt.Errorf("toml: config parse error:\n  %v", err)
	}

         ... more code

More context about my problem:
In my case I have a custom type which tries to parse user value and return an error on invalid enum:

func (n *NodeReferenceType) UnmarshalText(text []byte) error {
	t := strings.TrimSpace(string(text))
	switch t {
	case "number_and_text":
		*n = NodeReference_NumberAndText
	case "number":
		*n = NodeReference_Number
	case "text":
		*n = NodeReference_Text
	default:
               // TODO: how can I get a line number or the name of a currently decoded key here?
               // I am trying to decode multiple fields of this same type (NodeReferenceType), so I 
               // need some way to distinguish between them.
		return fmt.Errorf("invalid reference type: available options [%s, %s, %s], but got: %q", NodeReference_NumberAndText, NodeReference_Number, NodeReference_Text, t)
	}
	return nil
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions