-
Notifications
You must be signed in to change notification settings - Fork 31
/
btcd.go
165 lines (152 loc) · 3.85 KB
/
btcd.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"
)
// btcdArgs contains all the args and data required to launch a btcd
// instance and connect the rpc client to it
type btcdArgs struct {
RPCUser string
RPCPass string
Listen string
RPCListen string
RPCConnect string
DataDir string
LogDir string
Profile string
DebugLevel string
Extra []string
prefix string
exe string
endpoint string
certificates []byte
}
// newBtcdArgs returns a btcdArgs with all default values
func newBtcdArgs(prefix string) (*btcdArgs, error) {
a := &btcdArgs{
Listen: "127.0.0.1:18555",
RPCListen: "127.0.0.1:18556",
RPCUser: "user",
RPCPass: "pass",
prefix: prefix,
exe: "btcd",
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 *btcdArgs) 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
cert, err := ioutil.ReadFile(CertFile)
if err != nil {
return err
}
a.certificates = cert
return nil
}
// String returns a printable name of this instance
func (a *btcdArgs) String() string {
return a.prefix
}
// Arguments returns an array of arguments that be used to launch the
// btcd instance
func (a *btcdArgs) Arguments() []string {
args := []string{}
// --simnet
args = append(args, fmt.Sprintf("--%s", strings.ToLower(wire.SimNet.String())))
if a.RPCUser != "" {
// --rpcuser
args = append(args, fmt.Sprintf("--rpcuser=%s", a.RPCUser))
}
if a.RPCPass != "" {
// --rpcpass
args = append(args, fmt.Sprintf("--rpcpass=%s", a.RPCPass))
}
if a.Listen != "" {
// --listen
args = append(args, fmt.Sprintf("--listen=%s", a.Listen))
}
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.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))
}
args = append(args, a.Extra...)
return args
}
// Command returns Cmd of the btcd instance
func (a *btcdArgs) Command() *exec.Cmd {
return exec.Command(a.exe, a.Arguments()...)
}
// RPCConnConfig returns the rpc connection config that can be used
// to connect to the btcd instance that is launched on Start
func (a *btcdArgs) RPCConnConfig() rpc.ConnConfig {
return rpc.ConnConfig{
Host: a.RPCListen,
Endpoint: a.endpoint,
User: a.RPCUser,
Pass: a.RPCPass,
Certificates: a.certificates,
DisableAutoReconnect: true,
}
}
// Cleanup removes the tmp data and log directories
func (a *btcdArgs) 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
}