readline库实现命令行自动补全

Table of Contents

part1: readline安装

part2:readline使用举例

part3: readline下的IO复用


http://m.blog.chinaunix.net/uid-29547110-id-5047281.html

Linux下应用程序可能需要交互式输入命令,但普通的标准IO进行命令输入显得有些呆板,人性化不足。本文讲述使用libreadline库,实现类似sh的交换终端:支持命令自动补全,支持历史命令等。
 

part1: readline安装

(1) 下载readline源码:http://download.chinaunix.net/download/0009000/8886.shtml
(2) 解压后, 在源码目录依次执行 ./configure, make, sudo make install 完成安装

part2:readline使用举例

#include <stdlib.h>
#include <stdio.h> //注意,readline.h中可能需要调用标准IO库的内容,所以stdio.h必须在readline.h之前被包含
#include <readline/readline.h>
#include <readline/history.h>


/*
* 真正的命令执行函数
* 测试时,被定义为桩函数了
*/
int com_list(char *para)
{
    printf("do com_list:%s\n", para);
    return 0;
}
    
int com_view(char *para)
{
    printf("do com_view:%s\n", para);
    return 0;
}

int com_rename(char *para)
{
    printf("do com_rename:%s\n", para);
    return 0;
}
int com_stat(char *para)
{
    printf("do com_stat:%s\n", para);
    return 0;
}

int com_pwd(char *para)
{
    printf("do com_pwd:%s\n", para);
    return 0;
}
int com_delete(char *para)
{
    printf("do com_delete:%s\n", para);
    return 0;
}
int com_help(char *para)
{
    printf("do com_help:%s\n", para);
    return 0;
}

int com_cd(char *para)
{
    printf("do com_cd:%s\n", para);
    return 0;
}
int com_quit(char *para)
{
    printf("do com_quit:%s\n", para);
    exit(0);
}


/* 
* A structure which contains information on the commands this program
* can understand. 
*/
typedef struct {
    char *name;            /* User printable name of the function. */
    rl_icpfunc_t *func;        /* Function to call to do the job. */
    char *doc;            /* Documentation for this function. */
} COMMAND;

COMMAND commands[] = {
  { "cd", com_cd, "Change to directory DIR" },
  { "delete", com_delete, "Delete FILE" },
  { "help", com_help, "Display this text" },
  { "?", com_help, "Synonym for `help'" },
  { "list", com_list, "List files in DIR" },
  { "ls", com_list, "Synonym for `list'" },
  { "pwd", com_pwd, "Print the current working directory" },
  { "quit", com_quit, "Quit using Fileman" },
  { "rename", com_rename, "Rename FILE to NEWNAME" },
  { "stat", com_stat, "Print out statistics on FILE" },
  { "view", com_view, "View the contents of FILE" },
  { (char *)NULL, (rl_icpfunc_t *)NULL, (char *)NULL }
};


char* dupstr(char *s)
{
  char *r;

  r = malloc (strlen (s) + 1);
  strcpy(r, s);
  return (r);
}

// clear up white spaces
char* stripwhite (char *string)
{
    register char *s, *t;
    
    for (s = string; whitespace (*s); s++)
        ;
    
    if (*s == 0)
        return (s);

    t = s + strlen (s) - 1;
    while (t > s && whitespace (*t))
        t--;

    *++t = '\0';

    return s;
}


/* 
* Look up NAME as the name of a command, and return a pointer to that
* command. Return a NULL pointer if NAME isn't a command name. 
*/
COMMAND *find_command (char *name)
{
    register int i;
    
    for (i = 0; commands[i].name; i++)
        if (strcmp (name, commands[i].name) == 0)
            return (&commands[i]);

    return ((COMMAND *)NULL);
}

