码迷,mamicode.com
首页 > 其他好文 > 详细

使用sun.misc.Unsafe及反射对内存进行内省(introspection)

时间:2014-08-06 10:32:41      阅读:373      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   http   color   java   使用   os   

对于一个有经验的JAVA程序员来说,了解一个或者其它的JAVA对象占用了多少内存,这将会非常有用。你可能已经听说过我们所生活的世界,存储容量将不再是一个问题,这个对于你的文本编辑器来说可能是对的(不过,打开一个包含大量的图片以及图表的文档,看看你的编辑器会消耗多少内存),对于一个专用服务器软件来说也可能是对的(至少在你的企业成长到足够大或者是在同一台服务器运行其它的软件之前),对于基于云的软件来说也可能是对的,如果你足够的富有可以花足够的钱可以买顶级的服务器硬件。

    然而,现实是你的软件如果是受到了内存限制,需要做的是花钱优化它而不是尝试获取更好的硬件(原文:in the real world your software will once reach a point where it makes sense to spend money in its optimization rather than trying to obtain an even better hardware)(目前你可以获取到的最好的商业服务器是64G内存),此时你不得不分析你的应用程序来找出是哪个数据结构消耗了大部份的内存。对于这种分析任务,最好的工具就是一个好的性能分析工具,但是你可以在刚开始的时候,使用分析你代码中的对象这种用廉价的方式。这篇文章描述了使用基于Oracle JDK的ClassIntrospector类,来分析你的应用程序内存消耗。

    我曾经在文章字符串包装第1部分:将字符转换为字节中提到了JAVA对象内存结构,例如我曾经写过,在JAVA1.7.0_06以前,一个具有28个字符的字符串会占用104个字节,事实上,我在写这篇文章的时候,通过自己的性能分析器证实了我的计算结果。现在我们使用Oracle JDK中特殊类sun.misc.Unsafe,通过纯JAVA来实现一个JAVA对象内省器(introspector)。

    我们使用sun.misc.Unsafe的以下方法:

