0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-20 13:08:50 +02:00

Merge pull request #162 from fryshorts/fixes

Implement system information on linux
This commit is contained in:
Jim 2014-07-18 23:54:22 -07:00
commit 45c58f55c1

View File

@ -19,6 +19,8 @@
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <sys/sysinfo.h>
#include <sys/utsname.h>
#include "util/dstr.h"
#include "obs.h"
@ -27,9 +29,9 @@ static inline bool check_path(const char* data, const char *path,
{
dstr_copy(output, path);
dstr_cat(output, data);
blog(LOG_INFO, "Attempting path: %s\n", output->array);
return access(output->array, R_OK) == 0;
}
@ -38,14 +40,14 @@ static inline bool check_lib_path(const char* data, const char *path,
{
bool result = false;
struct dstr tmp;
dstr_init_copy(&tmp, "lib");
dstr_cat(&tmp, data);
dstr_cat(&tmp, ".so");
result = check_path(tmp.array, path, output);
result = check_path(tmp.array, path, output);
dstr_free(&tmp);
return result;
}
@ -54,7 +56,7 @@ static inline bool check_lib_path(const char* data, const char *path,
* /usr/lib/obs-plugins
*/
char *find_plugin(const char *plugin)
{
{
struct dstr output;
dstr_init(&output);
@ -104,7 +106,7 @@ char *find_libobs_data_file(const char *file)
* /usr/share/obs-plugins
*/
char *obs_find_plugin_file(const char *file)
{
{
struct dstr output;
dstr_init(&output);
@ -121,14 +123,118 @@ char *obs_find_plugin_file(const char *file)
return NULL;
}
static void log_processor_info(void)
{
FILE *fp;
int physical_id = -1;
int last_physical_id = -1;
char *line = NULL;
size_t linecap = 0;
struct dstr processor;
blog(LOG_INFO, "Processor: %lu logical cores",
sysconf(_SC_NPROCESSORS_ONLN));
fp = fopen("/proc/cpuinfo", "r");
if (!fp)
return;
dstr_init(&processor);
while (getline(&line, &linecap, fp) != -1) {
if (!strncmp(line, "model name", 10)) {
char *start = strchr(line, ':');
if (!start || *(++start) == '\0')
continue;
dstr_copy(&processor, start);
dstr_resize(&processor, processor.len - 1);
dstr_depad(&processor);
}
if (!strncmp(line, "physical id", 11)) {
char *start = strchr(line, ':');
if (!start || *(++start) == '\0')
continue;
physical_id = atoi(start);
}
if (*line == '\n' && physical_id != last_physical_id) {
last_physical_id = physical_id;
blog(LOG_INFO, "Processor: %s", processor.array);
}
}
fclose(fp);
dstr_free(&processor);
free(line);
}
static void log_memory_info(void)
{
struct sysinfo info;
if (sysinfo(&info) < 0)
return;
blog(LOG_INFO, "Physical Memory: %luMB Total",
info.totalram / 1024 / 1024);
}
static void log_kernel_version(void)
{
struct utsname info;
if (uname(&info) < 0)
return;
blog(LOG_INFO, "Kernel Version: %s %s", info.sysname, info.release);
}
static void log_distribution_info(void)
{
FILE *fp;
char *line = NULL;
size_t linecap = 0;
struct dstr distro;
struct dstr version;
fp = fopen("/etc/os-release", "r");
if (!fp) {
blog(LOG_INFO, "Distribution: Missing /etc/os-release !");
return;
}
dstr_init_copy(&distro, "Unknown");
dstr_init_copy(&version, "Unknown");
while (getline(&line, &linecap, fp) != -1) {
if (!strncmp(line, "NAME", 4)) {
char *start = strchr(line, '=');
if (!start || *(++start) == '\0')
continue;
dstr_copy(&distro, start);
dstr_resize(&distro, distro.len - 1);
}
if (!strncmp(line, "VERSION_ID", 10)) {
char *start = strchr(line, '=');
if (!start || *(++start) == '\0')
continue;
dstr_copy(&version, start);
dstr_resize(&version, version.len - 1);
}
}
blog(LOG_INFO, "Distribution: %s %s", distro.array, version.array);
fclose(fp);
dstr_free(&version);
dstr_free(&distro);
free(line);
}
void log_system_info(void)
{
/* TODO */
#if 0
log_processor_name();
log_processor_speed();
log_processor_cores();
log_available_memory();
log_distribution();
#endif
log_processor_info();
log_memory_info();
log_kernel_version();
log_distribution_info();
}