I need to be able to traverse through my entire object graph and log all contents of all member fields. So Object A has a collection of Object Bs which has a collection of Object Cs and A, B, C have additional fields on them, etc. Apache Commons ToStringBuilder is not sufficient since it won't traverse down an object graph or output contents of a collection.

Anyone know of another library that will do this or have a code snippet that does this?

link|improve this question

Smells like Serialization. Except that you may not be interested in an ObjectOutputStream but in something human-readable !? – Andreas_D Jun 30 '10 at 14:01
Are you sure that Apaches ToStringBuilder does not traverse? I seem to remember that it does.. Be careful of circular refences... – bert Jun 30 '10 at 14:05
I'm positive. Just doing ToStringBuidler on an ArrayList will yield output like the following: java.util.ArrayList@1e1006c[ size=18 ]. I want it to actually output each value in the ArrayList and for each value, output each value of it's member fields, etc... – BestPractices Jun 30 '10 at 14:11
feedback

4 Answers

up vote 12 down vote accepted

You can traverse the whole tree using org.apache.commons.lang.builder.ReflectionToStringBuilder. The trick is that in ToStringStyle you need to traverse into the value. ToStringStyle will take care of values, already processed, and will not allow recursion. Here we go:

System.out.println(ReflectionToStringBuilder.toString(schema, new RecursiveToStringStyle(5)));

private static class RecursiveToStringStyle extends ToStringStyle {

    private static final int    INFINITE_DEPTH  = -1;

    /**
     * Setting {@link #maxDepth} to 0 will have the same effect as using original {@link #ToStringStyle}: it will
     * print all 1st level values without traversing into them. Setting to 1 will traverse up to 2nd level and so
     * on.
     */
    private int                 maxDepth;

    private int                 depth;

    public RecursiveToStringStyle() {
        this(INFINITE_DEPTH);
    }

    public RecursiveToStringStyle(int maxDepth) {
        setUseShortClassName(true);
        setUseIdentityHashCode(false);

        this.maxDepth = maxDepth;
    }

    @Override
    protected void appendDetail(StringBuffer buffer, String fieldName, Object value) {
        if (value.getClass().getName().startsWith("java.lang.")
                    || (maxDepth != INFINITE_DEPTH && depth >= maxDepth)) {
            buffer.append(value);
        }
        else {
            depth++;
            buffer.append(ReflectionToStringBuilder.toString(value, this));
            depth--;
        }
    }

    // another helpful method
    @Override
    protected void appendDetail(StringBuffer buffer, String fieldName, Collection<?> coll) {
         depth++;
         buffer.append(ReflectionToStringBuilder.toString(coll.toArray(), this, true, true));
         depth--;
    }
}
link|improve this answer
feedback

I don't know a library by heart, but it's pretty easy with reflection api and some recursion:

printMembers(Object instance) 
  foreach field
    if (field is primitive or String) // guess you're interested in the String value
       printPrimitive(field) 
    else if (field is array or collection)
       foreach item in field
          printmembers(item)
    else
       printmembers(field)            // no primitve, no array, no collection -> object

Getting all fields is not a problem with Java Reflection API. If the field is an array or an instance of Iterable just use the iterator to get all array/collection handlers.

With a custom implementation your free to add special handlers for special objects (like treating String as a primitive) to avoid clutter in the logs.

link|improve this answer
Thanks-- worst case, I can write this myself using reflection. Trying not to do that, if someone's already done it and can paste the code or refer me to a different library... – BestPractices Jun 30 '10 at 14:31
feedback

This is something I've written for my personal use. Let me know if it helps:

public static String arrayToString(final Object obj){
    if (obj == null) {
        return "<null>";
    }
    else {
        Object array = null;
        if (obj instanceof Collection) {
            array = ((Collection) obj).toArray();
        }
        else if (obj.getClass().isArray()) {
            array = obj;
        }
        else {
            return notNull(obj);
        }
        int length = Array.getLength(array);
        int lastItem = length - 1;
        StringBuffer sb = new StringBuffer("[");
        for (int i = 0; i < length; i++) {
            sb.append(arrayToString(Array.get(array, i)));
            if (i < lastItem) {
                sb.append(", ");
            }
        }
        sb.append(']');
        return sb.toString();
    }
}
link|improve this answer
feedback

This link ended up being a good starting point. You basically need something that's recursive but won't get lost in cyclic-references (Object A has a reference to Object B which has reference back to Object A; you dont want to get stuck traversing that over and over again).

http://www.java2s.com/Code/Java/Class/Constructsprettystringrepresentationofobjectvalue.htm

This was also somewhat helpful as well

http://binkley.blogspot.com/2007/08/recursive-tostring.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.