RAFJR
RAFJR

Reputation: 442

Check if struct is empty if struct contains json.RawMessage

I'm trying to create a method extension to check if my struct was initialized but I'm getting this error:

invalid operation: myStruct literal == inStruct (struct containing json.RawMessage cannot be compared)

Here's my code:

package datamodels

import "encoding/json"

type myStruct struct {
        a string json:"a"
        b json.RawMessage json:"b"
        c json.RawMessage json:"c"
    }

func (m *myStruct ) IsEmpty() bool {
    return (myStruct {}) == m 
}

Upvotes: 3

Views: 10705

Answers (2)

fl0cke
fl0cke

Reputation: 2884

The zero value of myStruct is a struct where a, b and c are zero values of their type. The zero value of a string is "", of json.RawMessage it is nil (because it's just an alias for []byte). Combining this knowledge you get:

type myStruct struct {
    a string
    b json.RawMessage
    c json.RawMessage
}

func (m *myStruct ) IsEmpty() bool {
    return m.a == "" && m.b == nil && m.c == nil
}

There is no need for reflect.DeepEqual()

Upvotes: 2

dmportella
dmportella

Reputation: 4724

The reason is that json.RawMessage is a Alias for a []byte and maps, slices etc can not be compared normally.

You can compare slices with reflect.DeepEqual method.

See example below.

package main

import "encoding/json"
import "reflect"

type myStruct struct 
{
        a string `json:"a"`
        b json.RawMessage `json:"b"`
        c json.RawMessage `json:"c"`
}   

func (m myStruct ) IsEmpty() bool {
    return reflect.DeepEqual(myStruct{}, m)
}


func main() {
    var mystuff myStruct = myStruct{}

    mystuff.IsEmpty()
}

GOLANG Playground

Reference for comparing slices: How to compare struct, slice, map are equal?

See the RawMessage type. json.RawMessage type: https://golang.org/src/encoding/json/stream.go?s=6218:6240#L237

Upvotes: 6

Related Questions