-
Notifications
You must be signed in to change notification settings - Fork 37
/
cligen_handle.c
1409 lines (1249 loc) · 33.3 KB
/
cligen_handle.c
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
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
***** BEGIN LICENSE BLOCK *****
Copyright (C) 2001-2022 Olof Hagsand
This file is part of CLIgen.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Alternatively, the contents of this file may be used under the terms of
the GNU General Public License Version 2 or later (the "GPL"),
in which case the provisions of the GPL are applicable instead
of those above. If you wish to allow use of your version of this file only
under the terms of the GPL, and not to allow others to
use your version of this file under the terms of Apache License version 2, indicate
your decision by deleting the provisions above and replace them with the
notice and other provisions required by the GPL. If you do not delete
the provisions above, a recipient may use your version of this file under
the terms of any one of the Apache License version 2 or the GPL.
***** END LICENSE BLOCK *****
*/
#include "cligen_config.h"
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <stdarg.h>
#include <inttypes.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <assert.h>
#include <ctype.h>
#define __USE_GNU /* strverscmp */
#include <string.h>
#include <errno.h>
#include <termios.h>
#include <signal.h>
#include <sys/ioctl.h>
#include "cligen_buf.h"
#include "cligen_cv.h"
#include "cligen_cvec.h"
#include "cligen_parsetree.h"
#include "cligen_pt_head.h"
#include "cligen_callback.h"
#include "cligen_object.h"
#include "cligen_io.h"
#include "cligen_handle.h"
#include "cligen_result.h"
#include "cligen_read.h"
#include "cligen_parse.h"
#include "cligen_print.h"
#include "cligen_history.h"
#include "cligen_getline.h"
#include "cligen_handle_internal.h"
#include "cligen_history.h"
#include "cligen_history_internal.h"
/*
* Constants
*/
#define TREENAME_KEYWORD_DEFAULT "treename"
/* forward */
static int terminal_rows_set1(int rows);
/*
* Variables
*/
/* Number of terminal rows as used by cligen_output pageing routine
* @see cligen_output
*/
static int _terminalrows = 0;
/* Enable or disable output paging
* @see cligen_output
*/
static int _paging = 1;
/* Truncate help string on right margin mode
* This only applies if you have really long help strings, such as when generating them from a
* spec.
* @see print_help_line
*/
static int _helpstr_truncate = 0;
/* Limit number of lines to show, 0 means unlimited
* This only applies if you have multi-line help strings, such as when generating them from a
* spec.
* @see print_help_line
*/
static int _helpstr_lines = 0;
/*! Get window size and set terminal row size
*
* @param[in] h CLIgen handle
* The only real effect this has is to set the getline width parameter which effects scrolling
* man ioctl_tty(2)
Get and set window size
Window sizes are kept in the kernel, but not used by the kernel (except in the
case of virtual consoles, where the kernel will update the window size when the
size of the virtual console changes, for example, by loading a new font).
The following constants and structure are defined in <sys/ioctl.h>.
TIOCGWINSZ struct winsize *argp
Get window size.
*/
static int
cligen_gwinsz(cligen_handle h)
{
struct winsize ws;
if (ioctl(0, TIOCGWINSZ, &ws) == -1){
perror("ioctl(STDIN_FILENO,TIOCGWINSZ)");
return -1;
}
terminal_rows_set1(ws.ws_row); /* note special treatment of 0 in sub function */
cligen_terminal_width_set(h, ws.ws_col);
return 0;
}
void
sigwinch_handler(int arg)
{
cligen_gwinsz(0);
}
/*! This is the first call the CLIgen API and returns a handle.
*
* Allocate CLIgen handle to be used in API calls
* Initialize prompt, tabs, query terminal setting for width etc.
* @retval h CLIgen handle
*/
cligen_handle
cligen_init(void)
{
struct cligen_handle *ch;
cligen_handle h = NULL;
struct sigaction sigh;
if ((ch = malloc(sizeof(*ch))) == NULL){
fprintf(stderr, "%s: malloc: %s\n", __FUNCTION__, strerror(errno));
goto done;
}
memset(ch, 0, sizeof(*ch));
ch->ch_magic = CLIGEN_MAGIC;
ch->ch_tabmode = 0x0; /* see CLIGEN_TABMODE_* */
ch->ch_delimiter = ' ';
h = (cligen_handle)ch;
cligen_prompt_set(h, CLIGEN_PROMPT_DEFAULT);
/* Only if stdin and stdout refers to a terminal make win size check */
if (isatty(0) && isatty(1)){
if (cligen_gwinsz(h) < 0){
free(ch);
return NULL;
}
cligen_interrupt_hook(h, cligen_gwinsz);
memset(&sigh, 0, sizeof(sigh));
sigh.sa_handler = sigwinch_handler;
if (sigaction(SIGWINCH, &sigh, NULL) < 0){
perror("sigaction");
free(ch);
return NULL;
}
}
else
terminal_rows_set1(0);
cliread_init(h);
cligen_buf_init(h);
/* getline cant function without some history */
(void)cligen_hist_init(h, CLIGEN_HISTSIZE_DEFAULT);
done:
return h;
}
/*! This is the last call to the CLIgen API an application should make
*
* @param[in] h CLIgen handle
*/
int
cligen_exit(cligen_handle h)
{
struct cligen_handle *ch = handle(h);
pt_head *ph;
hist_exit(h);
cligen_buf_cleanup(h);
if (ch->ch_prompt)
free(ch->ch_prompt);
if (ch->ch_nomatch)
free(ch->ch_nomatch);
if (ch->ch_treename_keyword)
free(ch->ch_treename_keyword);
if (ch->ch_fn_str)
free(ch->ch_fn_str);
while ((ph = ch->ch_pt_head) != NULL){
ch->ch_pt_head = ph->ph_next;
cligen_ph_free(ph);
}
free(ch);
return 0;
}
/*! Check struct magic number for sanity checks
*
* @param[in] h CLIgen handle
* return 0 if OK, -1 if fail.
*/
int
cligen_check(cligen_handle h)
{
/* Dont use handle macro to avoid recursion */
struct cligen_handle *ch = (struct cligen_handle *)(h);
return ch->ch_magic == CLIGEN_MAGIC ? 0 : -1;
}
/*! Return CLIgen exiting status
*
* @param[in] h CLIgen handle
*/
int
cligen_exiting(cligen_handle h)
{
struct cligen_handle *ch = handle(h);
return ch->ch_exiting;
}
/*! Set CLIgen exiting status
*
* @param[in] h CLIgen handle
*/
int
cligen_exiting_set(cligen_handle h,
int status)
{
struct cligen_handle *ch = handle(h);
ch->ch_exiting = status;
return 0;
}
/*! Get comment character.
*
* @param[in] h CLIgen handle
*/
char
cligen_comment(cligen_handle h)
{
struct cligen_handle *ch = handle(h);
return ch->ch_comment;
}
/*! Set comment character.
*
* @param[in] h CLIgen handle
*/
int
cligen_comment_set(cligen_handle h,
char c)
{
struct cligen_handle *ch = handle(h);
ch->ch_comment = c;
return 0;
}
/*! Get current prompt string
*
* @param[in] h CLIgen handle
*/
char*
cligen_prompt(cligen_handle h)
{
struct cligen_handle *ch = handle(h);
return ch->ch_prompt;
}
/*! Set CLIgen prompt string. See manual for special prompt characters.
*
* @param[in] h CLIgen handle
* @param[in] prompt Prompt string
*/
int
cligen_prompt_set(cligen_handle h,
char *prompt)
{
struct cligen_handle *ch = handle(h);
if (ch->ch_prompt){
if (strcmp(prompt, ch->ch_prompt) == 0)
return 0;
free(ch->ch_prompt);
ch->ch_prompt = NULL;
}
if (prompt){
if ((ch->ch_prompt = strdup(prompt)) == NULL)
return -1;
}
return 0;
}
/*! Get CLIgen parse-tree head holding all parsetrees in the system
*/
pt_head *
cligen_pt_head_get(cligen_handle h)
{
struct cligen_handle *ch = handle(h);
return ch->ch_pt_head;
}
/*! Set CLIgen parse-tree head holding all parsetrees in the system
*/
int
cligen_pt_head_set(cligen_handle h,
pt_head *ph)
{
struct cligen_handle *ch = handle(h);
ch->ch_pt_head = ph;
return 0;
}
/*! Get active parse tree header
*/
pt_head *
cligen_pt_head_active_get(cligen_handle h)
{
struct cligen_handle *ch = handle(h);
return ch->ch_pt_head_active;
}
/*! Set active parse tree header
*/
int
cligen_pt_head_active_set(cligen_handle h,
pt_head *ph)
{
struct cligen_handle *ch = handle(h);
ch->ch_pt_head_active = ph;
return 0;
}
/*! Get name of treename keyword used in parsing
*
* @param[in] h CLIgen handle
* Example in CLIgen file where 'treename' is treename_keyword:
* treename = "foo";
* bar @bar;
* y;
*/
char*
cligen_treename_keyword(cligen_handle h)
{
struct cligen_handle *ch = handle(h);
return ch->ch_treename_keyword?ch->ch_treename_keyword:TREENAME_KEYWORD_DEFAULT;
}
/*! Set currently active parsetree by name.
*
* @param[in] h CLIgen handle
*/
int
cligen_treename_keyword_set(cligen_handle h,
char *treename)
{
struct cligen_handle *ch = handle(h);
if (ch->ch_treename_keyword){
free(ch->ch_treename_keyword);
ch->ch_treename_keyword = NULL;
}
if (treename)
if ((ch->ch_treename_keyword = strdup(treename)) == NULL)
return -1;
return 0;
}
/*! Return CLIgen object that matched in the current callback.
*
* After an evaluation when calling a callback, a node has been matched in the
* current parse-tree. This matching node is returned here.
* @param[in] h CLIgen handle
*/
cg_obj *
cligen_co_match(cligen_handle h)
{
struct cligen_handle *ch = handle(h);
return ch->ch_co_match;
}
/*! Set CLIgen object to use in the current callback.
*
* It can be useful for callbacks to know which cligen-object is matched
* @param[in] h CLIgen handle
*/
int
cligen_co_match_set(cligen_handle h,
cg_obj *co)
{
struct cligen_handle *ch = handle(h);
ch->ch_co_match = co;
return 0;
}
/*! Get callback arguments
*
* @param[in] h CLIgen handle
*/
cvec *
cligen_callback_arguments_get(cligen_handle h)
{
struct cligen_handle *ch = handle(h);
return ch->ch_callback_arguments;
}
/*! Set callback arguments
*
* @param[in] h CLIgen handle
* @param[in] args Callback arguments
*/
int
cligen_callback_arguments_set(cligen_handle h,
cvec *args)
{
struct cligen_handle *ch = handle(h);
ch->ch_callback_arguments = args;
return 0;
}
/*! Get callback function name string
*
* @code
* static int
* my_cb(cligen_handle h, cvec *vars, cg_var *arg)
* {
* printf("cb: %s\n", cligen_fn_str_get(h));
* return 0;
* }
* @endcode
* @param[in] h CLIgen handle
*/
char *
cligen_fn_str_get(cligen_handle h)
{
struct cligen_handle *ch = handle(h);
return ch->ch_fn_str;
}
/*! Set callback function name string
*
* @param[in] h CLIgen handle
* @param[in] fn_str Name of function that was called in this callback
*/
int
cligen_fn_str_set(cligen_handle h,
char *fn_str)
{
struct cligen_handle *ch = handle(h);
if (ch->ch_fn_str){
free(ch->ch_fn_str);
ch->ch_fn_str = NULL;
}
if (fn_str){
if ((ch->ch_fn_str = strdup(fn_str)) == NULL)
return -1;
}
return 0;
}
/*! Get number of displayed terminal rows.
*
* @param[in] h CLIgen handle
*/
int
cligen_terminal_rows(cligen_handle h)
{
// struct cligen_handle *ch = handle(h);
return _terminalrows; /* ch->ch_terminalrows; */
}
/*! Set number of displayed terminal rows, internal function
*
* @param[in] h CLIgen handle
* @param[in] rows Number of lines in a terminal (y-direction)
*/
static int
terminal_rows_set1(int rows)
{
_terminalrows = rows;
return 0;
}
/*! Set number of displayed terminal rows.
*
* @param[in] h CLIgen handle
* @param[in] rows Number of lines in a terminal (y-direction)
*/
int
cligen_terminal_rows_set(cligen_handle h,
int rows)
{
int retval = -1;
struct winsize ws;
/* Sanity checks :
* (1) only set new value if it runs in a tty
* (2) cannot determine window size
*/
if (!isatty(0) || !isatty(1) || !rows){
terminal_rows_set1(0);
goto ok;
}
if (ioctl(0, TIOCGWINSZ, &ws) == -1){
perror("ioctl(STDIN_FILENO,TIOCGWINSZ)");
goto done;
}
if (ws.ws_row !=0 )
goto ok;
terminal_rows_set1(rows);
ok:
retval = 0;
done:
return retval;
}
/*! Get cligen_output paging state
*
* This is related setting terminal_rows to 0 or non-zero, but the latter has a
* dynamic dependence on winch, which this does not
* @param[in] h CLIgen handle (not actually used)
* @retval state 0 or 1
* @see cligen_output
*/
int
cligen_paging_get(cligen_handle h)
{
return _paging;
}
/*! Set cligen_output paging state
*
* @param[in] h CLIgen handle (not actually used)
* @param[in] state 0 or 1
*/
int
cligen_paging_set(cligen_handle h,
int state)
{
_paging = state;
return 0;
}
/*! Get length of lines (number of 'columns' in a line)
*
* @param[in] h CLIgen handle
*/
int
cligen_terminal_width(cligen_handle h)
{
// struct cligen_handle *ch = handle(h);
return gl_getwidth()==0xffff?80:gl_getwidth();
}
/*! Set width of a CLIgen line in characters, ie, the number of 'columns' in a line
*
* @param[in] h CLIgen handle
* @param[in] width Number of characters in a line - x-direction (see notes)
* @note if length = 0, then set it to 65535 to effectively disable all scrolling mechanisms
* @note if length < 21 set it to 21, which is getline's limit.
*/
int
cligen_terminal_width_set(cligen_handle h,
int width)
{
// struct cligen_handle *ch = handle(h);
int retval = -1;
/* if width = 0, then set it to 65535 to effectively disable all scrolling mechanisms
* This is somewhat complex and there may be some missed cornercases:
* - Set very high width to disable horizontal scrolling
* - But return 80 width see cligen_terminal_width
*/
if (width == 0)
width = 0xffff;
/* if width < 21 set it to 21, which is getline's limit. */
else if (width < TERM_MIN_SCREEN_WIDTH)
width = TERM_MIN_SCREEN_WIDTH;
if (gl_setwidth(width) < 0)
goto done; /* shouldnt happen */
retval = 0;
done:
return retval;
}
/*! Get cligen/getline UTF-8 experimental mode
*
* @param[in] h CLIgen handle
* @retval 1 UTF-8 mode enabled
* @retval 0 UTF-8 mode disabled
*/
int
cligen_utf8_get(cligen_handle h)
{
return gl_utf8_get();
}
/*! Set cligen/getline UTF-8 experimental mode
*
* @param[in] h CLIgen handle
* @retval 1 UTF-8 mode enabled
* @retval 0 UTF-8 mode disabled
*/
int
cligen_utf8_set(cligen_handle h,
int mode)
{
return gl_utf8_set(mode);
}
/*! Get line scrolling mode
*
* @param[in] h CLIgen handle
* @retval 1 Line scrolling on
* @retval 0 Line scrolling off
*/
int
cligen_line_scrolling(cligen_handle h)
{
return gl_getscrolling();
}
/*! Set line scrolling mode
*
* @param[in] h CLIgen handle
* @param[in] mode 0: turn line scrolling off, 1: turn on
* @retval old Previous setting
*/
int
cligen_line_scrolling_set(cligen_handle h,
int mode)
{
int prev = gl_getscrolling();
gl_setscrolling(mode);
return prev;
}
/*! Return help string truncate mode (for ?)
*
* Whether to truncate help string on right margin or wrap long help lines.
* This only applies if you have really long help strings, such as when generating them from a
* spec.
* @param[in] h CLIgen handle (dummy, need to be called where h is NULL)
* @retval 1 Truncate help string on right margin (do not wrap long help lines)
* @retval 0 Do not truncate help string on right margin (wrap long help lines)
* @see print_help_line
*/
int
cligen_helpstring_truncate(cligen_handle h)
{
return _helpstr_truncate;
}
/*! Set help string truncate mode (for ?)
*
* Whether to truncate help string on right margin or wrap long help lines.
* This only applies if you have really long help strings, such as when generating them from a
* spec.
* @param[in] h CLIgen handle (dummy, need to be called where h is NULL)
* @param[in] mode 0: Wrap long help strings, 1: Truncate help string
* @retval 0 OK
* @see print_help_line
*/
int
cligen_helpstring_truncate_set(cligen_handle h,
int mode)
{
_helpstr_truncate = mode;
return 0;
}
/*! Return number of help string lines to display (for ?)
*
* This only applies if you have multi-line help strings, such as when generating them from a
* spec.
* @param[in] h CLIgen handle (dummy, need to be called where h is NULL)
* @retval n Number of help string lines to display per command, 0 is unlimted
* @see print_help_line
*/
int
cligen_helpstring_lines(cligen_handle h)
{
return _helpstr_lines;
}
/*! Set help string truncate mode (for ?)
*
* This only applies if you have multi-line help strings, such as when generating them from a
* spec.
* @param[in] h CLIgen handle (dummy, need to be called where h is NULL)
* @retval n Number of help string lines to display per command, 0 means unlimited.
* @see print_help_line
*/
int
cligen_helpstring_lines_set(cligen_handle h,
int lines)
{
_helpstr_lines = lines;
return 0;
}
/*! Get tab-mode.
*
* @param[in] h CLIgen handle
* @retval flags Bitwise OR of CLIGEN_TABMODE_* flags
* @see cligen_tabmode_set for documentation on mode
*/
int
cligen_tabmode(cligen_handle h)
{
struct cligen_handle *ch = handle(h);
return ch->ch_tabmode;
}
/*! Set Cligen tab mode. Combination of CLIGEN_TABMODE_* flags
*
* @param[in] h CLIgen handle
* @param[in] mode Bitwise OR of CLIGEN_TABMODE_* flags
* CLIGEN_TABMODE_COLUMNS:
* 0 is 'short/ios' mode, 1 is long/junos mode.
* Two ways to show commands: show_help_column and show_help_line
* show_help_line
* cli> interface name
* 100GigabyteEthernet6/0/0 TenGigabyteEthernet6/0/0 TenGigabyteEthernet6/0
* TenGigabyteEthernet6/0/0 TenGigabyteEthernet6/0/0 TenGigabyteEthernet6/0
*
* show_help_columns:
* cli> interface name TenGigabyteEthernet6/0/0.
* TenGigabyteEthernet6/0/0 This is one mighty interface
* TenGigabyteEthernet6/0/0 This is one mighty interface
*
* short/ios: ?: show_multi_long
* TAB: show_multi (many columns)
* long/junos: TAB and ?: show_multi_long
*
* CLIGEN_TABMODE_VARS:
* 0: command completion preference,
* 1: same preference for vars
* @example if clispec is:
* a {
* b;
* <c:int32>, cb("a.b");
* }
* Typing "a <TAB>"
* 0: completes to "a b"
* 1: does not complete, shows:
* b
* <c>
*
* CLIGEN_TABMODE_STEPS
* 0: complete 1 level. 1: complete all
* Example: syntax is 'a b;':
* 0: gives completion to 'a ' on first TAB and to 'a b ' on second.
* 1: gives completion to 'a b ' on first TAB.
*/
int
cligen_tabmode_set(cligen_handle h,
int mode)
{
struct cligen_handle *ch = handle(h);
ch->ch_tabmode = mode;
return 0;
}
static int _lexicalorder = 0; /* XXX shouldnt be global */
/*! Get lexical matching order
*
* @param[in] h CLIgen handle
* @retval 0 strcmp
* @retval 1 strverscmp
*/
int
cligen_lexicalorder(cligen_handle h)
{
// struct cligen_handle *ch = handle(h);
// return ch->ch_lexicalorder;
return _lexicalorder;
}
/*! Set lexical matching order.
*
* @param[in] h CLIgen handle
* @param[in] n strcmp (0) or strverscmp (1).
*/
int
cligen_lexicalorder_set(cligen_handle h,
int n)
{
// struct cligen_handle *ch = handle(h);
// ch->ch_lexicalorder = n;
_lexicalorder = n;
return 0;
}
static int _ignorecase = 0; /* XXX shouldnt be global */
/*! Ignore uppercase/lowercase or not
*
* @param[in] h CLIgen handle
*/
int
cligen_ignorecase(cligen_handle h)
{
// struct cligen_handle *ch = handle(h);
// return ch->ch_ignorecase;
return _ignorecase;
}
/*! Ignore uppercase/lowercase or not
*
* @param[in] h CLIgen handle
*/
int
cligen_ignorecase_set(cligen_handle h,
int n)
{
// struct cligen_handle *ch = handle(h);
// ch->ch_ignorecase = n;
_ignorecase = n;
return 0;
}
/*! Debug syntax by printing dynamically on stderr. Get function.
*
* @param[in] h CLIgen handle
*/
int
cligen_logsyntax(cligen_handle h)
{
struct cligen_handle *ch = handle(h);
return ch->ch_logsyntax;
}
/*! Debug syntax by printing dynamically on stderr. Set function.
*
* @param[in] h CLIgen handle
*/
int
cligen_logsyntax_set(cligen_handle h,
int n)
{
struct cligen_handle *ch = handle(h);
ch->ch_logsyntax = n;
return 0;
}
/*! Set CLIgen history callback function
*
* @param[in] h CLIgen handle
* @param[in] fn Register function to call each CLI command
* @param[in] arg Call function with this argument
* @retval 0 OK
*/
int
cligen_hist_fn_set(cligen_handle h,
cligen_hist_fn *fn,
void *arg)
{
struct cligen_handle *ch = handle(h);
ch->ch_hist_fn = fn;
ch->ch_hist_arg = arg;
return 0;
}
/*! Get CLIgen history callback function
*
* @param[in] h CLIgen handle
* @param[out] fn Register function to call each CLI command
* @param[out] arg Call function with this argument
* @retval 0 OK
*/
int
cligen_hist_fn_get(cligen_handle h,
cligen_hist_fn **fn,
void **arg)
{
struct cligen_handle *ch = handle(h);
if (fn)
*fn = ch->ch_hist_fn;
if (arg)
*arg = ch->ch_hist_arg;
return 0;
}
/*! Get app-specific handle for callbacks instead of cligen handle.
*
* An application may choose to use another handle than cligen_handle in callbacks
* and completion functions.
* @param[in] h CLIgen handle
*/
void*
cligen_userhandle(cligen_handle h)
{
struct cligen_handle *ch = handle(h);
return ch->ch_userhandle;
}
/*! Set app-specific handle for callbacks instead of cligen handle
*
* @param[in] h CLIgen handle
*/
int
cligen_userhandle_set(cligen_handle h,
void *userhandle)
{
struct cligen_handle *ch = handle(h);
ch->ch_userhandle = userhandle;
return 0;
}
/*! Get app-specific data associated with cligen handle
*
* @param[in] h CLIgen handle
*/
void*
cligen_userdata(cligen_handle h)
{
struct cligen_handle *ch = handle(h);
return ch->ch_userdata;
}
/*! Set app-specific data to associate with cligen handle.
*
* @param[in] h CLIgen handle
*/
int
cligen_userdata_set(cligen_handle h,
void *userdata)
{
struct cligen_handle *ch = handle(h);
ch->ch_userdata = userdata;
return 0;
}
/*! Get regex engine / method
*
* @param[in] h CLIgen handle
* @retval 1 XSD Libxml2 regex
* @retval 0 Posix regex
*/
int
cligen_regex_xsd(cligen_handle h)
{