![JAR search and dependency download from the Maven repository](/logo.png)
bindings.java.src.jni.vmware.vmcontrol_wrapper.c Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sigar Show documentation
Show all versions of sigar Show documentation
System Information Gatherer and Reporter
The newest version!
/*
* Copyright (c) 2006 Hyperic, Inc.
*
* 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.
*/
#include "vmcontrol_wrapper.h"
#ifdef VMCONTROL_WRAPPER_SUPPORTED
#ifdef WIN32
#include
#else
#include
#include
#include
#include
#endif
#include
#ifdef WIN32
#define DL_LOAD(lib) LoadLibrary(lib)
#define DL_CLOSE(h) FreeLibrary(h)
#define DL_SYM GetProcAddress
#define DL_ERR GetLastError()
#define DL_ENOENT ERROR_FILE_NOT_FOUND
#else
#define DL_LOAD(lib) dlopen(lib, RTLD_LAZY)
#define DL_CLOSE(h) dlclose(h)
#define DL_SYM dlsym
#define DL_ERR errno
#define DL_ENOENT ENOENT
#endif
typedef struct {
const char *name;
unsigned long offset;
const char *alias;
} vmcontrol_entry_t;
#define OffsetOf(structure, field) \
(unsigned long)(&((structure *)NULL)->field)
#define VMCONTROL_ENTRY(name) \
{ #name, OffsetOf(vmcontrol_wrapper_api_t, x##name), NULL }
#define VMCONTROL_ENTRY_ALIAS(name, alias) \
{ #name, OffsetOf(vmcontrol_wrapper_api_t, x##name), alias }
static vmcontrol_entry_t vmcontrol_entries[] = {
VMCONTROL_ENTRY(VMControl_ConnectParamsDestroy),
VMCONTROL_ENTRY(VMControl_ConnectParamsNew),
VMCONTROL_ENTRY(VMControl_Init),
VMCONTROL_ENTRY(VMControl_MKSSaveScreenshot),
VMCONTROL_ENTRY(VMControl_ServerConnectEx),
VMCONTROL_ENTRY(VMControl_ServerDestroy),
VMCONTROL_ENTRY(VMControl_ServerDisconnect),
VMCONTROL_ENTRY(VMControl_ServerEnumerate),
VMCONTROL_ENTRY(VMControl_ServerExec),
VMCONTROL_ENTRY(VMControl_ServerGetLastError),
VMCONTROL_ENTRY(VMControl_ServerGetResource),
VMCONTROL_ENTRY(VMControl_ServerIsConnected),
VMCONTROL_ENTRY(VMControl_ServerIsRegistered),
VMCONTROL_ENTRY(VMControl_ServerNewEx),
VMCONTROL_ENTRY(VMControl_VMConnectEx),
VMCONTROL_ENTRY(VMControl_VMCreateSnapshot),
VMCONTROL_ENTRY(VMControl_VMDestroy),
VMCONTROL_ENTRY(VMControl_VMDeviceConnect),
VMCONTROL_ENTRY(VMControl_VMDeviceDisconnect),
VMCONTROL_ENTRY(VMControl_VMDeviceIsConnected),
VMCONTROL_ENTRY(VMControl_VMDisconnect),
VMCONTROL_ENTRY(VMControl_VMGetCapabilities),
VMCONTROL_ENTRY(VMControl_VMGetConfig),
VMCONTROL_ENTRY(VMControl_VMGetConfigFileName),
VMCONTROL_ENTRY(VMControl_VMGetExecutionState),
VMCONTROL_ENTRY(VMControl_VMGetGuestInfo),
VMCONTROL_ENTRY(VMControl_VMGetHeartbeat),
VMCONTROL_ENTRY(VMControl_VMGetId),
VMCONTROL_ENTRY(VMControl_VMGetLastError),
VMCONTROL_ENTRY(VMControl_VMGetPid),
VMCONTROL_ENTRY(VMControl_VMGetProductInfo),
VMCONTROL_ENTRY(VMControl_VMGetRemoteConnections),
VMCONTROL_ENTRY(VMControl_VMGetResource),
VMCONTROL_ENTRY(VMControl_VMGetRunAsUser),
VMCONTROL_ENTRY(VMControl_VMGetUptime),
VMCONTROL_ENTRY(VMControl_VMHasSnapshot),
VMCONTROL_ENTRY(VMControl_VMInit),
VMCONTROL_ENTRY(VMControl_VMIsConnected),
VMCONTROL_ENTRY(VMControl_VMNewEx),
VMCONTROL_ENTRY_ALIAS(VMControl_VMRemoveAllSnapshots,
"VMControl_VMDeleteSnapshot"),
VMCONTROL_ENTRY_ALIAS(VMControl_VMRevertToSnapshot,
"VMControl_VMRevertSnapshot"),
VMCONTROL_ENTRY(VMControl_VMSetConfig),
VMCONTROL_ENTRY(VMControl_VMSetGuestInfo),
VMCONTROL_ENTRY(VMControl_VMStart),
VMCONTROL_ENTRY(VMControl_VMStopOrReset),
VMCONTROL_ENTRY(VMControl_VMSuspendToDisk),
VMCONTROL_ENTRY(VMControl_VMToolsLastActive),
{ NULL, 0, NULL }
};
static vmcontrol_wrapper_api_t *vmcontrol_api = NULL;
vmcontrol_wrapper_api_t *vmcontrol_wrapper_api_get(void)
{
return vmcontrol_api;
}
typedef void (*any_function_t)(void);
static int unsupported_function(void *obj, ...)
{
return 0;
}
int vmcontrol_wrapper_api_init(const char *lib)
{
int i;
char *api;
int dl_debug = getenv("VMCONTROL_DEBUG") != NULL;
if (vmcontrol_api) {
return 0;
}
if (!lib) { /* sanity check */
if (dl_debug) {
fprintf(stderr, "[vmcontrol_init] lib==NULL\n");
}
return DL_ENOENT;
}
vmcontrol_api = malloc(sizeof(*vmcontrol_api));
api = (char *)vmcontrol_api;
memset(vmcontrol_api, 0, sizeof(*vmcontrol_api));
if (!(vmcontrol_api->handle = DL_LOAD(lib))) {
return DL_ERR;
}
for (i=0; vmcontrol_entries[i].name; i++) {
any_function_t *ptr =
(any_function_t *)(api + (int)(long)vmcontrol_entries[i].offset);
*ptr =
(any_function_t)DL_SYM(vmcontrol_api->handle,
vmcontrol_entries[i].name);
if ((*ptr == NULL) && vmcontrol_entries[i].alias) {
*ptr =
(any_function_t)DL_SYM(vmcontrol_api->handle,
vmcontrol_entries[i].alias);
if (dl_debug) {
fprintf(stderr, "[vmcontrol_init] alias %s -> %s\n",
vmcontrol_entries[i].name,
vmcontrol_entries[i].alias);
}
}
if (!*ptr) {
if (dl_debug) {
fprintf(stderr, "[vmcontrol_init] %s -> UNDEFINED\n",
vmcontrol_entries[i].name);
}
*ptr = (any_function_t)unsupported_function;
}
}
if ((void *)vmcontrol_api->xVMControl_VMInit == (void *)&unsupported_function) {
if (dl_debug) {
fprintf(stderr, "[vmcontrol_init] %s unuseable\n", lib);
}
vmcontrol_wrapper_api_shutdown();
return DL_ENOENT;
}
return 0;
}
int vmcontrol_wrapper_api_shutdown(void)
{
if (vmcontrol_api) {
if (vmcontrol_api->handle) {
DL_CLOSE(vmcontrol_api->handle);
}
free(vmcontrol_api);
vmcontrol_api = NULL;
}
return 0;
}
#endif /* WIN32 || linux */
© 2015 - 2025 Weber Informatics LLC | Privacy Policy