MemoryUsage.java 9.36 KB
Newer Older
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
/* MemoryUsage.java - Information on the usage of a memory pool.
   Copyright (C) 2006 Free Software Foundation

This file is part of GNU Classpath.

GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.

GNU Classpath is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
General Public License for more details.

You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING.  If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA.

Linking this library statically or dynamically with other modules is
making a combined work based on this library.  Thus, the terms and
conditions of the GNU General Public License cover the whole
combination.

As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent
modules, and to copy and distribute the resulting executable under
terms of your choice, provided that you also meet, for each linked
independent module, the terms and conditions of the license of that
module.  An independent module is a module which is not derived from
or based on this library.  If you modify this library, you may extend
this exception to your version of the library, but you are not
obligated to do so.  If you do not wish to do so, delete this
exception statement from your version. */

package java.lang.management;

import javax.management.openmbean.CompositeData;
import javax.management.openmbean.CompositeType;
import javax.management.openmbean.SimpleType;
/**
 * <p>
 * Retains information on the usage of a particular memory
 * pool, or heap/non-heap memory as a whole.  Memory usage
 * is represented by four values (all in bytes):
 * </p>
 * <ul>
 * <li><strong>Initial Level</strong>: This is the initial
 * amount of memory allocated for the pool by the operating
 * system.  This value may be undefined.</li>
 * <li><strong>Used Level</strong>: This is the amount of
 * memory currently in use.</li>
 * <li><strong>Committed Level</strong>: This is the current
 * amount of memory allocated for the pool by the operating
 * system.  This value will always be equal to or greater than
 * the current amount of memory in use.  It may drop below
 * the initial amount, if the virtual machine judges this to
 * be practical.</li>
 * <li><strong>Maximum Level</strong>: This is the maximum
 * amount of memory that may be allocated for the pool by
 * the operating system.  Like the initial amount, it may
 * be undefined.  If it is defined, it will be greater than
 * or equal to the used and committed amounts and may change
 * over time.  It is not guaranteed that the maximum amount
 * of memory may actually be allocated to the pool.  For
 * example, a request for an amount of memory greater than
 * the current committed level, but less than the maximum,
 * may still fail due to resources at the operating system
 * level not being sufficient to fulfill the demand.</li>
 * </ul>
 *
 * @author Andrew John Hughes (gnu_andrew@member.fsf.org)
 * @since 1.5
 * @see MemoryMXBean
 * @see MemoryPoolMXBean
 */
public class MemoryUsage
{

  /**
   * The initial amount of memory allocated.
   */
  private long init;

  /**
   * The amount of memory used.
   */
  private long used;

  /**
   * The amount of memory committed for use.
   */
  private long committed;

  /**
   * The maximum amount of memory available.
   */
  private long maximum;

  /**
   * Constructs a new {@link MemoryUsage} object with
   * the specified allocation levels.
   *
   * @param init the initial amount of memory allocated,
   *             or -1 if this value is undefined.  Must
   *             be >= -1.
   * @param used the amount of memory used.  Must be >= 0,
   *             and <= committed.
   * @param committed the amount of memory committed for use
   *                  at present.  Must be >= 0 and <=
   *                  maximum (if defined).
   * @param maximum the maximum amount of memory that may be
   *                used, or -1 if this value is undefined.
   *                Must be >= -1.
   * @throws IllegalArgumentException if the values break any
   *                                  of the limits specified
   *                                  above.
   */
  public MemoryUsage(long init, long used, long committed,
122
                     long maximum)
123 124 125
  {
    if (init < -1)
      throw new IllegalArgumentException("Initial value of "
126
                                         + init + " is too small.");
127 128
    if (used < 0)
      throw new IllegalArgumentException("Used value of "
129
                                         + used + " is too small.");
130 131
    if (committed < 0)
      throw new IllegalArgumentException("Committed value of "
132
                                         + committed + " is too small.");
133 134
    if (committed < used)
      throw new IllegalArgumentException("Committed value of "
135 136
                                         + committed + " is below "
                                         + used + ", the amount used.");
137 138
    if (maximum < -1)
      throw new IllegalArgumentException("Maximum value of "
139
                                         + maximum + " is too small.");
140
    if (maximum != -1 && maximum < committed)
141 142 143 144
      throw new IllegalArgumentException("Maximum value of "
                                         + maximum + " is below "
                                         + committed + ", the amount "
                                         + "committed.");
145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
    this.init = init;
    this.used = used;
    this.committed = committed;
    this.maximum = maximum;
  }

