-
Notifications
You must be signed in to change notification settings - Fork 31
/
btcwallet.go
165 lines (151 loc) · 4.03 KB
/
btcwallet.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
// Copyright (c) 2014-2016 The btcsuite developers
// Use of this source code is governed by an ISC
// license that can be found in the LICENSE file.
package main
import (
"fmt"
"io/ioutil"
"log"
"os"
"os/exec"
"strings"
rpc "github.com/btcsuite/btcd/rpcclient"
"github.com/btcsuite/btcd/wire"
)
// btcwalletArgs contains all the args and data required to launch a btcwallet
// instance and connect the rpc client to it
type btcwalletArgs struct {
Username string
Password string
RPCListen string
RPCConnect string
CAFile string
DataDir string
LogDir string
Profile string
DebugLevel string
Extra []string
Certificates []byte
prefix string
exe string
endpoint string
}
// newBtcwalletArgs returns a btcwalletArgs with all default values
func newBtcwalletArgs(port uint16, nodeArgs *btcdArgs) (*btcwalletArgs, error) {
a := &btcwalletArgs{
RPCListen: fmt.Sprintf("127.0.0.1:%d", port),
RPCConnect: "127.0.0.1:18556",
Username: "user",
Password: "pass",
Certificates: nodeArgs.certificates,
CAFile: CertFile,
prefix: fmt.Sprintf("actor-%d", port),
exe: "btcwallet",
endpoint: "ws",
}
if err := a.SetDefaults(); err != nil {
return nil, err
}
return a, nil
}
// SetDefaults sets the default values of args
// it creates tmp data and log directories and must
// be cleaned up by calling Cleanup
func (a *btcwalletArgs) SetDefaults() error {
datadir, err := ioutil.TempDir("", a.prefix+"-data")
if err != nil {
return err
}
a.DataDir = datadir
logdir, err := ioutil.TempDir("", a.prefix+"-logs")
if err != nil {
return err
}
a.LogDir = logdir
return nil
}
// String returns a printable name of this instance
func (a *btcwalletArgs) String() string {
return a.prefix
}
// Arguments returns an array of arguments that be used to launch the
// btcwallet instance
func (a *btcwalletArgs) Arguments() []string {
args := []string{}
// --simnet
args = append(args, fmt.Sprintf("--%s", strings.ToLower(wire.SimNet.String())))
if a.Username != "" {
// --username
args = append(args, fmt.Sprintf("--username=%s", a.Username))
}
if a.Password != "" {
// --password
args = append(args, fmt.Sprintf("--password=%s", a.Password))
}
if a.RPCListen != "" {
// --rpclisten
args = append(args, fmt.Sprintf("--rpclisten=%s", a.RPCListen))
}
if a.RPCConnect != "" {
// --rpcconnect
args = append(args, fmt.Sprintf("--rpcconnect=%s", a.RPCConnect))
}
// --rpccert
args = append(args, fmt.Sprintf("--rpccert=%s", CertFile))
// --rpckey
args = append(args, fmt.Sprintf("--rpckey=%s", KeyFile))
if a.CAFile != "" {
// --cafile
args = append(args, fmt.Sprintf("--cafile=%s", a.CAFile))
}
if a.DataDir != "" {
// --datadir
args = append(args, fmt.Sprintf("--datadir=%s", a.DataDir))
}
if a.LogDir != "" {
// --logdir
args = append(args, fmt.Sprintf("--logdir=%s", a.LogDir))
}
if a.Profile != "" {
// --profile
args = append(args, fmt.Sprintf("--profile=%s", a.Profile))
}
if a.DebugLevel != "" {
// --debuglevel
args = append(args, fmt.Sprintf("--debuglevel=%s", a.DebugLevel))
}
// --createtemp
args = append(args, "--createtemp")
args = append(args, a.Extra...)
return args
}
// Command returns Cmd of the btcwallet instance
func (a *btcwalletArgs) Command() *exec.Cmd {
return exec.Command(a.exe, a.Arguments()...)
}
// RPCConnConfig returns the rpc connection config that can be used
// to connect to the btcwallet instance that is launched on Start
func (a *btcwalletArgs) RPCConnConfig() rpc.ConnConfig {
return rpc.ConnConfig{
Host: a.RPCListen,
Endpoint: a.endpoint,
User: a.Username,
Pass: a.Password,
Certificates: a.Certificates,
DisableAutoReconnect: true,
}
}
// Cleanup removes the tmp data and log directories
func (a *btcwalletArgs) Cleanup() error {
dirs := []string{
a.LogDir,
a.DataDir,
}
var err error
for _, dir := range dirs {
if err = os.RemoveAll(dir); err != nil {
log.Printf("Cannot remove dir %s: %v", dir, err)
}
}
return err
}