forked from shsms/ideacrawler
-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.go
102 lines (92 loc) · 2.72 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
/*************************************************************************
*
* Copyright 2018 Ideas2IT Technology Services Private Limited.
*
* 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 (
"errors"
"log"
"math/rand"
"net/http"
_ "net/http/pprof"
"os"
"path"
"runtime"
"strings"
"time"
"github.com/shsms/sflag"
)
// TODO - implement the DEBUG feature
var cliParams = struct {
DialAddress string "Interface to dial from. Defaults to OS defined routes|"
SaveLoginPages string "Saves login pages in this path. Don't save them if empty."
ClientListenAddress string "Interface to listen on. Defaults to 127.0.0.1:2345|127.0.0.1:2345"
ClusterListenAddress string "Interface to listen on. Defaults to 0.0.0.0:2346|:2346"
LogPath string "Logpath to log into. Default is stdout."
Mode string "Instance mode - standalone/worker/server|standalone"
Servers string "In worker mode, the hostname of server to connect to."
}{}
const (
modeStandalone = iota
modeWorker
modeServer
)
var (
errInvalidMode = errors.New("invalid mode.")
)
func parseCrawlerMode(mode string) (int, error) {
modes := map[string]int{
"standalone": modeStandalone,
"worker": modeWorker,
"server": modeServer,
}
modeClean := strings.ToLower(strings.TrimSpace(mode))
if m, ok := modes[modeClean]; ok {
return m, nil
}
return -1, errInvalidMode
}
func main() {
log.SetFlags(log.LstdFlags | log.Lshortfile)
rand.Seed(time.Now().UTC().UnixNano())
sflag.Parse(&cliParams)
if cliParams.LogPath != "" {
err := os.MkdirAll(cliParams.LogPath, 0755)
if err != nil {
panic(err)
}
logFP, err := os.Create(path.Join(cliParams.LogPath, "master.log"))
if err != nil {
panic(err)
}
log.SetOutput(logFP)
}
go func() {
runtime.SetBlockProfileRate(1)
log.Println(http.ListenAndServe("localhost:6060", nil))
}()
mode, err := parseCrawlerMode(cliParams.Mode)
if err == errInvalidMode {
log.Fatal(err)
}
if mode == modeServer {
wm := newWorkerManager()
wm.start()
startCrawlerWorker(modeStandalone, newServer(mode, wm))
} else {
startCrawlerWorker(mode, newServer(mode, nil))
}
}