mirror of
https://github.com/xmrig/xmrig.git
synced 2025-05-05 04:32:14 +00:00
171 lines
8.3 KiB
C++
171 lines
8.3 KiB
C++
/* XMRig
|
|
* Copyright 2010 Jeff Garzik <jgarzik@pobox.com>
|
|
* Copyright 2012-2014 pooler <pooler@litecoinpool.org>
|
|
* Copyright 2014 Lucas Jones <https://github.com/lucasjones>
|
|
* Copyright 2014-2016 Wolf9466 <https://github.com/OhGodAPet>
|
|
* Copyright 2016 Jay D Dee <jayddee246@gmail.com>
|
|
* Copyright 2017-2018 XMR-Stak <https://github.com/fireice-uk>, <https://github.com/psychocrypt>
|
|
* Copyright 2016-2018 XMRig <https://github.com/xmrig>, <support@xmrig.com>
|
|
*
|
|
*
|
|
* 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 3 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/>.
|
|
*/
|
|
|
|
#ifndef __CONFIGLOADER_PLATFORM_H__
|
|
#define __CONFIGLOADER_PLATFORM_H__
|
|
|
|
|
|
#ifdef _MSC_VER
|
|
# include "getopt/getopt.h"
|
|
#else
|
|
# include <getopt.h>
|
|
#endif
|
|
|
|
|
|
#include "version.h"
|
|
#include "interfaces/IConfig.h"
|
|
|
|
|
|
namespace xmrig {
|
|
|
|
|
|
static char const usage[] = "\
|
|
Usage: " APP_ID " [OPTIONS]\n\
|
|
Options:\n\
|
|
-a, --algo=ALGO cryptonight (default) or cryptonight-lite\n\
|
|
-o, --url=URL URL of mining server\n\
|
|
-O, --userpass=U:P username:password pair for mining server\n\
|
|
-u, --user=USERNAME username for mining server\n\
|
|
-p, --pass=PASSWORD password for mining server\n\
|
|
-t, --threads=N number of miner threads\n\
|
|
-v, --av=N algorithm variation, 0 auto select\n\
|
|
-k, --keepalive send keepalived for prevent timeout (need pool support)\n\
|
|
-r, --retries=N number of times to retry before switch to backup server (default: 5)\n\
|
|
-R, --retry-pause=N time to pause between retries (default: 5)\n\
|
|
--cpu-affinity set process affinity to CPU core(s), mask 0x3 for cores 0 and 1\n\
|
|
--cpu-priority set process priority (0 idle, 2 normal to 5 highest)\n\
|
|
--no-huge-pages disable huge pages support\n\
|
|
--no-color disable colored output\n\
|
|
--variant algorithm PoW variant\n\
|
|
--donate-level=N donate level, default 5%% (5 minutes in 100 minutes)\n\
|
|
--user-agent set custom user-agent string for pool\n\
|
|
-B, --background run the miner in the background\n\
|
|
-c, --config=FILE load a JSON-format configuration file\n\
|
|
-l, --log-file=FILE log all output to a file\n"
|
|
# ifdef HAVE_SYSLOG_H
|
|
"\
|
|
-S, --syslog use system log for output messages\n"
|
|
# endif
|
|
"\
|
|
--max-cpu-usage=N maximum CPU usage for automatic threads mode (default 75)\n\
|
|
--safe safe adjust threads and av settings for current CPU\n\
|
|
--nicehash enable nicehash/xmrig-proxy support\n\
|
|
--print-time=N print hashrate report every N seconds\n\
|
|
--api-port=N port for the miner API\n\
|
|
--api-access-token=T access token for API\n\
|
|
--api-worker-id=ID custom worker-id for API\n\
|
|
-h, --help display this help and exit\n\
|
|
-V, --version output version information and exit\n\
|
|
";
|
|
|
|
|
|
static char const short_options[] = "a:c:khBp:Px:r:R:s:t:T:o:u:O:v:Vl:S";
|
|
|
|
|
|
static struct option const options[] = {
|
|
{ "algo", 1, nullptr, xmrig::IConfig::AlgorithmKey },
|
|
{ "api-access-token", 1, nullptr, xmrig::IConfig::ApiAccessTokenKey },
|
|
{ "api-port", 1, nullptr, xmrig::IConfig::ApiPort },
|
|
{ "api-worker-id", 1, nullptr, xmrig::IConfig::ApiWorkerIdKey },
|
|
{ "api-no-ipv6", 0, nullptr, xmrig::IConfig::ApiIPv6Key },
|
|
{ "api-no-restricted", 0, nullptr, xmrig::IConfig::ApiRestrictedKey },
|
|
{ "av", 1, nullptr, xmrig::IConfig::AVKey },
|
|
{ "background", 0, nullptr, xmrig::IConfig::BackgroundKey },
|
|
{ "config", 1, nullptr, xmrig::IConfig::ConfigKey },
|
|
{ "cpu-affinity", 1, nullptr, xmrig::IConfig::CPUAffinityKey },
|
|
{ "cpu-priority", 1, nullptr, xmrig::IConfig::CPUPriorityKey },
|
|
{ "donate-level", 1, nullptr, xmrig::IConfig::DonateLevelKey },
|
|
{ "dry-run", 0, nullptr, xmrig::IConfig::DryRunKey },
|
|
{ "help", 0, nullptr, xmrig::IConfig::HelpKey },
|
|
{ "keepalive", 0, nullptr, xmrig::IConfig::KeepAliveKey },
|
|
{ "log-file", 1, nullptr, xmrig::IConfig::LogFileKey },
|
|
{ "max-cpu-usage", 1, nullptr, xmrig::IConfig::MaxCPUUsageKey },
|
|
{ "nicehash", 0, nullptr, xmrig::IConfig::NicehashKey },
|
|
{ "no-color", 0, nullptr, xmrig::IConfig::ColorKey },
|
|
{ "no-huge-pages", 0, nullptr, xmrig::IConfig::HugePagesKey },
|
|
{ "variant", 1, nullptr, xmrig::IConfig::VariantKey },
|
|
{ "pass", 1, nullptr, xmrig::IConfig::PasswordKey },
|
|
{ "print-time", 1, nullptr, xmrig::IConfig::PrintTimeKey },
|
|
{ "retries", 1, nullptr, xmrig::IConfig::RetriesKey },
|
|
{ "retry-pause", 1, nullptr, xmrig::IConfig::RetryPauseKey },
|
|
{ "safe", 0, nullptr, xmrig::IConfig::SafeKey },
|
|
{ "syslog", 0, nullptr, xmrig::IConfig::SyslogKey },
|
|
{ "threads", 1, nullptr, xmrig::IConfig::ThreadsKey },
|
|
{ "url", 1, nullptr, xmrig::IConfig::UrlKey },
|
|
{ "user", 1, nullptr, xmrig::IConfig::UserKey },
|
|
{ "user-agent", 1, nullptr, xmrig::IConfig::UserAgentKey },
|
|
{ "userpass", 1, nullptr, xmrig::IConfig::UserpassKey },
|
|
{ "version", 0, nullptr, xmrig::IConfig::VersionKey },
|
|
{ 0, 0, 0, 0 }
|
|
};
|
|
|
|
|
|
static struct option const config_options[] = {
|
|
{ "algo", 1, nullptr, xmrig::IConfig::AlgorithmKey },
|
|
{ "av", 1, nullptr, xmrig::IConfig::AVKey },
|
|
{ "background", 0, nullptr, xmrig::IConfig::BackgroundKey },
|
|
{ "colors", 0, nullptr, xmrig::IConfig::ColorKey },
|
|
{ "cpu-affinity", 1, nullptr, xmrig::IConfig::CPUAffinityKey },
|
|
{ "cpu-priority", 1, nullptr, xmrig::IConfig::CPUPriorityKey },
|
|
{ "donate-level", 1, nullptr, xmrig::IConfig::DonateLevelKey },
|
|
{ "dry-run", 0, nullptr, xmrig::IConfig::DryRunKey },
|
|
{ "huge-pages", 0, nullptr, xmrig::IConfig::HugePagesKey },
|
|
{ "log-file", 1, nullptr, xmrig::IConfig::LogFileKey },
|
|
{ "max-cpu-usage", 1, nullptr, xmrig::IConfig::MaxCPUUsageKey },
|
|
{ "print-time", 1, nullptr, xmrig::IConfig::PrintTimeKey },
|
|
{ "retries", 1, nullptr, xmrig::IConfig::RetriesKey },
|
|
{ "retry-pause", 1, nullptr, xmrig::IConfig::RetryPauseKey },
|
|
{ "safe", 0, nullptr, xmrig::IConfig::SafeKey },
|
|
{ "syslog", 0, nullptr, xmrig::IConfig::SyslogKey },
|
|
{ "threads", 1, nullptr, xmrig::IConfig::ThreadsKey },
|
|
{ "user-agent", 1, nullptr, xmrig::IConfig::UserAgentKey },
|
|
{ 0, 0, 0, 0 }
|
|
};
|
|
|
|
|
|
static struct option const pool_options[] = {
|
|
{ "url", 1, nullptr, xmrig::IConfig::UrlKey },
|
|
{ "pass", 1, nullptr, xmrig::IConfig::PasswordKey },
|
|
{ "user", 1, nullptr, xmrig::IConfig::UserKey },
|
|
{ "userpass", 1, nullptr, xmrig::IConfig::UserpassKey },
|
|
{ "nicehash", 0, nullptr, xmrig::IConfig::NicehashKey },
|
|
{ "keepalive", 2, nullptr, xmrig::IConfig::KeepAliveKey },
|
|
{ "variant", 1, nullptr, xmrig::IConfig::VariantKey },
|
|
{ 0, 0, 0, 0 }
|
|
};
|
|
|
|
|
|
static struct option const api_options[] = {
|
|
{ "port", 1, nullptr, xmrig::IConfig::ApiPort },
|
|
{ "access-token", 1, nullptr, xmrig::IConfig::ApiAccessTokenKey },
|
|
{ "worker-id", 1, nullptr, xmrig::IConfig::ApiWorkerIdKey },
|
|
{ "ipv6", 0, nullptr, xmrig::IConfig::ApiIPv6Key },
|
|
{ "restricted", 0, nullptr, xmrig::IConfig::ApiRestrictedKey },
|
|
{ 0, 0, 0, 0 }
|
|
};
|
|
|
|
|
|
} /* namespace xmrig */
|
|
|
|
#endif /* __CONFIGLOADER_PLATFORM_H__ */
|