mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-08-14 09:25:37 -04:00
add config option to specify wallet rpc bind port
This commit is contained in:
parent
4000fdc1e5
commit
7d21bdf9f3
7 changed files with 65 additions and 36 deletions
|
@ -44,6 +44,7 @@ import java.util.List;
|
|||
|
||||
import static bisq.common.config.Config.PROVIDERS;
|
||||
import static bisq.common.config.Config.WALLET_DIR;
|
||||
import static bisq.common.config.Config.WALLET_RPC_BIND_PORT;
|
||||
import static com.google.inject.name.Names.named;
|
||||
|
||||
public class BitcoinModule extends AppModule {
|
||||
|
@ -71,6 +72,7 @@ public class BitcoinModule extends AppModule {
|
|||
}
|
||||
|
||||
bind(File.class).annotatedWith(named(WALLET_DIR)).toInstance(config.walletDir);
|
||||
bind(int.class).annotatedWith(named(WALLET_RPC_BIND_PORT)).toInstance(config.walletRpcBindPort);
|
||||
|
||||
bindConstant().annotatedWith(named(Config.BTC_NODES)).to(config.btcNodes);
|
||||
bindConstant().annotatedWith(named(Config.USER_AGENT)).to(config.userAgent);
|
||||
|
|
|
@ -9,7 +9,7 @@ import java.util.HashMap;
|
|||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
|
||||
import monero.common.MoneroError;
|
||||
import monero.wallet.MoneroWalletRpc;
|
||||
|
@ -17,11 +17,13 @@ import monero.wallet.MoneroWalletRpc;
|
|||
/**
|
||||
* Manages monero-wallet-rpc processes bound to ports.
|
||||
*/
|
||||
@Slf4j
|
||||
public class MoneroWalletRpcManager {
|
||||
|
||||
private static int NUM_ALLOWED_ATTEMPTS = 1; // allow this many attempts to bind to an assigned port
|
||||
private static final String RPC_BIND_PORT_ARGUMENT = "--rpc-bind-port";
|
||||
private static int NUM_ALLOWED_ATTEMPTS = 2; // allow this many attempts to bind to an assigned port
|
||||
private Integer startPort;
|
||||
private Map<Integer, MoneroWalletRpc> registeredPorts = new HashMap<Integer, MoneroWalletRpc>();
|
||||
private final Map<Integer, MoneroWalletRpc> registeredPorts = new HashMap<>();
|
||||
|
||||
/**
|
||||
* Manage monero-wallet-rpc instances by auto-assigning ports.
|
||||
|
@ -48,8 +50,9 @@ public class MoneroWalletRpcManager {
|
|||
try {
|
||||
|
||||
// register given port
|
||||
if (cmd.indexOf("--rpc-bind-port") >= 0) {
|
||||
int port = Integer.valueOf(cmd.indexOf("--rpc-bind-port") + 1);
|
||||
if (cmd.contains(RPC_BIND_PORT_ARGUMENT)) {
|
||||
int portArgumentPosition = cmd.indexOf(RPC_BIND_PORT_ARGUMENT) + 1;
|
||||
int port = Integer.parseInt(cmd.get(portArgumentPosition));
|
||||
MoneroWalletRpc walletRpc = new MoneroWalletRpc(cmd); // starts monero-wallet-rpc process
|
||||
registeredPorts.put(port, walletRpc);
|
||||
return walletRpc;
|
||||
|
@ -59,19 +62,19 @@ public class MoneroWalletRpcManager {
|
|||
else {
|
||||
int numAttempts = 0;
|
||||
while (numAttempts < NUM_ALLOWED_ATTEMPTS) {
|
||||
int port = -1;
|
||||
try {
|
||||
numAttempts++;
|
||||
int port = registerPort();
|
||||
List<String> cmdCopy = new ArrayList<String>(cmd); // preserve original cmd
|
||||
cmdCopy.add("--rpc-bind-port");
|
||||
port = registerPort();
|
||||
List<String> cmdCopy = new ArrayList<>(cmd); // preserve original cmd
|
||||
cmdCopy.add(RPC_BIND_PORT_ARGUMENT);
|
||||
cmdCopy.add("" + port);
|
||||
System.out.println(cmdCopy);
|
||||
MoneroWalletRpc walletRpc = new MoneroWalletRpc(cmdCopy); // start monero-wallet-rpc process
|
||||
registeredPorts.put(port, walletRpc);
|
||||
return walletRpc;
|
||||
} catch (Exception e) {
|
||||
if (numAttempts >= NUM_ALLOWED_ATTEMPTS) {
|
||||
System.err.println("Unable to start monero-wallet-rpc instance after " + NUM_ALLOWED_ATTEMPTS + " attempts");
|
||||
log.error("Unable to start monero-wallet-rpc instance after {} attempts", NUM_ALLOWED_ATTEMPTS);
|
||||
throw e;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -71,7 +71,9 @@ import java.io.FileInputStream;
|
|||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
import java.util.concurrent.TimeUnit;
|
||||
|
||||
import org.slf4j.Logger;
|
||||
|
@ -144,6 +146,7 @@ public class WalletConfig extends AbstractIdleService {
|
|||
protected volatile Wallet vBtcWallet;
|
||||
protected volatile PeerGroup vPeerGroup;
|
||||
|
||||
protected final int rpcBindPort;
|
||||
protected final File directory;
|
||||
protected volatile File vXmrWalletFile;
|
||||
protected volatile File vBtcWalletFile;
|
||||
|
@ -172,17 +175,21 @@ public class WalletConfig extends AbstractIdleService {
|
|||
/**
|
||||
* Creates a new WalletConfig, with a newly created {@link Context}. Files will be stored in the given directory.
|
||||
*/
|
||||
public WalletConfig(NetworkParameters params, File directory, String filePrefix) {
|
||||
this(new Context(params), directory, filePrefix);
|
||||
public WalletConfig(NetworkParameters params,
|
||||
File directory,
|
||||
int rpcBindPort,
|
||||
String filePrefix) {
|
||||
this(new Context(params), directory, rpcBindPort, filePrefix);
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates a new WalletConfig, with the given {@link Context}. Files will be stored in the given directory.
|
||||
*/
|
||||
private WalletConfig(Context context, File directory, String filePrefix) {
|
||||
private WalletConfig(Context context, File directory, int rpcBindPort, String filePrefix) {
|
||||
this.context = context;
|
||||
this.params = checkNotNull(context.getParams());
|
||||
this.directory = checkDir(directory);
|
||||
this.rpcBindPort = rpcBindPort;
|
||||
this.filePrefix = checkNotNull(filePrefix);
|
||||
}
|
||||
|
||||
|
@ -285,10 +292,10 @@ public class WalletConfig extends AbstractIdleService {
|
|||
// Meant to be overridden by subclasses
|
||||
}
|
||||
|
||||
public MoneroWalletRpc createWallet(MoneroWalletConfig config) {
|
||||
public MoneroWalletRpc createWallet(MoneroWalletConfig config, Integer port) {
|
||||
|
||||
// start monero-wallet-rpc instance
|
||||
MoneroWalletRpc walletRpc = startWalletRpcInstance();
|
||||
MoneroWalletRpc walletRpc = startWalletRpcInstance(port);
|
||||
|
||||
// create wallet
|
||||
try {
|
||||
|
@ -302,10 +309,10 @@ public class WalletConfig extends AbstractIdleService {
|
|||
}
|
||||
}
|
||||
|
||||
public MoneroWalletRpc openWallet(MoneroWalletConfig config) {
|
||||
public MoneroWalletRpc openWallet(MoneroWalletConfig config, Integer port) {
|
||||
|
||||
// start monero-wallet-rpc instance
|
||||
MoneroWalletRpc walletRpc = startWalletRpcInstance();
|
||||
MoneroWalletRpc walletRpc = startWalletRpcInstance(port);
|
||||
|
||||
// open wallet
|
||||
try {
|
||||
|
@ -319,13 +326,13 @@ public class WalletConfig extends AbstractIdleService {
|
|||
}
|
||||
}
|
||||
|
||||
private MoneroWalletRpc startWalletRpcInstance() {
|
||||
private MoneroWalletRpc startWalletRpcInstance(Integer port) {
|
||||
|
||||
// check if monero-wallet-rpc exists
|
||||
if (!new File(MONERO_WALLET_RPC_PATH).exists()) throw new Error("monero-wallet-rpc executable doesn't exist at path " + MONERO_WALLET_RPC_PATH + "; copy monero-wallet-rpc to the project root or set WalletConfig.java MONERO_WALLET_RPC_PATH for your system");
|
||||
|
||||
// start monero-wallet-rpc instance and return connected client
|
||||
return WalletConfig.MONERO_WALLET_RPC_MANAGER.startInstance(Arrays.asList(
|
||||
List<String> cmd = new ArrayList<>(Arrays.asList( // modifiable list
|
||||
MONERO_WALLET_RPC_PATH,
|
||||
"--" + MONERO_NETWORK_TYPE.toString().toLowerCase(),
|
||||
"--daemon-address", MONERO_DAEMON_URI,
|
||||
|
@ -333,6 +340,11 @@ public class WalletConfig extends AbstractIdleService {
|
|||
"--rpc-login", MONERO_WALLET_RPC_USERNAME + ":" + MONERO_WALLET_RPC_PASSWORD,
|
||||
"--wallet-dir", directory.toString()
|
||||
));
|
||||
if (port != null && port > 0) {
|
||||
cmd.add("--rpc-bind-port");
|
||||
cmd.add(Integer.toString(port));
|
||||
}
|
||||
return WalletConfig.MONERO_WALLET_RPC_MANAGER.startInstance(cmd);
|
||||
}
|
||||
|
||||
public void closeWallet(MoneroWallet walletRpc) {
|
||||
|
@ -346,7 +358,7 @@ public class WalletConfig extends AbstractIdleService {
|
|||
try {
|
||||
File chainFile = new File(directory, filePrefix + ".spvchain");
|
||||
boolean chainFileExists = chainFile.exists();
|
||||
|
||||
|
||||
// XMR daemon
|
||||
vXmrDaemon = new MoneroDaemonRpc(MONERO_DAEMON_URI, MONERO_DAEMON_USERNAME, MONERO_DAEMON_PASSWORD);
|
||||
|
||||
|
@ -354,9 +366,9 @@ public class WalletConfig extends AbstractIdleService {
|
|||
String xmrPrefix = "_XMR";
|
||||
vXmrWalletFile = new File(directory, filePrefix + xmrPrefix);
|
||||
if (MoneroUtils.walletExists(vXmrWalletFile.getPath())) {
|
||||
vXmrWallet = openWallet(new MoneroWalletConfig().setPath(filePrefix + xmrPrefix).setPassword("abctesting123"));
|
||||
vXmrWallet = openWallet(new MoneroWalletConfig().setPath(filePrefix + xmrPrefix).setPassword("abctesting123"), rpcBindPort);
|
||||
} else {
|
||||
vXmrWallet = createWallet(new MoneroWalletConfig().setPath(filePrefix + xmrPrefix).setPassword("abctesting123"));
|
||||
vXmrWallet = createWallet(new MoneroWalletConfig().setPath(filePrefix + xmrPrefix).setPassword("abctesting123"), rpcBindPort);
|
||||
}
|
||||
System.out.println("Monero wallet path: " + vXmrWallet.getPath());
|
||||
System.out.println("Monero wallet address: " + vXmrWallet.getPrimaryAddress());
|
||||
|
@ -610,12 +622,11 @@ public class WalletConfig extends AbstractIdleService {
|
|||
return vBtcWallet;
|
||||
}
|
||||
|
||||
|
||||
public MoneroDaemon getXmrDaemon() {
|
||||
checkState(state() == State.STARTING || state() == State.RUNNING, "Cannot call until startup is complete");
|
||||
return vXmrDaemon;
|
||||
}
|
||||
|
||||
|
||||
public MoneroWallet getXmrWallet() {
|
||||
checkState(state() == State.STARTING || state() == State.RUNNING, "Cannot call until startup is complete");
|
||||
return vXmrWallet;
|
||||
|
|
|
@ -50,9 +50,6 @@ import org.bitcoinj.core.PeerAddress;
|
|||
import org.bitcoinj.core.PeerGroup;
|
||||
import org.bitcoinj.core.RejectMessage;
|
||||
import org.bitcoinj.core.listeners.DownloadProgressTracker;
|
||||
import org.bitcoinj.params.MainNetParams;
|
||||
import org.bitcoinj.params.RegTestParams;
|
||||
import org.bitcoinj.params.TestNet3Params;
|
||||
import org.bitcoinj.utils.Threading;
|
||||
import org.bitcoinj.wallet.DeterministicSeed;
|
||||
import org.bitcoinj.wallet.Wallet;
|
||||
|
@ -135,6 +132,7 @@ public class WalletsSetup {
|
|||
private final String userAgent;
|
||||
private final NetworkParameters params;
|
||||
private final File walletDir;
|
||||
private final int walletRpcBindPort;
|
||||
private final int socks5DiscoverMode;
|
||||
private final IntegerProperty numPeers = new SimpleIntegerProperty(0);
|
||||
private final IntegerProperty chainHeight = new SimpleIntegerProperty(0);
|
||||
|
@ -161,6 +159,7 @@ public class WalletsSetup {
|
|||
BtcNodes btcNodes,
|
||||
@Named(Config.USER_AGENT) String userAgent,
|
||||
@Named(Config.WALLET_DIR) File walletDir,
|
||||
@Named(Config.WALLET_RPC_BIND_PORT) int walletRpcBindPort,
|
||||
@Named(Config.USE_ALL_PROVIDED_NODES) boolean useAllProvidedNodes,
|
||||
@Named(Config.NUM_CONNECTIONS_FOR_BTC) int numConnectionsForBtc,
|
||||
@Named(Config.SOCKS5_DISCOVER_MODE) String socks5DiscoverModeString) {
|
||||
|
@ -177,6 +176,7 @@ public class WalletsSetup {
|
|||
this.userAgent = userAgent;
|
||||
this.socks5DiscoverMode = evaluateMode(socks5DiscoverModeString);
|
||||
this.walletDir = walletDir;
|
||||
this.walletRpcBindPort = walletRpcBindPort;
|
||||
|
||||
xmrWalletFileName = "haveno_" + config.baseCurrencyNetwork.getCurrencyCode();
|
||||
params = Config.baseCurrencyNetworkParameters();
|
||||
|
@ -207,9 +207,7 @@ public class WalletsSetup {
|
|||
final Socks5Proxy socks5Proxy = preferences.getUseTorForBitcoinJ() ? socks5ProxyProvider.getSocks5Proxy() : null;
|
||||
log.info("Socks5Proxy for bitcoinj: socks5Proxy=" + socks5Proxy);
|
||||
|
||||
walletConfig = new WalletConfig(params,
|
||||
walletDir,
|
||||
"haveno") {
|
||||
walletConfig = new WalletConfig(params, walletDir, walletRpcBindPort, "haveno") {
|
||||
@Override
|
||||
protected void onSetupCompleted() {
|
||||
//We are here in the btcj thread Thread[ STARTING,5,main]
|
||||
|
|
|
@ -92,7 +92,8 @@ public class XmrWalletService {
|
|||
MoneroWallet multisigWallet = null;
|
||||
multisigWallet = walletsSetup.getWalletConfig().createWallet(new MoneroWalletConfig()
|
||||
.setPath(path)
|
||||
.setPassword("abctesting123"));
|
||||
.setPassword("abctesting123"),
|
||||
null); // auto-assign port
|
||||
multisigWallets.put(tradeId, multisigWallet);
|
||||
multisigWallet.startSyncing(5000l);
|
||||
return multisigWallet;
|
||||
|
@ -104,7 +105,8 @@ public class XmrWalletService {
|
|||
MoneroWallet multisigWallet = null;
|
||||
multisigWallet = walletsSetup.getWalletConfig().openWallet(new MoneroWalletConfig()
|
||||
.setPath(path)
|
||||
.setPassword("abctesting123"));
|
||||
.setPassword("abctesting123"),
|
||||
null);
|
||||
multisigWallets.put(tradeId, multisigWallet);
|
||||
multisigWallet.startSyncing(5000l); // TODO (woodser): use sync period from config. apps stall if too many multisig wallets and too short sync period
|
||||
return multisigWallet;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue