FreeBSD: implement Platform_getDiskIO()

This commit is contained in:
Christian Goettsche 2020-10-21 17:06:32 +02:00 committed by cgzones
parent c91061c84b
commit c2fdfd99eb
17 changed files with 87 additions and 59 deletions

View File

@ -44,23 +44,24 @@ static void DiskIOMeter_updateValues(Meter* this, char* buffer, int len) {
if (passedTimeInMs > 500) { if (passedTimeInMs > 500) {
cached_last_update = timeInMilliSeconds; cached_last_update = timeInMilliSeconds;
unsigned long int bytesRead, bytesWrite, msTimeSpend; DiskIOData data;
hasData = Platform_getDiskIO(&bytesRead, &bytesWrite, &msTimeSpend); hasData = Platform_getDiskIO(&data);
if (!hasData) { if (!hasData) {
this->values[0] = 0; this->values[0] = 0;
xSnprintf(buffer, len, "no data"); xSnprintf(buffer, len, "no data");
return; return;
} }
cached_read_diff = (bytesRead - cached_read_total) / 1024; /* Meter_humanUnit() expects unit in kilo */ cached_read_diff = (data.totalBytesRead - cached_read_total) / 1024; /* Meter_humanUnit() expects unit in kilo */
cached_read_total = bytesRead; cached_read_total = data.totalBytesRead;
cached_write_diff = (bytesWrite - cached_write_total) / 1024; /* Meter_humanUnit() expects unit in kilo */ cached_write_diff = (data.totalBytesWritten - cached_write_total) / 1024; /* Meter_humanUnit() expects unit in kilo */
cached_write_total = bytesWrite; cached_write_total = data.totalBytesWritten;
cached_utilisation_diff = 100 * (double)(msTimeSpend - cached_msTimeSpend_total) / passedTimeInMs; cached_utilisation_diff = 100 * (double)(data.totalMsTimeSpend - cached_msTimeSpend_total) / passedTimeInMs;
cached_msTimeSpend_total = msTimeSpend;
cached_msTimeSpend_total = data.totalMsTimeSpend;
} }
this->values[0] = cached_utilisation_diff; this->values[0] = cached_utilisation_diff;

View File

@ -9,6 +9,12 @@ in the source distribution for its full text.
#include "Meter.h" #include "Meter.h"
typedef struct DiskIOData_ {
unsigned long int totalBytesRead;
unsigned long int totalBytesWritten;
unsigned long int totalMsTimeSpend;
} DiskIOData;
extern const MeterClass DiskIOMeter_class; extern const MeterClass DiskIOMeter_class;
#endif /* HEADER_DiskIOMeter */ #endif /* HEADER_DiskIOMeter */

View File

@ -102,6 +102,9 @@ CFLAGS="$save_cflags"
# Add -lexecinfo if needed # Add -lexecinfo if needed
AC_SEARCH_LIBS([backtrace], [execinfo]) AC_SEARCH_LIBS([backtrace], [execinfo])
# Add -ldevstat if needed
AC_SEARCH_LIBS([devstat_checkversion], [devstat])
# Checks for features and flags. # Checks for features and flags.
# ---------------------------------------------------------------------- # ----------------------------------------------------------------------
PROCDIR=/proc PROCDIR=/proc

View File

@ -311,11 +311,9 @@ char* Platform_getProcessEnv(pid_t pid) {
return env; return env;
} }
bool Platform_getDiskIO(unsigned long int *bytesRead, bool Platform_getDiskIO(DiskIOData* data) {
unsigned long int *bytesWrite,
unsigned long int *msTimeSpend) {
// TODO // TODO
*bytesRead = *bytesWrite = *msTimeSpend = 0; (void)data;
return false; return false;
} }

View File

@ -11,6 +11,7 @@ in the source distribution for its full text.
#include "Action.h" #include "Action.h"
#include "SignalsPanel.h" #include "SignalsPanel.h"
#include "CPUMeter.h" #include "CPUMeter.h"
#include "DiskIOMeter.h"
#include "BatteryMeter.h" #include "BatteryMeter.h"
#include "DarwinProcess.h" #include "DarwinProcess.h"
@ -48,9 +49,7 @@ void Platform_setZfsCompressedArcValues(Meter* this);
char* Platform_getProcessEnv(pid_t pid); char* Platform_getProcessEnv(pid_t pid);
bool Platform_getDiskIO(unsigned long int *bytesRead, bool Platform_getDiskIO(DiskIOData* data);
unsigned long int *bytesWrite,
unsigned long int *msTimeSpend);
bool Platform_getNetworkIO(unsigned long int *bytesReceived, bool Platform_getNetworkIO(unsigned long int *bytesReceived,
unsigned long int *packetsReceived, unsigned long int *packetsReceived,

View File

@ -206,11 +206,9 @@ char* Platform_getProcessEnv(pid_t pid) {
return NULL; return NULL;
} }
bool Platform_getDiskIO(unsigned long int *bytesRead, bool Platform_getDiskIO(DiskIOData* data) {
unsigned long int *bytesWrite,
unsigned long int *msTimeSpend) {
// TODO // TODO
*bytesRead = *bytesWrite = *msTimeSpend = 0; (void)data;
return false; return false;
} }

View File

@ -10,6 +10,7 @@ in the source distribution for its full text.
#include "Action.h" #include "Action.h"
#include "BatteryMeter.h" #include "BatteryMeter.h"
#include "DiskIOMeter.h"
#include "SignalsPanel.h" #include "SignalsPanel.h"
extern ProcessFieldData Process_fields[]; extern ProcessFieldData Process_fields[];
@ -40,9 +41,7 @@ void Platform_setSwapValues(Meter* this);
char* Platform_getProcessEnv(pid_t pid); char* Platform_getProcessEnv(pid_t pid);
bool Platform_getDiskIO(unsigned long int *bytesRead, bool Platform_getDiskIO(DiskIOData* data);
unsigned long int *bytesWrite,
unsigned long int *msTimeSpend);
bool Platform_getNetworkIO(unsigned long int *bytesReceived, bool Platform_getNetworkIO(unsigned long int *bytesReceived,
unsigned long int *packetsReceived, unsigned long int *packetsReceived,

View File

@ -7,6 +7,7 @@ in the source distribution for its full text.
#include "Platform.h" #include "Platform.h"
#include <devstat.h>
#include <math.h> #include <math.h>
#include <time.h> #include <time.h>
#include <net/if.h> #include <net/if.h>
@ -21,6 +22,7 @@ in the source distribution for its full text.
#include "ClockMeter.h" #include "ClockMeter.h"
#include "DateMeter.h" #include "DateMeter.h"
#include "DateTimeMeter.h" #include "DateTimeMeter.h"
#include "DiskIOMeter.h"
#include "FreeBSDProcess.h" #include "FreeBSDProcess.h"
#include "FreeBSDProcessList.h" #include "FreeBSDProcessList.h"
#include "HostnameMeter.h" #include "HostnameMeter.h"
@ -111,6 +113,7 @@ const MeterClass* const Platform_meterTypes[] = {
&BlankMeter_class, &BlankMeter_class,
&ZfsArcMeter_class, &ZfsArcMeter_class,
&ZfsCompressedArcMeter_class, &ZfsCompressedArcMeter_class,
&DiskIOMeter_class,
&NetworkIOMeter_class, &NetworkIOMeter_class,
NULL NULL
}; };
@ -240,12 +243,44 @@ char* Platform_getProcessEnv(pid_t pid) {
return env; return env;
} }
bool Platform_getDiskIO(unsigned long int *bytesRead, bool Platform_getDiskIO(DiskIOData* data) {
unsigned long int *bytesWrite,
unsigned long int *msTimeSpend) { if (devstat_checkversion(NULL) < 0)
// TODO return false;
*bytesRead = *bytesWrite = *msTimeSpend = 0;
return false; struct devinfo info = { 0 };
struct statinfo current = { .dinfo = &info };
// get number of devices
if (devstat_getdevs(NULL, &current) < 0)
return false;
int count = current.dinfo->numdevs;
unsigned long int bytesReadSum = 0, bytesWriteSum = 0, timeSpendSum = 0;
// get data
for (int i = 0; i < count; i++) {
uint64_t bytes_read, bytes_write;
long double busy_time;
devstat_compute_statistics(&current.dinfo->devices[i],
NULL,
1.0,
DSM_TOTAL_BYTES_READ, &bytes_read,
DSM_TOTAL_BYTES_WRITE, &bytes_write,
DSM_TOTAL_BUSY_TIME, &busy_time,
DSM_NONE);
bytesReadSum += bytes_read;
bytesWriteSum += bytes_write;
timeSpendSum += 1000 * busy_time;
}
data->totalBytesRead = bytesReadSum;
data->totalBytesWritten = bytesWriteSum;
data->totalMsTimeSpend = timeSpendSum;
return true;
} }
bool Platform_getNetworkIO(unsigned long int *bytesReceived, bool Platform_getNetworkIO(unsigned long int *bytesReceived,

View File

@ -9,6 +9,7 @@ in the source distribution for its full text.
#include "Action.h" #include "Action.h"
#include "BatteryMeter.h" #include "BatteryMeter.h"
#include "DiskIOMeter.h"
#include "SignalsPanel.h" #include "SignalsPanel.h"
extern ProcessFieldData Process_fields[]; extern ProcessFieldData Process_fields[];
@ -43,9 +44,7 @@ void Platform_setZfsCompressedArcValues(Meter* this);
char* Platform_getProcessEnv(pid_t pid); char* Platform_getProcessEnv(pid_t pid);
bool Platform_getDiskIO(unsigned long int *bytesRead, bool Platform_getDiskIO(DiskIOData* data);
unsigned long int *bytesWrite,
unsigned long int *msTimeSpend);
bool Platform_getNetworkIO(unsigned long int *bytesReceived, bool Platform_getNetworkIO(unsigned long int *bytesReceived,
unsigned long int *packetsReceived, unsigned long int *packetsReceived,

View File

@ -313,7 +313,7 @@ void Platform_getPressureStall(const char *file, bool some, double* ten, double*
fclose(fd); fclose(fd);
} }
bool Platform_getDiskIO(unsigned long int *bytesRead, unsigned long int *bytesWrite, unsigned long int *msTimeSpend) { bool Platform_getDiskIO(DiskIOData* data) {
FILE *fd = fopen(PROCDIR "/diskstats", "r"); FILE *fd = fopen(PROCDIR "/diskstats", "r");
if (!fd) if (!fd)
return false; return false;
@ -352,9 +352,9 @@ bool Platform_getDiskIO(unsigned long int *bytesRead, unsigned long int *bytesWr
} }
fclose(fd); fclose(fd);
/* multiply with sector size */ /* multiply with sector size */
*bytesRead = 512 * read_sum; data->totalBytesRead = 512 * read_sum;
*bytesWrite = 512 * write_sum; data->totalBytesWritten = 512 * write_sum;
*msTimeSpend = timeSpend_sum; data->totalMsTimeSpend = timeSpend_sum;
return true; return true;
} }

View File

@ -11,6 +11,7 @@ in the source distribution for its full text.
#include <sys/types.h> #include <sys/types.h>
#include "Action.h" #include "Action.h"
#include "DiskIOMeter.h"
#include "Meter.h" #include "Meter.h"
#include "Process.h" #include "Process.h"
#include "SignalsPanel.h" #include "SignalsPanel.h"
@ -46,9 +47,7 @@ char* Platform_getProcessEnv(pid_t pid);
void Platform_getPressureStall(const char *file, bool some, double* ten, double* sixty, double* threehundred); void Platform_getPressureStall(const char *file, bool some, double* ten, double* sixty, double* threehundred);
bool Platform_getDiskIO(unsigned long int *bytesRead, bool Platform_getDiskIO(DiskIOData* data);
unsigned long int *bytesWrite,
unsigned long int *msTimeSpend);
bool Platform_getNetworkIO(unsigned long int *bytesReceived, bool Platform_getNetworkIO(unsigned long int *bytesReceived,
unsigned long int *packetsReceived, unsigned long int *packetsReceived,

View File

@ -288,11 +288,9 @@ char* Platform_getProcessEnv(pid_t pid) {
return env; return env;
} }
bool Platform_getDiskIO(unsigned long int *bytesRead, bool Platform_getDiskIO(DiskIOData* data) {
unsigned long int *bytesWrite,
unsigned long int *msTimeSpend) {
// TODO // TODO
*bytesRead = *bytesWrite = *msTimeSpend = 0; (void)data;
return false; return false;
} }

View File

@ -10,6 +10,7 @@ in the source distribution for its full text.
#include "Action.h" #include "Action.h"
#include "BatteryMeter.h" #include "BatteryMeter.h"
#include "DiskIOMeter.h"
#include "SignalsPanel.h" #include "SignalsPanel.h"
extern ProcessFieldData Process_fields[]; extern ProcessFieldData Process_fields[];
@ -41,9 +42,7 @@ void Platform_setSwapValues(Meter* this);
char* Platform_getProcessEnv(pid_t pid); char* Platform_getProcessEnv(pid_t pid);
bool Platform_getDiskIO(unsigned long int *bytesRead, bool Platform_getDiskIO(DiskIOData* data);
unsigned long int *bytesWrite,
unsigned long int *msTimeSpend);
bool Platform_getNetworkIO(unsigned long int *bytesReceived, bool Platform_getNetworkIO(unsigned long int *bytesReceived,
unsigned long int *packetsReceived, unsigned long int *packetsReceived,

View File

@ -264,11 +264,9 @@ char* Platform_getProcessEnv(pid_t pid) {
return envBuilder.env; return envBuilder.env;
} }
bool Platform_getDiskIO(unsigned long int *bytesRead, bool Platform_getDiskIO(DiskIOData* data) {
unsigned long int *bytesWrite,
unsigned long int *msTimeSpend) {
// TODO // TODO
*bytesRead = *bytesWrite = *msTimeSpend = 0; (void)data;
return false; return false;
} }

View File

@ -11,6 +11,7 @@ in the source distribution for its full text.
#include "Action.h" #include "Action.h"
#include "BatteryMeter.h" #include "BatteryMeter.h"
#include "DiskIOMeter.h"
#include "SignalsPanel.h" #include "SignalsPanel.h"
#include <signal.h> #include <signal.h>
#include <sys/mkdev.h> #include <sys/mkdev.h>
@ -63,9 +64,7 @@ void Platform_setZfsCompressedArcValues(Meter* this);
char* Platform_getProcessEnv(pid_t pid); char* Platform_getProcessEnv(pid_t pid);
bool Platform_getDiskIO(unsigned long int *bytesRead, bool Platform_getDiskIO(DiskIOData* data);
unsigned long int *bytesWrite,
unsigned long int *msTimeSpend);
bool Platform_getNetworkIO(unsigned long int *bytesReceived, bool Platform_getNetworkIO(unsigned long int *bytesReceived,
unsigned long int *packetsReceived, unsigned long int *packetsReceived,

View File

@ -141,10 +141,8 @@ char* Platform_getProcessEnv(pid_t pid) {
return NULL; return NULL;
} }
bool Platform_getDiskIO(unsigned long int *bytesRead, bool Platform_getDiskIO(DiskIOData* data) {
unsigned long int *bytesWrite, (void)data;
unsigned long int *msTimeSpend) {
*bytesRead = *bytesWrite = *msTimeSpend = 0;
return false; return false;
} }

View File

@ -10,6 +10,7 @@ in the source distribution for its full text.
#include "Action.h" #include "Action.h"
#include "BatteryMeter.h" #include "BatteryMeter.h"
#include "DiskIOMeter.h"
#include "SignalsPanel.h" #include "SignalsPanel.h"
#include "UnsupportedProcess.h" #include "UnsupportedProcess.h"
@ -47,9 +48,7 @@ bool Process_isThread(const Process* this);
char* Platform_getProcessEnv(pid_t pid); char* Platform_getProcessEnv(pid_t pid);
bool Platform_getDiskIO(unsigned long int *bytesRead, bool Platform_getDiskIO(DiskIOData* data);
unsigned long int *bytesWrite,
unsigned long int *msTimeSpend);
bool Platform_getNetworkIO(unsigned long int *bytesReceived, bool Platform_getNetworkIO(unsigned long int *bytesReceived,
unsigned long int *packetsReceived, unsigned long int *packetsReceived,