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
43pre { line-height: 125%; }
td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
.highlight .hll { background-color: #ffffcc }
.highlight .c { color: #888888 } /* Comment */
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
.highlight .k { color: #008800; font-weight: bold } /* Keyword */
.highlight .ch { color: #888888 } /* Comment.Hashbang */
.highlight .cm { color: #888888 } /* Comment.Multiline */
.highlight .cp { color: #cc0000; font-weight: bold } /* Comment.Preproc */
.highlight .cpf { color: #888888 } /* Comment.PreprocFile */
.highlight .c1 { color: #888888 } /* Comment.Single */
.highlight .cs { color: #cc0000; font-weight: bold; background-color: #fff0f0 } /* Comment.Special */
.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
.highlight .ge { font-style: italic } /* Generic.Emph */
.highlight .ges { font-weight: bold; font-style: italic } /* Generic.EmphStrong */
.highlight .gr { color: #aa0000 } /* Generic.Error */
.highlight .gh { color: #333333 } /* Generic.Heading */
.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
.highlight .go { color: #888888 } /* Generic.Output */
.highlight .gp { color: #555555 } /* Generic.Prompt */
.highlight .gs { font-weight: bold } /* Generic.Strong */
.highlight .gu { color: #666666 } /* Generic.Subheading */
.highlight .gt { color: #aa0000 } /* Generic.Traceback */
.highlight .kc { color: #008800; font-weight: bold } /* Keyword.Constant */
.highlight .kd { color: #008800; font-weight: bold } /* Keyword.Declaration */
.highlight .kn { color: #008800; font-weight: bold } /* Keyword.Namespace */
.highlight .kp { color: #008800 } /* Keyword.Pseudo */
.highlight .kr { color: #008800; font-weight: bold } /* Keyword.Reserved */
.highlight .kt { color: #888888; font-weight: bold } /* Keyword.Type */
.highlight .m { color: #0000DD; font-weight: bold } package svc // import "github.com/getwtxt/getwtxt/svc"
import (
"html/template"
"log"
"os"
"os/signal"
"time"
"github.com/getwtxt/registry"
"github.com/spf13/pflag"
)
const getwtxt = "0.2.3"
var (
flagVersion *bool = pflag.BoolP("version", "v", false, "Display version information, then exit.")
flagHelp *bool = pflag.BoolP("help", "h", false, "Display the quick-help screen.")
flagMan *bool = pflag.BoolP("manual", "m", false, "Display the configuration manual.")
flagConfFile *string = pflag.StringP("config", "c", "", "The name/path of the configuration file you wish to use.")
flagAssets *string = pflag.StringP("assets", "a", "", "The location of the getwtxt assets directory")
flagDBPath *string = pflag.StringP("db", "d", "", "Path to the getwtxt database")
flagDBType *string = pflag.StringP("dbtype", "t", "", "Type of database being used")
)
var confObj = &Configuration{}
// signals to close the log file
var closeLog = make(chan bool, 1)
// used to transmit database pointer after
// initialization
var dbChan = make(chan dbase, 1)
var tmpls *template.Template
var twtxtCache = registry.NewIndex()
var remoteRegistries = &RemoteRegistries{}
var staticCache = &staticAssets{}
// I'm not using init() because it runs
// even during testing and was causing
// problems.
func initSvc() {
checkFlags()
titleScreen()
initConfig()
initLogging()
tmpls = initTemplates()
initDatabase()
go cacheAndPush()
watchForInterrupt()
}
func checkFlags() {
pflag.Parse()
if *flagVersion {
titleScreen()
os.Exit(0)
}
if *flagHelp {
titleScreen()
helpScreen()
os.Exit(0)
}
if *flagMan {
titleScreen()
helpScreen()
manualScreen()
os.Exit(0)
}
}
// Watch for SIGINT aka ^C
// Close the log file then exit
func watchForInterrupt() {
c := make(chan os.Signal, 1)
signal.Notify(c, os.Interrupt)
go func() {
for sigint := range c {
log.Printf("\n\nCaught %v. Cleaning up ...\n", sigint)
confObj.Mu.RLock()
log.Printf("Closing database connection to %v...\n", confObj.DBPath)
db := <-dbChan
switch dbType := db.(type) {
case *dbLevel:
lvl := dbType
if err := lvl.db.Close(); err != nil {
log.Printf("%v\n", err.Error())
}
}
if !confObj.StdoutLogging {
closeLog <- true
}
confObj.Mu.RUnlock()
close(dbChan)
close(closeLog)
// Let everything catch up
time.Sleep(100 * time.Millisecond)
os.Exit(0)
}
}()
}
|