Android Studio - how to diff two nested objects in debugger?

494 Views Asked by At

Let's say I have an object with a lot of nested objects and variables named credential:

enter image description here

After resume program, and re-enter the activity again as different login user: enter image description here

What's the best way to diff this two objects all in once ? .e.g accountName (String), isNew (boolean) variables, and so on.

I tried "Copy Value" and then "Compare Value with Clipboard" but it only able to compare single text variable. "View Text" is same.

I also tried "Mark Object...", but its object will lose and not permanently store(re-enter class will override the object):

enter image description here

So is there any way to compare two complex and nested object values ?

[UPDATE]

I figure out I can press shift OR Ctrl+A to highlight all and then Ctrl+C to copy, but still it will not included nested object without expand them one by one:

enter image description here

[UPDATE 2]:

I noticed shadow$__klass_ object seems like contains itself and cause endless nested attributes. But it can be solved if I can exclude this object name OR limit the max nested depth ?

1

There are 1 best solutions below

2
On

You can develop utility method and keep it somewhere in your project which accepts two objects and call it in the eval expression debugger window and see the difference.

You can use some reflection library or develop your own, it could work this way: walk over the object fields by reflection and build the map where the key contains the composite path of fields (f.e. fieldA.fieldANested.number) and the value it has. Then that two maps for the two objects could be compared very easily and you can see the difference in your debugger