-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwireframe_cliDef.go
185 lines (156 loc) · 5.85 KB
/
wireframe_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
////////////////////////////////////////////////////////////////////////////
// Program: wireframe
// Purpose: wire framing
// Authors: Myself <[email protected]> (c) 2017-2023, All rights reserved
////////////////////////////////////////////////////////////////////////////
package main
import (
// "fmt"
// "os"
"github.com/mkideal/cli"
// "github.com/mkideal/cli/clis"
clix "github.com/mkideal/cli/ext"
)
////////////////////////////////////////////////////////////////////////////
// Constant and data type/structure definitions
//==========================================================================
// wireframe
type rootT struct {
cli.Helper
Self *rootT `cli:"c,config" usage:"config file\n" json:"-" parser:"jsoncfg" dft:"wireframe_cfg.json"`
Host string `cli:"H,host" usage:"host addr" dft:"$HOST"`
Port int `cli:"p,port" usage:"listening port\n"`
Demo string `cli:"long" usage:"Now can use the \\n to arrange parameters in groups\n\t\t\tJust like what is showing here, even with extreme long usage text that can spread across multiple lines\n" dft:"$Demo"`
Daemonize bool `cli:"D,daemonize" usage:"daemonize the service"`
Verbose cli.Counter `cli:"v,verbose" usage:"Verbose mode (Multiple -v options increase the verbosity)\n"`
}
var root = &cli.Command{
Name: "wireframe",
Desc: "wire framing\nVersion " + version + " built on " + date +
"\nCopyright (C) 2017-2023, Myself <[email protected]>",
Text: "Tool to showcase wire-framing command line app fast prototype",
Global: true,
Argv: func() interface{} { t := new(rootT); t.Self = t; return t },
Fn: Wireframe,
NumArg: cli.AtLeast(1),
}
// Template for main starts here
////////////////////////////////////////////////////////////////////////////
// Constant and data type/structure definitions
// The OptsT type defines all the configurable options from cli.
// type OptsT struct {
// Self *rootT
// Host string
// Port int
// Demo string
// Daemonize bool
// Verbose cli.Counter
// Verbose int
// }
////////////////////////////////////////////////////////////////////////////
// Global variables definitions
// var (
// progname = "wireframe"
// version = "0.1.0"
// date = "2023-01-22"
// rootArgv *rootT
// // Opts store all the configurable options
// Opts OptsT
// )
////////////////////////////////////////////////////////////////////////////
// Function definitions
// Function main
// func main() {
// cli.SetUsageStyle(cli.DenseNormalStyle)
// if err := cli.Root(root,
// cli.Tree(putDef),
// cli.Tree(getDef)).Run(os.Args[1:]); err != nil {
// fmt.Fprintln(os.Stderr, err)
// os.Exit(1)
// }
// fmt.Println("")
// }
// Template for main dispatcher starts here
//==========================================================================
// Dumb root handler
// Wireframe - main dispatcher dumb handler
// func Wireframe(ctx *cli.Context) error {
// ctx.JSON(ctx.RootArgv())
// ctx.JSON(ctx.Argv())
// fmt.Println()
// return nil
// }
// Template for CLI handling starts here
////////////////////////////////////////////////////////////////////////////
// put
// func putCLI(ctx *cli.Context) error {
// rootArgv = ctx.RootArgv().(*rootT)
// argv := ctx.Argv().(*putT)
// clis.Setup(fmt.Sprintf("%s::%s", progname, ctx.Path()), rootArgv.Verbose.Value())
// clis.Verbose(2, "<%s> -\n %+v\n %+v\n %v\n", ctx.Path(), rootArgv, argv, ctx.Args())
// Opts.Self, Opts.Host, Opts.Port, Opts.Demo, Opts.Daemonize, Opts.Verbose, Opts.Verbose =
// rootArgv.Self, rootArgv.Host, rootArgv.Port, rootArgv.Demo, rootArgv.Daemonize, rootArgv.Verbose, rootArgv.Verbose.Value()
// // argv.Filei,
// //return nil
// return DoPut()
// }
//
// DoPut implements the business logic of command `put`
// func DoPut() error {
// fmt.Fprintf(os.Stderr, "Upload into service\n")
// // fmt.Fprintf(os.Stderr, "Copyright (C) 2017-2023, Myself <[email protected]>\n\n")
// // err := ...
// // clis.WarnOn("Doing Put", err)
// // or,
// // clis.AbortOn("Doing Put", err)
// return nil
// }
type putT struct {
Filei *clix.Reader `cli:"*i,input" usage:"The file to upload from (mandatory)"`
}
var putDef = &cli.Command{
Name: "put",
Desc: "Upload into service",
Text: "Usage:\n wireframe put -i /tmp/f",
Aliases: []string{"up", "upload"},
Argv: func() interface{} { return new(putT) },
Fn: putCLI,
NumOption: cli.AtLeast(1),
}
////////////////////////////////////////////////////////////////////////////
// get
// func getCLI(ctx *cli.Context) error {
// rootArgv = ctx.RootArgv().(*rootT)
// argv := ctx.Argv().(*getT)
// clis.Setup(fmt.Sprintf("%s::%s", progname, ctx.Path()), rootArgv.Verbose.Value())
// clis.Verbose(2, "<%s> -\n %+v\n %+v\n %v\n", ctx.Path(), rootArgv, argv, ctx.Args())
// Opts.Self, Opts.Host, Opts.Port, Opts.Demo, Opts.Daemonize, Opts.Verbose, Opts.Verbose =
// rootArgv.Self, rootArgv.Host, rootArgv.Port, rootArgv.Demo, rootArgv.Daemonize, rootArgv.Verbose, rootArgv.Verbose.Value()
// // argv.Filei, argv.Fileo,
// //return nil
// return DoGet()
// }
//
// DoGet implements the business logic of command `get`
// func DoGet() error {
// fmt.Fprintf(os.Stderr, "Get from the service\n")
// // fmt.Fprintf(os.Stderr, "Copyright (C) 2017-2023, Myself <[email protected]>\n\n")
// // err := ...
// // clis.WarnOn("Doing Get", err)
// // or,
// // clis.AbortOn("Doing Get", err)
// return nil
// }
type getT struct {
Filei *clix.Reader `cli:"*i,input" usage:"The file to upload from (mandatory)"`
Fileo *clix.Writer `cli:"o,output" usage:"The output file (default: some file)"`
}
var getDef = &cli.Command{
Name: "get",
Desc: "Get from the service",
Text: "Usage:\n wireframe get -o /tmp/f mandatory some more args",
Argv: func() interface{} { return new(getT) },
Fn: getCLI,
NumArg: cli.AtLeast(1),
CanSubRoute: true,
}