save state in completed objects
[protos/libecoli.git] / lib / ecoli_node_file.c
1 /*
2  * Copyright (c) 2016, Olivier MATZ <zer0@droids-corp.org>
3  *
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 #define _GNU_SOURCE /* for asprintf */
29 #include <sys/types.h>
30 #include <sys/stat.h>
31 #include <stdio.h>
32 #include <stdlib.h>
33 #include <string.h>
34 #include <errno.h>
35 #include <unistd.h>
36 #include <dirent.h>
37
38 #include <ecoli_log.h>
39 #include <ecoli_malloc.h>
40 #include <ecoli_test.h>
41 #include <ecoli_strvec.h>
42 #include <ecoli_string.h>
43 #include <ecoli_node.h>
44 #include <ecoli_parsed.h>
45 #include <ecoli_completed.h>
46 #include <ecoli_node_file.h>
47
48 EC_LOG_TYPE_REGISTER(node_file);
49
50 struct ec_node_file {
51         struct ec_node gen;
52 };
53
54 static int
55 ec_node_file_parse(const struct ec_node *gen_node,
56                 struct ec_parsed *state,
57                 const struct ec_strvec *strvec)
58 {
59         (void)gen_node;
60         (void)state;
61
62         if (ec_strvec_len(strvec) == 0)
63                 return EC_PARSED_NOMATCH;
64
65         return 1;
66 }
67
68 /*
69  * Almost the same than dirname (3) and basename (3) except that:
70  * - it always returns a substring of the given path, which can
71  *   be empty.
72  * - the behavior is different when the path finishes with a '/'
73  * - the path argument is not modified
74  * - the outputs are allocated and must be freed with ec_free().
75  *
76  *   path       dirname   basename       split_path
77  *   /usr/lib   /usr      lib          /usr/     lib
78  *   /usr/      /         usr          /usr/
79  *   usr        .         usr                    usr
80  *   /          /         /            /
81  *   .          .         .                      .
82  *   ..         .         ..                     ..
83  */
84 static int split_path(const char *path, char **dname_p, char **bname_p)
85 {
86         char *last_slash;
87         size_t dirlen;
88         char *dname, *bname;
89
90         *dname_p = NULL;
91         *bname_p = NULL;
92
93         last_slash = strrchr(path, '/');
94         if (last_slash == NULL)
95                 dirlen = 0;
96         else
97                 dirlen = last_slash - path + 1;
98
99         dname = ec_strdup(path);
100         if (dname == NULL)
101                 return -ENOMEM;
102         dname[dirlen] = '\0';
103
104         bname = ec_strdup(path + dirlen);
105         if (bname == NULL) {
106                 ec_free(dname);
107                 return -ENOMEM;
108         }
109
110         *dname_p = dname;
111         *bname_p = bname;
112
113         return 0;
114 }
115
116 static int
117 ec_node_file_complete(const struct ec_node *gen_node,
118                 struct ec_completed *completed,
119                 const struct ec_strvec *strvec)
120 {
121         struct ec_completed_item *item = NULL;
122         struct stat st;
123         const char *input;
124         size_t bname_len;
125         struct dirent *de = NULL;
126         DIR *dir = NULL;
127         char *dname = NULL, *bname = NULL, *effective_dir;
128         char *comp_str = NULL;
129         char *disp_str = NULL;
130         int ret;
131         int is_dir = 0;
132
133         /*
134          * Example with this file tree:
135          * /
136          * ├── dir1
137          * │   ├── file1
138          * │   ├── file2
139          * │   └── subdir
140          * │       └── file3
141          * ├── dir2
142          * │   └── file4
143          * └── file5
144          *
145          * Input     Output completions
146          *   /       [dir1/, dir2/, file5]
147          *   /d      [dir1/, dir2/]
148          *   /f      [file5]
149          *   /dir1/  [file1, file2, subdir/]
150          *
151          *
152          *
153          */
154
155         if (ec_strvec_len(strvec) != 1)
156                 goto out;
157
158         input = ec_strvec_val(strvec, 0);
159         ret = split_path(input, &dname, &bname);
160         if (ret < 0) {
161                 ec_completed_free(completed);
162                 completed = NULL;
163                 goto out;
164         }
165
166         if (strcmp(dname, "") == 0)
167                 effective_dir = ".";
168         else
169                 effective_dir = dname;
170
171         ret = lstat(effective_dir, &st);
172         if (ret != 0) {
173                 ret = -errno;
174                 goto out;
175         }
176         if (!S_ISDIR(st.st_mode))
177                 goto out;
178
179         dir = opendir(effective_dir);
180         if (dir == NULL)
181                 goto out;
182
183         bname_len = strlen(bname);
184         while (1) {
185                 de = readdir(dir);
186                 if (de == NULL)
187                         goto out;
188
189                 if (!ec_str_startswith(de->d_name, bname))
190                         continue;
191                 if (bname[0] != '.' && de->d_name[0] == '.')
192                         continue;
193
194                 /* add '/' if it's a dir */
195                 if (de->d_type == DT_DIR) {
196                         is_dir = 1;
197                 } else if (de->d_type == DT_UNKNOWN) { // XXX todo
198                 } else {
199                         is_dir = 0;
200                 }
201
202                 item = ec_completed_item(gen_node);
203                 if (item == NULL) {
204                         ret = -ENOMEM;
205                         goto out;
206                 }
207
208                 if (is_dir) {
209                         if (asprintf(&comp_str, "%s%s/", input,
210                                         &de->d_name[bname_len]) < 0) {
211                                 ret = -errno;
212                                 goto out;
213                         }
214                         if (asprintf(&disp_str, "%s/", de->d_name) < 0) {
215                                 ret = -errno;
216                                 goto out;
217                         }
218                         ret = ec_completed_item_set(item, EC_PARTIAL_MATCH,
219                                                 comp_str);
220                         if (ret < 0)
221                                 goto out;
222                 } else {
223                         if (asprintf(&comp_str, "%s%s", input,
224                                         &de->d_name[bname_len]) < 0) {
225                                 ret = -errno;
226                                 goto out;
227                         }
228                         if (asprintf(&disp_str, "%s", de->d_name) < 0) {
229                                 ret = -errno;
230                                 goto out;
231                         }
232                         ret = ec_completed_item_set(item, EC_COMP_FULL,
233                                                 comp_str);
234                         if (ret < 0)
235                                 goto out;
236                 }
237                 ret = ec_completed_item_set_display(item, disp_str);
238                 if (ret < 0)
239                         goto out;
240                 ret = ec_completed_item_add(completed, item);
241                 if (ret < 0)
242                         goto out;
243
244                 item = NULL;
245                 free(comp_str);
246                 comp_str = NULL;
247                 free(disp_str);
248                 disp_str = NULL;
249         }
250         ret = 0;
251
252 out:
253         ec_completed_item_free(item);
254         free(comp_str);
255         free(disp_str);
256         ec_free(dname);
257         ec_free(bname);
258         if (dir != NULL)
259                 closedir(dir);
260
261         return ret;
262 }
263
264 static struct ec_node_type ec_node_file_type = {
265         .name = "file",
266         .parse = ec_node_file_parse,
267         .complete = ec_node_file_complete,
268         .size = sizeof(struct ec_node_file),
269 };
270
271 EC_NODE_TYPE_REGISTER(ec_node_file_type);
272
273 /* LCOV_EXCL_START */
274 static int ec_node_file_testcase(void)
275 {
276         struct ec_node *node;
277         int ret = 0;
278
279         node = ec_node("file", NULL);
280         if (node == NULL) {
281                 EC_LOG(EC_LOG_ERR, "cannot create node\n");
282                 return -1;
283         }
284         /* any string matches */
285         ret |= EC_TEST_CHECK_PARSE(node, 1, "foo");
286         ret |= EC_TEST_CHECK_PARSE(node, 1, "/tmp/bar");
287         ret |= EC_TEST_CHECK_PARSE(node, -1);
288
289         /* test completion */
290 #if 0 // XXX how to properly test file completion?
291         ret |= EC_TEST_CHECK_COMPLETE(node,
292                 EC_NODE_ENDLIST,
293                 EC_NODE_ENDLIST);
294         ret |= EC_TEST_CHECK_COMPLETE(node,
295                 "", EC_NODE_ENDLIST,
296                 EC_NODE_ENDLIST);
297         ret |= EC_TEST_CHECK_COMPLETE(node,
298                 "/", EC_NODE_ENDLIST,
299                 EC_NODE_ENDLIST);
300         ret |= EC_TEST_CHECK_COMPLETE(node,
301                 "/tmp", EC_NODE_ENDLIST,
302                 EC_NODE_ENDLIST);
303         ret |= EC_TEST_CHECK_COMPLETE(node,
304                 "/tmp/", EC_NODE_ENDLIST,
305                 EC_NODE_ENDLIST);
306         ret |= EC_TEST_CHECK_COMPLETE(node,
307                 "/tmp/.", EC_NODE_ENDLIST,
308                 EC_NODE_ENDLIST);
309 #endif
310         ec_node_free(node);
311
312         return ret;
313 }
314 /* LCOV_EXCL_STOP */
315
316 static struct ec_test ec_node_file_test = {
317         .name = "node_file",
318         .test = ec_node_file_testcase,
319 };
320
321 EC_TEST_REGISTER(ec_node_file_test);