Simplify win32 shared memory access
- Move opening and closing of a win32 shared memory area into helper functions. shm_open ensures that the data pointer is valid and otherwise gets rid of the opened file handle right away. shm_close cleans up both the handle and the data pointer if needed. - Redo the initial check for presence of a sensor tool that uses a shared memory area for its sensor data by using the above two functions - Port all sensor value reading to use shm_open/shm_close as well This gets rid of some code duplication and also lowers the indentation level in several areas which hopefully makes the code a bit easier to read. Additionally all the win32 API calls are limited to two functions.
This commit is contained in:
parent
4991b98879
commit
ff5cd65678
|
@ -34,40 +34,71 @@
|
||||||
|
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
|
|
||||||
static
|
typedef struct _ShmData
|
||||||
HANDLE gkrellm_sys_sensors_open_shm_helper(const wchar_t *shm_name,
|
{
|
||||||
|
HANDLE handle;
|
||||||
|
void *data;
|
||||||
|
} ShmData;
|
||||||
|
|
||||||
|
static gboolean
|
||||||
|
shm_open(ShmData *shm, const wchar_t *shm_name)
|
||||||
|
{
|
||||||
|
shm->handle = OpenFileMappingW(FILE_MAP_READ, FALSE, shm_name);
|
||||||
|
if (!shm->handle)
|
||||||
|
{
|
||||||
|
shm->data = NULL;
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
shm->data = MapViewOfFile(shm->handle, FILE_MAP_READ, 0, 0, 0);
|
||||||
|
if (!shm->data)
|
||||||
|
{
|
||||||
|
CloseHandle(shm->handle);
|
||||||
|
shm->handle = NULL;
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
shm_close(ShmData *shm)
|
||||||
|
{
|
||||||
|
if (shm->data)
|
||||||
|
UnmapViewOfFile(shm->data);
|
||||||
|
if (shm->handle)
|
||||||
|
CloseHandle(shm->handle);
|
||||||
|
}
|
||||||
|
|
||||||
|
static gboolean
|
||||||
|
shm_open_or_start_app(ShmData *shm, const wchar_t *shm_name,
|
||||||
const gchar *app_name)
|
const gchar *app_name)
|
||||||
{
|
{
|
||||||
HANDLE hData = NULL;
|
/* Try to open shared memory area and return if successful*/
|
||||||
gboolean ret;
|
if (shm_open(shm, shm_name))
|
||||||
|
return TRUE;
|
||||||
|
|
||||||
|
/* shared memory area could not be opened, try to start sensor-app */
|
||||||
GError *err = NULL;
|
GError *err = NULL;
|
||||||
|
if (!g_spawn_command_line_async(app_name, &err))
|
||||||
// Try to open shm-file and return if successful
|
|
||||||
hData = OpenFileMappingW(FILE_MAP_READ, FALSE, shm_name);
|
|
||||||
if (hData != 0)
|
|
||||||
return hData;
|
|
||||||
|
|
||||||
// shm-file could not be opened, try to start sensor-app
|
|
||||||
ret = g_spawn_command_line_async(app_name, &err);
|
|
||||||
if (!ret && err)
|
|
||||||
{
|
{
|
||||||
g_warning("Could not start sensor-app %s: %s\n",
|
g_warning("Could not start sensor-app %s: %s\n",
|
||||||
app_name, err->message);
|
app_name, err->message);
|
||||||
g_error_free(err);
|
g_error_free(err);
|
||||||
|
return FALSE;
|
||||||
}
|
}
|
||||||
else
|
|
||||||
{
|
|
||||||
gkrellm_debug(DEBUG_SYSDEP,
|
gkrellm_debug(DEBUG_SYSDEP,
|
||||||
"Started sensor-app %s, waiting for it to initialize\n",
|
"Started sensor-app %s, waiting for it to initialize\n",
|
||||||
app_name);
|
app_name);
|
||||||
|
|
||||||
// 5 second wait to allow sensor-app init
|
// 5 second wait to allow sensor-app init
|
||||||
g_usleep(5 * G_USEC_PER_SEC);
|
g_usleep(5 * G_USEC_PER_SEC);
|
||||||
// Retry open of shm-file
|
|
||||||
hData = OpenFileMappingW(FILE_MAP_READ, FALSE, shm_name);
|
/* Retry open of shm-file */
|
||||||
}
|
return shm_open(shm, shm_name);
|
||||||
return hData;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// ---------------------------------------------------------------------------
|
// ---------------------------------------------------------------------------
|
||||||
// Interface to work with shared memory for MBM5
|
// Interface to work with shared memory for MBM5
|
||||||
//
|
//
|
||||||
|
@ -169,64 +200,57 @@ static SensorType gkrellm_sensor_type_to_mbm(gint type)
|
||||||
static gboolean
|
static gboolean
|
||||||
gkrellm_sys_sensors_mbm_get_value(gint sensor_id, gint sensor_type, gfloat *value)
|
gkrellm_sys_sensors_mbm_get_value(gint sensor_id, gint sensor_type, gfloat *value)
|
||||||
{
|
{
|
||||||
HANDLE hData;
|
ShmData shm;
|
||||||
MBMSharedData *pData;
|
MBMSharedData *data;
|
||||||
MBMSharedSensor *pSensor;
|
MBMSharedSensor *sensor;
|
||||||
gboolean ret = FALSE;
|
SensorType st;
|
||||||
SensorType st = gkrellm_sensor_type_to_mbm(sensor_type);
|
|
||||||
|
|
||||||
|
st = gkrellm_sensor_type_to_mbm(sensor_type);
|
||||||
if (st == stUnknown || sensor_id < 0 || sensor_id > 99)
|
if (st == stUnknown || sensor_id < 0 || sensor_id > 99)
|
||||||
return FALSE; // id out of range
|
return FALSE; // id out of range
|
||||||
|
|
||||||
hData = OpenFileMappingW(FILE_MAP_READ, FALSE, MBM_SHM_NAME);
|
if (!shm_open(&shm, MBM_SHM_NAME))
|
||||||
if (hData == 0)
|
|
||||||
return FALSE;
|
return FALSE;
|
||||||
pData = (MBMSharedData *)MapViewOfFile(hData, FILE_MAP_READ, 0, 0, 0);
|
data = (MBMSharedData*)(shm.data);
|
||||||
if (pData != NULL)
|
|
||||||
{
|
|
||||||
gkrellm_debug(DEBUG_SYSDEP, "Fetching sensor value %d from MBM\n", sensor_id);
|
gkrellm_debug(DEBUG_SYSDEP, "Fetching sensor value %d from MBM\n", sensor_id);
|
||||||
pSensor = &(pData->sdSensor[sensor_id]);
|
|
||||||
if (pSensor->ssType == st)
|
sensor = &(data->sdSensor[sensor_id]);
|
||||||
|
if (sensor->ssType != st)
|
||||||
{
|
{
|
||||||
*value = pSensor->ssCurrent;
|
shm_close(&shm);
|
||||||
ret = TRUE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
UnmapViewOfFile(pData);
|
|
||||||
}
|
*value = sensor->ssCurrent;
|
||||||
CloseHandle(hData);
|
shm_close(&shm);
|
||||||
return ret;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
static gboolean
|
static gboolean
|
||||||
gkrellm_sys_sensors_mbm_init(void)
|
gkrellm_sys_sensors_mbm_init(void)
|
||||||
{
|
{
|
||||||
HANDLE hData;
|
ShmData shm;
|
||||||
MBMSharedData *pData;
|
MBMSharedData *data;
|
||||||
MBMSharedSensor *pSensor;
|
MBMSharedSensor *sensor;
|
||||||
gboolean ret = FALSE;
|
|
||||||
gint i, sensorCount, tempCount, voltCount, fanCount;
|
gint i, sensorCount, tempCount, voltCount, fanCount;
|
||||||
gchar *id_name;
|
gchar *id_name;
|
||||||
|
|
||||||
hData = gkrellm_sys_sensors_open_shm_helper(MBM_SHM_NAME, MBM_EXE_NAME);
|
if (!shm_open_or_start_app(&shm, MBM_SHM_NAME, MBM_EXE_NAME))
|
||||||
if (hData == 0)
|
|
||||||
return FALSE;
|
return FALSE;
|
||||||
gkrellm_debug(DEBUG_SYSDEP, "Mapping MBM SHM file\n");
|
data = (MBMSharedData*)(shm.data);
|
||||||
pData = (MBMSharedData *)MapViewOfFile(hData, FILE_MAP_READ, 0, 0, 0);
|
|
||||||
if (pData != NULL)
|
|
||||||
{
|
|
||||||
ret = TRUE; // MBM available, return TRUE
|
|
||||||
|
|
||||||
sensorCount = 0;
|
sensorCount = 0;
|
||||||
for (i = 0; i < 9; i++)
|
for (i = 0; i < 9; i++)
|
||||||
sensorCount += pData->sdIndex[i].Count;
|
sensorCount += data->sdIndex[i].Count;
|
||||||
|
|
||||||
tempCount = 0;
|
tempCount = 0;
|
||||||
voltCount = 0;
|
voltCount = 0;
|
||||||
fanCount = 0;
|
fanCount = 0;
|
||||||
for (i = 0; i < sensorCount; i++)
|
for (i = 0; i < sensorCount; i++)
|
||||||
{
|
{
|
||||||
pSensor = &(pData->sdSensor[i]);
|
sensor = &(data->sdSensor[i]);
|
||||||
switch (pSensor->ssType)
|
switch (sensor->ssType)
|
||||||
{
|
{
|
||||||
case stTemperature:
|
case stTemperature:
|
||||||
id_name = g_strdup_printf("mbm-temp-%d", tempCount);
|
id_name = g_strdup_printf("mbm-temp-%d", tempCount);
|
||||||
|
@ -234,7 +258,7 @@ gkrellm_sys_sensors_mbm_init(void)
|
||||||
gkrellm_sensors_add_sensor(SENSOR_TEMPERATURE, /*sensor_path*/NULL,
|
gkrellm_sensors_add_sensor(SENSOR_TEMPERATURE, /*sensor_path*/NULL,
|
||||||
/*id_name*/id_name, /*id*/i, /*iodev*/0,
|
/*id_name*/id_name, /*id*/i, /*iodev*/0,
|
||||||
/*inter*/MBM_INTERFACE, /*factor*/1, /*offset*/0,
|
/*inter*/MBM_INTERFACE, /*factor*/1, /*offset*/0,
|
||||||
/*vref*/NULL, /*default_label*/(gchar *)pSensor->ssName);
|
/*vref*/NULL, /*default_label*/(gchar *)sensor->ssName);
|
||||||
|
|
||||||
g_free(id_name);
|
g_free(id_name);
|
||||||
++tempCount;
|
++tempCount;
|
||||||
|
@ -245,7 +269,7 @@ gkrellm_sys_sensors_mbm_init(void)
|
||||||
gkrellm_sensors_add_sensor(SENSOR_VOLTAGE, /*sensor_path*/NULL,
|
gkrellm_sensors_add_sensor(SENSOR_VOLTAGE, /*sensor_path*/NULL,
|
||||||
/*id_name*/id_name, /*id*/i, /*iodev*/0,
|
/*id_name*/id_name, /*id*/i, /*iodev*/0,
|
||||||
/*inter*/MBM_INTERFACE, /*factor*/1, /*offset*/0,
|
/*inter*/MBM_INTERFACE, /*factor*/1, /*offset*/0,
|
||||||
/*vref*/NULL, /*default_label*/(gchar *)pSensor->ssName);
|
/*vref*/NULL, /*default_label*/(gchar *)sensor->ssName);
|
||||||
|
|
||||||
g_free(id_name);
|
g_free(id_name);
|
||||||
++voltCount;
|
++voltCount;
|
||||||
|
@ -256,18 +280,16 @@ gkrellm_sys_sensors_mbm_init(void)
|
||||||
gkrellm_sensors_add_sensor(SENSOR_FAN, /*sensor_path*/NULL,
|
gkrellm_sensors_add_sensor(SENSOR_FAN, /*sensor_path*/NULL,
|
||||||
/*id_name*/id_name, /*id*/i, /*iodev*/0,
|
/*id_name*/id_name, /*id*/i, /*iodev*/0,
|
||||||
/*inter*/MBM_INTERFACE, /*factor*/1, /*offset*/0,
|
/*inter*/MBM_INTERFACE, /*factor*/1, /*offset*/0,
|
||||||
/*vref*/NULL, /*default_label*/(gchar *)pSensor->ssName);
|
/*vref*/NULL, /*default_label*/(gchar *)sensor->ssName);
|
||||||
|
|
||||||
g_free(id_name);
|
g_free(id_name);
|
||||||
fanCount++;
|
++fanCount;
|
||||||
break;
|
break;
|
||||||
} /* switch() */
|
} /* switch() */
|
||||||
} /* for() */
|
} /* for() */
|
||||||
|
|
||||||
UnmapViewOfFile(pData);
|
shm_close(&shm);
|
||||||
}
|
return TRUE;
|
||||||
CloseHandle(hData);
|
|
||||||
return ret;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -297,74 +319,63 @@ static const gchar* SPEEDFAN_EXE_NAME = "speedfan.exe";
|
||||||
static gboolean
|
static gboolean
|
||||||
gkrellm_sys_sensors_sf_get_value(gint sensor_id, gint sensor_type, gfloat *value)
|
gkrellm_sys_sensors_sf_get_value(gint sensor_id, gint sensor_type, gfloat *value)
|
||||||
{
|
{
|
||||||
HANDLE hData;
|
ShmData shm;
|
||||||
SFSharedMemory *pData;
|
SFSharedMemory *data;
|
||||||
gboolean ret = FALSE;
|
gboolean ret = FALSE;
|
||||||
|
|
||||||
if (sensor_id < 0 || sensor_id > 31)
|
if (sensor_id < 0 || sensor_id > 31)
|
||||||
return FALSE; // id out of range
|
return FALSE; // id out of range
|
||||||
|
|
||||||
hData = OpenFileMappingW(FILE_MAP_READ, FALSE, SPEEDFAN_SHM_NAME);
|
if (!shm_open(&shm, SPEEDFAN_SHM_NAME))
|
||||||
if (hData == 0)
|
|
||||||
return FALSE;
|
return FALSE;
|
||||||
pData = (SFSharedMemory *)MapViewOfFile(hData, FILE_MAP_READ, 0, 0, 0);
|
data = (SFSharedMemory*)(shm.data);
|
||||||
if (pData != NULL)
|
|
||||||
{
|
|
||||||
gkrellm_debug(DEBUG_SYSDEP, "Fetching sensor value %d from SpeedFan\n", sensor_id);
|
gkrellm_debug(DEBUG_SYSDEP, "Fetching sensor value %d from SpeedFan\n", sensor_id);
|
||||||
switch(sensor_type)
|
switch(sensor_type)
|
||||||
{
|
{
|
||||||
case SENSOR_TEMPERATURE:
|
case SENSOR_TEMPERATURE:
|
||||||
if (sensor_id < pData->NumTemps)
|
if (sensor_id < data->NumTemps)
|
||||||
{
|
{
|
||||||
*value = pData->temps[sensor_id] / 100.0;
|
*value = data->temps[sensor_id] / 100.0;
|
||||||
ret = TRUE;
|
ret = TRUE;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case SENSOR_VOLTAGE:
|
case SENSOR_VOLTAGE:
|
||||||
if (sensor_id < pData->NumVolts)
|
if (sensor_id < data->NumVolts)
|
||||||
{
|
{
|
||||||
*value = pData->volts[sensor_id] / 100.0;
|
*value = data->volts[sensor_id] / 100.0;
|
||||||
ret = TRUE;
|
ret = TRUE;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case SENSOR_FAN:
|
case SENSOR_FAN:
|
||||||
if (sensor_id < pData->NumFans)
|
if (sensor_id < data->NumFans)
|
||||||
{
|
{
|
||||||
*value = pData->fans[sensor_id];
|
*value = data->fans[sensor_id];
|
||||||
ret = TRUE;
|
ret = TRUE;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
UnmapViewOfFile(pData);
|
shm_close(&shm);
|
||||||
}
|
|
||||||
CloseHandle(hData);
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static gboolean
|
static gboolean
|
||||||
gkrellm_sys_sensors_sf_init(void)
|
gkrellm_sys_sensors_sf_init(void)
|
||||||
{
|
{
|
||||||
HANDLE hData;
|
ShmData shm;
|
||||||
SFSharedMemory *pData;
|
SFSharedMemory *data;
|
||||||
gboolean ret = FALSE;
|
|
||||||
gint i;
|
gint i;
|
||||||
gchar *id_name;
|
gchar *id_name;
|
||||||
gchar *default_label;
|
gchar *default_label;
|
||||||
|
|
||||||
hData = gkrellm_sys_sensors_open_shm_helper(SPEEDFAN_SHM_NAME, SPEEDFAN_EXE_NAME);
|
if (!shm_open_or_start_app(&shm, SPEEDFAN_SHM_NAME, SPEEDFAN_EXE_NAME))
|
||||||
if (hData == 0)
|
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
data = (SFSharedMemory*)(shm.data);
|
||||||
gkrellm_debug(DEBUG_SYSDEP, "Mapping SpeedFan SHM file\n");
|
|
||||||
pData = (SFSharedMemory *)MapViewOfFile(hData, FILE_MAP_READ, 0, 0, 0);
|
|
||||||
if (pData != NULL)
|
|
||||||
{
|
|
||||||
ret = TRUE; // Mark SpeedFan as available
|
|
||||||
|
|
||||||
gkrellm_debug(DEBUG_SYSDEP, "Enumerating %hu temps, %hu voltages and %hu fans\n",
|
gkrellm_debug(DEBUG_SYSDEP, "Enumerating %hu temps, %hu voltages and %hu fans\n",
|
||||||
pData->NumTemps, pData->NumVolts, pData->NumFans);
|
data->NumTemps, data->NumVolts, data->NumFans);
|
||||||
|
|
||||||
for (i = 0; i < pData->NumTemps; i++)
|
for (i = 0; i < data->NumTemps; i++)
|
||||||
{
|
{
|
||||||
id_name = g_strdup_printf("speedfan-temp-%d", i);
|
id_name = g_strdup_printf("speedfan-temp-%d", i);
|
||||||
default_label = g_strdup_printf("Temp %d", i+1);
|
default_label = g_strdup_printf("Temp %d", i+1);
|
||||||
|
@ -378,7 +389,7 @@ gkrellm_sys_sensors_sf_init(void)
|
||||||
g_free(default_label);
|
g_free(default_label);
|
||||||
}
|
}
|
||||||
|
|
||||||
for (i = 0; i < pData->NumVolts; i++)
|
for (i = 0; i < data->NumVolts; i++)
|
||||||
{
|
{
|
||||||
id_name = g_strdup_printf("speedfan-volt-%d", i);
|
id_name = g_strdup_printf("speedfan-volt-%d", i);
|
||||||
default_label = g_strdup_printf("Voltage %d", i+1);
|
default_label = g_strdup_printf("Voltage %d", i+1);
|
||||||
|
@ -392,7 +403,7 @@ gkrellm_sys_sensors_sf_init(void)
|
||||||
g_free(default_label);
|
g_free(default_label);
|
||||||
}
|
}
|
||||||
|
|
||||||
for (i = 0; i < pData->NumFans; i++)
|
for (i = 0; i < data->NumFans; i++)
|
||||||
{
|
{
|
||||||
id_name = g_strdup_printf("speedfan-fan-%d", i);
|
id_name = g_strdup_printf("speedfan-fan-%d", i);
|
||||||
default_label = g_strdup_printf("Fan %d", i+1);
|
default_label = g_strdup_printf("Fan %d", i+1);
|
||||||
|
@ -406,10 +417,8 @@ gkrellm_sys_sensors_sf_init(void)
|
||||||
g_free(default_label);
|
g_free(default_label);
|
||||||
}
|
}
|
||||||
|
|
||||||
UnmapViewOfFile(pData);
|
shm_close(&shm);
|
||||||
}
|
return TRUE;
|
||||||
CloseHandle(hData);
|
|
||||||
return ret;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -447,69 +456,58 @@ static const gchar* CORE_TEMP_EXE_NAME = "CoreTemp.exe";
|
||||||
static gboolean
|
static gboolean
|
||||||
gkrellm_sys_sensors_ct_get_temp(guint core_index, guint cpu_index, gfloat *temp)
|
gkrellm_sys_sensors_ct_get_temp(guint core_index, guint cpu_index, gfloat *temp)
|
||||||
{
|
{
|
||||||
HANDLE hData;
|
ShmData shm;
|
||||||
CORE_TEMP_SHARED_DATA *pData;
|
CORE_TEMP_SHARED_DATA *data;
|
||||||
gboolean ret = FALSE;
|
|
||||||
guint temp_index;
|
guint temp_index;
|
||||||
|
|
||||||
if (core_index < 0 || core_index > 255 || cpu_index < 0 || cpu_index > 127)
|
if (core_index < 0 || core_index > 255 || cpu_index < 0 || cpu_index > 127)
|
||||||
return FALSE; // core or cpu index out of range
|
return FALSE; // core or cpu index out of range
|
||||||
|
|
||||||
hData = OpenFileMappingW(FILE_MAP_READ, FALSE, CORE_TEMP_SHM_NAME);
|
if (!shm_open(&shm, CORE_TEMP_SHM_NAME))
|
||||||
if (hData == 0)
|
|
||||||
return FALSE;
|
return FALSE;
|
||||||
pData = (CORE_TEMP_SHARED_DATA *)MapViewOfFile(hData, FILE_MAP_READ, 0, 0, 0);
|
data = (CORE_TEMP_SHARED_DATA*)(shm.data);
|
||||||
if (pData != NULL)
|
|
||||||
{
|
|
||||||
gkrellm_debug(DEBUG_SYSDEP,
|
gkrellm_debug(DEBUG_SYSDEP,
|
||||||
"Fetching temp for core %d, cpu %d from CoreTemp\n", core_index,
|
"Fetching temp for core %d, cpu %d from CoreTemp\n", core_index,
|
||||||
cpu_index);
|
cpu_index);
|
||||||
|
|
||||||
// 'core index' + ( 'cpu index' * 'number of cores per cpu' )
|
// 'core index' + ( 'cpu index' * 'number of cores per cpu' )
|
||||||
temp_index = core_index + (cpu_index * pData->uiCoreCnt);
|
temp_index = core_index + (cpu_index * data->uiCoreCnt);
|
||||||
|
|
||||||
// make absolute value from delta
|
// make absolute value from delta
|
||||||
if (pData->ucDeltaToTjMax == '\1')
|
if (data->ucDeltaToTjMax == '\1')
|
||||||
*temp = pData->uiTjMax[cpu_index] - pData->fTemp[temp_index];
|
*temp = data->uiTjMax[cpu_index] - data->fTemp[temp_index];
|
||||||
else
|
else
|
||||||
*temp = pData->fTemp[temp_index];
|
*temp = data->fTemp[temp_index];
|
||||||
|
|
||||||
// Convert Fahrenheit to Celsius
|
// Convert Fahrenheit to Celsius
|
||||||
if (pData->ucFahrenheit == '\1')
|
if (data->ucFahrenheit == '\1')
|
||||||
*temp = (*temp - 32) * 5 / 9;
|
*temp = (*temp - 32) * 5 / 9;
|
||||||
|
|
||||||
UnmapViewOfFile(pData);
|
shm_close(&shm);
|
||||||
}
|
return TRUE;
|
||||||
CloseHandle(hData);
|
|
||||||
return ret;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static gboolean
|
static gboolean
|
||||||
gkrellm_sys_sensors_ct_init(void)
|
gkrellm_sys_sensors_ct_init(void)
|
||||||
{
|
{
|
||||||
HANDLE hData;
|
ShmData shm;
|
||||||
CORE_TEMP_SHARED_DATA *pData;
|
CORE_TEMP_SHARED_DATA *data;
|
||||||
gboolean ret = FALSE;
|
|
||||||
guint uiCpu;
|
guint uiCpu;
|
||||||
guint uiCore;
|
guint uiCore;
|
||||||
gchar *id_name;
|
gchar *id_name;
|
||||||
gchar *default_label;
|
gchar *default_label;
|
||||||
|
|
||||||
hData = gkrellm_sys_sensors_open_shm_helper(CORE_TEMP_SHM_NAME, CORE_TEMP_EXE_NAME);
|
if (!shm_open_or_start_app(&shm, CORE_TEMP_SHM_NAME, CORE_TEMP_EXE_NAME))
|
||||||
if (hData == 0)
|
|
||||||
return FALSE;
|
return FALSE;
|
||||||
gkrellm_debug(DEBUG_SYSDEP, "Mapping CoreTemp SHM file\n");
|
data = (CORE_TEMP_SHARED_DATA*)(shm.data);
|
||||||
pData = (CORE_TEMP_SHARED_DATA *)MapViewOfFile(hData, FILE_MAP_READ, 0, 0, 0);
|
|
||||||
if (pData != NULL)
|
|
||||||
{
|
|
||||||
ret = TRUE; // Mark CoreTemp as available
|
|
||||||
|
|
||||||
for (uiCpu = 0; uiCpu < pData->uiCPUCnt; uiCpu++)
|
for (uiCpu = 0; uiCpu < data->uiCPUCnt; uiCpu++)
|
||||||
{
|
{
|
||||||
for (uiCore = 0; uiCore < pData->uiCoreCnt; uiCore++)
|
for (uiCore = 0; uiCore < data->uiCoreCnt; uiCore++)
|
||||||
{
|
{
|
||||||
id_name = g_strdup_printf("coretemp-cpu%u-core%u", uiCpu, uiCore);
|
id_name = g_strdup_printf("coretemp-cpu%u-core%u", uiCpu, uiCore);
|
||||||
if (pData->uiCPUCnt == 1)
|
if (data->uiCPUCnt == 1)
|
||||||
default_label = g_strdup_printf("CPU Core %u", uiCore+1);
|
default_label = g_strdup_printf("CPU Core %u", uiCore+1);
|
||||||
else
|
else
|
||||||
default_label = g_strdup_printf("CPU %u, Core %u", uiCpu+1, uiCore+1);
|
default_label = g_strdup_printf("CPU %u, Core %u", uiCpu+1, uiCore+1);
|
||||||
|
@ -523,9 +521,8 @@ gkrellm_sys_sensors_ct_init(void)
|
||||||
g_free(default_label);
|
g_free(default_label);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
UnmapViewOfFile(pData);
|
|
||||||
}
|
shm_close(&shm);
|
||||||
CloseHandle(hData);
|
return TRUE;
|
||||||
return ret;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue