2013-03-30 16:14:38 +08:00
|
|
|
/*
|
|
|
|
* RT-Thread module shell implementation.
|
|
|
|
*
|
|
|
|
* COPYRIGHT (C) 2013, Shanghai Real-Thread Technology Co., Ltd
|
|
|
|
*
|
|
|
|
* This file is part of RT-Thread (http://www.rt-thread.org)
|
|
|
|
* Maintainer: bernard.xiong <bernard.xiong at gmail.com>
|
|
|
|
*
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
2014-01-03 08:01:24 +08:00
|
|
|
* 2013-03-30 Bernard the first verion for finsh
|
|
|
|
* 2014-01-03 Bernard msh can execute module.
|
2013-03-30 16:14:38 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "msh.h"
|
|
|
|
#include <finsh.h>
|
|
|
|
#include <shell.h>
|
|
|
|
|
2014-01-03 08:01:24 +08:00
|
|
|
#ifdef RT_USING_DFS
|
|
|
|
#include <dfs_posix.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define RT_FINSH_ARG_MAX 10
|
2013-03-30 16:14:38 +08:00
|
|
|
typedef int (*cmd_function_t)(int argc, char** argv);
|
|
|
|
|
|
|
|
#ifdef FINSH_USING_MSH
|
2014-01-01 23:14:45 +08:00
|
|
|
#ifdef FINSH_USING_MSH_ONLY
|
|
|
|
rt_bool_t msh_is_used(void)
|
|
|
|
{
|
2014-01-03 08:01:24 +08:00
|
|
|
return RT_TRUE;
|
2014-01-01 23:14:45 +08:00
|
|
|
}
|
|
|
|
#else
|
2013-03-30 16:14:38 +08:00
|
|
|
#ifdef FINSH_USING_MSH_DEFAULT
|
|
|
|
static rt_bool_t __msh_state = RT_TRUE;
|
|
|
|
#else
|
|
|
|
static rt_bool_t __msh_state = RT_FALSE;
|
|
|
|
#endif
|
|
|
|
rt_bool_t msh_is_used(void)
|
|
|
|
{
|
2014-01-03 08:01:24 +08:00
|
|
|
return __msh_state;
|
2013-03-30 16:14:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int msh_exit(int argc, char** argv)
|
|
|
|
{
|
2014-01-03 08:01:24 +08:00
|
|
|
/* return to finsh shell mode */
|
|
|
|
__msh_state = RT_FALSE;
|
2013-03-30 16:14:38 +08:00
|
|
|
|
2014-01-03 08:01:24 +08:00
|
|
|
return 0;
|
2013-03-30 16:14:38 +08:00
|
|
|
}
|
|
|
|
FINSH_FUNCTION_EXPORT_ALIAS(msh_exit, __cmd_exit, return to RT-Thread shell mode.);
|
|
|
|
|
|
|
|
static int msh_enter(void)
|
|
|
|
{
|
2014-01-03 08:01:24 +08:00
|
|
|
/* enter module shell mode */
|
|
|
|
__msh_state = RT_TRUE;
|
|
|
|
return 0;
|
2013-03-30 16:14:38 +08:00
|
|
|
}
|
|
|
|
FINSH_FUNCTION_EXPORT_ALIAS(msh_enter, msh, use module shell);
|
2014-01-01 23:14:45 +08:00
|
|
|
#endif
|
2013-03-30 16:14:38 +08:00
|
|
|
|
|
|
|
int msh_help(int argc, char** argv)
|
|
|
|
{
|
2014-01-03 08:01:24 +08:00
|
|
|
rt_kprintf("RT-Thread shell commands:\n");
|
|
|
|
{
|
|
|
|
struct finsh_syscall *index;
|
|
|
|
|
|
|
|
for (index = _syscall_table_begin;
|
|
|
|
index < _syscall_table_end;
|
|
|
|
FINSH_NEXT_SYSCALL(index))
|
|
|
|
{
|
|
|
|
if (strncmp(index->name, "__cmd_", 6) != 0) continue;
|
2014-01-01 21:45:09 +08:00
|
|
|
#if defined(FINSH_USING_DESCRIPTION) && defined(FINSH_USING_SYMTAB)
|
2014-01-03 08:01:24 +08:00
|
|
|
rt_kprintf("%-16s - %s\n", &index->name[6], index->desc);
|
2014-01-01 21:45:09 +08:00
|
|
|
#else
|
2014-01-03 08:01:24 +08:00
|
|
|
rt_kprintf("%s ", &index->name[6]);
|
2014-01-01 21:45:09 +08:00
|
|
|
#endif
|
2014-01-03 08:01:24 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
rt_kprintf("\n");
|
2013-03-30 16:14:38 +08:00
|
|
|
|
2014-01-03 08:01:24 +08:00
|
|
|
return 0;
|
2013-03-30 16:14:38 +08:00
|
|
|
}
|
2014-01-01 21:45:09 +08:00
|
|
|
FINSH_FUNCTION_EXPORT_ALIAS(msh_help, __cmd_help, RT-Thread shell help.);
|
2013-03-30 16:14:38 +08:00
|
|
|
|
|
|
|
static int msh_split(char* cmd, rt_size_t length, char* argv[RT_FINSH_ARG_MAX])
|
|
|
|
{
|
2014-01-03 08:01:24 +08:00
|
|
|
char *ptr;
|
|
|
|
rt_size_t position;
|
|
|
|
rt_size_t argc;
|
|
|
|
|
|
|
|
ptr = cmd;
|
|
|
|
position = 0; argc = 0;
|
|
|
|
|
|
|
|
while (position < length)
|
|
|
|
{
|
|
|
|
/* strip bank and tab */
|
|
|
|
while ((*ptr == ' ' || *ptr == '\t') && position < length)
|
|
|
|
{
|
|
|
|
*ptr = '\0';
|
|
|
|
ptr ++; position ++;
|
|
|
|
}
|
|
|
|
if (position >= length) break;
|
|
|
|
|
|
|
|
/* handle string */
|
|
|
|
if (*ptr == '"')
|
|
|
|
{
|
|
|
|
ptr ++; position ++;
|
|
|
|
argv[argc] = ptr; argc ++;
|
|
|
|
|
|
|
|
/* skip this string */
|
|
|
|
while (*ptr != '"' && position < length)
|
|
|
|
{
|
|
|
|
if (*ptr == '\\')
|
|
|
|
{
|
|
|
|
if (*(ptr + 1) == '"')
|
|
|
|
{
|
|
|
|
ptr ++; position ++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ptr ++; position ++;
|
|
|
|
}
|
|
|
|
if (position >= length) break;
|
|
|
|
|
|
|
|
/* skip '"' */
|
|
|
|
*ptr = '\0'; ptr ++; position ++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
argv[argc] = ptr;
|
|
|
|
argc ++;
|
|
|
|
while ((*ptr != ' ' && *ptr != '\t') && position < length)
|
|
|
|
{
|
|
|
|
ptr ++; position ++;
|
|
|
|
}
|
|
|
|
if (position >= length) break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return argc;
|
2013-03-30 16:14:38 +08:00
|
|
|
}
|
|
|
|
|
2014-01-11 16:33:31 +08:00
|
|
|
static cmd_function_t msh_get_cmd(char *cmd, int size)
|
2013-03-30 16:14:38 +08:00
|
|
|
{
|
2014-01-03 08:01:24 +08:00
|
|
|
struct finsh_syscall *index;
|
|
|
|
cmd_function_t cmd_func = RT_NULL;
|
|
|
|
|
|
|
|
for (index = _syscall_table_begin;
|
|
|
|
index < _syscall_table_end;
|
|
|
|
FINSH_NEXT_SYSCALL(index))
|
|
|
|
{
|
|
|
|
if (strncmp(index->name, "__cmd_", 6) != 0) continue;
|
|
|
|
|
2014-01-16 22:22:23 +08:00
|
|
|
if (strncmp(&index->name[6], cmd, size) == 0 &&
|
|
|
|
index->name[6 + size] == '\0')
|
2014-01-03 08:01:24 +08:00
|
|
|
{
|
|
|
|
cmd_func = (cmd_function_t)index->func;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return cmd_func;
|
2013-03-30 16:14:38 +08:00
|
|
|
}
|
|
|
|
|
2014-01-03 08:01:24 +08:00
|
|
|
#if defined(RT_USING_MODULE) && defined(RT_USING_DFS)
|
2014-01-11 16:33:31 +08:00
|
|
|
int msh_exec_module(char* cmd_line, int size)
|
2014-01-03 08:01:24 +08:00
|
|
|
{
|
|
|
|
int fd = -1;
|
|
|
|
char *pg_name;
|
2014-01-11 16:33:31 +08:00
|
|
|
int length, cmd_length = 0;
|
2014-01-03 08:01:24 +08:00
|
|
|
|
2014-01-11 16:33:31 +08:00
|
|
|
if (size == 0) return -RT_ERROR; /* no command */
|
|
|
|
/* get the length of command0 */
|
|
|
|
while ((cmd_line[cmd_length] != ' ' && cmd_line[cmd_length] != '\t') && cmd_length < size)
|
|
|
|
cmd_length ++;
|
2014-01-03 08:01:24 +08:00
|
|
|
|
|
|
|
/* get name length */
|
2014-01-11 16:33:31 +08:00
|
|
|
length = cmd_length + 32;
|
2014-01-03 08:01:24 +08:00
|
|
|
|
2014-01-11 16:33:31 +08:00
|
|
|
/* allocate program name memory */
|
2014-01-03 08:01:24 +08:00
|
|
|
pg_name = (char*) rt_malloc(length);
|
|
|
|
if (pg_name == RT_NULL) return -RT_ENOMEM; /* no memory */
|
|
|
|
|
2014-01-11 16:33:31 +08:00
|
|
|
/* copy command0 */
|
|
|
|
memcpy(pg_name, cmd_line, cmd_length);
|
|
|
|
pg_name[cmd_length] = '\0';
|
|
|
|
|
|
|
|
if (strstr(pg_name, ".mo") != RT_NULL || strstr(pg_name, ".MO") != RT_NULL)
|
2014-01-03 08:01:24 +08:00
|
|
|
{
|
|
|
|
/* try to open program */
|
|
|
|
if (fd < 0)
|
|
|
|
{
|
|
|
|
fd = open(pg_name, O_RDONLY, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* search in /bin path */
|
|
|
|
if (fd < 0)
|
|
|
|
{
|
2014-01-11 16:33:31 +08:00
|
|
|
rt_snprintf(pg_name, length - 1, "/bin/%.*s", cmd_length, cmd_line);
|
2014-01-03 08:01:24 +08:00
|
|
|
fd = open(pg_name, O_RDONLY, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* add .mo and open program */
|
|
|
|
|
|
|
|
/* try to open program */
|
|
|
|
if (fd < 0)
|
|
|
|
{
|
2014-01-11 16:33:31 +08:00
|
|
|
strcat(pg_name, ".mo");
|
2014-01-03 08:01:24 +08:00
|
|
|
fd = open(pg_name, O_RDONLY, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* search in /bin path */
|
|
|
|
if (fd < 0)
|
|
|
|
{
|
2014-01-11 16:33:31 +08:00
|
|
|
rt_snprintf(pg_name, length - 1, "/bin/%.*s.mo", cmd_length, cmd_line);
|
2014-01-03 08:01:24 +08:00
|
|
|
fd = open(pg_name, O_RDONLY, 0);
|
|
|
|
}
|
|
|
|
}
|
2014-01-11 16:33:31 +08:00
|
|
|
|
2014-01-03 08:01:24 +08:00
|
|
|
if (fd >= 0)
|
|
|
|
{
|
|
|
|
/* found program */
|
|
|
|
close(fd);
|
2014-01-11 16:33:31 +08:00
|
|
|
rt_module_exec_cmd(pg_name, cmd_line, size);
|
2014-01-03 08:01:24 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-02-15 10:28:38 +08:00
|
|
|
rt_kprintf("%s: program not found.\n", cmd_line);
|
2014-01-03 08:01:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
rt_free(pg_name);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-03-30 16:14:38 +08:00
|
|
|
int msh_exec(char* cmd, rt_size_t length)
|
|
|
|
{
|
2014-01-03 08:01:24 +08:00
|
|
|
int argc;
|
|
|
|
char *argv[RT_FINSH_ARG_MAX];
|
2014-01-13 15:56:20 +08:00
|
|
|
int cmd0_size = 0;
|
2014-01-03 08:01:24 +08:00
|
|
|
cmd_function_t cmd_func;
|
2013-03-30 16:14:38 +08:00
|
|
|
|
2014-01-16 22:22:23 +08:00
|
|
|
/* strim the beginning of command */
|
|
|
|
while(*cmd == ' ' || *cmd == '\t'){cmd++; length--;}
|
|
|
|
/* find the size of first command */
|
2014-01-13 15:56:20 +08:00
|
|
|
while ((cmd[cmd0_size] != ' ' && cmd[cmd0_size] != '\t') && cmd0_size < length)
|
|
|
|
cmd0_size ++;
|
2014-01-16 22:22:23 +08:00
|
|
|
if (cmd0_size == 0) return -1; /* no command found */
|
|
|
|
|
2014-01-13 15:56:20 +08:00
|
|
|
/* try to get built-in command */
|
|
|
|
cmd_func = msh_get_cmd(cmd, cmd0_size);
|
|
|
|
if (cmd_func == RT_NULL)
|
|
|
|
{
|
2014-01-03 08:01:24 +08:00
|
|
|
#ifdef RT_USING_MODULE
|
2014-01-13 15:56:20 +08:00
|
|
|
msh_exec_module(cmd, length);
|
2014-01-03 08:01:24 +08:00
|
|
|
#else
|
2014-01-13 15:56:20 +08:00
|
|
|
argv[0] = cmd;
|
|
|
|
while(*cmd != ' ')
|
|
|
|
{
|
|
|
|
if (*cmd == 0) break;
|
2014-01-13 15:57:13 +08:00
|
|
|
cmd++;
|
2014-01-13 15:56:20 +08:00
|
|
|
}
|
|
|
|
if (*cmd == ' ') *cmd = 0;
|
|
|
|
rt_kprintf("%s: command not found.\n", argv[0]);
|
2014-01-03 08:01:24 +08:00
|
|
|
#endif
|
2014-01-13 15:56:20 +08:00
|
|
|
return -1;
|
|
|
|
}
|
2014-01-11 16:33:31 +08:00
|
|
|
|
2014-01-13 15:56:20 +08:00
|
|
|
/* split arguments */
|
2014-01-11 16:33:31 +08:00
|
|
|
memset(argv, 0x00, sizeof(argv));
|
|
|
|
argc = msh_split(cmd, length, argv);
|
|
|
|
if (argc == 0) return -1;
|
2013-03-30 16:14:38 +08:00
|
|
|
|
2014-01-03 08:01:24 +08:00
|
|
|
/* exec this command */
|
|
|
|
return cmd_func(argc, argv);
|
2013-03-30 16:14:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int str_common(const char *str1, const char *str2)
|
|
|
|
{
|
2014-01-03 08:01:24 +08:00
|
|
|
const char *str = str1;
|
2013-03-30 16:14:38 +08:00
|
|
|
|
2014-01-03 08:01:24 +08:00
|
|
|
while ((*str != 0) && (*str2 != 0) && (*str == *str2))
|
|
|
|
{
|
|
|
|
str ++;
|
|
|
|
str2 ++;
|
|
|
|
}
|
2013-03-30 16:14:38 +08:00
|
|
|
|
2014-01-03 08:01:24 +08:00
|
|
|
return (str - str1);
|
2013-03-30 16:14:38 +08:00
|
|
|
}
|
|
|
|
|
2014-01-01 21:45:09 +08:00
|
|
|
#ifdef RT_USING_DFS
|
|
|
|
void msh_auto_complete_path(char *path)
|
|
|
|
{
|
2014-01-03 08:01:24 +08:00
|
|
|
DIR* dir;
|
|
|
|
struct dirent *dirent;
|
|
|
|
char *full_path, *ptr, *index;
|
|
|
|
|
|
|
|
full_path = (char*)rt_malloc(256);
|
|
|
|
if (full_path == RT_NULL) return; /* out of memory */
|
|
|
|
|
|
|
|
ptr = full_path;
|
|
|
|
if (*path != '/')
|
|
|
|
{
|
|
|
|
getcwd(full_path, 256);
|
|
|
|
if (full_path[rt_strlen(full_path) - 1] != '/')
|
|
|
|
strcat(full_path, "/");
|
|
|
|
}
|
|
|
|
else *full_path = '\0';
|
|
|
|
|
|
|
|
index = RT_NULL; ptr = path;
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
if (*ptr == '/') index = ptr + 1; if (!*ptr) break; ptr ++;
|
|
|
|
}
|
|
|
|
if (index == RT_NULL) index = path;
|
|
|
|
|
|
|
|
if (index != RT_NULL)
|
|
|
|
{
|
|
|
|
char *dest = index;
|
|
|
|
|
|
|
|
/* fill the parent path */
|
|
|
|
ptr = full_path;
|
|
|
|
while (*ptr) ptr ++;
|
|
|
|
|
|
|
|
for (index = path; index != dest;)
|
|
|
|
*ptr++ = *index++;
|
|
|
|
*ptr = '\0';
|
|
|
|
|
|
|
|
dir = opendir(full_path);
|
|
|
|
if (dir == RT_NULL) /* open directory failed! */
|
|
|
|
{
|
|
|
|
rt_free(full_path);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* restore the index position */
|
|
|
|
index = dest;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* auto complete the file or directory name */
|
|
|
|
if (*index == '\0') /* display all of files and directories */
|
|
|
|
{
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
dirent = readdir(dir);
|
|
|
|
if (dirent == RT_NULL) break;
|
|
|
|
|
|
|
|
rt_kprintf("%s\n", dirent->d_name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
int length, min_length;
|
|
|
|
|
|
|
|
min_length = 0;
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
dirent = readdir(dir);
|
|
|
|
if (dirent == RT_NULL) break;
|
|
|
|
|
|
|
|
/* matched the prefix string */
|
|
|
|
if (strncmp(index, dirent->d_name, rt_strlen(index)) == 0)
|
|
|
|
{
|
|
|
|
if (min_length == 0)
|
|
|
|
{
|
|
|
|
min_length = rt_strlen(dirent->d_name);
|
|
|
|
/* save dirent name */
|
|
|
|
strcpy(full_path, dirent->d_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
length = str_common(dirent->d_name, full_path);
|
|
|
|
|
|
|
|
if (length < min_length)
|
|
|
|
{
|
|
|
|
min_length = length;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (min_length)
|
|
|
|
{
|
|
|
|
if (min_length < rt_strlen(full_path))
|
|
|
|
{
|
|
|
|
/* list the candidate */
|
|
|
|
rewinddir(dir);
|
|
|
|
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
dirent = readdir(dir);
|
|
|
|
if (dirent == RT_NULL) break;
|
|
|
|
|
|
|
|
if (strncmp(index, dirent->d_name, rt_strlen(index)) == 0)
|
|
|
|
rt_kprintf("%s\n", dirent->d_name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
length = index - path;
|
|
|
|
memcpy(index, full_path, min_length);
|
|
|
|
path[length + min_length] = '\0';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
closedir(dir);
|
|
|
|
rt_free(full_path);
|
2014-01-01 21:45:09 +08:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-03-30 16:14:38 +08:00
|
|
|
void msh_auto_complete(char *prefix)
|
|
|
|
{
|
2014-01-03 08:01:24 +08:00
|
|
|
int length, min_length;
|
|
|
|
const char *name_ptr, *cmd_name;
|
|
|
|
struct finsh_syscall *index;
|
2013-03-30 16:14:38 +08:00
|
|
|
|
2014-01-03 08:01:24 +08:00
|
|
|
min_length = 0;
|
|
|
|
name_ptr = RT_NULL;
|
2013-03-30 16:14:38 +08:00
|
|
|
|
2014-01-03 08:01:24 +08:00
|
|
|
if (*prefix == '\0')
|
|
|
|
{
|
|
|
|
msh_help(0, RT_NULL);
|
|
|
|
return;
|
|
|
|
}
|
2013-03-30 16:14:38 +08:00
|
|
|
|
2014-01-01 21:45:09 +08:00
|
|
|
#ifdef RT_USING_DFS
|
2014-01-03 08:01:24 +08:00
|
|
|
/* check whether a spare in the command */
|
|
|
|
{
|
|
|
|
char *ptr;
|
|
|
|
|
|
|
|
ptr = prefix + rt_strlen(prefix);
|
|
|
|
while (ptr != prefix)
|
|
|
|
{
|
|
|
|
if (*ptr == ' ')
|
|
|
|
{
|
|
|
|
msh_auto_complete_path(ptr + 1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
ptr --;
|
|
|
|
}
|
|
|
|
}
|
2014-01-01 21:45:09 +08:00
|
|
|
#endif
|
2014-01-03 08:01:24 +08:00
|
|
|
|
|
|
|
/* checks in internal command */
|
|
|
|
{
|
|
|
|
for (index = _syscall_table_begin; index < _syscall_table_end; FINSH_NEXT_SYSCALL(index))
|
|
|
|
{
|
|
|
|
/* skip finsh shell function */
|
|
|
|
if (strncmp(index->name, "__cmd_", 6) != 0) continue;
|
|
|
|
|
|
|
|
cmd_name = (const char*) &index->name[6];
|
|
|
|
if (strncmp(prefix, cmd_name, strlen(prefix)) == 0)
|
|
|
|
{
|
|
|
|
if (min_length == 0)
|
|
|
|
{
|
|
|
|
/* set name_ptr */
|
|
|
|
name_ptr = cmd_name;
|
|
|
|
/* set initial length */
|
|
|
|
min_length = strlen(name_ptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
length = str_common(name_ptr, cmd_name);
|
|
|
|
if (length < min_length)
|
|
|
|
min_length = length;
|
|
|
|
|
|
|
|
rt_kprintf("%s\n", cmd_name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* auto complete string */
|
|
|
|
if (name_ptr != NULL)
|
|
|
|
{
|
|
|
|
rt_strncpy(prefix, name_ptr, min_length);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ;
|
2013-03-30 16:14:38 +08:00
|
|
|
}
|
|
|
|
#endif
|
2014-01-01 21:45:09 +08:00
|
|
|
|