| // Copyright (C) 2021 The Android Open Source Project |
| // |
| // Licensed under the Apache License, Version 2.0 (the "License"); |
| // you may not use this file except in compliance with the License. |
| // You may obtain a copy of the License at |
| // |
| // http://www.apache.org/licenses/LICENSE-2.0 |
| // |
| // Unless required by applicable law or agreed to in writing, software |
| // distributed under the License is distributed on an "AS IS" BASIS, |
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| // See the License for the specific language governing permissions and |
| // limitations under the License. |
| |
| package com.google.gerrit.metrics.proc; |
| |
| import com.sun.management.ThreadMXBean; |
| |
| class ThreadMXBeanSun implements ThreadMXBeanInterface { |
| private final ThreadMXBean sys; |
| |
| ThreadMXBeanSun(java.lang.management.ThreadMXBean sys) { |
| this.sys = (ThreadMXBean) sys; |
| if (this.sys.isThreadAllocatedMemorySupported()) { |
| this.sys.setThreadAllocatedMemoryEnabled(true); |
| } |
| } |
| |
| @Override |
| public long getCurrentThreadCpuTime() { |
| return sys.getCurrentThreadCpuTime(); |
| } |
| |
| @Override |
| public long getCurrentThreadUserTime() { |
| return sys.getCurrentThreadUserTime(); |
| } |
| |
| @Override |
| public long getCurrentThreadAllocatedBytes() { |
| return sys.getCurrentThreadAllocatedBytes(); |
| } |
| |
| @Override |
| public boolean supportsAllocatedBytes() { |
| return sys.isThreadAllocatedMemorySupported(); |
| } |
| |
| @Override |
| public long getThreadAllocatedBytes(long threadId) { |
| return sys.getThreadAllocatedBytes(threadId); |
| } |
| |
| @Override |
| public long[] getAllThreadsAllocatedBytes(long[] threadIds) { |
| return sys.getThreadAllocatedBytes(threadIds); |
| } |
| |
| @Override |
| public long[] getAllThreadIds() { |
| return sys.getAllThreadIds(); |
| } |
| } |