2023-08-09 09:08:05 -05:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
2023-08-10 14:09:17 -05:00
|
|
|
"io"
|
2023-08-09 09:08:05 -05:00
|
|
|
"log"
|
|
|
|
"os"
|
|
|
|
)
|
|
|
|
|
|
|
|
var a AbstractConfig
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
|
|
|
|
//reading json file
|
|
|
|
file, err := os.ReadFile("zoreide.json")
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
log.Println("Cannot open config file", err.Error())
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
err = json.Unmarshal([]byte(file), &a)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
log.Println("Cannot marshal json: ", err.Error())
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
MulticastEntity.MIpAddr = a.MulticastConfig.MIPAddr
|
|
|
|
MulticastEntity.MPort = a.MulticastConfig.MPort
|
|
|
|
MulticastEntity.MaxDatagramSize = numberlenght
|
|
|
|
|
|
|
|
ZoreideBridge.BridgeIpCIDR = a.InterfaceConfig.BridgeIPCIDR
|
|
|
|
ZoreideBridge.ExistingInterface = a.InterfaceConfig.ExistingInterface
|
|
|
|
|
2023-08-10 14:09:17 -05:00
|
|
|
if !a.Debug {
|
|
|
|
log.SetOutput(io.Discard)
|
|
|
|
}
|
|
|
|
|
2023-08-09 09:08:05 -05:00
|
|
|
log.Println("Inizialized Generic Config: ", a)
|
|
|
|
log.Println("Inizialized Interface Config: ", ZoreideBridge)
|
|
|
|
log.Println("Inizialized Multicast Config: ", MulticastEntity)
|
|
|
|
|
|
|
|
}
|