-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcfg.go
123 lines (111 loc) · 3.56 KB
/
cfg.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
// cfg.go - Configuration File Handler
//
// ॐ भूर्भुवः स्वः
// तत्स॑वि॒तुर्वरे॑ण्यं॒
// भर्गो॑ दे॒वस्य॑ धीमहि।
// धियो॒ यो नः॑ प्रचो॒दया॑त्॥
//
//
// बोसजी के द्वारा रचित गो-मिल तन्त्राक्ष्
// ============================
//
// यह गो-क्रमादेश आधारित एम.क्यू.टी.टी अधिलेख में प्रचालेखन का तन्त्राक्ष् है।
//
// एक रचनात्मक भारतीय उत्पाद।
//
// go-mli - Boseji's Golang MQTT Logging command line
//
// Easy to use Golang based MQTT Command line logger.
//
// Sources
// -------
// https://github.com/boseji/go-mli
//
// License
// -------
//
// SPDX: GPL-3.0-or-later
//
// go-mli - Boseji's Golang MQTT Logging command line
// Copyright (C) 2024 by Abhijit Bose (aka. Boseji)
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by the
// Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
// See the GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License along
// with this program. If not, see <https://www.gnu.org/licenses/>.
//
// Configuration File Handler
package main
import (
"encoding/json"
"fmt"
"os"
)
// cfg stores Configuration for MQTT and Topics needed for logging.
type cfg struct {
ADDR string
Username string
Password string
CAFile string
ClientID string
ClientCertFile string
ClientKeyFile string
Topics []string
}
// Load helps to read the supplied JSON file and fill up the configuration.
func (m *cfg) Load(Filename string) error {
bs, err := os.ReadFile(Filename)
if err != nil {
return fmt.Errorf("failed to load file %q :\n %v", Filename, err)
}
err = json.Unmarshal(bs, m)
if err != nil {
return fmt.Errorf("failed to process the file %q :\n %v", Filename, err)
}
return nil
}
// Save helps to save back the configuration into the supplied JSON file.
func (m *cfg) Save(Filename string) error {
bs, err := json.MarshalIndent(m, "", " ")
if err != nil {
return fmt.Errorf("failed to encode back configuration:\n %v", err)
}
err = os.WriteFile(Filename, bs, 0644)
if err != nil {
return fmt.Errorf("failed to write file %q :\n %v", Filename, err)
}
return nil
}
// String implements the Stringer interface to print out the configuration.
func (m cfg) String() string {
bs, _ := json.MarshalIndent(m, "", " ")
return string(bs)
}
// writeTemplate helps to create the default JSON file with
// dummy configuration as a starter.
func writeTemplate(Filename string) error {
m := &cfg{
ADDR: "tcp://192.168.0.0:1883",
Username: "Username Here",
Password: "Password Here",
CAFile: "/path/to/ca.crt-optional",
ClientID: "go-mli-demo",
ClientCertFile: "/path/to/user.client.crt-optional",
ClientKeyFile: "/path/to/user.client.key-optional",
Topics: []string{
"demo",
"d1",
"Sensor1/Temp",
"Sensor1/Humidity",
},
}
return m.Save(Filename)
}