root/distrib/utils/more/command.c
/*      $NetBSD: command.c,v 1.12 2009/01/24 13:58:21 tsutsui Exp $     */

/*
 * Copyright (c) 1988 Mark Nudelman
 * Copyright (c) 1988, 1993
 *      The Regents of the University of California.  All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 * 3. Neither the name of the University nor the names of its contributors
 *    may be used to endorse or promote products derived from this software
 *    without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 */

#include <sys/cdefs.h>
#ifndef lint
#if 0
static char sccsid[] = "@(#)command.c   8.1 (Berkeley) 6/6/93";
#else
__RCSID("$NetBSD: command.c,v 1.12 2009/01/24 13:58:21 tsutsui Exp $");
#endif
#endif /* not lint */

#include <sys/param.h>
#include <stdio.h>
#include <string.h>
#include <ctype.h>
#include <stdlib.h>
#include <unistd.h>

#include "less.h"
#include "pathnames.h"
#include "extern.h"

#define NO_MCA          0
#define MCA_DONE        1
#define MCA_MORE        2

static char cmdbuf[120];        /* Buffer for holding a multi-char command */
static char *cp;                /* Pointer into cmdbuf */
static int cmd_col;             /* Current column of the multi-char command */
static int longprompt;          /* if stat command instead of prompt */
static int mca;                 /* The multicharacter command (action) */
static int last_mca;            /* The previous mca */
static int number;              /* The number typed by the user */
static int wsearch;             /* Search for matches (1) or non-matches (0) */

#define CMD_RESET       cp = cmdbuf     /* reset command buffer to empty */
#define CMD_EXEC        lower_left(); flush()

static int cmd_erase __P((void));
static int cmd_char __P((int));
static int getcc __P((void));
static void exec_mca __P((void));
static int mca_char __P((int));

/* backspace in command buffer. */
static int
cmd_erase()
{
        /*
         * backspace past beginning of the string: this usually means
         * abort the command.
         */
        if (cp == cmdbuf)
                return(1);

        /* erase an extra character, for the carat. */
        if (CONTROL_CHAR(*--cp)) {
                backspace();
                --cmd_col;
        }

        backspace();
        --cmd_col;
        return(0);
}

/* set up the display to start a new multi-character command. */
void
start_mca(action, prompt)
        int action;
        char *prompt;
{
        lower_left();
        clear_eol();
        putstr(prompt);
        cmd_col = strlen(prompt);
        mca = action;
}

/*
 * process a single character of a multi-character command, such as
 * a number, or the pattern of a search command.
 */
static int
cmd_char(c)
        int c;
{
        if (c == erase_char)
                return(cmd_erase());
        /* in this order, in case werase == erase_char */
        if (c == werase_char) {
                if (cp > cmdbuf) {
                        while (isspace((unsigned char)cp[-1]) && !cmd_erase());
                        while (!isspace((unsigned char)cp[-1]) && !cmd_erase());
                        while (isspace((unsigned char)cp[-1]) && !cmd_erase());
                }
                return(cp == cmdbuf);
        }
        if (c == kill_char) {
                while (!cmd_erase());
                return(1);
        }
        /*
         * No room in the command buffer, or no room on the screen;
         * {{ Could get fancy here; maybe shift the displayed line
         * and make room for more chars, like ksh. }}
         */
        if (cp >= &cmdbuf[sizeof(cmdbuf)-1] || cmd_col >= sc_width-3)
                bell();
        else {
                *cp++ = c;
                if (CONTROL_CHAR(c)) {
                        putchr('^');
                        cmd_col++;
                        c = CARAT_CHAR(c);
                }
                putchr(c);
                cmd_col++;
        }
        return(0);
}

