-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathstart.go
182 lines (164 loc) · 4.7 KB
/
start.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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
//
// DISCLAIMER
//
// Copyright 2017-2024 ArangoDB GmbH, Cologne, Germany
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// Copyright holder is ArangoDB GmbH, Cologne, Germany
//
package main
import (
"context"
"encoding/csv"
"fmt"
"net/url"
"os"
"os/exec"
"strings"
"time"
"github.com/spf13/cobra"
"github.com/spf13/pflag"
"github.com/arangodb-helper/arangodb/client"
"github.com/arangodb-helper/arangodb/pkg/definitions"
)
var (
cmdStart = &cobra.Command{
Use: "start",
Short: "Start the ArangoDB starter in the background",
Run: cmdStartRun,
}
waitForServers bool
)
func init() {
f := cmdStart.Flags()
f.BoolVar(&waitForServers, "starter.wait", false, "If set, the (parent) starter waits until all database servers are ready before exiting.")
cmdMain.AddCommand(cmdStart)
}
func cmdStartRun(cmd *cobra.Command, args []string) {
// Setup logging
consoleOnly := true
configureLogging(consoleOnly)
log.Info().Msgf("Starting %s version %s, build %s in the background", projectName, projectVersion, projectBuild)
// Build service
service, bsCfg := mustPrepareService(true)
// Find executable
exePath, err := os.Executable()
if err != nil {
log.Fatal().Err(err).Msg("Cannot find executable path")
}
// Build command line
childArgs := make([]string, 0, len(os.Args))
cmd.Flags().VisitAll(func(f *pflag.Flag) {
if f.Changed {
switch f.Name {
case "ssl.auto-key", "ssl.auto-server-name", "ssl.auto-organization", "ssl.keyfile", "starter.wait":
// Do not pass these along
default:
a := "--" + f.Name
switch f.Value.Type() {
case "stringSlice":
values, err := parseStringSlice(f.Value.String())
if err != nil {
log.Fatal().Err(err).
Str("option", f.Name).
Str("argument", f.Value.String()).
Msg("Failed to parse string-slice argument")
} else {
for _, elem := range values {
childArgs = append(childArgs, a+"="+elem)
}
}
default:
value := f.Value.String()
if value != "" {
a = a + "=" + value
}
childArgs = append(childArgs, a)
}
}
}
})
if bsCfg.SslKeyFile != "" {
childArgs = append(childArgs, "--ssl.keyfile="+bsCfg.SslKeyFile)
}
log.Debug().Msgf("Found child args: %#v", childArgs)
// Start detached child
c := exec.Command(exePath, childArgs...)
if err := c.Start(); err != nil {
log.Fatal().Err(err).Msg("Failed to start detached child")
}
c.Process.Release()
// Create starter client
scheme := "http"
if opts.ssl.autoKeyFile || opts.ssl.keyFile != "" {
scheme = "https"
}
starterURL, err := url.Parse(fmt.Sprintf("%s://127.0.0.1:%d", scheme, opts.starter.masterPort))
if err != nil {
log.Fatal().Err(err).Msg("Failed to create starter URL")
}
client, err := client.NewArangoStarterClient(*starterURL)
if err != nil {
log.Fatal().Err(err).Msg("Failed to create starter client")
}
// Wait for detached starter to be alive
log.Info().Msg("Waiting for starter API to be available...")
rootCtx := context.Background()
for {
ctx, cancel := context.WithTimeout(rootCtx, time.Second)
_, err := client.Version(ctx)
cancel()
if err == nil {
break
}
time.Sleep(time.Millisecond * 100)
}
// Wait until all servers ready (if needed)
if waitForServers {
log.Info().Msg("Waiting for database instances to be available...")
for {
var err error
ctx, cancel := context.WithTimeout(rootCtx, time.Second)
list, err := client.Processes(ctx)
cancel()
if err == nil && list.ServersStarted {
// Start says it has started the servers, now wait for servers to be up.
allUp := true
for _, server := range list.Servers {
ctx, cancel := context.WithTimeout(rootCtx, time.Second)
up, _, _, _, _, _, _ := service.TestInstance(ctx, definitions.ServerType(server.Type), server.IP, server.Port, nil)
cancel()
if !up {
allUp = false
break
}
}
if allUp {
break
}
}
time.Sleep(time.Millisecond * 100)
}
log.Info().Msg("Database instances are available.")
}
}
func parseStringSlice(val string) ([]string, error) {
if val == "" {
return nil, nil
}
val = val[1 : len(val)-1] // Trim of '[..]'
stringReader := strings.NewReader(val)
csvReader := csv.NewReader(stringReader)
return csvReader.Read()
}