jdk/src/java.management/share/classes/java/lang/management/MemoryUsage.java
author ksrini
Mon, 01 May 2017 07:33:19 -0700
changeset 44858 7183899b064b
parent 32034 05676cfd40b5
child 47028 6df65183aa1f
permissions -rw-r--r--
8179415: Update java.management and java.management.rmi to be HTML-5 friendly Reviewed-by: mchung
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
44858
7183899b064b 8179415: Update java.management and java.management.rmi to be HTML-5 friendly
ksrini
parents: 32034
diff changeset
     2
 * Copyright (c) 2003, 2017, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package java.lang.management;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import javax.management.openmbean.CompositeData;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import sun.management.MemoryUsageCompositeData;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
/**
32034
05676cfd40b5 8133040: docs: replace <tt> tags (obsolete in html5) for java.management
avstepan
parents: 25859
diff changeset
    32
 * A {@code MemoryUsage} object represents a snapshot of memory usage.
05676cfd40b5 8133040: docs: replace <tt> tags (obsolete in html5) for java.management
avstepan
parents: 25859
diff changeset
    33
 * Instances of the {@code MemoryUsage} class are usually constructed
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * by methods that are used to obtain memory usage
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * information about individual memory pool of the Java virtual machine or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * the heap or non-heap memory of the Java virtual machine as a whole.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 *
32034
05676cfd40b5 8133040: docs: replace <tt> tags (obsolete in html5) for java.management
avstepan
parents: 25859
diff changeset
    38
 * <p> A {@code MemoryUsage} object contains four values:
44858
7183899b064b 8179415: Update java.management and java.management.rmi to be HTML-5 friendly
ksrini
parents: 32034
diff changeset
    39
 * <table>
7183899b064b 8179415: Update java.management and java.management.rmi to be HTML-5 friendly
ksrini
parents: 32034
diff changeset
    40
 * <caption style="display:none">Describes the MemoryUsage object content</caption>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * <tr>
44858
7183899b064b 8179415: Update java.management and java.management.rmi to be HTML-5 friendly
ksrini
parents: 32034
diff changeset
    42
 * <td style="vertical-align:top"> {@code init} </td>
7183899b064b 8179415: Update java.management and java.management.rmi to be HTML-5 friendly
ksrini
parents: 32034
diff changeset
    43
 * <td style="vertical-align:top"> represents the initial amount of memory (in bytes) that
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 *      the Java virtual machine requests from the operating system
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 *      for memory management during startup.  The Java virtual machine
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 *      may request additional memory from the operating system and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 *      may also release memory to the system over time.
32034
05676cfd40b5 8133040: docs: replace <tt> tags (obsolete in html5) for java.management
avstepan
parents: 25859
diff changeset
    48
 *      The value of {@code init} may be undefined.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * </td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * </tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * <tr>
44858
7183899b064b 8179415: Update java.management and java.management.rmi to be HTML-5 friendly
ksrini
parents: 32034
diff changeset
    52
 * <td style="vertical-align:top"> {@code used} </td>
7183899b064b 8179415: Update java.management and java.management.rmi to be HTML-5 friendly
ksrini
parents: 32034
diff changeset
    53
 * <td style="vertical-align:top"> represents the amount of memory currently used (in bytes).
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * </td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * </tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 * <tr>
44858
7183899b064b 8179415: Update java.management and java.management.rmi to be HTML-5 friendly
ksrini
parents: 32034
diff changeset
    57
 * <td style="vertical-align:top"> {@code committed} </td>
7183899b064b 8179415: Update java.management and java.management.rmi to be HTML-5 friendly
ksrini
parents: 32034
diff changeset
    58
 * <td style="vertical-align:top"> represents the amount of memory (in bytes) that is
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 *      guaranteed to be available for use by the Java virtual machine.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 *      The amount of committed memory may change over time (increase
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 *      or decrease).  The Java virtual machine may release memory to
32034
05676cfd40b5 8133040: docs: replace <tt> tags (obsolete in html5) for java.management
avstepan
parents: 25859
diff changeset
    62
 *      the system and {@code committed} could be less than {@code init}.
05676cfd40b5 8133040: docs: replace <tt> tags (obsolete in html5) for java.management
avstepan
parents: 25859
diff changeset
    63
 *      {@code committed} will always be greater than
05676cfd40b5 8133040: docs: replace <tt> tags (obsolete in html5) for java.management
avstepan
parents: 25859
diff changeset
    64
 *      or equal to {@code used}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 * </td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 * </tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 * <tr>
44858
7183899b064b 8179415: Update java.management and java.management.rmi to be HTML-5 friendly
ksrini
parents: 32034
diff changeset
    68
 * <td style="vertical-align:top"> {@code max} </td>
7183899b064b 8179415: Update java.management and java.management.rmi to be HTML-5 friendly
ksrini
parents: 32034
diff changeset
    69
 * <td style="vertical-align:top"> represents the maximum amount of memory (in bytes)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 *      that can be used for memory management. Its value may be undefined.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 *      The maximum amount of memory may change over time if defined.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 *      The amount of used and committed memory will always be less than
32034
05676cfd40b5 8133040: docs: replace <tt> tags (obsolete in html5) for java.management
avstepan
parents: 25859
diff changeset
    73
 *      or equal to {@code max} if {@code max} is defined.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 *      A memory allocation may fail if it attempts to increase the
32034
05676cfd40b5 8133040: docs: replace <tt> tags (obsolete in html5) for java.management
avstepan
parents: 25859
diff changeset
    75
 *      used memory such that {@code used > committed} even
05676cfd40b5 8133040: docs: replace <tt> tags (obsolete in html5) for java.management
avstepan
parents: 25859
diff changeset
    76
 *      if {@code used <= max} would still be true (for example,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
 *      when the system is low on virtual memory).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
 * </td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
 * </tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
 * </table>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
 * Below is a picture showing an example of a memory pool:
21334
c60dfce46a77 8026982: javadoc errors in core libs
rriggs
parents: 18799
diff changeset
    83
 *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
 * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
 *        +----------------------------------------------+
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
 *        +////////////////           |                  +
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
 *        +////////////////           |                  +
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
 *        +----------------------------------------------+
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
 *        |--------|
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
 *           init
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
 *        |---------------|
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
 *               used
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
 *        |---------------------------|
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
 *                  committed
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
 *        |----------------------------------------------|
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
 *                            max
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
 * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
 *
18799
31062cb3cc8e 8020308: Fix doclint issues in java.lang.management
sspitsyn
parents: 18156
diff changeset
   100
 * <h3>MXBean Mapping</h3>
32034
05676cfd40b5 8133040: docs: replace <tt> tags (obsolete in html5) for java.management
avstepan
parents: 25859
diff changeset
   101
 * {@code MemoryUsage} is mapped to a {@link CompositeData CompositeData}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
 * with attributes as specified in the {@link #from from} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
 * @author   Mandy Chung
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
 * @since   1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
public class MemoryUsage {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
    private final long init;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
    private final long used;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
    private final long committed;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
    private final long max;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
    /**
32034
05676cfd40b5 8133040: docs: replace <tt> tags (obsolete in html5) for java.management
avstepan
parents: 25859
diff changeset
   114
     * Constructs a {@code MemoryUsage} object.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     * @param init      the initial amount of memory in bytes that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     *                  the Java virtual machine allocates;
32034
05676cfd40b5 8133040: docs: replace <tt> tags (obsolete in html5) for java.management
avstepan
parents: 25859
diff changeset
   118
     *                  or {@code -1} if undefined.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     * @param used      the amount of used memory in bytes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     * @param committed the amount of committed memory in bytes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     * @param max       the maximum amount of memory in bytes that
32034
05676cfd40b5 8133040: docs: replace <tt> tags (obsolete in html5) for java.management
avstepan
parents: 25859
diff changeset
   122
     *                  can be used; or {@code -1} if undefined.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
     * @throws IllegalArgumentException if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
     * <ul>
32034
05676cfd40b5 8133040: docs: replace <tt> tags (obsolete in html5) for java.management
avstepan
parents: 25859
diff changeset
   126
     * <li> the value of {@code init} or {@code max} is negative
05676cfd40b5 8133040: docs: replace <tt> tags (obsolete in html5) for java.management
avstepan
parents: 25859
diff changeset
   127
     *      but not {@code -1}; or</li>
05676cfd40b5 8133040: docs: replace <tt> tags (obsolete in html5) for java.management
avstepan
parents: 25859
diff changeset
   128
     * <li> the value of {@code used} or {@code committed} is negative;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
     *      or</li>
32034
05676cfd40b5 8133040: docs: replace <tt> tags (obsolete in html5) for java.management
avstepan
parents: 25859
diff changeset
   130
     * <li> {@code used} is greater than the value of {@code committed};
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     *      or</li>
32034
05676cfd40b5 8133040: docs: replace <tt> tags (obsolete in html5) for java.management
avstepan
parents: 25859
diff changeset
   132
     * <li> {@code committed} is greater than the value of {@code max}
05676cfd40b5 8133040: docs: replace <tt> tags (obsolete in html5) for java.management
avstepan
parents: 25859
diff changeset
   133
     *      {@code max} if defined.</li>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
    public MemoryUsage(long init,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
                       long used,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
                       long committed,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
                       long max) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
        if (init < -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
            throw new IllegalArgumentException( "init parameter = " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
                init + " is negative but not -1.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
        if (max < -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
            throw new IllegalArgumentException( "max parameter = " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
                max + " is negative but not -1.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
        if (used < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
            throw new IllegalArgumentException( "used parameter = " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
                used + " is negative.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
        if (committed < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
            throw new IllegalArgumentException( "committed parameter = " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
                committed + " is negative.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
        if (used > committed) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
            throw new IllegalArgumentException( "used = " + used +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
                " should be <= committed = " + committed);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
        if (max >= 0 && committed > max) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
            throw new IllegalArgumentException( "committed = " + committed +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
                " should be < max = " + max);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
        this.init = init;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
        this.used = used;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
        this.committed = committed;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
        this.max = max;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
    /**
32034
05676cfd40b5 8133040: docs: replace <tt> tags (obsolete in html5) for java.management
avstepan
parents: 25859
diff changeset
   172
     * Constructs a {@code MemoryUsage} object from a
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
     * {@link CompositeData CompositeData}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
    private MemoryUsage(CompositeData cd) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
        // validate the input composite data
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
        MemoryUsageCompositeData.validateCompositeData(cd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
        this.init = MemoryUsageCompositeData.getInit(cd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
        this.used = MemoryUsageCompositeData.getUsed(cd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
        this.committed = MemoryUsageCompositeData.getCommitted(cd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
        this.max = MemoryUsageCompositeData.getMax(cd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
     * Returns the amount of memory in bytes that the Java virtual machine
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
     * initially requests from the operating system for memory management.
32034
05676cfd40b5 8133040: docs: replace <tt> tags (obsolete in html5) for java.management
avstepan
parents: 25859
diff changeset
   188
     * This method returns {@code -1} if the initial memory size is undefined.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
     * @return the initial size of memory in bytes;
32034
05676cfd40b5 8133040: docs: replace <tt> tags (obsolete in html5) for java.management
avstepan
parents: 25859
diff changeset
   191
     * {@code -1} if undefined.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
    public long getInit() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
        return init;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
     * Returns the amount of used memory in bytes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
     * @return the amount of used memory in bytes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
    public long getUsed() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
        return used;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
    };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
     * Returns the amount of memory in bytes that is committed for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
     * the Java virtual machine to use.  This amount of memory is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
     * guaranteed for the Java virtual machine to use.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
     * @return the amount of committed memory in bytes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
    public long getCommitted() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
        return committed;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
    };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
     * Returns the maximum amount of memory in bytes that can be
32034
05676cfd40b5 8133040: docs: replace <tt> tags (obsolete in html5) for java.management
avstepan
parents: 25859
diff changeset
   221
     * used for memory management.  This method returns {@code -1}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
     * if the maximum memory size is undefined.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
     * <p> This amount of memory is not guaranteed to be available
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
     * for memory management if it is greater than the amount of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
     * committed memory.  The Java virtual machine may fail to allocate
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
     * memory even if the amount of used memory does not exceed this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
     * maximum size.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
     * @return the maximum amount of memory in bytes;
32034
05676cfd40b5 8133040: docs: replace <tt> tags (obsolete in html5) for java.management
avstepan
parents: 25859
diff changeset
   231
     * {@code -1} if undefined.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
    public long getMax() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
        return max;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
    };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
     * Returns a descriptive representation of this memory usage.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
    public String toString() {
22581
e868cde95050 8032779: Update code in java.lang to use newer language features
psandoz
parents: 21334
diff changeset
   241
        StringBuilder buf = new StringBuilder();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
        buf.append("init = " + init + "(" + (init >> 10) + "K) ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
        buf.append("used = " + used + "(" + (used >> 10) + "K) ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
        buf.append("committed = " + committed + "(" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
                   (committed >> 10) + "K) " );
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
        buf.append("max = " + max + "(" + (max >> 10) + "K)");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
        return buf.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
    /**
32034
05676cfd40b5 8133040: docs: replace <tt> tags (obsolete in html5) for java.management
avstepan
parents: 25859
diff changeset
   251
     * Returns a {@code MemoryUsage} object represented by the
05676cfd40b5 8133040: docs: replace <tt> tags (obsolete in html5) for java.management
avstepan
parents: 25859
diff changeset
   252
     * given {@code CompositeData}. The given {@code CompositeData}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
     * must contain the following attributes:
21334
c60dfce46a77 8026982: javadoc errors in core libs
rriggs
parents: 18799
diff changeset
   254
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
     * <blockquote>
44858
7183899b064b 8179415: Update java.management and java.management.rmi to be HTML-5 friendly
ksrini
parents: 32034
diff changeset
   256
     * <table border="1">
7183899b064b 8179415: Update java.management and java.management.rmi to be HTML-5 friendly
ksrini
parents: 32034
diff changeset
   257
     * <caption style="display:none">The attributes and the types the given CompositeData contains</caption>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
     * <tr>
44858
7183899b064b 8179415: Update java.management and java.management.rmi to be HTML-5 friendly
ksrini
parents: 32034
diff changeset
   259
     *   <th style="text-align:left">Attribute Name</th>
7183899b064b 8179415: Update java.management and java.management.rmi to be HTML-5 friendly
ksrini
parents: 32034
diff changeset
   260
     *   <th style="text-align:left">Type</th>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
     * </tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
     * <tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
     *   <td>init</td>
32034
05676cfd40b5 8133040: docs: replace <tt> tags (obsolete in html5) for java.management
avstepan
parents: 25859
diff changeset
   264
     *   <td>{@code java.lang.Long}</td>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
     * </tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
     * <tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
     *   <td>used</td>
32034
05676cfd40b5 8133040: docs: replace <tt> tags (obsolete in html5) for java.management
avstepan
parents: 25859
diff changeset
   268
     *   <td>{@code java.lang.Long}</td>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
     * </tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
     * <tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
     *   <td>committed</td>
32034
05676cfd40b5 8133040: docs: replace <tt> tags (obsolete in html5) for java.management
avstepan
parents: 25859
diff changeset
   272
     *   <td>{@code java.lang.Long}</td>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
     * </tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
     * <tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
     *   <td>max</td>
32034
05676cfd40b5 8133040: docs: replace <tt> tags (obsolete in html5) for java.management
avstepan
parents: 25859
diff changeset
   276
     *   <td>{@code java.lang.Long}</td>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
     * </tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
     * </table>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
     * </blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
     *
32034
05676cfd40b5 8133040: docs: replace <tt> tags (obsolete in html5) for java.management
avstepan
parents: 25859
diff changeset
   281
     * @param cd {@code CompositeData} representing a {@code MemoryUsage}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
     *
32034
05676cfd40b5 8133040: docs: replace <tt> tags (obsolete in html5) for java.management
avstepan
parents: 25859
diff changeset
   283
     * @throws IllegalArgumentException if {@code cd} does not
05676cfd40b5 8133040: docs: replace <tt> tags (obsolete in html5) for java.management
avstepan
parents: 25859
diff changeset
   284
     *   represent a {@code MemoryUsage} with the attributes described
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
     *   above.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
     *
32034
05676cfd40b5 8133040: docs: replace <tt> tags (obsolete in html5) for java.management
avstepan
parents: 25859
diff changeset
   287
     * @return a {@code MemoryUsage} object represented by {@code cd}
05676cfd40b5 8133040: docs: replace <tt> tags (obsolete in html5) for java.management
avstepan
parents: 25859
diff changeset
   288
     *         if {@code cd} is not {@code null};
05676cfd40b5 8133040: docs: replace <tt> tags (obsolete in html5) for java.management
avstepan
parents: 25859
diff changeset
   289
     *         {@code null} otherwise.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
    public static MemoryUsage from(CompositeData cd) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
        if (cd == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
        if (cd instanceof MemoryUsageCompositeData) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
            return ((MemoryUsageCompositeData) cd).getMemoryUsage();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
            return new MemoryUsage(cd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
}