| David Symonds | 7655121 | 2011-08-22 15:59:24 +1000 | [diff] [blame] | 1 | // Go support for Protocol Buffers - Google's data interchange format |
| 2 | // |
| 3 | // Copyright 2011 Google Inc. All rights reserved. |
| 4 | // http://code.google.com/p/goprotobuf/ |
| 5 | // |
| 6 | // Redistribution and use in source and binary forms, with or without |
| 7 | // modification, are permitted provided that the following conditions are |
| 8 | // met: |
| 9 | // |
| 10 | // * Redistributions of source code must retain the above copyright |
| 11 | // notice, this list of conditions and the following disclaimer. |
| 12 | // * Redistributions in binary form must reproduce the above |
| 13 | // copyright notice, this list of conditions and the following disclaimer |
| 14 | // in the documentation and/or other materials provided with the |
| 15 | // distribution. |
| 16 | // * Neither the name of Google Inc. nor the names of its |
| 17 | // contributors may be used to endorse or promote products derived from |
| 18 | // this software without specific prior written permission. |
| 19 | // |
| 20 | // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 21 | // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 22 | // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 23 | // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 24 | // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 25 | // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 26 | // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 27 | // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 28 | // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 29 | // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 30 | // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 31 | |
| 32 | // Protocol buffer comparison. |
| 33 | // TODO: MessageSet and RawMessage. |
| 34 | |
| 35 | package proto |
| 36 | |
| 37 | import ( |
| 38 | "bytes" |
| 39 | "log" |
| 40 | "reflect" |
| 41 | "strings" |
| 42 | ) |
| 43 | |
| 44 | /* |
| 45 | Equal returns true iff protocol buffers a and b are equal. |
| 46 | The arguments must both be protocol buffer structs, |
| 47 | or both be pointers to protocol buffer structs. |
| 48 | |
| 49 | Equality is defined in this way: |
| 50 | - Two messages are equal iff they are the same type, |
| 51 | corresponding fields are equal, unknown field sets |
| 52 | are equal, and extensions sets are equal. |
| 53 | - Two set scalar fields are equal iff their values are equal. |
| David Symonds | b79d99b | 2011-08-29 16:38:49 +1000 | [diff] [blame] | 54 | If the fields are of a floating-point type, remember that |
| 55 | NaN != x for all x, including NaN. |
| David Symonds | 7655121 | 2011-08-22 15:59:24 +1000 | [diff] [blame] | 56 | - Two repeated fields are equal iff their lengths are the same, |
| David Symonds | 35abe74 | 2012-02-13 09:55:16 +1100 | [diff] [blame^] | 57 | and their corresponding elements are equal (a "bytes" field, |
| 58 | although represented by []byte, is not a repeated field) |
| David Symonds | 7655121 | 2011-08-22 15:59:24 +1000 | [diff] [blame] | 59 | - Two unset fields are equal. |
| 60 | - Two unknown field sets are equal if their current |
| 61 | encoded state is equal. (TODO) |
| 62 | - Two extension sets are equal iff they have corresponding |
| David Symonds | a4b61c0 | 2011-09-07 14:06:00 +1000 | [diff] [blame] | 63 | elements that are pairwise equal. |
| David Symonds | 7655121 | 2011-08-22 15:59:24 +1000 | [diff] [blame] | 64 | - Every other combination of things are not equal. |
| 65 | |
| 66 | The return value is undefined if a and b are not protocol buffers. |
| 67 | */ |
| 68 | func Equal(a, b interface{}) bool { |
| 69 | v1, v2 := reflect.ValueOf(a), reflect.ValueOf(b) |
| 70 | if v1.Type() != v2.Type() { |
| 71 | return false |
| 72 | } |
| 73 | if v1.Kind() == reflect.Ptr { |
| 74 | v1, v2 = v1.Elem(), v2.Elem() |
| 75 | } |
| 76 | if v1.Kind() != reflect.Struct { |
| 77 | return false |
| 78 | } |
| 79 | return equalStruct(v1, v2) |
| 80 | } |
| 81 | |
| 82 | // v1 and v2 are known to have the same type. |
| 83 | func equalStruct(v1, v2 reflect.Value) bool { |
| 84 | for i := 0; i < v1.NumField(); i++ { |
| 85 | f := v1.Type().Field(i) |
| 86 | if strings.HasPrefix(f.Name, "XXX_") { |
| 87 | continue |
| 88 | } |
| 89 | f1, f2 := v1.Field(i), v2.Field(i) |
| 90 | if f.Type.Kind() == reflect.Ptr { |
| 91 | if n1, n2 := f1.IsNil(), f2.IsNil(); n1 && n2 { |
| 92 | // both unset |
| 93 | continue |
| 94 | } else if n1 != n2 { |
| 95 | // set/unset mismatch |
| 96 | return false |
| 97 | } |
| 98 | f1, f2 = f1.Elem(), f2.Elem() |
| 99 | } |
| 100 | if !equalAny(f1, f2) { |
| 101 | return false |
| 102 | } |
| 103 | } |
| 104 | |
| David Symonds | a4b61c0 | 2011-09-07 14:06:00 +1000 | [diff] [blame] | 105 | if em1 := v1.FieldByName("XXX_extensions"); em1.IsValid() { |
| 106 | em2 := v2.FieldByName("XXX_extensions") |
| 107 | if !equalExtensions(v1.Type(), em1.Interface().(map[int32]Extension), em2.Interface().(map[int32]Extension)) { |
| 108 | return false |
| 109 | } |
| 110 | } |
| 111 | |
| 112 | // TODO: Deal with XXX_unrecognized. |
| David Symonds | 7655121 | 2011-08-22 15:59:24 +1000 | [diff] [blame] | 113 | |
| 114 | return true |
| 115 | } |
| 116 | |
| 117 | // v1 and v2 are known to have the same type. |
| 118 | func equalAny(v1, v2 reflect.Value) bool { |
| 119 | switch v1.Kind() { |
| 120 | case reflect.Bool: |
| 121 | return v1.Bool() == v2.Bool() |
| 122 | case reflect.Float32, reflect.Float64: |
| 123 | return v1.Float() == v2.Float() |
| 124 | case reflect.Int32, reflect.Int64: |
| 125 | return v1.Int() == v2.Int() |
| 126 | case reflect.Ptr: |
| 127 | return equalAny(v1.Elem(), v2.Elem()) |
| 128 | case reflect.Slice: |
| David Symonds | 35abe74 | 2012-02-13 09:55:16 +1100 | [diff] [blame^] | 129 | if v1.Type().Elem().Kind() == reflect.Uint8 { |
| 130 | // short circuit: []byte |
| 131 | if v1.IsNil() != v2.IsNil() { |
| 132 | return false |
| 133 | } |
| 134 | return bytes.Equal(v1.Interface().([]byte), v2.Interface().([]byte)) |
| David Symonds | 7655121 | 2011-08-22 15:59:24 +1000 | [diff] [blame] | 135 | } |
| David Symonds | 35abe74 | 2012-02-13 09:55:16 +1100 | [diff] [blame^] | 136 | |
| David Symonds | 7655121 | 2011-08-22 15:59:24 +1000 | [diff] [blame] | 137 | if v1.Len() != v2.Len() { |
| 138 | return false |
| 139 | } |
| David Symonds | 7655121 | 2011-08-22 15:59:24 +1000 | [diff] [blame] | 140 | for i := 0; i < v1.Len(); i++ { |
| 141 | if !equalAny(v1.Index(i), v2.Index(i)) { |
| 142 | return false |
| 143 | } |
| 144 | } |
| 145 | return true |
| 146 | case reflect.String: |
| 147 | return v1.Interface().(string) == v2.Interface().(string) |
| 148 | case reflect.Struct: |
| 149 | return equalStruct(v1, v2) |
| 150 | case reflect.Uint32, reflect.Uint64: |
| 151 | return v1.Uint() == v2.Uint() |
| 152 | } |
| 153 | |
| 154 | // unknown type, so not a protocol buffer |
| 155 | log.Printf("proto: don't know how to compare %v", v1) |
| 156 | return false |
| 157 | } |
| David Symonds | a4b61c0 | 2011-09-07 14:06:00 +1000 | [diff] [blame] | 158 | |
| 159 | // base is the struct type that the extensions are based on. |
| 160 | // em1 and em2 are extension maps. |
| 161 | func equalExtensions(base reflect.Type, em1, em2 map[int32]Extension) bool { |
| 162 | if len(em1) != len(em2) { |
| 163 | return false |
| 164 | } |
| 165 | |
| 166 | for extNum, e1 := range em1 { |
| 167 | e2, ok := em2[extNum] |
| 168 | if !ok { |
| 169 | return false |
| 170 | } |
| 171 | |
| 172 | m1, m2 := e1.value, e2.value |
| 173 | |
| 174 | if m1 != nil && m2 != nil { |
| 175 | // Both are unencoded. |
| 176 | if !Equal(m1, m2) { |
| 177 | return false |
| 178 | } |
| 179 | continue |
| 180 | } |
| 181 | |
| 182 | // At least one is encoded. To do a semantically correct comparison |
| 183 | // we need to unmarshal them first. |
| 184 | var desc *ExtensionDesc |
| 185 | if m := extensionMaps[base]; m != nil { |
| 186 | desc = m[extNum] |
| 187 | } |
| 188 | if desc == nil { |
| 189 | log.Printf("proto: don't know how to compare extension %d of %v", extNum, base) |
| 190 | continue |
| 191 | } |
| Rob Pike | a17fdd9 | 2011-11-02 12:43:05 -0700 | [diff] [blame] | 192 | var err error |
| David Symonds | a4b61c0 | 2011-09-07 14:06:00 +1000 | [diff] [blame] | 193 | if m1 == nil { |
| 194 | m1, err = decodeExtension(e1.enc, desc) |
| 195 | } |
| 196 | if m2 == nil && err == nil { |
| 197 | m2, err = decodeExtension(e2.enc, desc) |
| 198 | } |
| 199 | if err != nil { |
| 200 | // The encoded form is invalid. |
| 201 | log.Printf("proto: badly encoded extension %d of %v: %v", extNum, base, err) |
| 202 | return false |
| 203 | } |
| 204 | if !Equal(m1, m2) { |
| 205 | return false |
| 206 | } |
| 207 | } |
| 208 | |
| 209 | return true |
| 210 | } |