[java] view plaincopybubuko.com,布布扣bubuko.com,布布扣
  1. //获取字节对象中非静态方法的偏移量(get offset of a non-static field in the object in bytes  
  2. public native long objectFieldOffset(java.lang.reflect.Field field);  
  3. //获取数组中第一个元素的偏移量(get offset of a first element in the array)  
  4. public native int arrayBaseOffset(java.lang.Class aClass);  
  5. //获取数组中一个元素的大小(get size of an element in the array)  
  6. public native int arrayIndexScale(java.lang.Class aClass);  
  7. //获取JVM中的地址值(get address size for your JVM)  
  8. public native int addressSize();  
    在sun.misc.Unsafe中有两个额外的内省方法:staticFieldBase及staticFieldOffset,但是在这篇文章中不会使用到。这两个方法对于非安全的读写静态方法会有用。

    我们应如何找到一个对象的内存布局?

    1、循环的在分析类及父类上调用Class.getDeclaredFields,获取所有对象的字段,包括其父类中的字段;

    2、针对非静态字段(通过Field.getModifiers() & Modifiers.STATIC判断静态字段),通过使用Unsafe.objectFieldOffset在其父类中获取一个字段的偏移量以及该字段的shallow(注:shallow指的是当前对象本身的大小)大小:基础类型的默认值及4个或8个字节的对象引用(更多看下面);

    3、对数组来说,调用Unsafe.arrayBaseOffset及Unsafe.arrayIndexScale,数组的整个shallow大小将会是 当前数组的偏移量+每个数组的大小*数组的长度(原文是:offset + scale * Array.getLength(array)),当然了也包括对数组本身引用的大小(看前面提到的);

    4、别忘了对象图的循环引用,因而就需要对前面已经分析过的对象进行跟踪记录(针对这些情况,推荐使用IdentityHashMap


    Java对象引用大小是一个非常不确定的值(原文:Java Object reference size is quite a virtual value),它可能是4个字节或者是8个字节,这个取决于你的JVM设置以及给了多少内存给JVM,针对32G以上的堆,它就总是8个字节,但是针对小一点的堆就是4个字节除非你在JVM设置里关掉设置-XX:-UseCompressedOops(我不确定这个功能是在JVM的哪个版本加进来的,或者是默认是打开的)。结果就是,安全的方式获取对像引用的大小就是找到Object[]数组中一个元素的大小:unsafe.arrayIndexScale( Object[].class ),针对这种情况,Unsafe.addressSize倒不实用了。    

    针对32G以下堆内存中例用4字节引用的一点小小注意。一个正常的4个字节的指针可以定位到4G地址空间任何地址。如果我们假设所有已分配的对象将通过8字节边界对齐,在我们的32位指针中我们将不再需要最低3位(这些位将总是等于零)。这意味着我们可以存储35位地址在32位中。(这一节附上原文如下:

    A small implementation note on 4 byte references on under 32G heaps. A normal 4 byte pointer could addressany byte in 4G address space. If we will assume that all allocated objects will be aligned by 8 bytes boundary, we won’t need 3 lowest bits in our 32 bit pointers anymore (these bits will always be equal to zeroes). This means that we can store 35 bit addresses in 32 bit value:)   

[plain] view plaincopybubuko.com,布布扣bubuko.com,布布扣
  1. 32_bit_reference = ( int ) ( actual_64_bit_pointer >> 3 )  
    35位允许寻址 32位*8=4G*8=32G地址空间。

     写这个工具时发现的其它的一些有趣的事情

    1、要打印数组的内容,必须使用Arrays.toString(包括基本类型及对象数组);

    2、你必须要小心 - 内省方法(introspection method)只接受对象作为字段值,因此你最终可能处在无限循环中:整型打包成整数,以便传递到内省的方法。里面你会发现一个Integer.value字段,并尝试再次内省了 - 瞧,你又回到了开始的地方!

    3、要内省(introspect)对象数组中所有非空的值 - 这仅仅是间接的对象图中的外部level(原文:this is just an extra level of indirection in the object graph)

    如何使用ClassIntrospector类?仅需要实例化它并且在你的任意的对象中调用它的实例内省(introspect)方法,它会返回一个ObjectInfo对象,这个对象与你的“根‘对象有关,这个对象将指向它的所有子项,我想这可能是足够的打印其toString方法的结果和/或调用ObjectInfo.getDeepSize方法(原文:I think it may be sufficient to print its toString method result and/or to call ObjectInfo.getDeepSize method),它将通过你的”根“对象引用,返回你的所有对象的总内存消耗。

    ClassIntrospector不是线程安全的,但是你可以在同一个线程中任意多次调用内省(introspect)方法。


    总结

    1、你可以使用sun.misc.Unsafe的这些方法获取Java对象的布局信息:objectFieldOffsetarrayBaseOffset and arrayIndexScale

    2、Java对象引用的大小取决于你当前的环境,根据不同JVM的设置以及分配给JVM的内存大小,它可能是4个或者8个字节。在大于32G的堆中,对像引用的大小总会是8个字节,但是在一个比较小的堆中它就会是4个字节,除非关闭JVM设置:-XX:-UseCompressedOops


    源码

    ClassIntrospector:

[java] view plaincopybubuko.com,布布扣bubuko.com,布布扣
  1. import sun.misc.Unsafe;  
  2.    
  3. import java.lang.reflect.Array;  
  4. import java.lang.reflect.Field;  
  5. import java.lang.reflect.Modifier;  
  6. import java.math.BigDecimal;  
  7. import java.util.*;  
  8.    
  9. /** 
  10.  * This class could be used for any object contents/memory layout printing. 
  11.  */  
  12. public class ClassIntrospector  
  13. {  
  14.     public static void main(String[] args) throws IllegalAccessException {  
  15.         final ClassIntrospector ci = new ClassIntrospector();  
  16.         final Map<String, BigDecimal> map = new HashMap<String, BigDecimal>( 10);  
  17.         map.put( "one", BigDecimal.ONE );  
  18.         map.put( "zero", BigDecimal.ZERO );  
  19.         map.put( "ten", BigDecimal.TEN );  
  20.         final ObjectInfo res;  
  21.         res = ci.introspect( "0123456789012345678901234567" );  
  22.         //res = ci.introspect( new TestObjChild() );  
  23.         //res = ci.introspect(map);  
  24.         //res = ci.introspect( new String[] { "str1", "str2" } );  
  25.         //res = ci.introspect(ObjectInfo.class);  
  26.         //res = ci.introspect( new TestObj() );  
  27.    
  28.         System.out.println( res.getDeepSize() );  
  29.         System.out.println( res );  
  30.     }  
  31.    
  32.     /** First test object - testing various arrays and complex objects */  
  33.     private static class TestObj  
  34.     {  
  35.         protected final String[] strings = { "str1""str2" };  
  36.         protected final int[] ints = { 1416 };  
  37.         private final Integer i = 28;  
  38.         protected final BigDecimal bigDecimal = BigDecimal.ONE;  
  39.    
  40.         @Override  
  41.         public String toString() {  
  42.             return "TestObj{" +  
  43.                     "strings=" + (strings == null ? null : Arrays.asList(strings)) +  
  44.                     ", ints=" + Arrays.toString( ints ) +  
  45.                     ", i=" + i +  
  46.                     ", bigDecimal=" + bigDecimal +  
  47.                     ‘}‘;  
  48.         }  
  49.     }  
  50.    
  51.     /** Test class 2 - testing inheritance */  
  52.     private static class TestObjChild extends TestObj  
  53.     {  
  54.         private final boolean[] flags = { truetruefalse };  
  55.         private final boolean flag = false;  
  56.    
  57.         @Override  
  58.         public String toString() {  
  59.             return "TestObjChild{" +  
  60.                     "flags=" + Arrays.toString( flags ) +  
  61.                     ", flag=" + flag +  
  62.                     ‘}‘;  
  63.         }  
  64.     }  
  65.    
  66.     private static final Unsafe unsafe;  
  67.     /** Size of any Object reference */  
  68.     private static final int objectRefSize;  
  69.     static  
  70.     {  
  71.         try  
  72.         {  
  73.             Field field = Unsafe.class.getDeclaredField("theUnsafe");  
  74.             field.setAccessible(true);  
  75.             unsafe = (Unsafe)field.get(null);  
  76.    
  77.             objectRefSize = unsafe.arrayIndexScale( Object[].class );  
  78.         }  
  79.         catch (Exception e)  
  80.         {  
  81.             throw new RuntimeException(e);  
  82.         }  
  83.     }  
  84.    
  85.     /** Sizes of all primitive values */  
  86.     private static final Map<Class, Integer> primitiveSizes;  
  87.    
  88.     static  
  89.     {  
  90.         primitiveSizes = new HashMap<Class, Integer>( 10 );  
  91.         primitiveSizes.put( byte.class1 );  
  92.         primitiveSizes.put( char.class2 );  
  93.         primitiveSizes.put( int.class4 );  
  94.         primitiveSizes.put( long.class8 );  
  95.         primitiveSizes.put( float.class4 );  
  96.         primitiveSizes.put( double.class8 );  
  97.         primitiveSizes.put( boolean.class1 );  
  98.     }  
  99.    
  100.     /** 
  101.      * Get object information for any Java object. Do not pass primitives to this method because they 
  102.      * will boxed and the information you will get will be related to a boxed version of your value. 
  103.      * @param obj Object to introspect 
  104.      * @return Object info 
  105.      * @throws IllegalAccessException 
  106.      */  
  107.     public ObjectInfo introspect( final Object obj ) throws IllegalAccessException  
  108.     {  
  109.         try  
  110.         {  
  111.             return introspect( obj, null );  
  112.         }  
  113.         finally { //clean visited cache before returning in order to make this object reusable  
  114.             m_visited.clear();  
  115.         }  
  116.     }  
  117.    
  118.     //we need to keep track of already visited objects in order to support cycles in the object graphs  
  119.     private IdentityHashMap<Object, Boolean> m_visited = new IdentityHashMap<Object, Boolean>( 100 );  
  120.    
  121.     private ObjectInfo introspect( final Object obj, final Field fld ) throws IllegalAccessException  
  122.     {  
  123.         //use Field type only if the field contains null. In this case we will at least know what‘s expected to be  
  124.         //stored in this field. Otherwise, if a field has interface type, we won‘t see what‘s really stored in it.  
  125.         //Besides, we should be careful about primitives, because they are passed as boxed values in this method  
  126.         //(first arg is object) - for them we should still rely on the field type.  
  127.         boolean isPrimitive = fld != null && fld.getType().isPrimitive();  
  128.         boolean isRecursive = false//will be set to true if we have already seen this object  
  129.         if ( !isPrimitive )  
  130.         {  
  131.             if ( m_visited.containsKey( obj ) )  
  132.                 isRecursive = true;  
  133.             m_visited.put( obj, true );  
  134.         }  
  135.    
  136.         final Class type = ( fld == null || ( obj != null && !isPrimitive) ) ?  
  137.                 obj.getClass() : fld.getType();  
  138.         int arraySize = 0;  
  139.         int baseOffset = 0;  
  140.         int indexScale = 0;  
  141.         if ( type.isArray() && obj != null )  
  142.         {  
  143.             baseOffset = unsafe.arrayBaseOffset( type );  
  144.             indexScale = unsafe.arrayIndexScale( type );  
  145.             arraySize = baseOffset + indexScale * Array.getLength( obj );  
  146.         }  
  147.    
  148.         final ObjectInfo root;  
  149.         if ( fld == null )  
  150.         {  
  151.             root = new ObjectInfo( "", type.getCanonicalName(), getContents( obj, type ), 0, getShallowSize( type ),  
  152.                     arraySize, baseOffset, indexScale );  
  153.         }  
  154.         else  
  155.         {  
  156.             final int offset = ( int ) unsafe.objectFieldOffset( fld );  
  157.             root = new ObjectInfo( fld.getName(), type.getCanonicalName(), getContents( obj, type ), offset,  
  158.                     getShallowSize( type ), arraySize, baseOffset, indexScale );  
  159.         }  
  160.    
  161.         if ( !isRecursive && obj != null )  
  162.         {  
  163.             if ( isObjectArray( type ) )  
  164.             {  
  165.                 //introspect object arrays  
  166.                 final Object[] ar = ( Object[] ) obj;  
  167.                 for ( final Object item : ar )  
  168.                     if ( item != null )  
  169.                         root.addChild( introspect( item, null ) );  
  170.             }  
  171.             else  
  172.             {  
  173.                 for ( final Field field : getAllFields( type ) )  
  174.                 {  
  175.                     if ( ( field.getModifiers() & Modifier.STATIC ) != 0 )  
  176.                     {  
  177.                         continue;  
  178.                     }  
  179.                     field.setAccessible( true );  
  180.                     root.addChild( introspect( field.get( obj ), field ) );  
  181.                 }  
  182.             }  
  183.         }  
  184.    
  185.         root.sort(); //sort by offset  
  186.         return root;  
  187.     }  
  188.    
  189.     //get all fields for this class, including all superclasses fields  
  190.     private static List<Field> getAllFields( final Class type )  
  191.     {  
  192.         if ( type.isPrimitive() )  
  193.             return Collections.emptyList();  
  194.         Class cur = type;  
  195.         final List<Field> res = new ArrayList<Field>( 10 );  
  196.         while ( true )  
  197.         {  
  198.             Collections.addAll( res, cur.getDeclaredFields() );  
  199.             if ( cur == Object.class )  
  200.                 break;  
  201.             cur = cur.getSuperclass();  
  202.         }  
  203.         return res;  
  204.     }  
  205.    
  206.     //check if it is an array of objects. I suspect there must be a more API-friendly way to make this check.  
  207.     private static boolean isObjectArray( final Class type )  
  208.     {  
  209.         if ( !type.isArray() )  
  210.             return false;  
  211.         if ( type == byte[].class || type == boolean[].class || type == char[].class || type == short[].class ||  
  212.             type == int[].class || type == long[].class || type == float[].class || type == double[].class )  
  213.             return false;  
  214.         return true;  
  215.     }  
  216.    
  217.     //advanced toString logic  
  218.     private static String getContents( final Object val, final Class type )  
  219.     {  
  220.         if ( val == null )  
  221.             return "null";  
  222.         if ( type.isArray() )  
  223.         {  
  224.             if ( type == byte[].class )  
  225.                 return Arrays.toString( ( byte[] ) val );  
  226.             else if ( type == boolean[].class )  
  227.                 return Arrays.toString( ( boolean[] ) val );  
  228.             else if ( type == char[].class )  
  229.                 return Arrays.toString( ( char[] ) val );  
  230.             else if ( type == short[].class )  
  231.                 return Arrays.toString( ( short[] ) val );  
  232.             else if ( type == int[].class )  
  233.                 return Arrays.toString( ( int[] ) val );  
  234.             else if ( type == long[].class )  
  235.                 return Arrays.toString( ( long[] ) val );  
  236.             else if ( type == float[].class )  
  237.                 return Arrays.toString( ( float[] ) val );  
  238.             else if ( type == double[].class )  
  239.                 return Arrays.toString( ( double[] ) val );  
  240.             else  
  241.                 return Arrays.toString( ( Object[] ) val );  
  242.         }  
  243.         return val.toString();  
  244.     }  
  245.    
  246.     //obtain a shallow size of a field of given class (primitive or object reference size)  
  247.     private static int getShallowSize( final Class type )  
  248.     {  
  249.         if ( type.isPrimitive() )  
  250.         {  
  251.             final Integer res = primitiveSizes.get( type );  
  252.             return res != null ? res : 0;  
  253.         }  
  254.         else  
  255.             return objectRefSize;  
  256.     }  
  257. }  

    ObjectInfo:

