d56151984d3018bfec7b9ebb10aab2ce373cece1
[libcmdline.git] / src / extension_example / parse_obj_list.c
1 /*
2  * Copyright (c) 2009, Olivier MATZ <zer0@droids-corp.org>
3  * All rights reserved.
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are met:
6  *
7  *     * Redistributions of source code must retain the above copyright
8  *       notice, this list of conditions and the following disclaimer.
9  *     * Redistributions in binary form must reproduce the above copyright
10  *       notice, this list of conditions and the following disclaimer in the
11  *       documentation and/or other materials provided with the distribution.
12  *     * Neither the name of the University of California, Berkeley nor the
13  *       names of its contributors may be used to endorse or promote products
14  *       derived from this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY
17  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19  * DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY
20  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  */
27
28 #include <stdio.h>
29 #include <inttypes.h>
30 #include <ctype.h>
31 #include <string.h>
32 #include <netinet/in.h>
33
34 #include <cmdline_parse_ipaddr.h>
35 #include <cmdline_parse.h>
36
37 #include "parse_obj_list.h"
38
39 /* This file is an example of extension of libcmdline. It provides an
40  * example of named objects stored in a list, supporting the
41  * completion on objects name */
42
43 static int
44 parse_obj_list(cmdline_parse_token_hdr_t *tk, const char *buf, void *res,
45                unsigned ressize)
46 {
47         struct token_obj_list *tk2 = (struct token_obj_list *)tk;
48         struct token_obj_list_data *tkd = &tk2->obj_list_data;
49         struct object *o;
50         unsigned int token_len = 0;
51
52         if (res && ressize < sizeof(struct object *))
53                 return -1;
54
55         token_len = strlen(buf);
56
57         SLIST_FOREACH(o, tkd->list, next) {
58                 if (strcmp(buf, o->name))
59                         continue;
60                 break;
61         }
62         if (o == NULL) /* not found */
63                 return -1;
64
65         /* store the address of object in structure */
66         if (res)
67                 *(struct object **)res = o;
68
69         return token_len;
70 }
71
72 static int
73 complete_obj_list_start(cmdline_parse_token_hdr_t *tk, void **opaque)
74 {
75         struct token_obj_list *tk2 = (struct token_obj_list *)tk;
76         struct token_obj_list_data *tkd = &tk2->obj_list_data;
77         struct object *o;
78
79         o = SLIST_FIRST(tkd->list);
80         *opaque = (void *)o;
81         if (o == NULL)
82                 return -1; /* no completion */
83         return 0;
84 }
85
86 static int
87 complete_obj_list_iterate(cmdline_parse_token_hdr_t *tk, void **opaque,
88                           char *dstbuf, unsigned int size)
89 {
90         struct object *o;
91         int len;
92
93         o = *opaque;
94         if (o == NULL)
95                 return -1;
96
97         len = snprintf(dstbuf, size, "%s", o->name);
98         if (len < 0 || len >= size)
99                 return -1;
100
101         strcpy(dstbuf, o->name);
102         o = SLIST_NEXT(o, next);
103         *opaque = o;
104         return 0;
105 }
106
107
108 static int
109 cmdline_help_obj_list(cmdline_parse_token_hdr_t *tk, char *dstbuf,
110                       unsigned int size)
111 {
112         snprintf(dstbuf, size, "Obj-List");
113         return 0;
114 }
115
116 struct cmdline_token_ops token_obj_list_ops = {
117         .parse = parse_obj_list,
118         .complete_start = complete_obj_list_start,
119         .complete_iterate = complete_obj_list_iterate,
120         .complete_end = NULL,
121         .help = cmdline_help_obj_list,
122 };