/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
#include <fcntl.h>
#include <kstat.h>
#include <procfs.h>
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <pthread.h>
#include <utmpx.h>
#include <dlfcn.h>
#include <jni.h>
#include "jvm.h"
#include "com_sun_management_UnixOperatingSystem.h"
typedef struct {
double last_ratio;
} cpuload_t;
static unsigned int num_cpus;
static void map_cpu_kstat_counters() {
int i;
// Get number of CPU(s)
num_cpus = 1;
}
// Data structure for saving CPU load
return;
}
// Get kstat cpu_stat counters for every CPU
// (loop over kstat to find our cpu_stat(s)
i = 0;
// Failed to initialize kstat for this CPU so ignore it
continue;
}
if (i == num_cpus) {
// Found more cpu_stats than reported CPUs
break;
}
}
}
}
static int init_cpu_kstat_counters() {
static int initialized = 0;
// Concurrence in this method is prevented by the lock in
// the calling method get_cpu_load();
if(!initialized) {
initialized = 1;
}
}
return initialized ? 0 : -1;
}
static void update_cpu_kstat_counters() {
if(kstat_chain_update(kstat_ctrl) != 0) {
}
}
// no handle.
return -1;
}
// disabling for now, a kstat chain update is likely to happen next time
return -1;
}
return 0;
}
double get_single_cpu_load(unsigned int n) {
int i;
if (n >= num_cpus) {
return -1.0;
}
return -1.0;
}
for (c_total = 0, i = 0; i < CPU_STATES; i++) {
}
// Calculate diff against previous snapshot
/** update if weve moved */
if (d_total > 0) {
// Save current values for next time around
}
return load->last_ratio;
}
int fd;
int ret = 0;
return -1;
}
ret = -1;
}
return ret;
}
#define MIN(a, b) ((a < b) ? a : b)
/**
* Return the cpu load (0-1) for proc number 'which' (or average all if which == -1)
*/
double load =.0;
if(init_cpu_kstat_counters()==0) {
if (which == -1) {
unsigned int i;
double t;
for (t = .0, i = 0; i < num_cpus; i++) {
t += get_single_cpu_load(i);
}
// Cap total systemload to 1.0
} else {
}
} else {
load = -1.0;
}
return load;
}
/**
* Return the cpu load (0-1) for the current process (i.e the JVM)
* or -1.0 if the get_info() call failed
*/
double get_process_load(void) {
// Get the percentage of "recent cpu usage" from all the lwp:s in the JVM:s
// process. This is returned as a value between 0.0 and 1.0 multiplied by 0x8000.
if (get_info("/proc/self/psinfo",&info.pr_pctcpu, sizeof(info.pr_pctcpu), offsetof(psinfo_t, pr_pctcpu)) == 0) {
}
return -1.0;
}
{
return get_cpu_load(-1);
}
{
return get_process_load();
}