int
prompt()
{
        off_t len, pos;
        char pbuf[40];

        /*
         * if nothing is displayed yet, display starting from line 1;
         * if search string provided, go there instead.
         */
        if (position(TOP) == NULL_POSITION) {
                if (forw_line((off_t)0) == NULL_POSITION)
                        return(0);
                if (!firstsearch || !search(1, firstsearch, 1, 1))
                        jump_back(1);
        }
        else if (screen_trashed)
                repaint();

        /* if no -e flag and we've hit EOF on the last file, quit. */
        if ((!quit_at_eof || short_file) && hit_eof && curr_ac + 1 >= ac)
                quit();

        /* select the proper prompt and display it. */
        lower_left();
        clear_eol();
        if (longprompt) {
                so_enter();
                putstr(current_name);
                putstr(":");
                if (!ispipe) {
                        (void)snprintf(pbuf, sizeof(pbuf), " file %d/%d",
                            curr_ac + 1, ac);
                        putstr(pbuf);
                }
                if (linenums) {
                        (void)snprintf(pbuf, sizeof(pbuf), " line %d",
                            currline(BOTTOM));
                        putstr(pbuf);
                }
                if ((pos = position(BOTTOM)) != NULL_POSITION) {
                        (void)snprintf(pbuf, sizeof(pbuf), " byte %lld",
                            (long long)pos);
                        putstr(pbuf);
                        if (!ispipe && (len = ch_length())) {
                                (void)snprintf(pbuf, sizeof(pbuf),
                                    "/%lld pct %lld%%", (long long)len,
                                    (long long)((100 * pos) / len));
                                putstr(pbuf);
                        }
                }
                so_exit();
                longprompt = 0;
        }
        else {
                so_enter();
                putstr(current_name);
                if (hit_eof)
                        if (next_name) {
                                putstr(": END (next file: ");
                                putstr(next_name);
                                putstr(")");
                        }
                        else
                                putstr(": END");
                else if (!ispipe &&
                    (pos = position(BOTTOM)) != NULL_POSITION &&
                    (len = ch_length())) {
                        (void)snprintf(pbuf, sizeof(pbuf), " (%lld%%)",
                            (long long)((100 * pos) / len));
                        putstr(pbuf);
                }
                so_exit();
        }
        return(1);
}

/* get command character. */
static int
getcc()
{
        int ch;

        /* left over from error() routine. */
        if (cmdstack) {
                ch = cmdstack;
                cmdstack = 0;
                return(ch);
        }
        if (cp > cmdbuf && position(TOP) == NULL_POSITION) {
                /*
                 * Command is incomplete, so try to complete it.
                 * There are only two cases:
                 * 1. We have "/string" but no newline.  Add the \n.
                 * 2. We have a number but no command.  Treat as #g.
                 * (This is all pretty hokey.)
                 */
                if (mca != A_DIGIT)
                        /* Not a number; must be search string */
                        return('\n');
                else
                        /* A number; append a 'g' */
                        return('g');
        }
        return(getchr());
}

/* execute a multicharacter command. */
static void
exec_mca()
{
        char *p;

        *cp = '\0';
        CMD_EXEC;
        switch (mca) {
        case A_F_SEARCH:
                (void)search(1, cmdbuf, number, wsearch);
                break;
        case A_B_SEARCH:
                (void)search(0, cmdbuf, number, wsearch);
                break;
        case A_EXAMINE:
                for (p = cmdbuf; isspace((unsigned char)*p); ++p);
                (void)edit(glob(p));
                break;
        }
}

/* add a character to a multi-character command. */
static int
mca_char(c)
        int c;
{
        switch (mca) {
        case 0:                 /* not in a multicharacter command. */
        case A_PREFIX:          /* in the prefix of a command. */
                return(NO_MCA);
        case A_DIGIT:
                /*
                 * Entering digits of a number.
                 * Terminated by a non-digit.
                 */
                if (!isascii(c) || (!isdigit(c) &&
                    c != erase_char && c != kill_char && c != werase_char)) {
                        /*
                         * Not part of the number.
                         * Treat as a normal command character.
                         */
                        *cp = '\0';
                        number = atoi(cmdbuf);
                        CMD_RESET;
                        mca = 0;
                        return(NO_MCA);
                }
                break;
        }

        /*
         * Any other multicharacter command
         * is terminated by a newline.
         */
        if (c == '\n' || c == '\r') {
                exec_mca();
                return(MCA_DONE);
        }

        /* append the char to the command buffer. */
        if (cmd_char(c))
                return(MCA_DONE);

        return(MCA_MORE);
}

/*
 * Main command processor.
 * Accept and execute commands until a quit command, then return.
 */
