| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280 |
- /******************************************************************************
- Copyright (C) 2013 by Hugh Bailey <[email protected]>
- Copyright (C) 2014 by Zachary Lund <[email protected]>
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation, either version 2 of the License, or
- (at your option) any later version.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
- ******************************************************************************/
- #include <stdlib.h>
- #include <stdio.h>
- #include <unistd.h>
- #if defined(__FreeBSD__)
- #include <sys/sysctl.h>
- #endif
- #include <sys/sysinfo.h>
- #include <sys/utsname.h>
- #include <inttypes.h>
- #include "util/dstr.h"
- #include "obs-internal.h"
- const char *get_module_extension(void)
- {
- return ".so";
- }
- #ifdef __LP64__
- #define BIT_STRING "64bit"
- #else
- #define BIT_STRING "32bit"
- #endif
- static const char *module_bin[] = {
- "../../obs-plugins/" BIT_STRING,
- OBS_INSTALL_PREFIX "/" OBS_PLUGIN_DESTINATION
- };
- static const char *module_data[] = {
- OBS_DATA_PATH "/obs-plugins/%module%",
- OBS_INSTALL_DATA_PATH "/obs-plugins/%module%",
- };
- static const int module_patterns_size =
- sizeof(module_bin)/sizeof(module_bin[0]);
- void add_default_module_paths(void)
- {
- for (int i = 0; i < module_patterns_size; i++)
- obs_add_module_path(module_bin[i], module_data[i]);
- }
- /*
- * /usr/local/share/libobs
- * /usr/share/libobs
- */
- char *find_libobs_data_file(const char *file)
- {
- struct dstr output;
- dstr_init(&output);
- if (check_path(file, OBS_DATA_PATH "/libobs/", &output))
- return output.array;
- if (OBS_INSTALL_PREFIX [0] != 0) {
- if (check_path(file, OBS_INSTALL_DATA_PATH "/libobs/",
- &output))
- return output.array;
- }
- dstr_free(&output);
- return NULL;
- }
- static void log_processor_cores(void)
- {
- blog(LOG_INFO, "Processor: %lu logical cores",
- sysconf(_SC_NPROCESSORS_ONLN));
- }
- #if defined(__linux__)
- 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;
- 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);
- }
- #elif defined(__FreeBSD__)
- static void log_processor_info(void)
- {
- int mib[2];
- size_t len;
- char *proc;
- mib[0] = CTL_HW;
- mib[1] = HW_MODEL;
- sysctl(mib, 2, NULL, &len, NULL, 0);
- proc = bmalloc(len);
- if (!proc)
- return;
- sysctl(mib, 2, proc, &len, NULL, 0);
- blog(LOG_INFO, "Processor: %s", proc);
- bfree(proc);
- }
- #endif
- static void log_memory_info(void)
- {
- struct sysinfo info;
- if (sysinfo(&info) < 0)
- return;
- blog(LOG_INFO, "Physical Memory: %"PRIu64"MB Total",
- (uint64_t)info.totalram * info.mem_unit / 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);
- }
- #if defined(__linux__)
- 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);
- }
- #endif
- void log_system_info(void)
- {
- log_processor_cores();
- #if defined(__linux__) || defined(__FreeBSD__)
- log_processor_info();
- #endif
- log_memory_info();
- log_kernel_version();
- #if defined(__linux__)
- log_distribution_info();
- #endif
- }
- struct obs_hotkeys_platform {
- };
- bool obs_hotkeys_platform_init(struct obs_core_hotkeys *hotkeys)
- {
- UNUSED_PARAMETER(hotkeys);
- return true;
- }
- void obs_hotkeys_platform_free(struct obs_core_hotkeys *hotkeys)
- {
- UNUSED_PARAMETER(hotkeys);
- }
- bool obs_hotkeys_platform_is_pressed(obs_hotkeys_platform_t *context,
- obs_key_t key)
- {
- UNUSED_PARAMETER(context);
- UNUSED_PARAMETER(key);
- return false;
- }
- void obs_key_to_str(obs_key_t key, struct dstr *str)
- {
- UNUSED_PARAMETER(key);
- UNUSED_PARAMETER(str);
- }
- void obs_key_combination_to_str(obs_key_combination_t key, struct dstr *str)
- {
- UNUSED_PARAMETER(key);
- UNUSED_PARAMETER(str);
- }
- obs_key_t obs_key_from_virtual_key(int code)
- {
- UNUSED_PARAMETER(code);
- return OBS_KEY_NONE;
- }
- int obs_key_to_virtual_key(obs_key_t key)
- {
- UNUSED_PARAMETER(key);
- return 0;
- }
|