forked from trivago/gollum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
128 lines (107 loc) · 2.95 KB
/
main.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
// Copyright 2015 trivago GmbH
//
// 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 main
import (
"fmt"
_ "github.com/trivago/gollum/consumer"
_ "github.com/trivago/gollum/contrib"
"github.com/trivago/gollum/core"
"github.com/trivago/gollum/core/log"
_ "github.com/trivago/gollum/filter"
_ "github.com/trivago/gollum/format"
_ "github.com/trivago/gollum/producer"
"github.com/trivago/gollum/shared"
_ "github.com/trivago/gollum/stream"
"io/ioutil"
"os"
"runtime"
"runtime/pprof"
"strconv"
)
const (
gollumMajorVer = 0
gollumMinorVer = 4
gollumPatchVer = 1
gollumPostfix = ""
)
func dumpMemoryProfile() {
if file, err := os.Create(*flagMemProfile); err != nil {
panic(err)
} else {
defer file.Close()
pprof.WriteHeapProfile(file)
}
}
func main() {
parseFlags()
Log.SetVerbosity(Log.Verbosity(*flagLoglevel))
contribModules := shared.TypeRegistry.GetRegistered("contrib")
modules := ""
for _, typeName := range contribModules {
modules += " +" + typeName[shared.IndexN(typeName, ".", 1)+1:]
}
if *flagVersion {
fmt.Printf("Gollum v%d.%d.%d%s%s\n", gollumMajorVer, gollumMinorVer, gollumPatchVer, gollumPostfix, modules)
return // ### return, version only ###
}
configFile := flagConfigFile
if *flagTestConfigFile != "" {
configFile = flagTestConfigFile
}
if *flagHelp || *configFile == "" {
printFlags()
return // ### return, nothing to do ###
}
// Read config
config, err := core.ReadConfig(*configFile)
if err != nil {
fmt.Printf("Config: %s\n", err.Error())
return // ### return, config error ###
} else if *flagTestConfigFile != "" {
fmt.Printf("Config: %s parsed as ok.\n", *configFile)
newMultiplexer(config, false)
return // ### return, only test config ###
}
// Configure runtime
if *flagPidFile != "" {
ioutil.WriteFile(*flagPidFile, []byte(strconv.Itoa(os.Getpid())), 0644)
}
if *flagNumCPU == 0 {
runtime.GOMAXPROCS(runtime.NumCPU())
} else {
runtime.GOMAXPROCS(*flagNumCPU)
}
// Profiling flags
if *flagCPUProfile != "" {
if file, err := os.Create(*flagCPUProfile); err != nil {
panic(err)
} else {
defer file.Close()
pprof.StartCPUProfile(file)
defer pprof.StopCPUProfile()
}
}
if *flagMemProfile != "" {
defer dumpMemoryProfile()
}
// Metrics server start
if *flagMetricsPort != 0 {
server := shared.NewMetricServer()
go server.Start(*flagMetricsPort)
defer server.Stop()
}
// Start the multiplexer
plex := newMultiplexer(config, *flagProfile)
plex.run()
}