void
commands()
{
        int c;
        int action;

        last_mca = 0;
        scroll_lines = (sc_height + 1) / 2;

        for (;;) {
                mca = 0;
                number = 0;

                /*
                 * See if any signals need processing.
                 */
                if (sigs) {
                        psignals();
                        if (quitting)
                                quit();
                }
                /*
                 * Display prompt and accept a character.
                 */
                CMD_RESET;
                if (!prompt()) {
                        next_file(1);
                        continue;
                }
                noprefix();
                c = getcc();

again:          if (sigs)
                        continue;

                /*
                 * If we are in a multicharacter command, call mca_char.
                 * Otherwise we call cmd_decode to determine the
                 * action to be performed.
                 */
                if (mca)
                        switch (mca_char(c)) {
                        case MCA_MORE:
                                /*
                                 * Need another character.
                                 */
                                c = getcc();
                                goto again;
                        case MCA_DONE:
                                /*
                                 * Command has been handled by mca_char.
                                 * Start clean with a prompt.
                                 */
                                continue;
                        case NO_MCA:
                                /*
                                 * Not a multi-char command
                                 * (at least, not anymore).
                                 */
                                break;
                        }

                /* decode the command character and decide what to do. */
                switch (action = cmd_decode(c)) {
                case A_DIGIT:           /* first digit of a number */
                        start_mca(A_DIGIT, ":");
                        goto again;
                case A_F_SCREEN:        /* forward one screen */
                        CMD_EXEC;
                        if (number <= 0 && (number = sc_window) <= 0)
                                number = sc_height - 1;
                        forward(number, 1);
                        break;
                case A_B_SCREEN:        /* backward one screen */
                        CMD_EXEC;
                        if (number <= 0 && (number = sc_window) <= 0)
                                number = sc_height - 1;
                        backward(number, 1);
                        break;
                case A_F_LINE:          /* forward N (default 1) line */
                        CMD_EXEC;
                        forward(number <= 0 ? 1 : number, 0);
                        break;
                case A_B_LINE:          /* backward N (default 1) line */
                        CMD_EXEC;
                        backward(number <= 0 ? 1 : number, 0);
                        break;
                case A_F_SCROLL:        /* forward N lines */
                        CMD_EXEC;
                        if (number > 0)
                                scroll_lines = number;
                        forward(scroll_lines, 0);
                        break;
                case A_B_SCROLL:        /* backward N lines */
                        CMD_EXEC;
                        if (number > 0)
                                scroll_lines = number;
                        backward(scroll_lines, 0);
                        break;
                case A_FREPAINT:        /* flush buffers and repaint */
                        if (!ispipe) {
                                ch_init(0, 0);
                                clr_linenum();
                        }
                        /* FALLTHROUGH */
                case A_REPAINT:         /* repaint the screen */
                        CMD_EXEC;
                        repaint();
                        break;
                case A_GOLINE:          /* go to line N, default 1 */
                        CMD_EXEC;
                        if (number <= 0)
                                number = 1;
                        jump_back(number);
                        break;
                case A_PERCENT:         /* go to percent of file */
                        CMD_EXEC;
                        if (number < 0)
                                number = 0;
                        else if (number > 100)
                                number = 100;
                        jump_percent(number);
                        break;
                case A_GOEND:           /* go to line N, default end */
                        CMD_EXEC;
                        if (number <= 0)
                                jump_forw();
                        else
                                jump_back(number);
                        break;
                case A_STAT:            /* print file name, etc. */
                        longprompt = 1;
                        continue;
                case A_QUIT:            /* exit */
                        quit();
                case A_F_SEARCH:        /* search for a pattern */
                case A_B_SEARCH:
                        if (number <= 0)
                                number = 1;
                        start_mca(action, (action==A_F_SEARCH) ? "/" : "?");
                        last_mca = mca;
                        wsearch = 1;
                        c = getcc();
                        if (c == '!') {
                                /*
                                 * Invert the sense of the search; set wsearch
                                 * to 0 and get a new character for the start
                                 * of the pattern.
                                 */
                                start_mca(action, 
                                    (action == A_F_SEARCH) ? "!/" : "!?");
                                wsearch = 0;
                                c = getcc();
                        }
                        goto again;
                case A_AGAIN_SEARCH:            /* repeat previous search */
                        if (number <= 0)
                                number = 1;
                        if (wsearch)
                                start_mca(last_mca, 
                                    (last_mca == A_F_SEARCH) ? "/" : "?");
                        else
                                start_mca(last_mca, 
                                    (last_mca == A_F_SEARCH) ? "!/" : "!?");
                        CMD_EXEC;
                        (void)search(mca == A_F_SEARCH, NULL,
                            number, wsearch);
                        break;
                case A_HELP:                    /* help */
                        lower_left();
                        clear_eol();
                        putstr("help");
                        CMD_EXEC;
                        help();
                        break;
                case A_FILE_LIST:               /* show list of file names */
                        CMD_EXEC;
                        showlist();
                        repaint();
                        break;
                case A_EXAMINE:                 /* edit a new file */
                        CMD_RESET;
                        start_mca(A_EXAMINE, "Examine: ");
                        c = getcc();
                        goto again;
                case A_VISUAL:                  /* invoke the editor */
                        if (ispipe) {
                                error("Cannot edit standard input");
                                break;
                        }
                        CMD_EXEC;
                        editfile();
                        ch_init(0, 0);
                        clr_linenum();
                        break;
                case A_NEXT_FILE:               /* examine next file */
                        if (number <= 0)
                                number = 1;
                        next_file(number);
                        break;
                case A_PREV_FILE:               /* examine previous file */
                        if (number <= 0)
                                number = 1;
                        prev_file(number);
                        break;
                case A_SETMARK:                 /* set a mark */
                        lower_left();
                        clear_eol();
                        start_mca(A_SETMARK, "mark: ");
                        c = getcc();
                        if (c == erase_char || c == kill_char)
                                break;
                        setmark(c);
                        break;
                case A_GOMARK:                  /* go to mark */
                        lower_left();
                        clear_eol();
                        start_mca(A_GOMARK, "goto mark: ");
                        c = getcc();
                        if (c == erase_char || c == kill_char)
                                break;
                        gomark(c);
                        break;
                case A_PREFIX:
                        /*
                         * The command is incomplete (more chars are needed).
                         * Display the current char so the user knows what's
                         * going on and get another character.
                         */
                        if (mca != A_PREFIX)
                                start_mca(A_PREFIX, "");
                        if (CONTROL_CHAR(c)) {
                                putchr('^');
                                c = CARAT_CHAR(c);
                        }
                        putchr(c);
                        c = getcc();
                        goto again;
                default:
                        bell();
                        break;
                }
        }
}

