78 lines
1.7 KiB
Go
78 lines
1.7 KiB
Go
package prog
|
|
|
|
import (
|
|
"encoding/json"
|
|
"io/ioutil"
|
|
)
|
|
|
|
// Configuration holds a list of process names to be tracked and a listen address.
|
|
type Configuration struct {
|
|
ListenAddress string `json:"listen_address"`
|
|
Processes []string `json:"processes"`
|
|
}
|
|
|
|
// LoadConfiguration loads configuration from a JSON file.
|
|
func LoadConfiguration(path string) (conf *Configuration, err error) {
|
|
conf = &Configuration{}
|
|
|
|
file, err := ioutil.ReadFile(path)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if err := json.Unmarshal(file, conf); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return conf, nil
|
|
}
|
|
|
|
// StoreConfiguration writes Configuration into a JSON file.
|
|
func StoreConfiguration(path string, conf *Configuration) (err error) {
|
|
config, err := json.Marshal(*conf)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
err = ioutil.WriteFile(path, config, 0644)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// AddProcessToList appends a new given process into a configuration file.
|
|
func AddProcessToList(process string, conf *Configuration, configPath string) error {
|
|
for _, v := range conf.Processes {
|
|
if v == process {
|
|
return ErrIsOnList
|
|
}
|
|
}
|
|
|
|
conf.Processes = append(conf.Processes, process)
|
|
if err := StoreConfiguration(configPath, conf); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// RemoveProcessFromList removes a given process from a configuration file.
|
|
func RemoveProcessFromList(process string, conf *Configuration, configPath string) error {
|
|
for k, v := range conf.Processes {
|
|
if v == process {
|
|
newlist := make([]string, len(conf.Processes)-1)
|
|
newlist = append(conf.Processes[:k], conf.Processes[k+1:]...)
|
|
conf.Processes = newlist
|
|
if err := StoreConfiguration(configPath, conf); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
}
|
|
|
|
return ErrNotFound
|
|
}
|