-
Notifications
You must be signed in to change notification settings - Fork 2
/
jsonfiddle_cliDef.go
388 lines (338 loc) · 12 KB
/
jsonfiddle_cliDef.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
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
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
// jsonfiddle - JSON Fiddling
//
// Tool to fiddle with json strings
package main
////////////////////////////////////////////////////////////////////////////
// Program: jsonfiddle
// Purpose: JSON Fiddling
// Authors: Tong Sun (c) 2017-2023, All rights reserved
////////////////////////////////////////////////////////////////////////////
import (
// "fmt"
// "os"
// "github.com/go-easygen/go-flags"
)
// Template for main starts here
//////////////////////////////////////////////////////////////////////////
// Constant and data type/structure definitions
////////////////////////////////////////////////////////////////////////////
// Global variables definitions
// var (
// progname = "jsonfiddle"
// version = "0.1.0"
// date = "2023-01-23"
// // opts store all the configurable options
// opts optsT
// )
//
// var gfParser = flags.NewParser(&opts, flags.Default)
////////////////////////////////////////////////////////////////////////////
// Function definitions
//==========================================================================
// Function main
// func main() {
// opts.Version = showVersion
// opts.Verbflg = func() {
// opts.Verbose++
// }
//
// if _, err := gfParser.Parse(); err != nil {
// fmt.Println()
// gfParser.WriteHelp(os.Stdout)
// os.Exit(1)
// }
// fmt.Println()
// //DoJsonfiddle()
// }
//
// //==========================================================================
// // support functions
//
// func showVersion() {
// fmt.Fprintf(os.Stderr, "jsonfiddle - JSON Fiddling, version %s\n", version)
// fmt.Fprintf(os.Stderr, "Built on %s\n", date)
// fmt.Fprintf(os.Stderr, "Copyright (C) 2017-2023, Tong Sun\n\n")
// fmt.Fprintf(os.Stderr, "Tool to fiddle with json strings\n")
// os.Exit(0)
// }
// Template for main ends here
// DoJsonfiddle implements the business logic of command `jsonfiddle`
// func DoJsonfiddle() error {
// return nil
// }
// Template for type define starts here
// The optsT type defines all the configurable options from cli.
type optsT struct {
Compact bool `short:"c" long:"compact" description:"Compact JSON data, remove all whitespaces"`
Prefix string `long:"prefix" description:"prefix for json string output"`
Indent string `short:"d" long:"indent" description:"indent for json string output" default:" "`
Protect bool `short:"p" long:"protect" description:"protect {{TEMPLATE}} in JSON data"`
Verbflg func() `short:"v" long:"verbose" description:"Verbose mode (Multiple -v options increase the verbosity)"`
Verbose int
Version func() `short:"V" long:"version" description:"Show program version and exit"`
}
// Template for type define ends here
// Template for "esc" CLI handling starts here
////////////////////////////////////////////////////////////////////////////
// Program: jsonfiddle
// Purpose: JSON Fiddling
// Authors: Tong Sun (c) 2017-2023, All rights reserved
////////////////////////////////////////////////////////////////////////////
// package main
// import (
// "fmt"
// "os"
//
// "github.com/go-easygen/go-flags/clis"
// )
// *** Sub-command: esc ***
////////////////////////////////////////////////////////////////////////////
// Constant and data type/structure definitions
// The EscCommand type defines all the configurable options from cli.
// type EscCommand struct {
// Filei string `short:"i" long:"input" description:"the source to get json string from (or \"-\" for stdin) (mandatory)" required:"true"`
// Fileo string `short:"o" long:"output" description:"the output, default to stdout" default:"-"`
// }
//
// var escCommand EscCommand
//
// ////////////////////////////////////////////////////////////////////////////
// // Function definitions
//
// func init() {
// gfParser.AddCommand("esc",
// "Escape json string",
// "",
// &escCommand)
// }
//
// func (x *EscCommand) Execute(args []string) error {
// fmt.Fprintf(os.Stderr, "Escape json string\n")
// // fmt.Fprintf(os.Stderr, "Copyright (C) 2017-2023, Tong Sun\n\n")
// clis.Setup("jsonfiddle::esc", opts.Verbose)
// clis.Verbose(1, "Doing Esc, with %+v, %+v", opts, args)
// // fmt.Println(x.Filei, x.Fileo)
// return x.Exec(args)
// }
//
// // Exec implements the business logic of command `esc`
// func (x *EscCommand) Exec(args []string) error {
// // err := ...
// // clis.WarnOn("esc::Exec", err)
// // or,
// // clis.AbortOn("esc::Exec", err)
// return nil
// }
// Template for "esc" CLI handling ends here
// Template for "fmt" CLI handling starts here
////////////////////////////////////////////////////////////////////////////
// Program: jsonfiddle
// Purpose: JSON Fiddling
// Authors: Tong Sun (c) 2017-2023, All rights reserved
////////////////////////////////////////////////////////////////////////////
// package main
// import (
// "fmt"
// "os"
//
// "github.com/go-easygen/go-flags/clis"
// )
// *** Sub-command: fmt ***
////////////////////////////////////////////////////////////////////////////
// Constant and data type/structure definitions
// The FmtCommand type defines all the configurable options from cli.
// type FmtCommand struct {
// Filei string `short:"i" long:"input" description:"the source to get json string from (mandatory)" required:"true"`
// Fileo string `short:"o" long:"output" description:"the output, default to stdout" default:"-"`
// }
//
// var fmtCommand FmtCommand
//
// ////////////////////////////////////////////////////////////////////////////
// // Function definitions
//
// func init() {
// gfParser.AddCommand("fmt",
// "Format json string",
// "",
// &fmtCommand)
// }
//
// func (x *FmtCommand) Execute(args []string) error {
// fmt.Fprintf(os.Stderr, "Format json string\n")
// // fmt.Fprintf(os.Stderr, "Copyright (C) 2017-2023, Tong Sun\n\n")
// clis.Setup("jsonfiddle::fmt", opts.Verbose)
// clis.Verbose(1, "Doing Fmt, with %+v, %+v", opts, args)
// // fmt.Println(x.Filei, x.Fileo)
// return x.Exec(args)
// }
//
// // Exec implements the business logic of command `fmt`
// func (x *FmtCommand) Exec(args []string) error {
// // err := ...
// // clis.WarnOn("fmt::Exec", err)
// // or,
// // clis.AbortOn("fmt::Exec", err)
// return nil
// }
// Template for "fmt" CLI handling ends here
// Template for "sort" CLI handling starts here
////////////////////////////////////////////////////////////////////////////
// Program: jsonfiddle
// Purpose: JSON Fiddling
// Authors: Tong Sun (c) 2017-2023, All rights reserved
////////////////////////////////////////////////////////////////////////////
// package main
// import (
// "fmt"
// "os"
//
// "github.com/go-easygen/go-flags/clis"
// )
// *** Sub-command: sort ***
////////////////////////////////////////////////////////////////////////////
// Constant and data type/structure definitions
// The SortCommand type defines all the configurable options from cli.
// type SortCommand struct {
// Filei string `short:"i" long:"input" description:"the source to get json string from (mandatory)" required:"true"`
// Fileo string `short:"o" long:"output" description:"the output, default to stdout" default:"-"`
// }
//
// var sortCommand SortCommand
//
// ////////////////////////////////////////////////////////////////////////////
// // Function definitions
//
// func init() {
// gfParser.AddCommand("sort",
// "Sort json fields recursively",
// "",
// &sortCommand)
// }
//
// func (x *SortCommand) Execute(args []string) error {
// fmt.Fprintf(os.Stderr, "Sort json fields recursively\n")
// // fmt.Fprintf(os.Stderr, "Copyright (C) 2017-2023, Tong Sun\n\n")
// clis.Setup("jsonfiddle::sort", opts.Verbose)
// clis.Verbose(1, "Doing Sort, with %+v, %+v", opts, args)
// // fmt.Println(x.Filei, x.Fileo)
// return x.Exec(args)
// }
//
// // Exec implements the business logic of command `sort`
// func (x *SortCommand) Exec(args []string) error {
// // err := ...
// // clis.WarnOn("sort::Exec", err)
// // or,
// // clis.AbortOn("sort::Exec", err)
// return nil
// }
// Template for "sort" CLI handling ends here
// Template for "j2s" CLI handling starts here
////////////////////////////////////////////////////////////////////////////
// Program: jsonfiddle
// Purpose: JSON Fiddling
// Authors: Tong Sun (c) 2017-2023, All rights reserved
////////////////////////////////////////////////////////////////////////////
// package main
// import (
// "fmt"
// "os"
//
// "github.com/go-easygen/go-flags/clis"
// )
// *** Sub-command: j2s ***
////////////////////////////////////////////////////////////////////////////
// Constant and data type/structure definitions
// The J2sCommand type defines all the configurable options from cli.
// type J2sCommand struct {
// FmtType string `short:"f" long:"fmt" description:"the structural format of the input data (json/yaml)" default:"json"`
// Filei string `short:"i" long:"input" description:"the source of the input JSON (mandatory)" required:"true"`
// Fileo string `short:"o" long:"output" description:"the output, default to stdout" default:"-"`
// Name string `long:"name" description:"the name of the root struct (default: as input file name)"`
// Pkg string `long:"pkg" description:"the name of the package for the generated code" default:"main"`
// SubStruct bool `long:"subStruct" description:"create types for sub-structs"`
// }
//
// var j2sCommand J2sCommand
//
// ////////////////////////////////////////////////////////////////////////////
// // Function definitions
//
// func init() {
// gfParser.AddCommand("j2s",
// "JSON to struct",
// "JSON convert to Go struct",
// &j2sCommand)
// }
//
// func (x *J2sCommand) Execute(args []string) error {
// fmt.Fprintf(os.Stderr, "JSON to struct\n")
// // fmt.Fprintf(os.Stderr, "Copyright (C) 2017-2023, Tong Sun\n\n")
// clis.Setup("jsonfiddle::j2s", opts.Verbose)
// clis.Verbose(1, "Doing J2s, with %+v, %+v", opts, args)
// // fmt.Println(x.FmtType, x.Filei, x.Fileo, x.Name, x.Pkg, x.SubStruct)
// return x.Exec(args)
// }
//
// // Exec implements the business logic of command `j2s`
// func (x *J2sCommand) Exec(args []string) error {
// // err := ...
// // clis.WarnOn("j2s::Exec", err)
// // or,
// // clis.AbortOn("j2s::Exec", err)
// return nil
// }
// Template for "j2s" CLI handling ends here
// Template for "x2j" CLI handling starts here
////////////////////////////////////////////////////////////////////////////
// Program: jsonfiddle
// Purpose: JSON Fiddling
// Authors: Tong Sun (c) 2017-2023, All rights reserved
////////////////////////////////////////////////////////////////////////////
// package main
// import (
// "fmt"
// "os"
//
// "github.com/go-easygen/go-flags/clis"
// )
// *** Sub-command: x2j ***
////////////////////////////////////////////////////////////////////////////
// Constant and data type/structure definitions
// The X2jCommand type defines all the configurable options from cli.
// type X2jCommand struct {
// Filei string `short:"i" long:"input" description:"the source of the input JSON (mandatory)" required:"true"`
// Fileo string `short:"o" long:"output" description:"the output, default to stdout" default:"-"`
// }
//
// var x2jCommand X2jCommand
//
// ////////////////////////////////////////////////////////////////////////////
// // Function definitions
//
// func init() {
// gfParser.AddCommand("x2j",
// "XML to JSON",
// "",
// &x2jCommand)
// }
//
// func (x *X2jCommand) Execute(args []string) error {
// fmt.Fprintf(os.Stderr, "XML to JSON\n")
// // fmt.Fprintf(os.Stderr, "Copyright (C) 2017-2023, Tong Sun\n\n")
// clis.Setup("jsonfiddle::x2j", opts.Verbose)
// clis.Verbose(1, "Doing X2j, with %+v, %+v", opts, args)
// // fmt.Println(x.Filei, x.Fileo)
// return x.Exec(args)
// }
//
// // Exec implements the business logic of command `x2j`
// func (x *X2jCommand) Exec(args []string) error {
// // err := ...
// // clis.WarnOn("x2j::Exec", err)
// // or,
// // clis.AbortOn("x2j::Exec", err)
// return nil
// }
// Template for "x2j" CLI handling ends here