/* * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * - Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * - Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * - Neither the name of Oracle nor the names of its * contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ import java.io.IOException; import java.lang.reflect.Field; import java.util.Arrays; import java.util.HashSet; import java.util.Set; /** * The example illustrates how to use the default method for mixin. * * @author Taras Ledkov * @see MixClass * @see Debuggable * @see Equalable * @see Hashable */ public class MixIn { /** * Implement this interface for a class that must be in debug print */ public interface Debuggable { /** * Print the class name and all data members to the type string. * Reflection is used for it. * * @return the string formatted like the following:
         * State of the: <Class Name>
         * <member name> : <value>
         * ...
         * 
*/ default String toDebugString() { StringBuilder sb = new StringBuilder(); sb.append("State of the: ").append( this.getClass().getSimpleName()).append("\n"); for (Class cls = this.getClass(); cls != null; cls = cls.getSuperclass()) { for (Field f : cls.getDeclaredFields()) { try { f.setAccessible(true); sb.append(f.getName()).append(" : "). append(f.get(this)).append("\n"); } catch (IllegalAccessException e) { } } } return sb.toString(); } } /** * This interface implements the method {@link #equalsReflect} that can be used * for simple overriding of the Object.equal method. */ public interface Equalable { /** * Indicates whether some other object is equal to this one. Uses * reflection to access data members. Two objects are equal if all the * members (except members from #excludeFields list) are equal. * * @param obj object to compare * @param excludeFields the values of these fields don't affect * the return value * @return {@code true} if this object is the same as the obj argument; * {@code false} otherwise. */ default boolean equalsReflect(Object obj, String... excludeFields) { if (this == obj) { return true; } if (obj == null || getClass() != obj.getClass()) { return false; } Set excludes = new HashSet<>(Arrays.asList(excludeFields)); for (Class cls = this.getClass(); cls != null; cls = cls.getSuperclass()) { for (Field f : cls.getDeclaredFields()) { if (excludes.contains(f.getName())) { break; } try { f.setAccessible(true); Object thisFieldVal = f.get(this); Object oFieldVal = f.get(obj); if (thisFieldVal != null) { if (!thisFieldVal.equals(oFieldVal)) { return false; } } else if (oFieldVal != null) { return false; } } catch (IllegalAccessException e) { } } } return true; } } /** * This interface implements the method {@link #hashCodeReflect} * that can be used for simple overriding of the Object.hashCode method. */ public interface Hashable { /** * Returns a hash code value for the object. This method uses reflection * to access an object's data members. Hash code is calculated on * members hash codes. * * @param excludeFields the values of these fields don't affect * the return value * * @return a hash code value for this object. */ default int hashCodeReflect(String... excludeFields) { int result = 0; Set excludes = new HashSet<>(Arrays.asList(excludeFields)); for (Class cls = this.getClass(); cls != null; cls = cls.getSuperclass()) { for (Field f : cls.getDeclaredFields()) { if (excludes.contains(f.getName())) { break; } try { f.setAccessible(true); Object val = f.get(this); result = 31 * result + val.hashCode(); } catch (IllegalAccessException e) { } } } return result; } } /** * Sample class to demonstrate mixin. This class inherits the behavior * of the {@link Debuggable}, {@link Equalable}, {@link Hashable} */ public static class MixClass implements Debuggable, Equalable, Hashable { /** * Need to illustrate debug print, compare and hash code calculation */ private final int n = 28; /** * Need to illustrate debug print, compare and hash code calculation */ private final String strHello = "Hello world"; /** * Use the default method from {@link Equalable} to check equals * * @param o object to compare */ @Override public boolean equals(Object o) { return equalsReflect(o); } /** * Use the default method from {@link Hashable} to calculate * the hash code */ @Override public int hashCode() { return hashCodeReflect(); } } /** * Illustrate the behavior of the MixClass * * @param args command-line arguments * @throws java.io.IOException internal demo error */ public static void main(final String[] args) throws IOException { MixClass a = new MixClass(); MixClass b = new MixClass(); System.out.println(a.toDebugString()); System.out.println(a.equals(b)); } }