View Javadoc
1   /**
2    * Copyright 2014-2014 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.kuali.common.jute.runtime;
17  
18  import static org.kuali.common.jute.base.Precondition.checkMin;
19  
20  import javax.inject.Provider;
21  
22  import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
23  
24  @JsonDeserialize(builder = Memory.Builder.class)
25  public final class Memory {
26  
27      private final long used;
28      private final long free;
29      private final long allocated;
30      private final long max;
31  
32      private Memory(Builder builder) {
33          this.used = builder.used;
34          this.free = builder.free;
35          this.allocated = builder.allocated;
36          this.max = builder.max;
37      }
38  
39      public static Memory build() {
40          // Total amount of memory the JVM is allowed to use
41          long max = Runtime.getRuntime().maxMemory();
42  
43          // Total amount of memory currently allocated
44          long allocated = Runtime.getRuntime().totalMemory();
45  
46          // The JDK method "freeMemory()" reports what is free in the currently allocated heap
47          // The amount of memory currently being used by the JVM is the difference between what has been allocated and what is still free
48          long used = allocated - Runtime.getRuntime().freeMemory();
49  
50          // The true amount of free memory is the difference between max and what is currently being used
51          long free = max - used;
52  
53          return builder().withAllocated(allocated).withFree(free).withMax(max).withUsed(used).build();
54      }
55  
56      public static Builder builder() {
57          return new Builder();
58      }
59  
60      public static class Builder implements org.apache.commons.lang3.builder.Builder<Memory>, Provider<Memory> {
61  
62          // Total amount of memory the JVM is allowed to use
63          private long max;
64  
65          // Total amount of memory currently allocated
66          private long allocated;
67  
68          // The amount of memory currently being used by the JVM
69          private long used;
70  
71          // The total amount of memory still available to the JVM
72          private long free;
73  
74          public Builder withUsed(long used) {
75              this.used = used;
76              return this;
77          }
78  
79          public Builder withFree(long free) {
80              this.free = free;
81              return this;
82          }
83  
84          public Builder withAllocated(long allocated) {
85              this.allocated = allocated;
86              return this;
87          }
88  
89          public Builder withMax(long max) {
90              this.max = max;
91              return this;
92          }
93  
94          @Override
95          public Memory get() {
96              return build();
97          }
98  
99          @Override
100         public Memory build() {
101             return validate(new Memory(this));
102         }
103 
104         private static Memory validate(Memory instance) {
105             checkMin(instance.used, 0, "used");
106             checkMin(instance.free, 0, "free");
107             checkMin(instance.allocated, 0, "allocated");
108             checkMin(instance.max, 0, "max");
109             return instance;
110         }
111 
112     }
113 
114     public long getUsed() {
115         return used;
116     }
117 
118     public long getFree() {
119         return free;
120     }
121 
122     public long getAllocated() {
123         return allocated;
124     }
125 
126     public long getMax() {
127         return max;
128     }
129 
130 }