mirror of
https://github.com/kanjitalk755/macemu.git
synced 2025-01-08 19:36:07 +00:00
Unix: Added support for old prefs paths, refactored code
Improved the XDG_CONFIG_HOME implementation by adding fallback paths. If a prefs file in the old location exists, this will be loaded ahead of the new one. But if no existing file is found, a new one will be created in the new config directory. Additionally new log messages were added to show where the prefs file was loaded from.
This commit is contained in:
parent
ffb525800b
commit
1b36e7e118
@ -19,9 +19,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "sysdeps.h"
|
#include "sysdeps.h"
|
||||||
|
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
using std::string;
|
using std::string;
|
||||||
|
|
||||||
@ -39,75 +37,144 @@ prefs_desc platform_prefs_items[] = {
|
|||||||
{NULL, TYPE_END, false, NULL} // End of list
|
{NULL, TYPE_END, false, NULL} // End of list
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Standard file names and paths
|
||||||
|
static const char PREFS_FILE_NAME[] = "/.basilisk_ii_prefs";
|
||||||
|
static const char XDG_PREFS_FILE_NAME[] = "/prefs";
|
||||||
|
static const char XPRAM_FILE_NAME[] = "/.basilisk_ii_xpram";
|
||||||
|
static const char XDG_XPRAM_FILE_NAME[] = "/xpram";
|
||||||
|
static const char XDG_CONFIG_SUBDIR[] = "/BasiliskII";
|
||||||
|
|
||||||
// Prefs file name and path
|
// Prefs file name and path
|
||||||
static const char PREFS_FILE_NAME[] = "/prefs";
|
|
||||||
string UserPrefsPath;
|
string UserPrefsPath;
|
||||||
static string prefs_path;
|
static string home_dir;
|
||||||
|
static string xdg_config_dir;
|
||||||
static string prefs_name;
|
static string prefs_name;
|
||||||
extern string xpram_name;
|
extern string xpram_name;
|
||||||
|
|
||||||
/*
|
static string get_xdg_config_dir(void)
|
||||||
* Load preferences from settings file
|
{
|
||||||
*/
|
|
||||||
|
|
||||||
// Comply with XDG Base Directory Specification
|
|
||||||
// https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html
|
|
||||||
static void get_prefs_path_from_env(void){
|
|
||||||
char *env;
|
char *env;
|
||||||
if(env=getenv("XDG_CONFIG_HOME")){
|
if (env = getenv("XDG_CONFIG_HOME"))
|
||||||
prefs_path = string(env);
|
return string(env) + XDG_CONFIG_SUBDIR;
|
||||||
|
if (env = getenv("HOME"))
|
||||||
|
return string(env) + "/.config" + XDG_CONFIG_SUBDIR;
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
|
||||||
|
static string get_home_dir(void)
|
||||||
|
{
|
||||||
|
char *env;
|
||||||
|
if(env = getenv("HOME"))
|
||||||
|
return string(env);
|
||||||
|
return "."; // last resort, use the current directory
|
||||||
|
}
|
||||||
|
|
||||||
|
static string get_dir(string *path)
|
||||||
|
{
|
||||||
|
int pos = path->find_last_of('/');
|
||||||
|
if (pos == 0)
|
||||||
|
return ""; // file is in root folder
|
||||||
|
if (pos == std::string::npos)
|
||||||
|
return "."; // file is in current folder
|
||||||
|
return path->substr(0, pos);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void exit_if_dir(const string& path)
|
||||||
|
{
|
||||||
|
struct stat info;
|
||||||
|
if (stat(path.c_str(), &info) != 0){
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if(env=getenv("HOME")){
|
if ((info.st_mode & S_IFDIR) != 0)
|
||||||
prefs_path = string(env) + "/.config";
|
{
|
||||||
}
|
fprintf(stderr, "ERROR: Cannot open %s (Is a directory)\n", prefs_name.c_str());
|
||||||
}
|
|
||||||
|
|
||||||
void LoadPrefs(const char* vmdir){
|
|
||||||
if(vmdir){
|
|
||||||
prefs_path = string(vmdir);
|
|
||||||
prefs_name = prefs_path + PREFS_FILE_NAME;
|
|
||||||
FILE *prefs = fopen(prefs_name.c_str(), "r");
|
|
||||||
if (!prefs) {
|
|
||||||
printf("No file at %s found.\n", prefs_name.c_str());
|
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool load_prefs_file(const string& path, bool exit_on_failure)
|
||||||
|
{
|
||||||
|
exit_if_dir(path);
|
||||||
|
FILE *prefs = fopen(path.c_str(), "r");
|
||||||
|
if (prefs != NULL)
|
||||||
|
{
|
||||||
LoadPrefsFromStream(prefs);
|
LoadPrefsFromStream(prefs);
|
||||||
fclose(prefs);
|
fclose(prefs);
|
||||||
|
printf("Using prefs file at %s\n", prefs_name.c_str());
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
else if (exit_on_failure)
|
||||||
|
{
|
||||||
|
fprintf(stderr, "ERROR: Could not load prefs file from %s (%s)\n",
|
||||||
|
path.c_str(), strerror(errno));
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Look for prefs file in the following locations (in order of priority):
|
||||||
|
* 1. From vmdir/.basilisk_ii_prefs if a vmdir has been specified
|
||||||
|
* 2. From path specified with --config command line
|
||||||
|
* 3. From $HOME/.basilisk_ii_prefs if it exists
|
||||||
|
* 4. From $XDG_CONFIG_HOME/BasiliskII/prefs if it exists
|
||||||
|
* 5. Create a new prefs file at $XDG_CONFIG_HOME/BasiliskII/prefs
|
||||||
|
* If $XDG_CONFIG_HOME doesn't exist, $HOME/.config is used instead,
|
||||||
|
* in accordance with XDG Base Directory Specification:
|
||||||
|
* https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html
|
||||||
|
*/
|
||||||
|
|
||||||
|
void LoadPrefs(const char* vmdir)
|
||||||
|
{
|
||||||
|
home_dir = get_home_dir();
|
||||||
|
xdg_config_dir = get_xdg_config_dir();
|
||||||
|
|
||||||
|
// vmdir was specified on the command line
|
||||||
|
if (vmdir)
|
||||||
|
{
|
||||||
|
prefs_name = string(vmdir) + XDG_PREFS_FILE_NAME;
|
||||||
|
xpram_name = string(vmdir) + XDG_XPRAM_FILE_NAME;
|
||||||
|
if (load_prefs_file(prefs_name, true))
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Construct prefs path
|
|
||||||
get_prefs_path_from_env();
|
|
||||||
if(!prefs_path.empty()){
|
|
||||||
prefs_path += "/BasiliskII";
|
|
||||||
prefs_name = prefs_path + PREFS_FILE_NAME;
|
|
||||||
}
|
|
||||||
xpram_name = prefs_path + "/xpram";
|
|
||||||
|
|
||||||
// --config was specified
|
// --config was specified
|
||||||
if(!UserPrefsPath.empty()){
|
if (!UserPrefsPath.empty())
|
||||||
|
{
|
||||||
prefs_name = UserPrefsPath;
|
prefs_name = UserPrefsPath;
|
||||||
|
xpram_name = get_dir(&prefs_name) + XPRAM_FILE_NAME;
|
||||||
|
if (load_prefs_file(prefs_name, true))
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Read preferences from settings file
|
// Load .basilisk_ii_prefs from $HOME if it exists
|
||||||
FILE *f = fopen(prefs_name.c_str(), "r");
|
if (!home_dir.empty())
|
||||||
if (f != NULL) {
|
{
|
||||||
|
prefs_name = home_dir + PREFS_FILE_NAME;
|
||||||
|
xpram_name = home_dir + XPRAM_FILE_NAME;
|
||||||
|
if (load_prefs_file(prefs_name, false))
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// Prefs file found, load settings
|
// If no other prefs file exists, try the $XDG_CONFIG_HOME directory
|
||||||
LoadPrefsFromStream(f);
|
if (!xdg_config_dir.empty())
|
||||||
fclose(f);
|
{
|
||||||
|
prefs_name = xdg_config_dir + XDG_PREFS_FILE_NAME;
|
||||||
|
xpram_name = xdg_config_dir + XDG_XPRAM_FILE_NAME;
|
||||||
|
if (load_prefs_file(prefs_name, false))
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
} else {
|
// No prefs file, save defaults in $XDG_CONFIG_HOME directory
|
||||||
#ifdef __linux__
|
#ifdef __linux__
|
||||||
PrefsAddString("cdrom", "/dev/cdrom");
|
PrefsAddString("cdrom", "/dev/cdrom");
|
||||||
#endif
|
#endif
|
||||||
// No prefs file, save defaults
|
printf("No prefs file found, creating new one at %s\n", prefs_name.c_str());
|
||||||
SavePrefs();
|
SavePrefs();
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
static bool is_dir(const std::string& path){
|
static bool is_dir(const string& path)
|
||||||
|
{
|
||||||
struct stat info;
|
struct stat info;
|
||||||
if (stat(path.c_str(), &info) != 0){
|
if (stat(path.c_str(), &info) != 0){
|
||||||
return false;
|
return false;
|
||||||
@ -115,11 +182,13 @@ static bool is_dir(const std::string& path){
|
|||||||
return (info.st_mode & S_IFDIR) != 0;
|
return (info.st_mode & S_IFDIR) != 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool create_directories(const std::string& path,mode_t mode){
|
static bool create_directories(const string& path, mode_t mode)
|
||||||
|
{
|
||||||
if (mkdir(path.c_str(), mode) == 0)
|
if (mkdir(path.c_str(), mode) == 0)
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
switch (errno){
|
switch (errno)
|
||||||
|
{
|
||||||
case ENOENT:
|
case ENOENT:
|
||||||
{
|
{
|
||||||
int pos = path.find_last_of('/');
|
int pos = path.find_last_of('/');
|
||||||
@ -141,15 +210,25 @@ static bool create_directories(const std::string& path,mode_t mode){
|
|||||||
* Save preferences to settings file
|
* Save preferences to settings file
|
||||||
*/
|
*/
|
||||||
|
|
||||||
void SavePrefs(void){
|
|
||||||
|
void SavePrefs(void)
|
||||||
|
{
|
||||||
FILE *f;
|
FILE *f;
|
||||||
if(!prefs_path.empty()&&!is_dir(prefs_path)){
|
string prefs_dir = get_dir(&prefs_name);
|
||||||
create_directories(prefs_path,0700);
|
if (!prefs_dir.empty() && !is_dir(prefs_dir))
|
||||||
|
{
|
||||||
|
create_directories(prefs_dir, 0700);
|
||||||
}
|
}
|
||||||
if ((f = fopen(prefs_name.c_str(), "w")) != NULL) {
|
if ((f = fopen(prefs_name.c_str(), "w")) != NULL)
|
||||||
|
{
|
||||||
SavePrefsToStream(f);
|
SavePrefsToStream(f);
|
||||||
fclose(f);
|
fclose(f);
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
fprintf(stderr, "WARNING: Unable to save %s (%s)\n",
|
||||||
|
prefs_name.c_str(), strerror(errno));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -164,14 +243,20 @@ void AddPlatformPrefsDefaults(void)
|
|||||||
PrefsReplaceInt32("mousewheelmode", 1);
|
PrefsReplaceInt32("mousewheelmode", 1);
|
||||||
PrefsReplaceInt32("mousewheellines", 3);
|
PrefsReplaceInt32("mousewheellines", 3);
|
||||||
#ifdef __linux__
|
#ifdef __linux__
|
||||||
if (access("/dev/sound/dsp", F_OK) == 0) {
|
if (access("/dev/sound/dsp", F_OK) == 0)
|
||||||
|
{
|
||||||
PrefsReplaceString("dsp", "/dev/sound/dsp");
|
PrefsReplaceString("dsp", "/dev/sound/dsp");
|
||||||
} else {
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
PrefsReplaceString("dsp", "/dev/dsp");
|
PrefsReplaceString("dsp", "/dev/dsp");
|
||||||
}
|
}
|
||||||
if (access("/dev/sound/mixer", F_OK) == 0) {
|
if (access("/dev/sound/mixer", F_OK) == 0)
|
||||||
|
{
|
||||||
PrefsReplaceString("mixer", "/dev/sound/mixer");
|
PrefsReplaceString("mixer", "/dev/sound/mixer");
|
||||||
} else {
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
PrefsReplaceString("mixer", "/dev/mixer");
|
PrefsReplaceString("mixer", "/dev/mixer");
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
|
@ -32,41 +32,48 @@ string xpram_name;
|
|||||||
* Load XPRAM from settings file
|
* Load XPRAM from settings file
|
||||||
*/
|
*/
|
||||||
|
|
||||||
void LoadXPRAM(const char* vmdir){
|
void LoadXPRAM(const char* vmdir)
|
||||||
if(vmdir){
|
{
|
||||||
#if POWERPC_ROM
|
|
||||||
xpram_name = string(vmdir) + "/nvram";
|
|
||||||
#else
|
|
||||||
xpram_name = string(vmdir) + "/xpram";
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
assert(!xpram_name.empty());
|
assert(!xpram_name.empty());
|
||||||
int fd;
|
int fd;
|
||||||
if ((fd = open(xpram_name.c_str(), O_RDONLY)) >= 0) {
|
if ((fd = open(xpram_name.c_str(), O_RDONLY)) >= 0)
|
||||||
|
{
|
||||||
read(fd, XPRAM, XPRAM_SIZE);
|
read(fd, XPRAM, XPRAM_SIZE);
|
||||||
close(fd);
|
close(fd);
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
fprintf(stderr, "WARNING: Unable to load %s (%s)\n",
|
||||||
|
xpram_name.c_str(), strerror(errno));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Save XPRAM to settings file
|
* Save XPRAM to settings file
|
||||||
*/
|
*/
|
||||||
|
|
||||||
void SaveXPRAM(void){
|
void SaveXPRAM(void)
|
||||||
|
{
|
||||||
assert(!xpram_name.empty());
|
assert(!xpram_name.empty());
|
||||||
int fd;
|
int fd;
|
||||||
if ((fd = open(xpram_name.c_str(), O_WRONLY | O_CREAT, 0666)) >= 0) {
|
if ((fd = open(xpram_name.c_str(), O_WRONLY | O_CREAT, 0666)) >= 0)
|
||||||
|
{
|
||||||
write(fd, XPRAM, XPRAM_SIZE);
|
write(fd, XPRAM, XPRAM_SIZE);
|
||||||
close(fd);
|
close(fd);
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
fprintf(stderr, "WARNING: Unable to save %s (%s)\n",
|
||||||
|
xpram_name.c_str(), strerror(errno));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Delete PRAM file
|
* Delete PRAM file
|
||||||
*/
|
*/
|
||||||
|
|
||||||
void ZapPRAM(void){
|
void ZapPRAM(void)
|
||||||
|
{
|
||||||
// Delete file
|
// Delete file
|
||||||
assert(!xpram_name.empty());
|
assert(!xpram_name.empty());
|
||||||
unlink(xpram_name.c_str());
|
unlink(xpram_name.c_str());
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* prefs_unix.cpp - Preferences handling, Unix specific things
|
* prefs_unix.cpp - Preferences handling, Unix specific stuff
|
||||||
*
|
*
|
||||||
* SheepShaver (C) 1997-2008 Christian Bauer and Marc Hellwig
|
* SheepShaver (C) 1997-2008 Christian Bauer and Marc Hellwig
|
||||||
*
|
*
|
||||||
@ -19,10 +19,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "sysdeps.h"
|
#include "sysdeps.h"
|
||||||
|
|
||||||
#include <cerrno>
|
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
using std::string;
|
using std::string;
|
||||||
|
|
||||||
@ -45,77 +42,144 @@ prefs_desc platform_prefs_items[] = {
|
|||||||
{NULL, TYPE_END, false, NULL} // End of list
|
{NULL, TYPE_END, false, NULL} // End of list
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Standard file names and paths
|
||||||
|
static const char PREFS_FILE_NAME[] = "/.sheepshaver_prefs";
|
||||||
|
static const char XDG_PREFS_FILE_NAME[] = "/prefs";
|
||||||
|
static const char XPRAM_FILE_NAME[] = "/.sheepshaver_nvram";
|
||||||
|
static const char XDG_XPRAM_FILE_NAME[] = "/nvram";
|
||||||
|
static const char XDG_CONFIG_SUBDIR[] = "/SheepShaver";
|
||||||
|
|
||||||
// Prefs file name and path
|
// Prefs file name and path
|
||||||
static const char PREFS_FILE_NAME[] = "/prefs";
|
string UserPrefsPath;
|
||||||
static string prefs_path;
|
static string home_dir;
|
||||||
|
static string xdg_config_dir;
|
||||||
static string prefs_name;
|
static string prefs_name;
|
||||||
extern string xpram_name;
|
extern string xpram_name;
|
||||||
|
|
||||||
std::string UserPrefsPath;
|
static string get_xdg_config_dir(void)
|
||||||
|
{
|
||||||
/*
|
|
||||||
* Load preferences from settings file
|
|
||||||
*/
|
|
||||||
|
|
||||||
// Comply with XDG Base Directory Specification
|
|
||||||
// https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html
|
|
||||||
static void get_prefs_path_from_env(void){
|
|
||||||
char *env;
|
char *env;
|
||||||
if(env=getenv("XDG_CONFIG_HOME")){
|
if (env = getenv("XDG_CONFIG_HOME"))
|
||||||
prefs_path = string(env);
|
return string(env) + XDG_CONFIG_SUBDIR;
|
||||||
|
if (env = getenv("HOME"))
|
||||||
|
return string(env) + "/.config" + XDG_CONFIG_SUBDIR;
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
|
||||||
|
static string get_home_dir(void)
|
||||||
|
{
|
||||||
|
char *env;
|
||||||
|
if(env = getenv("HOME"))
|
||||||
|
return string(env);
|
||||||
|
return "."; // last resort, use the current directory
|
||||||
|
}
|
||||||
|
|
||||||
|
static string get_dir(string *path)
|
||||||
|
{
|
||||||
|
int pos = path->find_last_of('/');
|
||||||
|
if (pos == 0)
|
||||||
|
return ""; // file is in root folder
|
||||||
|
if (pos == std::string::npos)
|
||||||
|
return "."; // file is in current folder
|
||||||
|
return path->substr(0, pos);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void exit_if_dir(const string& path)
|
||||||
|
{
|
||||||
|
struct stat info;
|
||||||
|
if (stat(path.c_str(), &info) != 0){
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if(env=getenv("HOME")){
|
if ((info.st_mode & S_IFDIR) != 0)
|
||||||
prefs_path = string(env) + "/.config";
|
{
|
||||||
}
|
fprintf(stderr, "ERROR: Cannot open %s (Is a directory)\n", prefs_name.c_str());
|
||||||
}
|
|
||||||
|
|
||||||
void LoadPrefs(const char* vmdir){
|
|
||||||
if(vmdir){
|
|
||||||
prefs_path = string(vmdir);
|
|
||||||
prefs_name = prefs_path + PREFS_FILE_NAME;
|
|
||||||
FILE *prefs = fopen(prefs_name.c_str(), "r");
|
|
||||||
if (!prefs) {
|
|
||||||
printf("No file at %s found.\n", prefs_name.c_str());
|
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool load_prefs_file(const string& path, bool exit_on_failure)
|
||||||
|
{
|
||||||
|
exit_if_dir(path);
|
||||||
|
FILE *prefs = fopen(path.c_str(), "r");
|
||||||
|
if (prefs != NULL)
|
||||||
|
{
|
||||||
LoadPrefsFromStream(prefs);
|
LoadPrefsFromStream(prefs);
|
||||||
fclose(prefs);
|
fclose(prefs);
|
||||||
|
printf("Using prefs file at %s\n", prefs_name.c_str());
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
else if (exit_on_failure)
|
||||||
|
{
|
||||||
|
fprintf(stderr, "ERROR: Could not load prefs file from %s (%s)\n",
|
||||||
|
path.c_str(), strerror(errno));
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Look for prefs file in the following locations (in order of priority):
|
||||||
|
* 1. From vmdir/.sheepshaver_prefs if a vmdir has been specified
|
||||||
|
* 2. From path specified with --config command line
|
||||||
|
* 3. From $HOME/.sheepshaver_prefs if it exists
|
||||||
|
* 4. From $XDG_CONFIG_HOME/SheepShaver/prefs if it exists
|
||||||
|
* 5. Create a new prefs file at $XDG_CONFIG_HOME/SheepShaver/prefs
|
||||||
|
* If $XDG_CONFIG_HOME doesn't exist, $HOME/.config is used instead,
|
||||||
|
* in accordance with XDG Base Directory Specification:
|
||||||
|
* https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html
|
||||||
|
*/
|
||||||
|
|
||||||
|
void LoadPrefs(const char* vmdir)
|
||||||
|
{
|
||||||
|
home_dir = get_home_dir();
|
||||||
|
xdg_config_dir = get_xdg_config_dir();
|
||||||
|
|
||||||
|
// vmdir was specified on the command line
|
||||||
|
if (vmdir)
|
||||||
|
{
|
||||||
|
prefs_name = string(vmdir) + XDG_PREFS_FILE_NAME;
|
||||||
|
xpram_name = string(vmdir) + XDG_XPRAM_FILE_NAME;
|
||||||
|
if (load_prefs_file(prefs_name, true))
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Construct prefs path
|
|
||||||
get_prefs_path_from_env();
|
|
||||||
if(!prefs_path.empty()){
|
|
||||||
prefs_path += "/SheepShaver";
|
|
||||||
prefs_name = prefs_path + PREFS_FILE_NAME;
|
|
||||||
}
|
|
||||||
xpram_name = prefs_path + "/nvram";
|
|
||||||
|
|
||||||
// --config was specified
|
// --config was specified
|
||||||
if(!UserPrefsPath.empty()){
|
if (!UserPrefsPath.empty())
|
||||||
|
{
|
||||||
prefs_name = UserPrefsPath;
|
prefs_name = UserPrefsPath;
|
||||||
|
xpram_name = get_dir(&prefs_name) + XPRAM_FILE_NAME;
|
||||||
|
if (load_prefs_file(prefs_name, true))
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Read preferences from settings file
|
// Load .basilisk_ii_prefs from $HOME if it exists
|
||||||
FILE *f = fopen(prefs_name.c_str(), "r");
|
if (!home_dir.empty())
|
||||||
if (f != NULL) {
|
{
|
||||||
|
prefs_name = home_dir + PREFS_FILE_NAME;
|
||||||
|
xpram_name = home_dir + XPRAM_FILE_NAME;
|
||||||
|
if (load_prefs_file(prefs_name, false))
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// Prefs file found, load settings
|
// If no other prefs file exists, try the $XDG_CONFIG_HOME directory
|
||||||
LoadPrefsFromStream(f);
|
if (!xdg_config_dir.empty())
|
||||||
fclose(f);
|
{
|
||||||
|
prefs_name = xdg_config_dir + XDG_PREFS_FILE_NAME;
|
||||||
|
xpram_name = xdg_config_dir + XDG_XPRAM_FILE_NAME;
|
||||||
|
if (load_prefs_file(prefs_name, false))
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
} else {
|
// No prefs file, save defaults in $XDG_CONFIG_HOME directory
|
||||||
#ifdef __linux__
|
#ifdef __linux__
|
||||||
PrefsAddString("cdrom", "/dev/cdrom");
|
PrefsAddString("cdrom", "/dev/cdrom");
|
||||||
#endif
|
#endif
|
||||||
// No prefs file, save defaults
|
printf("No prefs file found, creating new one at %s\n", prefs_name.c_str());
|
||||||
SavePrefs();
|
SavePrefs();
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
static bool is_dir(const std::string& path){
|
static bool is_dir(const string& path)
|
||||||
|
{
|
||||||
struct stat info;
|
struct stat info;
|
||||||
if (stat(path.c_str(), &info) != 0){
|
if (stat(path.c_str(), &info) != 0){
|
||||||
return false;
|
return false;
|
||||||
@ -123,11 +187,13 @@ static bool is_dir(const std::string& path){
|
|||||||
return (info.st_mode & S_IFDIR) != 0;
|
return (info.st_mode & S_IFDIR) != 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool create_directories(const std::string& path,mode_t mode){
|
static bool create_directories(const string& path, mode_t mode)
|
||||||
|
{
|
||||||
if (mkdir(path.c_str(), mode) == 0)
|
if (mkdir(path.c_str(), mode) == 0)
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
switch (errno){
|
switch (errno)
|
||||||
|
{
|
||||||
case ENOENT:
|
case ENOENT:
|
||||||
{
|
{
|
||||||
int pos = path.find_last_of('/');
|
int pos = path.find_last_of('/');
|
||||||
@ -149,15 +215,24 @@ static bool create_directories(const std::string& path,mode_t mode){
|
|||||||
* Save preferences to settings file
|
* Save preferences to settings file
|
||||||
*/
|
*/
|
||||||
|
|
||||||
void SavePrefs(void){
|
void SavePrefs(void)
|
||||||
|
{
|
||||||
FILE *f;
|
FILE *f;
|
||||||
if(!prefs_path.empty()&&!is_dir(prefs_path)){
|
string prefs_dir = get_dir(&prefs_name);
|
||||||
create_directories(prefs_path,0700);
|
if (!prefs_dir.empty() && !is_dir(prefs_dir))
|
||||||
|
{
|
||||||
|
create_directories(prefs_dir, 0700);
|
||||||
}
|
}
|
||||||
if ((f = fopen(prefs_name.c_str(), "w")) != NULL) {
|
if ((f = fopen(prefs_name.c_str(), "w")) != NULL)
|
||||||
|
{
|
||||||
SavePrefsToStream(f);
|
SavePrefsToStream(f);
|
||||||
fclose(f);
|
fclose(f);
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
fprintf(stderr, "WARNING: Unable to save %s (%s)\n",
|
||||||
|
prefs_name.c_str(), strerror(errno));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -172,14 +247,20 @@ void AddPlatformPrefsDefaults(void)
|
|||||||
PrefsReplaceInt32("mousewheelmode", 1);
|
PrefsReplaceInt32("mousewheelmode", 1);
|
||||||
PrefsReplaceInt32("mousewheellines", 3);
|
PrefsReplaceInt32("mousewheellines", 3);
|
||||||
#ifdef __linux__
|
#ifdef __linux__
|
||||||
if (access("/dev/sound/dsp", F_OK) == 0) {
|
if (access("/dev/sound/dsp", F_OK) == 0)
|
||||||
|
{
|
||||||
PrefsReplaceString("dsp", "/dev/sound/dsp");
|
PrefsReplaceString("dsp", "/dev/sound/dsp");
|
||||||
} else {
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
PrefsReplaceString("dsp", "/dev/dsp");
|
PrefsReplaceString("dsp", "/dev/dsp");
|
||||||
}
|
}
|
||||||
if (access("/dev/sound/mixer", F_OK) == 0) {
|
if (access("/dev/sound/mixer", F_OK) == 0)
|
||||||
|
{
|
||||||
PrefsReplaceString("mixer", "/dev/sound/mixer");
|
PrefsReplaceString("mixer", "/dev/sound/mixer");
|
||||||
} else {
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
PrefsReplaceString("mixer", "/dev/mixer");
|
PrefsReplaceString("mixer", "/dev/mixer");
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
|
Loading…
Reference in New Issue
Block a user