/* Execute a command line. */
int execute_line (char *line)
{
    register int i;
    COMMAND *command;
    char *word;

    /* Isolate the command word. */
    i = 0;
    while (line[i] && whitespace (line[i]))
        i++;
    word = line + i;

    while (line[i] && !whitespace (line[i]))
        i++;

    if (line[i])
        line[i++] = '\0';

    command = find_command (word);

    if (!command)
    {
        fprintf (stderr, "%s: No such command for FileMan.\n", word);
        return (-1);
    }

    /* Get argument to command, if any. */
    while (whitespace (line[i]))
        i++;

    word = line + i;

    /* Call the function. */
    return ((*(command->func)) (word));
}

/* 
* Generator function for command completion. STATE lets us know whether
* to start from scratch; without any state (i.e. STATE == 0), then we
* start at the top of the list. 
*/
char* command_generator (const char *text, int state)
{
    static int list_index, len;
    char *name;

    /* 
    * If this is a new word to complete, initialize now. This includes
    * saving the length of TEXT for efficiency, and initializing the index
    * variable to 0.
    */
    if (!state)
    {
         list_index = 0;
        len = strlen (text);
    }

    /* Return the next name which partially matches from the command list. */
    while (name = commands[list_index].name)
    {
         list_index++;
    
         if (strncmp (name, text, len) == 0)
             return (dupstr(name));
    }

    /* If no names matched, then return NULL. */
    return ((char *)NULL);
}

/* 
* Attempt to complete on the contents of TEXT. START and END bound the
* region of rl_line_buffer that contains the word to complete. TEXT is
* the word to complete. We can use the entire contents of rl_line_buffer
* in case we want to do some simple parsing. Return the array of matches,
* or NULL if there aren't any. 
*/
char** fileman_completion (const char *text, int start, int end)
{
    char **matches;

    matches = (char **)NULL;

    /* 
    * If this word is at the start of the line, then it is a command
    * to complete. Otherwise it is the name of a file in the current
    * directory. 
    */
    if (start == 0)
        matches = rl_completion_matches (text, command_generator);

    return (matches);
}


/* 
* Tell the GNU Readline library how to complete. We want to try to complete
* on command names if this is the first word in the line, or on filenames
* if not. 
*/
void initialize_readline ()
{
    /* Allow conditional parsing of the ~/.inputrc file. */
    rl_readline_name = ">";

    /* Tell the completer that we want a crack first. */
    rl_attempted_completion_function = fileman_completion;
}




int main (int argc, char **argv)
{
    char *line, *s;
    
    initialize_readline();    /* Bind our completer. */


    /* Loop reading and executing lines until the user quits. */
    for ( ; ;)
    {
        line = readline (">: ");

        if (!line)
            break;

        /* 
        * Remove leading and trailing whitespace from the line.
        * Then, if there is anything left, add it to the history list
        * and execute it. 
        */
         s = stripwhite (line);
         if (*s)
         {
             add_history(s);
             execute_line(s);
         }

        free(line);
    }
    exit(0);
}

编辑运行:

$ gcc readline.c  -lreadline
$ ls
a.out  readline.c
[rongtao@toa readline]$ ./a.out 
>: 
?       cd      delete  help    list    ls      pwd     quit    rename  stat    view    
>: cd 
do com_cd:
>: delete 
do com_delete:
>: ?
do com_help:
>: stat 
do com_stat:
>: quit 
do com_quit:
$ 

part3: readline下的IO复用

static void handle_command (char *line)
{
    ...
}
 
int
main (int argc, char **argv)
{
    int netfd
    fd_set allfd;
    int maxfd;
 
    netfd = connect_to_server ();
 
 
    FD_ZERO (&allfd);
    FD_SET (fileno(stdin), &allfd);
    FD_SET (netfd, &allfd);
    maxfd = netfd;
 
    rl_callback_handler_install ("ccnet> ", handle_command);
 
    while (1) {
        fd_set rfds;
        int retval;
 
        rfds = allfd;
 
        retval = select (maxfd + 1, &rfds, NULL, NULL, NULL);
        if (retval < 0)
            perror ("select");
 
        if (FD_ISSET(0, &rfds))
            rl_callback_read_char();
 
        if (FD_ISSET(netfd, &rfds))
            read_from_network (netfd);
    }
}


关于readline更多的使用请自行阅读readline的man文件。

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值