[java] view plaincopybubuko.com,布布扣bubuko.com,布布扣
  1. import java.util.ArrayList;  
  2. import java.util.Collections;  
  3. import java.util.Comparator;  
  4. import java.util.List;  
  5.    
  6. /** 
  7.  * This class contains object info generated by ClassIntrospector tool 
  8.  */  
  9. public class ObjectInfo {  
  10.     /** Field name */  
  11.     public final String name;  
  12.     /** Field type name */  
  13.     public final String type;  
  14.     /** Field data formatted as string */  
  15.     public final String contents;  
  16.     /** Field offset from the start of parent object */  
  17.     public final int offset;  
  18.     /** Memory occupied by this field */  
  19.     public final int length;  
  20.     /** Offset of the first cell in the array */  
  21.     public final int arrayBase;  
  22.     /** Size of a cell in the array */  
  23.     public final int arrayElementSize;  
  24.     /** Memory occupied by underlying array (shallow), if this is array type */  
  25.     public final int arraySize;  
  26.     /** This object fields */  
  27.     public final List<ObjectInfo> children;  
  28.    
  29.     public ObjectInfo(String name, String type, String contents, int offset, int length, int arraySize,  
  30.     int arrayBase, int arrayElementSize)  
  31.     {  
  32.         this.name = name;  
  33.         this.type = type;  
  34.         this.contents = contents;  
  35.         this.offset = offset;  
  36.         this.length = length;  
  37.         this.arraySize = arraySize;  
  38.         this.arrayBase = arrayBase;  
  39.         this.arrayElementSize = arrayElementSize;  
  40.         children = new ArrayList<ObjectInfo>( 1 );  
  41.     }  
  42.    
  43.     public void addChild( final ObjectInfo info )  
  44.     {  
  45.         if ( info != null )  
  46.             children.add( info );  
  47.     }  
  48.    
  49.     /** 
  50.     * Get the full amount of memory occupied by a given object. This value may be slightly less than 
  51.     * an actual value because we don‘t worry about memory alignment - possible padding after the last object field. 
  52.     * 
  53.     * The result is equal to the last field offset + last field length + all array sizes + all child objects deep sizes 
  54.     * @return Deep object size 
  55.     */  
  56.     public long getDeepSize()  
  57.     {  
  58.         return length + arraySize + getUnderlyingSize( arraySize != 0 );  
  59.     }  
  60.    
  61.     private long getUnderlyingSize( final boolean isArray )  
  62.     {  
  63.         long size = 0;  
  64.         for ( final ObjectInfo child : children )  
  65.             size += child.arraySize + child.getUnderlyingSize( child.arraySize != 0 );  
  66.         if ( !isArray && !children.isEmpty() )  
  67.             size += children.get( children.size() - 1 ).offset + children.get( children.size() - 1 ).length;  
  68.         return size;  
  69.     }  
  70.    
  71.     private static final class OffsetComparator implements Comparator<ObjectInfo>  
  72.     {  
  73.         @Override  
  74.         public int compare( final ObjectInfo o1, final ObjectInfo o2 )  
  75.         {  
  76.             return o1.offset - o2.offset; //safe because offsets are small non-negative numbers  
  77.         }  
  78.     }  
  79.    
  80.     //sort all children by their offset  
  81.     public void sort()  
  82.     {  
  83.         Collections.sort( children, new OffsetComparator() );  
  84.     }  
  85.    
  86.     @Override  
  87.     public String toString() {  
  88.         final StringBuilder sb = new StringBuilder();  
  89.         toStringHelper( sb, 0 );  
  90.         return sb.toString();  
  91.     }  
  92.    
  93.     private void toStringHelper( final StringBuilder sb, final int depth )  
  94.     {  
  95.         depth( sb, depth ).append("name=").append( name ).append(", type=").append( type )  
  96.             .append( ", contents=").append( contents ).append(", offset=").append( offset )  
  97.             .append(", length=").append( length );  
  98.         if ( arraySize > 0 )  
  99.         {  
  100.             sb.append(", arrayBase=").append( arrayBase );  
  101.             sb.append(", arrayElemSize=").append( arrayElementSize );  
  102.             sb.append( ", arraySize=").append( arraySize );  
  103.         }  
  104.         for ( final ObjectInfo child : children )  
  105.         {  
  106.             sb.append( ‘\n‘ );  
  107.             child.toStringHelper(sb, depth + 1);  
  108.         }  
  109.     }  
  110.    
  111.     private StringBuilder depth( final StringBuilder sb, final int depth )  
  112.     {  
  113.         for ( int i = 0; i < depth; ++i )  
  114.             sb.append( ‘\t‘ );  
  115.         return sb;  
  116.     }  
  117. }  


    原文地址:http://java-performance.info/memory-introspection-using-sun-misc-unsafe-and-reflection/

使用sun.misc.Unsafe及反射对内存进行内省(introspection),布布扣,bubuko.com

使用sun.misc.Unsafe及反射对内存进行内省(introspection)

标签:des   style   blog   http   color   java   使用   os   

原文地址:http://blog.csdn.net/aigoogle/article/details/38396373

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!