@@ -26,75 +26,201 @@ package hosts
26
26
27
27
import (
28
28
"fmt"
29
+ "github.com/opencurve/curveadm/internal/errno"
29
30
30
- comm "github.com/opencurve/curveadm/internal/configure/common"
31
31
"github.com/opencurve/curveadm/internal/utils"
32
32
)
33
33
34
34
const (
35
+ REQUIRE_ANY = iota
36
+ REQUIRE_INT
37
+ REQUIRE_STRING
38
+ REQUIRE_BOOL
39
+ REQUIRE_POSITIVE_INTEGER
40
+ REQUIRE_STRING_SLICE
41
+
35
42
DEFAULT_SSH_PORT = 22
36
43
)
37
44
45
+ type (
46
+ // config item
47
+ item struct {
48
+ key string
49
+ require int
50
+ exclude bool // exclude for service config
51
+ defaultValue interface {} // nil means no default value
52
+ }
53
+
54
+ itemSet struct {
55
+ items []* item
56
+ key2item map [string ]* item
57
+ }
58
+ )
59
+
38
60
var (
39
- itemset = comm .NewItemSet ()
61
+ itemset = & itemSet {
62
+ items : []* item {},
63
+ key2item : map [string ]* item {},
64
+ }
40
65
41
- CONFIG_HOST = itemset .Insert (
66
+ CONFIG_HOST = itemset .insert (
42
67
"host" ,
43
- comm . REQUIRE_STRING ,
68
+ REQUIRE_STRING ,
44
69
false ,
45
70
nil ,
46
71
)
47
72
48
- CONFIG_HOSTNAME = itemset .Insert (
73
+ CONFIG_HOSTNAME = itemset .insert (
49
74
"hostname" ,
50
- comm . REQUIRE_STRING ,
75
+ REQUIRE_STRING ,
51
76
false ,
52
77
nil ,
53
78
)
54
79
55
- CONFIG_SSH_HOSTNAME = itemset .Insert (
80
+ CONFIG_SSH_HOSTNAME = itemset .insert (
56
81
"ssh_hostname" ,
57
- comm . REQUIRE_STRING ,
82
+ REQUIRE_STRING ,
58
83
false ,
59
84
nil ,
60
85
)
61
86
62
- CONFIG_USER = itemset .Insert (
87
+ CONFIG_USER = itemset .insert (
63
88
"user" ,
64
- comm . REQUIRE_STRING ,
89
+ REQUIRE_STRING ,
65
90
false ,
66
91
func (hc * HostConfig ) interface {} {
67
92
return utils .GetCurrentUser ()
68
93
},
69
94
)
70
95
71
- CONFIG_SSH_PORT = itemset .Insert (
96
+ CONFIG_SSH_PORT = itemset .insert (
72
97
"ssh_port" ,
73
- comm . REQUIRE_POSITIVE_INTEGER ,
98
+ REQUIRE_POSITIVE_INTEGER ,
74
99
false ,
75
100
DEFAULT_SSH_PORT ,
76
101
)
77
102
78
- CONFIG_PRIVATE_CONFIG_FILE = itemset .Insert (
103
+ CONFIG_PRIVATE_CONFIG_FILE = itemset .insert (
79
104
"private_key_file" ,
80
- comm . REQUIRE_STRING ,
105
+ REQUIRE_STRING ,
81
106
false ,
82
107
func (hc * HostConfig ) interface {} {
83
108
return fmt .Sprintf ("%s/.ssh/id_rsa" , utils .GetCurrentHomeDir ())
84
109
},
85
110
)
86
111
87
- CONFIG_FORWARD_AGENT = itemset .Insert (
112
+ CONFIG_FORWARD_AGENT = itemset .insert (
88
113
"forward_agent" ,
89
- comm . REQUIRE_BOOL ,
114
+ REQUIRE_BOOL ,
90
115
false ,
91
116
false ,
92
117
)
93
118
94
- CONFIG_BECOME_USER = itemset .Insert (
119
+ CONFIG_BECOME_USER = itemset .insert (
95
120
"become_user" ,
96
- comm . REQUIRE_STRING ,
121
+ REQUIRE_STRING ,
97
122
false ,
98
123
nil ,
99
124
)
100
125
)
126
+
127
+ func convertSlice [T int | string | any ](key , value any ) ([]T , error ) {
128
+ var slice []T
129
+ if ! utils .IsAnySlice (value ) || len (value .([]any )) == 0 {
130
+ return slice , errno .ERR_CONFIGURE_VALUE_REQUIRES_NONEMPTY_SLICE
131
+ }
132
+ anySlice := value .([]any )
133
+ switch anySlice [0 ].(type ) {
134
+ case T :
135
+ for _ , str := range anySlice {
136
+ slice = append (slice , str .(T ))
137
+ }
138
+ default :
139
+ return slice , errno .ERR_UNSUPPORT_CONFIGURE_VALUE_TYPE .
140
+ F ("%s: %v" , key , value )
141
+ }
142
+
143
+ return slice , nil
144
+ }
145
+
146
+ func (i * item ) Key () string {
147
+ return i .key
148
+ }
149
+
150
+ func (itemset * itemSet ) insert (key string , require int , exclude bool , defaultValue interface {}) * item {
151
+ i := & item {key , require , exclude , defaultValue }
152
+ itemset .key2item [key ] = i
153
+ itemset .items = append (itemset .items , i )
154
+ return i
155
+ }
156
+
157
+ func (itemset * itemSet ) get (key string ) * item {
158
+ return itemset .key2item [key ]
159
+ }
160
+
161
+ func (itemset * itemSet ) getAll () []* item {
162
+ return itemset .items
163
+ }
164
+
165
+ func (itemset * itemSet ) Build (key string , value interface {}) (interface {}, error ) {
166
+ item := itemset .get (key )
167
+ if item == nil {
168
+ return value , nil
169
+ }
170
+
171
+ v , ok := utils .All2Str (value )
172
+ if ! ok {
173
+ if ! utils .IsAnySlice (value ) {
174
+ return nil , errno .ERR_UNSUPPORT_CONFIGURE_VALUE_TYPE .
175
+ F ("%s: %v" , key , value )
176
+ }
177
+ }
178
+
179
+ switch item .require {
180
+ case REQUIRE_ANY :
181
+ // do nothing
182
+
183
+ case REQUIRE_STRING :
184
+ if len (v ) == 0 {
185
+ return nil , errno .ERR_CONFIGURE_VALUE_REQUIRES_NON_EMPTY_STRING .
186
+ F ("%s: %v" , key , value )
187
+ } else {
188
+ return v , nil
189
+ }
190
+
191
+ case REQUIRE_INT :
192
+ if v , ok := utils .Str2Int (v ); ! ok {
193
+ return nil , errno .ERR_CONFIGURE_VALUE_REQUIRES_INTEGER .
194
+ F ("%s: %v" , key , value )
195
+ } else {
196
+ return v , nil
197
+ }
198
+
199
+ case REQUIRE_POSITIVE_INTEGER :
200
+ if v , ok := utils .Str2Int (v ); ! ok {
201
+ return nil , errno .ERR_CONFIGURE_VALUE_REQUIRES_INTEGER .
202
+ F ("%s: %v" , key , value )
203
+ } else if v <= 0 {
204
+ return nil , errno .ERR_CONFIGURE_VALUE_REQUIRES_POSITIVE_INTEGER .
205
+ F ("%s: %v" , key , value )
206
+ } else {
207
+ return v , nil
208
+ }
209
+
210
+ case REQUIRE_BOOL :
211
+ if v , ok := utils .Str2Bool (v ); ! ok {
212
+ return nil , errno .ERR_CONFIGURE_VALUE_REQUIRES_BOOL .
213
+ F ("%s: %v" , key , value )
214
+ } else {
215
+ return v , nil
216
+ }
217
+
218
+ case REQUIRE_STRING_SLICE :
219
+ return convertSlice [string ](key , value )
220
+
221
+ default :
222
+ // do nothing
223
+ }
224
+
225
+ return value , nil
226
+ }
0 commit comments