mirror of
https://github.com/GOSTSec/sgminer
synced 2025-09-14 15:11:56 +00:00
API save default config file if none specified
This commit is contained in:
parent
fd9285eb72
commit
3cb3f09a50
5
api.c
5
api.c
@ -1976,12 +1976,13 @@ static void devdetails(__maybe_unused SOCKETTYPE c, __maybe_unused char *param,
|
|||||||
|
|
||||||
void dosave(__maybe_unused SOCKETTYPE c, char *param, bool isjson)
|
void dosave(__maybe_unused SOCKETTYPE c, char *param, bool isjson)
|
||||||
{
|
{
|
||||||
|
char filename[PATH_MAX];
|
||||||
FILE *fcfg;
|
FILE *fcfg;
|
||||||
char *ptr;
|
char *ptr;
|
||||||
|
|
||||||
if (param == NULL || *param == '\0') {
|
if (param == NULL || *param == '\0') {
|
||||||
strcpy(io_buffer, message(MSG_MISFN, 0, NULL, isjson));
|
default_save_file(filename);
|
||||||
return;
|
param = filename;
|
||||||
}
|
}
|
||||||
|
|
||||||
fcfg = fopen(param, "w");
|
fcfg = fopen(param, "w");
|
||||||
|
31
cgminer.c
31
cgminer.c
@ -3006,6 +3006,23 @@ retry:
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
void default_save_file(char *filename)
|
||||||
|
{
|
||||||
|
#if defined(unix)
|
||||||
|
if (getenv("HOME") && *getenv("HOME")) {
|
||||||
|
strcpy(filename, getenv("HOME"));
|
||||||
|
strcat(filename, "/");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
strcpy(filename, "");
|
||||||
|
strcat(filename, ".cgminer/");
|
||||||
|
mkdir(filename, 0777);
|
||||||
|
#else
|
||||||
|
strcpy(filename, "");
|
||||||
|
#endif
|
||||||
|
strcat(filename, def_conf);
|
||||||
|
}
|
||||||
|
|
||||||
#ifdef HAVE_CURSES
|
#ifdef HAVE_CURSES
|
||||||
static void set_options(void)
|
static void set_options(void)
|
||||||
{
|
{
|
||||||
@ -3066,19 +3083,7 @@ retry:
|
|||||||
FILE *fcfg;
|
FILE *fcfg;
|
||||||
char *str, filename[PATH_MAX], prompt[PATH_MAX + 50];
|
char *str, filename[PATH_MAX], prompt[PATH_MAX + 50];
|
||||||
|
|
||||||
#if defined(unix)
|
default_save_file(filename);
|
||||||
if (getenv("HOME") && *getenv("HOME")) {
|
|
||||||
strcpy(filename, getenv("HOME"));
|
|
||||||
strcat(filename, "/");
|
|
||||||
}
|
|
||||||
else
|
|
||||||
strcpy(filename, "");
|
|
||||||
strcat(filename, ".cgminer/");
|
|
||||||
mkdir(filename, 0777);
|
|
||||||
#else
|
|
||||||
strcpy(filename, "");
|
|
||||||
#endif
|
|
||||||
strcat(filename, def_conf);
|
|
||||||
sprintf(prompt, "Config filename to write (Enter for default) [%s]", filename);
|
sprintf(prompt, "Config filename to write (Enter for default) [%s]", filename);
|
||||||
str = curses_input(prompt);
|
str = curses_input(prompt);
|
||||||
if (strcmp(str, "-1")) {
|
if (strcmp(str, "-1")) {
|
||||||
|
1
miner.h
1
miner.h
@ -742,6 +742,7 @@ extern void kill_work(void);
|
|||||||
extern void switch_pools(struct pool *selected);
|
extern void switch_pools(struct pool *selected);
|
||||||
extern void remove_pool(struct pool *pool);
|
extern void remove_pool(struct pool *pool);
|
||||||
extern void write_config(FILE *fcfg);
|
extern void write_config(FILE *fcfg);
|
||||||
|
extern void default_save_file(char *filename);
|
||||||
extern void log_curses(int prio, const char *f, va_list ap);
|
extern void log_curses(int prio, const char *f, va_list ap);
|
||||||
extern void clear_logwin(void);
|
extern void clear_logwin(void);
|
||||||
extern bool pool_tclear(struct pool *pool, bool *var);
|
extern bool pool_tclear(struct pool *pool, bool *var);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user