Initial version with full functionality
[ric-plt/appmgr.git] / src / config.go
1 /*
2 ==================================================================================
3   Copyright (c) 2019 AT&T Intellectual Property.
4   Copyright (c) 2019 Nokia
5
6    Licensed under the Apache License, Version 2.0 (the "License");
7    you may not use this file except in compliance with the License.
8    You may obtain a copy of the License at
9
10        http://www.apache.org/licenses/LICENSE-2.0
11
12    Unless required by applicable law or agreed to in writing, software
13    distributed under the License is distributed on an "AS IS" BASIS,
14    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15    See the License for the specific language governing permissions and
16    limitations under the License.
17 ==================================================================================
18 */
19
20 package main
21
22 import (
23     "flag"
24     "log"
25     "github.com/spf13/viper"
26     "github.com/fsnotify/fsnotify"
27 )
28
29 const DEFAULT_CONFIG_FILE = "../config/appmgr.yaml"
30
31 func parseCmd() string {
32     var fileName *string
33     fileName = flag.String("f", DEFAULT_CONFIG_FILE, "Specify the configuration file.")
34     flag.Parse()
35
36     return *fileName
37 }
38
39 func loadConfig() {
40     viper.SetConfigFile(parseCmd())
41
42     if err := viper.ReadInConfig(); err != nil {
43         log.Fatalf("Error reading config file, %s", err)
44     }
45     log.Printf("Using config file: %s\n", viper.ConfigFileUsed())
46
47     // Watch for config file changes and re-read data ...
48     watch()
49 }
50
51 func watch() {
52     viper.WatchConfig()
53     viper.OnConfigChange(func(e fsnotify.Event) {
54         log.Println("config file changed ", e.Name)
55     })
56 }