blob: 276ddcf3187848be7ddba1a6e4e2fe2a5abc9f44 (
plain)
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
|
package config
import (
"encoding/json"
"io/ioutil"
"os"
)
// ControlUser is used for various DTail specific operations.
const ControlUser string = "DTAIL-CONTROL"
// ScheduleUser is used for non-interactive scheduled mapreduce queries.
const ScheduleUser string = "DTAIL-SCHEDULE"
// ContinuousUser is used for non-interactive continuous mapreduce queries.
const ContinuousUser string = "DTAIL-CONTINUOUS"
// InterruptTimeoutS is used to terminate DTail when Ctrl+C was pressed twice within a given interval.
const InterruptTimeoutS int = 3
// Client holds a DTail client configuration.
var Client *ClientConfig
// Server holds a DTail server configuration.
var Server *ServerConfig
// Common holds common configs of both both, client and server.
var Common *CommonConfig
// Used to initialize the configuration.
type configInitializer struct {
Common *CommonConfig
Server *ServerConfig
Client *ClientConfig
}
// Parse and read a given config file in JSON format.
func (c *configInitializer) parseConfig(configFile string) {
fd, err := os.Open(configFile)
if err != nil {
panic(err)
}
defer fd.Close()
cfgBytes, err := ioutil.ReadAll(fd)
if err != nil {
panic(err)
}
err = json.Unmarshal([]byte(cfgBytes), c)
if err != nil {
panic(err)
}
}
|