Initial import from http://www.droids-corp.org/hg/libcmdline/rev/db316e4289a1
[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 objects stored in a list. */
41
42 struct cmdline_token_ops token_obj_list_ops = {
43         .parse = parse_obj_list,
44         .complete_get_nb = complete_get_nb_obj_list,
45         .complete_get_elt = complete_get_elt_obj_list,
46         .get_help = get_help_obj_list,
47 };
48
49 int 
50 parse_obj_list(cmdline_parse_token_hdr_t *tk, const char *buf, void *res)
51 {
52         struct token_obj_list *tk2 = (struct token_obj_list *)tk;
53         struct token_obj_list_data *tkd = &tk2->obj_list_data;
54         struct object *o;
55         unsigned int token_len = 0;
56
57         if (*buf == 0)
58                 return -1;
59
60         while(!cmdline_isendoftoken(buf[token_len]))
61                 token_len++;
62
63         SLIST_FOREACH(o, tkd->list, next) {
64                 if (token_len != strlen(o->name))
65                         continue;
66                 if (strncmp(buf, o->name, token_len))
67                         continue;
68                 break;
69         }
70         if (!o) /* not found */
71                 return -1;
72         
73         /* store the address of object in structure */
74         if (res)
75                 *(struct object **)res = o;
76
77         return token_len;
78 }
79
80 int complete_get_nb_obj_list(cmdline_parse_token_hdr_t *tk)
81 {
82         struct token_obj_list *tk2 = (struct token_obj_list *)tk;
83         struct token_obj_list_data *tkd = &tk2->obj_list_data;
84         struct object *o;
85         int ret = 0;
86
87         SLIST_FOREACH(o, tkd->list, next) {
88                 ret ++;
89         }
90         return ret;
91 }
92
93 int complete_get_elt_obj_list(cmdline_parse_token_hdr_t *tk, int idx, 
94                               char *dstbuf, unsigned int size)
95 {
96         struct token_obj_list *tk2 = (struct token_obj_list *)tk;
97         struct token_obj_list_data *tkd = &tk2->obj_list_data;
98         struct object *o;
99         unsigned int i = 0, len;
100
101         SLIST_FOREACH(o, tkd->list, next) {
102                 if (i++ == idx)
103                         break;
104         }
105         if (!o)
106                 return -1;
107
108         len = strlen(o->name) + 1;
109         if (len > size)
110                 return -1;
111
112         strcpy(dstbuf, o->name);
113         return 0;
114 }
115
116
117 int get_help_obj_list(cmdline_parse_token_hdr_t *tk, char *dstbuf, unsigned int size)
118 {
119         snprintf(dstbuf, size, "Obj-List");
120         return 0;
121 }