package app import ( "encoding/json" "io/ioutil" "mapserver/coords" "os" "sync" ) type Config struct { Port int `json:"port"` EnableInitialRendering bool `json:"enableinitialrendering"` EnableIncrementalUpdate bool `json:"enableincrementalupdate"` Webdev bool `json:"webdev"` WebApi *WebApiConfig `json:"webapi"` RenderState *RenderStateType `json:"renderstate"` } type WebApiConfig struct { EnableMapblock bool `json:"enablemapblock"` } type RenderStateType struct { //Initial rendering flag (true=still active) InitialRun bool `json:"initialrun"` //Last initial rendering coords LastX int `json:"lastx"` LastY int `json:"lasty"` LastZ int `json:"lastz"` //Last mtime of incremental rendering LastMtime int64 `json:"lastmtime"` } var lock sync.Mutex const ConfigFile = "mapserver.json" func (cfg *Config) Save() error { return WriteConfig(ConfigFile, cfg) } func WriteConfig(filename string, cfg *Config) error { lock.Lock() defer lock.Unlock() f, err := os.Create(filename) if err != nil { return err } defer f.Close() str, err := json.MarshalIndent(cfg, "", " ") if err != nil { return err } f.Write(str) return nil } func ParseConfig(filename string) (*Config, error) { webapi := WebApiConfig{ EnableMapblock: false, } rstate := RenderStateType{ InitialRun: true, LastX: coords.MinCoord, LastY: coords.MinCoord, LastZ: coords.MinCoord, LastMtime: 0, } cfg := Config{ Port: 8080, EnableInitialRendering: true, EnableIncrementalUpdate: true, Webdev: false, WebApi: &webapi, RenderState: &rstate, } info, err := os.Stat(filename) if info != nil && err == nil { data, err := ioutil.ReadFile(filename) if err != nil { return nil, err } err = json.Unmarshal(data, &cfg) if err != nil { return nil, err } } return &cfg, nil }