  /**
   * <p>
   * Returns a {@link MemoryUsage} instance using the values
   * given in the supplied
   * {@link javax.management.openmbean.CompositeData} object.
   * The composite data instance should contain the following
   * attributes:
   * </p>
   * <ul>
   * <li>init</li>
   * <li>used</li>
   * <li>committed</li>
   * <li>max</li>
   * </ul>
   * <p>
   * All should have the type, <code>java.lang.Long</code>.
   * </p>
168
   *
169
   * @param data the composite data structure to take values from.
170
   * @return a new instance containing the values from the
171 172 173 174 175 176 177 178 179 180 181 182
   *         composite data structure, or <code>null</code>
   *         if the data structure was also <code>null</code>.
   * @throws IllegalArgumentException if the composite data structure
   *                                  does not match the structure
   *                                  outlined above, or the values
   *                                  are invalid.
   */
  public static MemoryUsage from(CompositeData data)
  {
    if (data == null)
      return null;
    CompositeType type = data.getCompositeType();
183 184 185 186 187
    ThreadInfo.checkAttribute(type, "Init", SimpleType.LONG);
    ThreadInfo.checkAttribute(type, "Used", SimpleType.LONG);
    ThreadInfo.checkAttribute(type, "Committed", SimpleType.LONG);
    ThreadInfo.checkAttribute(type, "Max", SimpleType.LONG);
    return new MemoryUsage(((Long) data.get("Init")).longValue(),
188 189 190
                           ((Long) data.get("Used")).longValue(),
                           ((Long) data.get("Committed")).longValue(),
                           ((Long) data.get("Max")).longValue());
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 219
  }

  /**
   * Returns the amount of memory committed for use by this
   * memory pool (in bytes).  This amount is guaranteed to
   * be available, unlike the maximum.
   *
   * @return the committed amount of memory.
   */
  public long getCommitted()
  {
    return committed;
  }

  /**
   * Returns the initial amount of memory allocated to the
   * pool (in bytes).  This method may return -1, if the
   * value is undefined.
   *
   * @return the initial amount of memory allocated, or -1
   *         if this value is undefined.
   */
  public long getInit()
  {
    return init;
  }

  /**
   * Returns the maximum amount of memory available for this
220
   * pool (in bytes).  This amount is not guaranteed to
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264
   * actually be usable.  This method may return -1, if the
   * value is undefined.
   *
   * @return the maximum amount of memory available, or -1
   *         if this value is undefined.
   */
  public long getMax()
  {
    return maximum;
  }

  /**
   * Returns the amount of memory used (in bytes).
   *
   * @return the amount of used memory.
   */
  public long getUsed()
  {
    return used;
  }

  /**
   * Returns a {@link java.lang.String} representation of
   * this {@link MemoryUsage} object.  This takes the form
   * <code>java.lang.management.MemoryUsage[init=i, used=u,
   * committed=c, maximum=m]</code>, where <code>i</code>
   * is the initial level, <code>u</code> is the used level,
   * <code>c</code> is the committed level and <code>m</code>
   * is the maximum level.
   *
   * @return the string specified above.
   */
  public String toString()
  {
    int megabyte = 1024 * 1024;
    return getClass().getName() +
      "[init=" + init + " bytes (~" + (init / megabyte) +
      "MB), used=" + used + " bytes (~" + (used / megabyte) +
      "MB), committed=" + committed + " bytes (~" + (committed / megabyte) +
      "MB), maximum=" + maximum + " bytes (~" + (maximum / megabyte) +
      "MB)]";
  }

}