@@ -51,7 +51,7 @@ class LiteApp
51
51
/**
52
52
* @param bool $exit
53
53
*/
54
- public function dispatch ($ exit = true )
54
+ public function run ($ exit = true )
55
55
{
56
56
$ this ->parseCliArgv ();
57
57
@@ -60,6 +60,14 @@ public function dispatch($exit = true)
60
60
unset($ this ->args [0 ]);
61
61
}
62
62
63
+ $ this ->dispatch ($ exit );
64
+ }
65
+
66
+ /**
67
+ * @param bool $exit
68
+ */
69
+ public function dispatch ($ exit = true )
70
+ {
63
71
if (!$ command = $ this ->command ) {
64
72
$ this ->showCommands ();
65
73
}
@@ -73,22 +81,22 @@ public function dispatch($exit = true)
73
81
$ this ->showCommands ("The command {$ command } not exists! " );
74
82
}
75
83
} catch (\Throwable $ e ) {
76
- $ text = sprintf (
77
- "Exception(%d): %s \nFile: %s(Line %d) \nTrace: \n%s \n" ,
78
- $ e ->getCode (),
79
- $ e ->getMessage (),
80
- $ e ->getFile (),
81
- $ e ->getLine (),
82
- $ e ->getTraceAsString ()
83
- );
84
- exit ($ text );
84
+ $ status = $ this ->handleException ($ e );
85
85
}
86
86
87
87
if ($ exit ) {
88
- exit (( int ) $ status );
88
+ $ this -> stop ( $ status );
89
89
}
90
90
}
91
91
92
+ /**
93
+ * @param int $code
94
+ */
95
+ public function stop ($ code = 0 )
96
+ {
97
+ exit ((int )$ code );
98
+ }
99
+
92
100
/**
93
101
* @param $command
94
102
* @param $handler
@@ -120,6 +128,26 @@ public function runHandler($command, $handler)
120
128
throw new \InvalidArgumentException ("Invalid handler of the command: $ command " );
121
129
}
122
130
131
+ /**
132
+ * @param \Throwable $e
133
+ * @return int
134
+ */
135
+ protected function handleException (\Throwable $ e )
136
+ {
137
+ $ code = $ e ->getCode () !== 0 ? $ e ->getCode () : 133 ;
138
+
139
+ printf (
140
+ "Exception(%d): %s \nFile: %s(Line %d) \nTrace: \n%s \n" ,
141
+ $ code ,
142
+ $ e ->getMessage (),
143
+ $ e ->getFile (),
144
+ $ e ->getLine (),
145
+ $ e ->getTraceAsString ()
146
+ );
147
+
148
+ return $ code ;
149
+ }
150
+
123
151
/**
124
152
* parseCliArgv
125
153
*/
@@ -158,18 +186,40 @@ public function parseCliArgv()
158
186
/**
159
187
* @param string $command
160
188
* @param string|\Closure $handler
161
- * @param string $desc
189
+ * @param string $description
162
190
*/
163
- public function addCommand ($ command , $ handler , $ desc = '' )
191
+ public function addCommand ($ command , $ handler , $ description = '' )
164
192
{
165
193
if (!$ command || !$ handler ) {
166
194
throw new \InvalidArgumentException ('Invalid arguments ' );
167
195
}
168
196
169
197
$ this ->commands [$ command ] = $ handler ;
170
- $ this ->messages [$ command ] = trim ($ desc );
198
+ $ this ->messages [$ command ] = trim ($ description );
199
+ }
200
+
201
+ /**
202
+ * @param array $commands
203
+ */
204
+ public function commands (array $ commands )
205
+ {
206
+ foreach ($ commands as $ command => $ handler ) {
207
+ $ des = '' ;
208
+
209
+ if (is_array ($ handler )) {
210
+ $ conf = array_values ($ handler );
211
+ $ handler = $ conf [0 ];
212
+ $ des = $ conf [1 ] ?? '' ;
213
+ }
214
+
215
+ $ this ->addCommand ($ command , $ handler , $ des );
216
+ }
171
217
}
172
218
219
+ ///////////////////////////////////////////////////////////////////////////////////
220
+ /// helper methods
221
+ ///////////////////////////////////////////////////////////////////////////////////
222
+
173
223
/**
174
224
* @param string $err
175
225
*/
@@ -179,10 +229,11 @@ public function showCommands($err = '')
179
229
echo "ERROR: $ err \n\n" ;
180
230
}
181
231
182
- $ help = "Available Commands: \n" ;
232
+ $ commandWidth = 12 ;
233
+ $ help = "Welcome to the Lite Console Application. \n\nAvailable Commands: \n" ;
183
234
184
235
foreach ($ this ->messages as $ command => $ desc ) {
185
- $ command = str_pad ($ command , 18 , ' ' );
236
+ $ command = str_pad ($ command , $ commandWidth , ' ' );
186
237
$ desc = $ desc ?: 'No description for the command ' ;
187
238
$ help .= " $ command $ desc \n" ;
188
239
}
@@ -191,11 +242,30 @@ public function showCommands($err = '')
191
242
exit (0 );
192
243
}
193
244
245
+ /**
246
+ * @param string $name
247
+ * @param mixed $default
248
+ * @return mixed|null
249
+ */
250
+ public function getArg ($ name , $ default = null )
251
+ {
252
+ return $ this ->args [$ name ] ?? $ default ;
253
+ }
254
+
255
+ /**
256
+ * @param string $name
257
+ * @param mixed $default
258
+ * @return mixed|null
259
+ */
260
+ public function getOpt ($ name , $ default = null )
261
+ {
262
+ return $ this ->opts [$ name ] ?? $ default ;
263
+ }
264
+
194
265
///////////////////////////////////////////////////////////////////////////////////
195
- /// helper methods
266
+ /// getter/setter methods
196
267
///////////////////////////////////////////////////////////////////////////////////
197
268
198
-
199
269
/**
200
270
* @return array
201
271
*/
0 commit comments