void
editfile()
{
        static int dolinenumber;
        static char *editor;
        int c;
        char buf[MAXPATHLEN * 2 + 20];

        if (editor == NULL) {
                editor = getenv("EDITOR");
                /* pass the line number to vi */
                if (editor == NULL || *editor == '\0') {
                        editor = _PATH_VI;
                        dolinenumber = 1;
                }
                else
                        dolinenumber = 0;
        }
        if (dolinenumber && (c = currline(MIDDLE)))
                (void)snprintf(buf, sizeof(buf), "%s +%d %s", editor, c,
                    current_file);
        else
                (void)snprintf(buf, sizeof(buf), "%s %s", editor, current_file);
        lsystem(buf);
}

void
showlist()
{
        int indx, width;
        int len;
        char *p;

        if (ac <= 0) {
                error("No files provided as arguments.");
                return;
        }
        for (width = indx = 0; indx < ac;) {
                p = strcmp(av[indx], "-") ? av[indx] : "stdin";
                len = strlen(p) + 1;
                if (curr_ac == indx)
                        len += 2;
                if (width + len + 1 >= sc_width) {
                        if (!width) {
                                if (curr_ac == indx)
                                        putchr('[');
                                putstr(p);
                                if (curr_ac == indx)
                                        putchr(']');
                                ++indx;
                        }
                        width = 0;
                        putchr('\n');
                        continue;
                }
                if (width)
                        putchr(' ');
                if (curr_ac == indx)
                        putchr('[');
                putstr(p);
                if (curr_ac == indx)
                        putchr(']');
                width += len;
                ++indx;
        }
        putchr('\n');
        error(NULL);
}