2012-12-15 15:53:19 +00:00
|
|
|
package beego
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bufio"
|
|
|
|
"bytes"
|
|
|
|
"errors"
|
|
|
|
"io"
|
|
|
|
"os"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
"sync"
|
|
|
|
"unicode"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
bComment = []byte{'#'}
|
|
|
|
bEmpty = []byte{}
|
|
|
|
bEqual = []byte{'='}
|
|
|
|
bDQuote = []byte{'"'}
|
|
|
|
)
|
|
|
|
|
|
|
|
// A Config represents the configuration.
|
|
|
|
type Config struct {
|
|
|
|
filename string
|
|
|
|
comment map[int][]string // id: []{comment, key...}; id 1 is for main comment.
|
|
|
|
data map[string]string // key: value
|
|
|
|
offset map[string]int64 // key: offset; for editing.
|
|
|
|
sync.RWMutex
|
|
|
|
}
|
|
|
|
|
|
|
|
// ParseFile creates a new Config and parses the file configuration from the
|
|
|
|
// named file.
|
|
|
|
func LoadConfig(name string) (*Config, error) {
|
|
|
|
file, err := os.Open(name)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
cfg := &Config{
|
|
|
|
file.Name(),
|
|
|
|
make(map[int][]string),
|
|
|
|
make(map[string]string),
|
|
|
|
make(map[string]int64),
|
|
|
|
sync.RWMutex{},
|
|
|
|
}
|
|
|
|
cfg.Lock()
|
|
|
|
defer cfg.Unlock()
|
|
|
|
defer file.Close()
|
|
|
|
|
|
|
|
var comment bytes.Buffer
|
|
|
|
buf := bufio.NewReader(file)
|
|
|
|
|
|
|
|
for nComment, off := 0, int64(1); ; {
|
|
|
|
line, _, err := buf.ReadLine()
|
|
|
|
if err == io.EOF {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
if bytes.Equal(line, bEmpty) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
off += int64(len(line))
|
|
|
|
|
|
|
|
if bytes.HasPrefix(line, bComment) {
|
|
|
|
line = bytes.TrimLeft(line, "#")
|
|
|
|
line = bytes.TrimLeftFunc(line, unicode.IsSpace)
|
|
|
|
comment.Write(line)
|
|
|
|
comment.WriteByte('\n')
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if comment.Len() != 0 {
|
|
|
|
cfg.comment[nComment] = []string{comment.String()}
|
|
|
|
comment.Reset()
|
|
|
|
nComment++
|
|
|
|
}
|
|
|
|
|
|
|
|
val := bytes.SplitN(line, bEqual, 2)
|
2013-05-07 15:07:54 +00:00
|
|
|
if bytes.HasPrefix([]byte(strings.TrimSpace(string(val[1]))), bDQuote) {
|
|
|
|
val[1] = bytes.Trim([]byte(strings.TrimSpace(string(val[1]))), `"`)
|
2012-12-15 15:53:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
key := strings.TrimSpace(string(val[0]))
|
|
|
|
cfg.comment[nComment-1] = append(cfg.comment[nComment-1], key)
|
|
|
|
cfg.data[key] = strings.TrimSpace(string(val[1]))
|
|
|
|
cfg.offset[key] = off
|
|
|
|
}
|
|
|
|
return cfg, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Bool returns the boolean value for a given key.
|
|
|
|
func (c *Config) Bool(key string) (bool, error) {
|
|
|
|
return strconv.ParseBool(c.data[key])
|
|
|
|
}
|
|
|
|
|
|
|
|
// Int returns the integer value for a given key.
|
|
|
|
func (c *Config) Int(key string) (int, error) {
|
|
|
|
return strconv.Atoi(c.data[key])
|
|
|
|
}
|
|
|
|
|
2013-04-02 15:57:15 +00:00
|
|
|
func (c *Config) Int64(key string) (int64, error) {
|
|
|
|
return strconv.ParseInt(c.data[key], 10, 64)
|
|
|
|
}
|
|
|
|
|
2012-12-15 15:53:19 +00:00
|
|
|
// Float returns the float value for a given key.
|
|
|
|
func (c *Config) Float(key string) (float64, error) {
|
|
|
|
return strconv.ParseFloat(c.data[key], 64)
|
|
|
|
}
|
|
|
|
|
|
|
|
// String returns the string value for a given key.
|
|
|
|
func (c *Config) String(key string) string {
|
|
|
|
return c.data[key]
|
|
|
|
}
|
|
|
|
|
|
|
|
// WriteValue writes a new value for key.
|
|
|
|
func (c *Config) SetValue(key, value string) error {
|
|
|
|
c.Lock()
|
|
|
|
defer c.Unlock()
|
|
|
|
|
|
|
|
if _, found := c.data[key]; !found {
|
|
|
|
return errors.New("key not found: " + key)
|
|
|
|
}
|
|
|
|
|
|
|
|
c.data[key] = value
|
|
|
|
return nil
|
|
|
|
}
|
2013-05-05 15:03:59 +00:00
|
|
|
|
|
|
|
func ParseConfig() (err error) {
|
|
|
|
AppConfig, err = LoadConfig(AppConfigPath)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
} else {
|
|
|
|
HttpAddr = AppConfig.String("httpaddr")
|
|
|
|
if v, err := AppConfig.Int("httpport"); err == nil {
|
|
|
|
HttpPort = v
|
|
|
|
}
|
2013-06-28 14:09:08 +00:00
|
|
|
if maxmemory, err := AppConfig.Int64("maxmemory"); err == nil {
|
|
|
|
MaxMemory = maxmemory
|
2013-05-05 15:03:59 +00:00
|
|
|
}
|
|
|
|
AppName = AppConfig.String("appname")
|
|
|
|
if runmode := AppConfig.String("runmode"); runmode != "" {
|
|
|
|
RunMode = runmode
|
|
|
|
}
|
2013-06-28 14:09:08 +00:00
|
|
|
if autorender, err := AppConfig.Bool("autorender"); err == nil {
|
|
|
|
AutoRender = autorender
|
2013-05-05 15:03:59 +00:00
|
|
|
}
|
2013-06-28 14:09:08 +00:00
|
|
|
if autorecover, err := AppConfig.Bool("autorecover"); err == nil {
|
|
|
|
RecoverPanic = autorecover
|
2013-05-05 15:03:59 +00:00
|
|
|
}
|
2013-06-28 14:09:08 +00:00
|
|
|
if pprofon, err := AppConfig.Bool("pprofon"); err == nil {
|
|
|
|
PprofOn = pprofon
|
2013-05-05 15:03:59 +00:00
|
|
|
}
|
|
|
|
if views := AppConfig.String("viewspath"); views != "" {
|
|
|
|
ViewsPath = views
|
|
|
|
}
|
2013-06-28 14:09:08 +00:00
|
|
|
if sessionon, err := AppConfig.Bool("sessionon"); err == nil {
|
|
|
|
SessionOn = sessionon
|
2013-05-05 15:03:59 +00:00
|
|
|
}
|
2013-06-28 14:09:08 +00:00
|
|
|
if sessProvider := AppConfig.String("sessionprovider"); sessProvider != "" {
|
|
|
|
SessionProvider = sessProvider
|
2013-05-05 15:03:59 +00:00
|
|
|
}
|
2013-06-28 14:09:08 +00:00
|
|
|
if sessName := AppConfig.String("sessionname"); sessName != "" {
|
|
|
|
SessionName = sessName
|
2013-05-05 15:03:59 +00:00
|
|
|
}
|
2013-06-28 14:09:08 +00:00
|
|
|
if sesssavepath := AppConfig.String("sessionsavepath"); sesssavepath != "" {
|
|
|
|
SessionSavePath = sesssavepath
|
2013-05-05 15:03:59 +00:00
|
|
|
}
|
2013-06-28 14:09:08 +00:00
|
|
|
if sessMaxLifeTime, err := AppConfig.Int("sessiongcmaxlifetime"); err == nil && sessMaxLifeTime != 0 {
|
|
|
|
int64val, _ := strconv.ParseInt(strconv.Itoa(sessMaxLifeTime), 10, 64)
|
2013-05-05 15:03:59 +00:00
|
|
|
SessionGCMaxLifetime = int64val
|
|
|
|
}
|
2013-06-28 14:09:08 +00:00
|
|
|
if usefcgi, err := AppConfig.Bool("usefcgi"); err == nil {
|
|
|
|
UseFcgi = usefcgi
|
2013-05-05 15:03:59 +00:00
|
|
|
}
|
2013-06-28 14:09:08 +00:00
|
|
|
if enablegzip, err := AppConfig.Bool("enablegzip"); err == nil {
|
|
|
|
EnableGzip = enablegzip
|
2013-05-05 15:03:59 +00:00
|
|
|
}
|
2013-06-28 14:09:08 +00:00
|
|
|
if directoryindex, err := AppConfig.Bool("directoryindex"); err == nil {
|
|
|
|
DirectoryIndex = directoryindex
|
|
|
|
}
|
|
|
|
if hotupdate, err := AppConfig.Bool("hotupdate"); err == nil {
|
|
|
|
EnbaleHotUpdate = hotupdate
|
2013-06-24 15:24:13 +00:00
|
|
|
}
|
2013-07-03 07:29:54 +00:00
|
|
|
if timeout, err := AppConfig.Int64("httpservertimeout"); err == nil {
|
|
|
|
HttpServerTimeOut = timeout
|
|
|
|
}
|
2013-07-07 09:58:50 +00:00
|
|
|
if errorsshow, err := AppConfig.Bool("errorsshow"); err == nil {
|
|
|
|
ErrorsShow = errorsshow
|
|
|
|
}
|
2013-07-08 15:12:31 +00:00
|
|
|
if copyrequestbody, err := AppConfig.Bool("copyrequestbody"); err == nil {
|
|
|
|
CopyRequestBody = copyrequestbody
|
|
|
|
}
|
2013-07-08 08:17:08 +00:00
|
|
|
if xsrfkey := AppConfig.String("xsrfkey"); xsrfkey != "" {
|
|
|
|
XSRFKEY = xsrfkey
|
|
|
|
}
|
2013-08-06 15:21:52 +00:00
|
|
|
if enablexsrf, err := AppConfig.Bool("enablexsrf"); err == nil {
|
|
|
|
EnableXSRF = enablexsrf
|
|
|
|
}
|
2013-08-07 03:22:23 +00:00
|
|
|
if expire, err := AppConfig.Int("xsrfexpire"); err == nil {
|
|
|
|
XSRFExpire = expire
|
|
|
|
}
|
2013-05-05 15:03:59 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|