forked from hyperledger/firefly
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfirefly.go
More file actions
166 lines (143 loc) · 4.67 KB
/
firefly.go
File metadata and controls
166 lines (143 loc) · 4.67 KB
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
// Copyright © 2021 Kaleido, Inc.
//
// SPDX-License-Identifier: Apache-2.0
//
// 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.
package cmd
import (
"context"
"fmt"
"net/http"
"net/http/pprof"
"os"
"os/signal"
"syscall"
"github.com/gorilla/mux"
"github.com/hyperledger/firefly/internal/apiserver"
"github.com/hyperledger/firefly/internal/config"
"github.com/hyperledger/firefly/internal/i18n"
"github.com/hyperledger/firefly/internal/log"
"github.com/hyperledger/firefly/internal/orchestrator"
"github.com/sirupsen/logrus"
"github.com/spf13/cobra"
)
var sigs = make(chan os.Signal, 1)
var rootCmd = &cobra.Command{
Use: "firefly",
Short: "Firefly is an API toolkit for building enterprise grade multi-party systems",
Long: `You build great user experiences and business logic in your favorite language,
and let Firefly take care of the REST. The event-driven programming model gives you the
building blocks needed for high performance, scalable multi-party systems, and the power
to digital transformation your business ecosystem.`,
RunE: func(cmd *cobra.Command, args []string) error {
return run()
},
}
var showConfigCommand = &cobra.Command{
Use: "showconfig",
Aliases: []string{"showconf"},
Short: "List out the configuration options",
Run: func(cmd *cobra.Command, args []string) {
// Initialize config of all plugins
getOrchestrator()
_ = config.ReadConfig(cfgFile)
// Print it all out
for _, k := range config.GetKnownKeys() {
fmt.Printf("%-64s %v\n", k, config.Get(config.RootKey(k)))
}
},
}
var cfgFile string
var _utOrchestrator orchestrator.Orchestrator
func init() {
rootCmd.PersistentFlags().StringVarP(&cfgFile, "config", "f", "", "config file")
rootCmd.AddCommand(showConfigCommand)
}
func getOrchestrator() orchestrator.Orchestrator {
if _utOrchestrator != nil {
return _utOrchestrator
}
return orchestrator.NewOrchestrator()
}
// Execute is called by the main method of the package
func Execute() error {
apiserver.InitConfig()
return rootCmd.Execute()
}
func run() error {
// Read the configuration
config.Reset()
err := config.ReadConfig(cfgFile)
// Setup logging after reading config (even if failed), to output header correctly
ctx, cancelCtx := context.WithCancel(context.Background())
ctx = log.WithLogger(ctx, logrus.WithField("pid", os.Getpid()))
config.SetupLogging(ctx)
log.L(ctx).Infof("Project Firefly")
log.L(ctx).Infof("© Copyright 2021 Kaleido, Inc.")
// Deferred error return from reading config
if err != nil {
cancelCtx()
return i18n.WrapError(ctx, err, i18n.MsgConfigFailed)
}
// Setup signal handling to cancel the context, which shuts down the API Server
errChan := make(chan error)
signal.Notify(sigs, syscall.SIGINT, syscall.SIGTERM)
for {
orchestratorCtx, cancelOrchestratorCtx := context.WithCancel(ctx)
o := getOrchestrator()
as := apiserver.NewAPIServer()
go startFirefly(orchestratorCtx, cancelOrchestratorCtx, o, as, errChan)
select {
case sig := <-sigs:
log.L(ctx).Infof("Shutting down due to %s", sig.String())
cancelCtx()
o.WaitStop()
return nil
case <-orchestratorCtx.Done():
log.L(ctx).Infof("Restarting due to configuration change")
o.WaitStop()
case err := <-errChan:
cancelCtx()
return err
}
}
}
func startFirefly(ctx context.Context, cancelCtx context.CancelFunc, o orchestrator.Orchestrator, as apiserver.Server, errChan chan error) {
var err error
// Start debug listener
debugPort := config.GetInt(config.DebugPort)
if debugPort >= 0 {
r := mux.NewRouter()
r.PathPrefix("/debug/pprof/cmdline").HandlerFunc(pprof.Cmdline)
r.PathPrefix("/debug/pprof/profile").HandlerFunc(pprof.Profile)
r.PathPrefix("/debug/pprof/symbol").HandlerFunc(pprof.Symbol)
r.PathPrefix("/debug/pprof/trace").HandlerFunc(pprof.Trace)
r.PathPrefix("/debug/pprof/").HandlerFunc(pprof.Index)
go func() {
_ = http.ListenAndServe(fmt.Sprintf("localhost:%d", debugPort), r)
}()
log.L(ctx).Debugf("Debug HTTP endpoint listening on localhost:%d", debugPort)
}
if err = o.Init(ctx, cancelCtx); err != nil {
errChan <- err
return
}
if err = o.Start(); err != nil {
errChan <- err
return
}
// Run the API Server
if err = as.Serve(ctx, o); err != nil {
errChan <- err
}
}