forked from joewalnes/websocketd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
92 lines (80 loc) · 2.8 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
// Copyright 2013 Joe Walnes and the websocketd team.
// All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package main
import (
"fmt"
"net/http"
"os"
"strings"
"github.com/joewalnes/websocketd/libwebsocketd"
)
func log(l *libwebsocketd.LogScope, level libwebsocketd.LogLevel, levelName string, category string, msg string, args ...interface{}) {
if level < l.MinLevel {
return
}
fullMsg := fmt.Sprintf(msg, args...)
assocDump := ""
for index, pair := range l.Associated {
if index > 0 {
assocDump += " "
}
assocDump += fmt.Sprintf("%s:'%s'", pair.Key, pair.Value)
}
l.Mutex.Lock()
fmt.Printf("%s | %-6s | %-10s | %s | %s\n", libwebsocketd.Timestamp(), levelName, category, assocDump, fullMsg)
l.Mutex.Unlock()
}
func main() {
config := parseCommandLine()
log := libwebsocketd.RootLogScope(config.LogLevel, log)
if config.DevConsole {
if config.StaticDir != "" {
log.Fatal("server", "Invalid parameters: --devconsole cannot be used with --staticdir. Pick one.")
os.Exit(4)
}
if config.CgiDir != "" {
log.Fatal("server", "Invalid parameters: --devconsole cannot be used with --cgidir. Pick one.")
os.Exit(4)
}
}
os.Clearenv() // it's ok to wipe it clean, we already read env variables from passenv into config
handler := libwebsocketd.NewWebsocketdServer(config.Config, log, config.MaxForks)
http.Handle("/", handler)
if config.UsingScriptDir {
log.Info("server", "Serving from directory : %s", config.ScriptDir)
} else if config.CommandName != "" {
log.Info("server", "Serving using application : %s %s", config.CommandName, strings.Join(config.CommandArgs, " "))
}
if config.StaticDir != "" {
log.Info("server", "Serving static content from : %s", config.StaticDir)
}
if config.CgiDir != "" {
log.Info("server", "Serving CGI scripts from : %s", config.CgiDir)
}
rejects := make(chan error, 1)
for _, addrSingle := range config.Addr {
log.Info("server", "Starting WebSocket server : %s", handler.TellURL("ws", addrSingle, "/"))
if config.DevConsole {
log.Info("server", "Developer console enabled : %s", handler.TellURL("http", addrSingle, "/"))
} else if config.StaticDir != "" || config.CgiDir != "" {
log.Info("server", "Serving CGI or static files : %s", handler.TellURL("http", addrSingle, "/"))
}
// ListenAndServe is blocking function. Let's run it in
// go routine, reporting result to control channel.
// Since it's blocking it'll never return non-error.
go func(addr string) {
if config.Ssl {
rejects <- http.ListenAndServeTLS(addr, config.CertFile, config.KeyFile, nil)
} else {
rejects <- http.ListenAndServe(addr, nil)
}
}(addrSingle)
}
select {
case err := <-rejects:
log.Fatal("server", "Can't start server: %s", err)
os.Exit(3)
}
}