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