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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
|
/*
* Copyright (C) 2010 Vyatta, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* 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 <http://www.gnu.org/licenses/>.
*/
#include <cstdio>
#include <cstring>
#include <cerrno>
#include <vector>
#include <string>
#include <libgen.h>
#include <sys/mount.h>
#include <cli_cstore.h>
#include <cstore/unionfs/cstore-unionfs.hpp>
static void
print_vec(const vector<string>& vec, const char *sep, const char *quote)
{
for (unsigned int i = 0; i < vec.size(); i++) {
printf("%s%s%s%s", ((i > 0) ? sep : ""), quote, vec[i].c_str(), quote);
}
}
typedef void (*OpFuncT)(const vector<string>& args);
typedef struct {
const char *op_name;
const int op_exact_args;
const char *op_exact_error;
const int op_min_args;
const char *op_min_error;
OpFuncT op_func;
} OpT;
static void
getSessionEnv(const vector<string>& args)
{
string env;
UnionfsCstore cstore(args[0], env);
printf("%s", env.c_str());
}
static void
getEditEnv(const vector<string>& args)
{
UnionfsCstore cstore(true);
string env;
if (!cstore.getEditEnv(args, env)) {
exit(-1);
}
printf("%s", env.c_str());
}
static void
getEditUpEnv(const vector<string>& args)
{
UnionfsCstore cstore(true);
string env;
if (!cstore.getEditUpEnv(env)) {
exit(-1);
}
printf("%s", env.c_str());
}
static void
getEditResetEnv(const vector<string>& args)
{
UnionfsCstore cstore(true);
string env;
if (!cstore.getEditResetEnv(env)) {
exit(-1);
}
printf("%s", env.c_str());
}
static void
editLevelAtRoot(const vector<string>& args)
{
UnionfsCstore cstore(true);
exit(cstore.editLevelAtRoot() ? 0 : 1);
}
static void
getCompletionEnv(const vector<string>& args)
{
UnionfsCstore cstore(true);
string env;
if (!cstore.getCompletionEnv(args, env)) {
exit(-1);
}
printf("%s", env.c_str());
}
static void
getEditLevelStr(const vector<string>& args)
{
UnionfsCstore cstore(true);
vector<string> lvec;
cstore.getEditLevel(lvec);
print_vec(lvec, " ", "");
}
static void
markSessionUnsaved(const vector<string>& args)
{
UnionfsCstore cstore(true);
if (!cstore.markSessionUnsaved()) {
exit(-1);
}
}
static void
unmarkSessionUnsaved(const vector<string>& args)
{
UnionfsCstore cstore(true);
if (!cstore.unmarkSessionUnsaved()) {
exit(-1);
}
}
static void
sessionUnsaved(const vector<string>& args)
{
UnionfsCstore cstore(true);
if (!cstore.sessionUnsaved()) {
exit(-1);
}
}
static void
sessionChanged(const vector<string>& args)
{
UnionfsCstore cstore(true);
if (!cstore.sessionChanged()) {
exit(-1);
}
}
static void
teardownSession(const vector<string>& args)
{
UnionfsCstore cstore(true);
if (!cstore.teardownSession()) {
exit(-1);
}
}
static void
setupSession(const vector<string>& args)
{
UnionfsCstore cstore(true);
if (!cstore.setupSession()) {
exit(-1);
}
}
static void
inSession(const vector<string>& args)
{
UnionfsCstore cstore(true);
if (!cstore.inSession()) {
exit(-1);
}
}
static void
exists(const vector<string>& args)
{
UnionfsCstore cstore(true);
exit(cstore.cfgPathExists(args, false) ? 0 : 1);
}
static void
existsActive(const vector<string>& args)
{
UnionfsCstore cstore(true);
exit(cstore.cfgPathExists(args, true) ? 0 : 1);
}
static void
listNodes(const vector<string>& args)
{
UnionfsCstore cstore(true);
vector<string> cnodes;
cstore.cfgPathGetChildNodes(args, cnodes, false);
print_vec(cnodes, " ", "'");
}
static void
listActiveNodes(const vector<string>& args)
{
UnionfsCstore cstore(true);
vector<string> cnodes;
cstore.cfgPathGetChildNodes(args, cnodes, true);
print_vec(cnodes, " ", "'");
}
static void
returnValue(const vector<string>& args)
{
UnionfsCstore cstore(true);
string val;
if (!cstore.cfgPathGetValue(args, val, false)) {
exit(1);
}
printf("%s", val.c_str());
}
static void
returnActiveValue(const vector<string>& args)
{
UnionfsCstore cstore(true);
string val;
if (!cstore.cfgPathGetValue(args, val, true)) {
exit(1);
}
printf("%s", val.c_str());
}
static void
returnValues(const vector<string>& args)
{
UnionfsCstore cstore(true);
vector<string> vvec;
if (!cstore.cfgPathGetValues(args, vvec, false)) {
exit(1);
}
print_vec(vvec, " ", "'");
}
static void
returnActiveValues(const vector<string>& args)
{
UnionfsCstore cstore(true);
vector<string> vvec;
if (!cstore.cfgPathGetValues(args, vvec, true)) {
exit(1);
}
print_vec(vvec, " ", "'");
}
#define OP(name, exact, exact_err, min, min_err) \
{ #name, exact, exact_err, min, min_err, &name }
static int op_idx = -1;
static OpT ops[] = {
OP(getSessionEnv, 1, "Must specify session ID", -1, NULL),
OP(getEditEnv, -1, NULL, 1, "Must specify config path"),
OP(getEditUpEnv, 0, "No argument expected", -1, NULL),
OP(getEditResetEnv, 0, "No argument expected", -1, NULL),
OP(editLevelAtRoot, 0, "No argument expected", -1, NULL),
OP(getCompletionEnv, -1, NULL,
2, "Must specify command and at least one component"),
OP(getEditLevelStr, 0, "No argument expected", -1, NULL),
OP(markSessionUnsaved, 0, "No argument expected", -1, NULL),
OP(unmarkSessionUnsaved, 0, "No argument expected", -1, NULL),
OP(sessionUnsaved, 0, "No argument expected", -1, NULL),
OP(sessionChanged, 0, "No argument expected", -1, NULL),
OP(teardownSession, 0, "No argument expected", -1, NULL),
OP(setupSession, 0, "No argument expected", -1, NULL),
OP(inSession, 0, "No argument expected", -1, NULL),
OP(exists, -1, NULL, 1, "Must specify config path"),
OP(existsActive, -1, NULL, 1, "Must specify config path"),
OP(listNodes, -1, NULL, -1, NULL),
OP(listActiveNodes, -1, NULL, -1, NULL),
OP(returnValue, -1, NULL, 1, "Must specify config path"),
OP(returnActiveValue, -1, NULL, 1, "Must specify config path"),
OP(returnValues, -1, NULL, 1, "Must specify config path"),
OP(returnActiveValues, -1, NULL, 1, "Must specify config path"),
{NULL, -1, NULL, -1, NULL, NULL}
};
#define OP_exact_args ops[op_idx].op_exact_args
#define OP_min_args ops[op_idx].op_min_args
#define OP_exact_error ops[op_idx].op_exact_error
#define OP_min_error ops[op_idx].op_min_error
#define OP_func ops[op_idx].op_func
int
main(int argc, char **argv)
{
int i = 0;
if (argc < 2) {
fprintf(stderr, "Must specify operation\n");
exit(-1);
}
while (ops[i].op_name) {
if (strcmp(argv[1], ops[i].op_name) == 0) {
op_idx = i;
break;
}
++i;
}
if (op_idx == -1) {
fprintf(stderr, "Invalid operation\n");
exit(-1);
}
if (OP_exact_args >= 0 && (argc - 2) != OP_exact_args) {
fprintf(stderr, "%s\n", OP_exact_error);
exit(-1);
}
if (OP_min_args >= 0 && (argc - 2) < OP_min_args) {
fprintf(stderr, "%s\n", OP_min_error);
exit(-1);
}
vector<string> args;
for (int i = 2; i < argc; i++) {
args.push_back(argv[i]);
}
// call the op function
OP_func(args);
exit(0);
}
|