VirtualBox

source: vbox/trunk/src/VBox/Main/darwin/PerformanceDarwin.cpp@ 30690

Last change on this file since 30690 was 28800, checked in by vboxsync, 14 years ago

Automated rebranding to Oracle copyright/license strings via filemuncher

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.7 KB
Line 
1/* $Id: PerformanceDarwin.cpp 28800 2010-04-27 08:22:32Z vboxsync $ */
2/** @file
3 * VBox Darwin-specific Performance Classes implementation.
4 */
5
6/*
7 * Copyright (C) 2008 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18#include <mach/mach_error.h>
19#include <mach/mach_host.h>
20#include <mach/mach_init.h>
21#include <mach/mach_time.h>
22#include <mach/vm_statistics.h>
23#include <sys/sysctl.h>
24#include <sys/errno.h>
25#include <iprt/err.h>
26#include <iprt/log.h>
27#include <iprt/param.h>
28#include "Performance.h"
29
30/* The following declarations are missing in 10.4.x SDK */
31/* @todo Replace them with libproc.h and sys/proc_info.h when 10.4 is no longer supported */
32extern "C" int proc_pidinfo(int pid, int flavor, uint64_t arg, void *buffer, int buffersize);
33struct proc_taskinfo {
34 uint64_t pti_virtual_size; /* virtual memory size (bytes) */
35 uint64_t pti_resident_size; /* resident memory size (bytes) */
36 uint64_t pti_total_user; /* total time */
37 uint64_t pti_total_system;
38 uint64_t pti_threads_user; /* existing threads only */
39 uint64_t pti_threads_system;
40 int32_t pti_policy; /* default policy for new threads */
41 int32_t pti_faults; /* number of page faults */
42 int32_t pti_pageins; /* number of actual pageins */
43 int32_t pti_cow_faults; /* number of copy-on-write faults */
44 int32_t pti_messages_sent; /* number of messages sent */
45 int32_t pti_messages_received; /* number of messages received */
46 int32_t pti_syscalls_mach; /* number of mach system calls */
47 int32_t pti_syscalls_unix; /* number of unix system calls */
48 int32_t pti_csw; /* number of context switches */
49 int32_t pti_threadnum; /* number of threads in the task */
50 int32_t pti_numrunning; /* number of running threads */
51 int32_t pti_priority; /* task priority*/
52};
53#define PROC_PIDTASKINFO 4
54
55namespace pm {
56
57class CollectorDarwin : public CollectorHAL
58{
59public:
60 CollectorDarwin();
61 virtual int getRawHostCpuLoad(uint64_t *user, uint64_t *kernel, uint64_t *idle);
62 virtual int getHostMemoryUsage(ULONG *total, ULONG *used, ULONG *available);
63 virtual int getRawProcessCpuLoad(RTPROCESS process, uint64_t *user, uint64_t *kernel, uint64_t *total);
64 virtual int getProcessMemoryUsage(RTPROCESS process, ULONG *used);
65private:
66 ULONG totalRAM;
67};
68
69CollectorHAL *createHAL()
70{
71 return new CollectorDarwin();
72}
73
74CollectorDarwin::CollectorDarwin()
75{
76 uint64_t hostMemory;
77 int mib[2];
78 size_t size;
79
80 mib[0] = CTL_HW;
81 mib[1] = HW_MEMSIZE;
82
83 size = sizeof(hostMemory);
84 if (sysctl(mib, 2, &hostMemory, &size, NULL, 0) == -1) {
85 Log(("sysctl() -> %s", strerror(errno)));
86 hostMemory = 0;
87 }
88 totalRAM = (ULONG)(hostMemory / 1024);
89}
90
91int CollectorDarwin::getRawHostCpuLoad(uint64_t *user, uint64_t *kernel, uint64_t *idle)
92{
93 kern_return_t krc;
94 mach_msg_type_number_t count;
95 host_cpu_load_info_data_t info;
96
97 count = HOST_CPU_LOAD_INFO_COUNT;
98
99 krc = host_statistics(mach_host_self(), HOST_CPU_LOAD_INFO, (host_info_t)&info, &count);
100 if (krc != KERN_SUCCESS)
101 {
102 Log(("host_statistics() -> %s", mach_error_string(krc)));
103 return RTErrConvertFromDarwinKern(krc);
104 }
105
106 *user = (uint64_t)info.cpu_ticks[CPU_STATE_USER]
107 + info.cpu_ticks[CPU_STATE_NICE];
108 *kernel = (uint64_t)info.cpu_ticks[CPU_STATE_SYSTEM];
109 *idle = (uint64_t)info.cpu_ticks[CPU_STATE_IDLE];
110 return VINF_SUCCESS;
111}
112
113int CollectorDarwin::getHostMemoryUsage(ULONG *total, ULONG *used, ULONG *available)
114{
115 kern_return_t krc;
116 mach_msg_type_number_t count;
117 vm_statistics_data_t info;
118
119 count = HOST_VM_INFO_COUNT;
120
121 krc = host_statistics(mach_host_self(), HOST_VM_INFO, (host_info_t)&info, &count);
122 if (krc != KERN_SUCCESS)
123 {
124 Log(("host_statistics() -> %s", mach_error_string(krc)));
125 return RTErrConvertFromDarwinKern(krc);
126 }
127
128 *total = totalRAM;
129 *available = info.free_count * (PAGE_SIZE / 1024);
130 *used = *total - *available;
131 return VINF_SUCCESS;
132}
133
134static int getProcessInfo(RTPROCESS process, struct proc_taskinfo *tinfo)
135{
136 LogAleksey(("getProcessInfo() getting info for %d", process));
137 int nb = proc_pidinfo(process, PROC_PIDTASKINFO, 0, tinfo, sizeof(*tinfo));
138 if (nb <= 0)
139 {
140 int rc = errno;
141 Log(("proc_pidinfo() -> %s", strerror(rc)));
142 return RTErrConvertFromDarwin(rc);
143 }
144 else if ((unsigned int)nb < sizeof(*tinfo))
145 {
146 Log(("proc_pidinfo() -> too few bytes %d", nb));
147 return VERR_INTERNAL_ERROR;
148 }
149 return VINF_SUCCESS;
150}
151
152int CollectorDarwin::getRawProcessCpuLoad(RTPROCESS process, uint64_t *user, uint64_t *kernel, uint64_t *total)
153{
154 struct proc_taskinfo tinfo;
155
156 int rc = getProcessInfo(process, &tinfo);
157 if (RT_SUCCESS(rc))
158 {
159 *user = tinfo.pti_total_user;
160 *kernel = tinfo.pti_total_system;
161 *total = mach_absolute_time();
162 }
163 return rc;
164}
165
166int CollectorDarwin::getProcessMemoryUsage(RTPROCESS process, ULONG *used)
167{
168 struct proc_taskinfo tinfo;
169
170 int rc = getProcessInfo(process, &tinfo);
171 if (RT_SUCCESS(rc))
172 {
173 *used = tinfo.pti_resident_size / 1024;
174 }
175 return rc;
176}
177
178}
179
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette