Subversion Repository Public Repository

WOX2

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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
package wox.serial;

import java.lang.reflect.*;
import org.litesoft.core.typeutils.Objects;
import java.util.*;

/**
 * Utilities to compare two objects - weaker than
 * equals and adjusted to make serialized and deserialized objects
 * equivalent
 *
 * Version: 1.0
 * Author: Carlos R. Jaimez Gonzalez
 * Author: Simon M. Lucas
 * Site: http://woxserializer.sourceforge.net/
 *
 * Version: 1.5
 * Author: Steven M Lewis
 *
 * Version: 2.0
 * Author: George Smith
 * SVN: http://svn.xp-dev.com/svn/WOX2/
 * Note: XML form for vs 2 is more compact and therefor incompatible with vs 1
 */

public class ComparisonUtilities
{
    /**
     * true if two objects are of the same class with the same field values
     *
     * @param o1 item1
     * @param o2 item2
     *
     * @return true if they are the same
     */
    public static boolean equivalent( Object o1, Object o2 )
    {
        if ( o1 == o2 )
        {
            return true;
        }
        if ( o1 == null || o2 == null )
        {
            return false; // both null covered in first test
        }
        if ( o1.equals( o2 ) )
        {
            return true;
        }
        Class cls = o1.getClass();
        if ( cls != o2.getClass() )
        {
            return false;
        }
        // Primitive special case
        if ( cls.isPrimitive() )
        {
            return false; // o1.equals( o2 ) : handled above
        }
        // Enum special case
        if ( cls.isEnum() )
        {
            return false; // o1 == o2 : handled above
        }
        // Array special case
        if ( cls.isArray() )
        {
            return equivalentArrayValues( o1, o2 );
        }
        // List special case
        if ( List.class.isAssignableFrom( cls ) )
        {
            return equivalentListValues( (List) o1, (List) o2 );
        }
        // Map special case
        if ( Map.class.isAssignableFrom( cls ) )
        {
            return equivalentMapValues( (Map) o1, (Map) o2 );
        }

        return equivalentFieldValues( o1, o2 );
    }

    public static boolean equivalentFieldValues( Object o1, Object o2 )
    {
        Class zClass = o1.getClass();
        Field[] fields = zClass.getDeclaredFields();
        for ( Field info : fields )
        {
            if ( !equivalentFieldValue( info, o1, o2 ) )
            {
                return false;
            }
        }
        return true;
    }

    public static boolean equivalentArrayValues( Object o1, Object o2 )
    {
        if ( o1 == o2 )
        {
            return true;
        }
        if ( o1 == null || o2 == null )
        {
            return false; // both null covered in first test
        }
        int l1 = Array.getLength( o1 );
        if ( l1 != Array.getLength( o2 ) )
        {
            return false;
        }
        for ( int i = 0; i < l1; i++ )
        {
            if ( !equivalent( Array.get( o1, i ), Array.get( o2, i ) ) )
            {
                return false;
            }
        }
        return true;
    }

    /**
     * true if two  lists hold an equivalent collection in
     * the same order
     *
     * @param o1 item1
     * @param o2 item2
     *
     * @return true if they are the same
     */
    public static boolean equivalentListValues( List o1, List o2 )
    {
        if ( o1 == o2 )
        {
            return true;
        }
        if ( o1 == null || o2 == null )
        {
            return false; // both null covered in first test
        }
        if ( o1.size() != o2.size() )
        {
            return false;
        }
        for ( int i = 0; i < o1.size(); i++ )
        {
            if ( !equivalent( o1.get( i ), o2.get( i ) ) )
            {
                return false;
            }
        }
        return true;
    }

    /**
     * true if two  maps hold an equivalent collection
     *
     * @param o1 item1
     * @param o2 item2
     *
     * @return true if they are the same
     */
    public static boolean equivalentMapValues( Map o1, Map o2 )
    {
        if ( o1 == o2 )
        {
            return true;
        }
        if ( o1 == null || o2 == null )
        {
            return false; // both null covered in first test
        }
        if ( o1.size() != o2.size() )
        {
            return false;
        }
        for ( Object key : o1.keySet() )
        {
            if ( !o2.containsKey( key ) )
            {
                return false;
            }
            Object item1 = o1.get( key );
            Object item2 = o2.get( key );
            if ( !equivalent( item1, item2 ) )
            {
                return false;
            }
        }
        return true;
    }

    /**
     * true if two  fields hold an object -
     * the two objects are of the same class
     *
     * @param info field - must be present in both
     * @param o1   item1
     * @param o2   item2
     *
     * @return true if they are the same
     */
    protected static boolean equivalentFieldValue( Field info, Object o1, Object o2 )
    {
        try
        {
            info.setAccessible( true );
            Object f1 = info.get( o1 );
            Object f2 = info.get( o2 );
            return equivalent( f1, f2 );
        }
        catch ( IllegalAccessException e )
        {
            return false;
        }
    }
}

Commits for WOX2/trunk/Java/src/wox/serial/ComparisonUtilities.java

Diff revisions: vs.
Revision Author Commited Message
17 Diff Diff GeorgeS picture GeorgeS Mon 02 Jun, 2014 23:44:02 +0000

Extracting commonfoundation

15 Diff Diff GeorgeS picture GeorgeS Fri 19 Feb, 2010 22:29:49 +0000
3 GeorgeS picture GeorgeS Thu 04 Feb, 2010 23:53:47 +0000