1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
41 long max = Runtime.getRuntime().maxMemory();
42
43
44 long allocated = Runtime.getRuntime().totalMemory();
45
46
47
48 long used = allocated - Runtime.getRuntime().freeMemory();
49
50
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
63 private long max;
64
65
66 private long allocated;
67
68
69 private long used;
70
71
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 }