aboutsummaryrefslogtreecommitdiff
path: root/editors/ed.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2017-07-27 11:17:15 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2017-07-27 11:17:15 +0200
commit5ea50697fd13eb1caeecf3ceb8d03a1e7f578406 (patch)
tree07bdc37fd1cde19904789424ed4bf254416eb988 /editors/ed.c
parent8cae43c5d732e86b8a668013b957fdb6363c8388 (diff)
downloadbusybox-5ea50697fd13eb1caeecf3ceb8d03a1e7f578406.tar.gz
ed: fix --help and reorder functions, no code changes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'editors/ed.c')
-rw-r--r--editors/ed.c1064
1 files changed, 516 insertions, 548 deletions
diff --git a/editors/ed.c b/editors/ed.c
index c594d3da1..a2a389c2b 100644
--- a/editors/ed.c
+++ b/editors/ed.c
@@ -6,7 +6,6 @@
*
* The "ed" built-in command (much simplified)
*/
-
//config:config ED
//config: bool "ed (25 kb)"
//config: default y
@@ -19,7 +18,7 @@
//applet:IF_ED(APPLET(ed, BB_DIR_BIN, BB_SUID_DROP))
-//usage:#define ed_trivial_usage ""
+//usage:#define ed_trivial_usage "[FILE]"
//usage:#define ed_full_usage ""
#include "libbb.h"
@@ -32,7 +31,6 @@ typedef struct LINE {
char data[1];
} LINE;
-
#define searchString bb_common_bufsiz1
enum {
@@ -71,22 +69,6 @@ struct globals {
SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
} while (0)
-
-static void doCommands(void);
-static void subCommand(const char *cmd, int num1, int num2);
-static int getNum(const char **retcp, smallint *retHaveNum, int *retNum);
-static int setCurNum(int num);
-static void addLines(int num);
-static int insertLine(int num, const char *data, int len);
-static void deleteLines(int num1, int num2);
-static int printLines(int num1, int num2, int expandFlag);
-static int writeLines(const char *file, int num1, int num2);
-static int readLines(const char *file, int num);
-static int searchLines(const char *str, int num1, int num2);
-static LINE *findLine(int num);
-static int findString(const LINE *lp, const char * str, int len, int offset);
-
-
static int bad_nums(int num1, int num2, const char *for_what)
{
if ((num1 < 1) || (num2 > lastNum) || (num1 > num2)) {
@@ -96,7 +78,6 @@ static int bad_nums(int num1, int num2, const char *for_what)
return 0;
}
-
static char *skip_blank(const char *cp)
{
while (isblank(*cp))
@@ -104,413 +85,49 @@ static char *skip_blank(const char *cp)
return (char *)cp;
}
-
-int ed_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
-int ed_main(int argc UNUSED_PARAM, char **argv)
-{
- INIT_G();
-
- bufSize = INITBUF_SIZE;
- bufBase = xmalloc(bufSize);
- bufPtr = bufBase;
- lines.next = &lines;
- lines.prev = &lines;
-
- if (argv[1]) {
- fileName = xstrdup(argv[1]);
- if (!readLines(fileName, 1)) {
- return EXIT_SUCCESS;
- }
- if (lastNum)
- setCurNum(1);
- dirty = FALSE;
- }
-
- doCommands();
- return EXIT_SUCCESS;
-}
-
/*
- * Read commands until we are told to stop.
- */
-static void doCommands(void)
-{
- const char *cp;
- char *endbuf, buf[USERSIZE];
- int len, num1, num2;
- smallint have1, have2;
-
- while (TRUE) {
- /* Returns:
- * -1 on read errors or EOF, or on bare Ctrl-D.
- * 0 on ctrl-C,
- * >0 length of input string, including terminating '\n'
- */
- len = read_line_input(NULL, ": ", buf, sizeof(buf), /*timeout*/ -1);
- if (len <= 0)
- return;
- endbuf = &buf[len - 1];
- while ((endbuf > buf) && isblank(endbuf[-1]))
- endbuf--;
- *endbuf = '\0';
-
- cp = skip_blank(buf);
- have1 = FALSE;
- have2 = FALSE;
-
- if ((curNum == 0) && (lastNum > 0)) {
- curNum = 1;
- curLine = lines.next;
- }
-
- if (!getNum(&cp, &have1, &num1))
- continue;
-
- cp = skip_blank(cp);
-
- if (*cp == ',') {
- cp++;
- if (!getNum(&cp, &have2, &num2))
- continue;
- if (!have1)
- num1 = 1;
- if (!have2)
- num2 = lastNum;
- have1 = TRUE;
- have2 = TRUE;
- }
- if (!have1)
- num1 = curNum;
- if (!have2)
- num2 = num1;
-
- switch (*cp++) {
- case 'a':
- addLines(num1 + 1);
- break;
-
- case 'c':
- deleteLines(num1, num2);
- addLines(num1);
- break;
-
- case 'd':
- deleteLines(num1, num2);
- break;
-
- case 'f':
- if (*cp && !isblank(*cp)) {
- bb_error_msg("bad file command");
- break;
- }
- cp = skip_blank(cp);
- if (*cp == '\0') {
- if (fileName)
- printf("\"%s\"\n", fileName);
- else
- puts("No file name");
- break;
- }
- free(fileName);
- fileName = xstrdup(cp);
- break;
-
- case 'i':
- addLines(num1);
- break;
-
- case 'k':
- cp = skip_blank(cp);
- if ((*cp < 'a') || (*cp > 'z') || cp[1]) {
- bb_error_msg("bad mark name");
- break;
- }
- marks[*cp - 'a'] = num2;
- break;
-
- case 'l':
- printLines(num1, num2, TRUE);
- break;
-
- case 'p':
- printLines(num1, num2, FALSE);
- break;
-
- case 'q':
- cp = skip_blank(cp);
- if (have1 || *cp) {
- bb_error_msg("bad quit command");
- break;
- }
- if (!dirty)
- return;
- len = read_line_input(NULL, "Really quit? ", buf, 16, /*timeout*/ -1);
- /* read error/EOF - no way to continue */
- if (len < 0)
- return;
- cp = skip_blank(buf);
- if ((*cp | 0x20) == 'y') /* Y or y */
- return;
- break;
-
- case 'r':
- if (*cp && !isblank(*cp)) {
- bb_error_msg("bad read command");
- break;
- }
- cp = skip_blank(cp);
- if (*cp == '\0') {
- bb_error_msg("no file name");
- break;
- }
- if (!have1)
- num1 = lastNum;
- if (readLines(cp, num1 + 1))
- break;
- if (fileName == NULL)
- fileName = xstrdup(cp);
- break;
-
- case 's':
- subCommand(cp, num1, num2);
- break;
-
- case 'w':
- if (*cp && !isblank(*cp)) {
- bb_error_msg("bad write command");
- break;
- }
- cp = skip_blank(cp);
- if (!have1) {
- num1 = 1;
- num2 = lastNum;
- }
- if (*cp == '\0')
- cp = fileName;
- if (cp == NULL) {
- bb_error_msg("no file name specified");
- break;
- }
- writeLines(cp, num1, num2);
- break;
-
- case 'z':
- switch (*cp) {
- case '-':
- printLines(curNum - 21, curNum, FALSE);
- break;
- case '.':
- printLines(curNum - 11, curNum + 10, FALSE);
- break;
- default:
- printLines(curNum, curNum + 21, FALSE);
- break;
- }
- break;
-
- case '.':
- if (have1) {
- bb_error_msg("no arguments allowed");
- break;
- }
- printLines(curNum, curNum, FALSE);
- break;
-
- case '-':
- if (setCurNum(curNum - 1))
- printLines(curNum, curNum, FALSE);
- break;
-
- case '=':
- printf("%d\n", num1);
- break;
- case '\0':
- if (have1) {
- printLines(num2, num2, FALSE);
- break;
- }
- if (setCurNum(curNum + 1))
- printLines(curNum, curNum, FALSE);
- break;
-
- default:
- bb_error_msg("unimplemented command");
- break;
- }
- }
-}
-
-
-/*
- * Do the substitute command.
- * The current line is set to the last substitution done.
+ * Return a pointer to the specified line number.
*/
-static void subCommand(const char *cmd, int num1, int num2)
+static LINE *findLine(int num)
{
- char *cp, *oldStr, *newStr, buf[USERSIZE];
- int delim, oldLen, newLen, deltaLen, offset;
- LINE *lp, *nlp;
- int globalFlag, printFlag, didSub, needPrint;
-
- if (bad_nums(num1, num2, "substitute"))
- return;
-
- globalFlag = FALSE;
- printFlag = FALSE;
- didSub = FALSE;
- needPrint = FALSE;
-
- /*
- * Copy the command so we can modify it.
- */
- strcpy(buf, cmd);
- cp = buf;
+ LINE *lp;
+ int lnum;
- if (isblank(*cp) || (*cp == '\0')) {
- bb_error_msg("bad delimiter for substitute");
- return;
+ if ((num < 1) || (num > lastNum)) {
+ bb_error_msg("line number %d does not exist", num);
+ return NULL;
}
- delim = *cp++;
- oldStr = cp;
-
- cp = strchr(cp, delim);
- if (cp == NULL) {
- bb_error_msg("missing 2nd delimiter for substitute");
- return;
+ if (curNum <= 0) {
+ curNum = 1;
+ curLine = lines.next;
}
- *cp++ = '\0';
-
- newStr = cp;
- cp = strchr(cp, delim);
-
- if (cp)
- *cp++ = '\0';
- else
- cp = (char*)"";
-
- while (*cp) switch (*cp++) {
- case 'g':
- globalFlag = TRUE;
- break;
- case 'p':
- printFlag = TRUE;
- break;
- default:
- bb_error_msg("unknown option for substitute");
- return;
- }
+ if (num == curNum)
+ return curLine;
- if (*oldStr == '\0') {
- if (searchString[0] == '\0') {
- bb_error_msg("no previous search string");
- return;
- }
- oldStr = searchString;
+ lp = curLine;
+ lnum = curNum;
+ if (num < (curNum / 2)) {
+ lp = lines.next;
+ lnum = 1;
+ } else if (num > ((curNum + lastNum) / 2)) {
+ lp = lines.prev;
+ lnum = lastNum;
}
- if (oldStr != searchString)
- strcpy(searchString, oldStr);
-
- lp = findLine(num1);
- if (lp == NULL)
- return;
-
- oldLen = strlen(oldStr);
- newLen = strlen(newStr);
- deltaLen = newLen - oldLen;
- offset = 0;
- nlp = NULL;
-
- while (num1 <= num2) {
- offset = findString(lp, oldStr, oldLen, offset);
-
- if (offset < 0) {
- if (needPrint) {
- printLines(num1, num1, FALSE);
- needPrint = FALSE;
- }
- offset = 0;
- lp = lp->next;
- num1++;
- continue;
- }
-
- needPrint = printFlag;
- didSub = TRUE;
- dirty = TRUE;
-
- /*
- * If the replacement string is the same size or shorter
- * than the old string, then the substitution is easy.
- */
- if (deltaLen <= 0) {
- memcpy(&lp->data[offset], newStr, newLen);
- if (deltaLen) {
- memcpy(&lp->data[offset + newLen],
- &lp->data[offset + oldLen],
- lp->len - offset - oldLen);
-
- lp->len += deltaLen;
- }
- offset += newLen;
- if (globalFlag)
- continue;
- if (needPrint) {
- printLines(num1, num1, FALSE);
- needPrint = FALSE;
- }
- lp = lp->next;
- num1++;
- continue;
- }
-
- /*
- * The new string is larger, so allocate a new line
- * structure and use that. Link it in place of
- * the old line structure.
- */
- nlp = xmalloc(sizeof(LINE) + lp->len + deltaLen);
-
- nlp->len = lp->len + deltaLen;
-
- memcpy(nlp->data, lp->data, offset);
- memcpy(&nlp->data[offset], newStr, newLen);
- memcpy(&nlp->data[offset + newLen],
- &lp->data[offset + oldLen],
- lp->len - offset - oldLen);
-
- nlp->next = lp->next;
- nlp->prev = lp->prev;
- nlp->prev->next = nlp;
- nlp->next->prev = nlp;
-
- if (curLine == lp)
- curLine = nlp;
-
- free(lp);
- lp = nlp;
-
- offset += newLen;
-
- if (globalFlag)
- continue;
-
- if (needPrint) {
- printLines(num1, num1, FALSE);
- needPrint = FALSE;
- }
-
+ while (lnum < num) {
lp = lp->next;
- num1++;
+ lnum++;
}
- if (!didSub)
- bb_error_msg("no substitutions found for \"%s\"", oldStr);
+ while (lnum > num) {
+ lp = lp->prev;
+ lnum--;
+ }
+ return lp;
}
-
/*
* Search a line for the specified string starting at the specified
* offset in the line. Returns the offset of the found string, or -1.
@@ -540,37 +157,48 @@ static int findString(const LINE *lp, const char *str, int len, int offset)
return -1;
}
-
/*
- * Add lines which are typed in by the user.
- * The lines are inserted just before the specified line number.
- * The lines are terminated by a line containing a single dot (ugly!),
- * or by an end of file.
+ * Search for a line which contains the specified string.
+ * If the string is "", then the previously searched for string
+ * is used. The currently searched for string is saved for future use.
+ * Returns the line number which matches, or 0 if there was no match
+ * with an error printed.
*/
-static void addLines(int num)
+static NOINLINE int searchLines(const char *str, int num1, int num2)
{
+ const LINE *lp;
int len;
- char buf[USERSIZE + 1];
- while (1) {
- /* Returns:
- * -1 on read errors or EOF, or on bare Ctrl-D.
- * 0 on ctrl-C,
- * >0 length of input string, including terminating '\n'
- */
- len = read_line_input(NULL, "", buf, sizeof(buf), /*timeout*/ -1);
- if (len <= 0) {
- /* Previously, ctrl-C was exiting to shell.
- * Now we exit to ed prompt. Is in important? */
- return;
+ if (bad_nums(num1, num2, "search"))
+ return 0;
+
+ if (*str == '\0') {
+ if (searchString[0] == '\0') {
+ bb_error_msg("no previous search string");
+ return 0;
}
- if ((buf[0] == '.') && (buf[1] == '\n') && (buf[2] == '\0'))
- return;
- if (!insertLine(num++, buf, len))
- return;
+ str = searchString;
}
-}
+ if (str != searchString)
+ strcpy(searchString, str);
+
+ len = strlen(str);
+
+ lp = findLine(num1);
+ if (lp == NULL)
+ return 0;
+
+ while (num1 <= num2) {
+ if (findString(lp, str, len, 0) >= 0)
+ return num1;
+ num1++;
+ lp = lp->next;
+ }
+
+ bb_error_msg("can't find string \"%s\"", str);
+ return 0;
+}
/*
* Parse a line number argument if it is present. This is a sum
@@ -670,6 +298,92 @@ static int getNum(const char **retcp, smallint *retHaveNum, int *retNum)
}
}
+/*
+ * Set the current line number.
+ * Returns TRUE if successful.
+ */
+static int setCurNum(int num)
+{
+ LINE *lp;
+
+ lp = findLine(num);
+ if (lp == NULL)
+ return FALSE;
+ curNum = num;
+ curLine = lp;
+ return TRUE;
+}
+
+/*
+ * Insert a new line with the specified text.
+ * The line is inserted so as to become the specified line,
+ * thus pushing any existing and further lines down one.
+ * The inserted line is also set to become the current line.
+ * Returns TRUE if successful.
+ */
+static int insertLine(int num, const char *data, int len)
+{
+ LINE *newLp, *lp;
+
+ if ((num < 1) || (num > lastNum + 1)) {
+ bb_error_msg("inserting at bad line number");
+ return FALSE;
+ }
+
+ newLp = xmalloc(sizeof(LINE) + len - 1);
+
+ memcpy(newLp->data, data, len);
+ newLp->len = len;
+
+ if (num > lastNum)
+ lp = &lines;
+ else {
+ lp = findLine(num);
+ if (lp == NULL) {
+ free((char *) newLp);
+ return FALSE;
+ }
+ }
+
+ newLp->next = lp;
+ newLp->prev = lp->prev;
+ lp->prev->next = newLp;
+ lp->prev = newLp;
+
+ lastNum++;
+ dirty = TRUE;
+ return setCurNum(num);
+}
+
+/*
+ * Add lines which are typed in by the user.
+ * The lines are inserted just before the specified line number.
+ * The lines are terminated by a line containing a single dot (ugly!),
+ * or by an end of file.
+ */
+static void addLines(int num)
+{
+ int len;
+ char buf[USERSIZE + 1];
+
+ while (1) {
+ /* Returns:
+ * -1 on read errors or EOF, or on bare Ctrl-D.
+ * 0 on ctrl-C,
+ * >0 length of input string, including terminating '\n'
+ */
+ len = read_line_input(NULL, "", buf, sizeof(buf), /*timeout*/ -1);
+ if (len <= 0) {
+ /* Previously, ctrl-C was exiting to shell.
+ * Now we exit to ed prompt. Is in important? */
+ return;
+ }
+ if ((buf[0] == '.') && (buf[1] == '\n') && (buf[2] == '\0'))
+ return;
+ if (!insertLine(num++, buf, len))
+ return;
+ }
+}
/*
* Read lines from a file at the specified line number.
@@ -759,7 +473,6 @@ static int readLines(const char *file, int num)
return TRUE;
}
-
/*
* Write the specified lines out to the specified file.
* Returns TRUE if successful, or FALSE on an error with a message output.
@@ -810,7 +523,6 @@ static int writeLines(const char *file, int num1, int num2)
return TRUE;
}
-
/*
* Print lines in a specified range.
* The last line printed becomes the current line.
@@ -862,49 +574,6 @@ static int printLines(int num1, int num2, int expandFlag)
return TRUE;
}
-
-/*
- * Insert a new line with the specified text.
- * The line is inserted so as to become the specified line,
- * thus pushing any existing and further lines down one.
- * The inserted line is also set to become the current line.
- * Returns TRUE if successful.
- */
-static int insertLine(int num, const char *data, int len)
-{
- LINE *newLp, *lp;
-
- if ((num < 1) || (num > lastNum + 1)) {
- bb_error_msg("inserting at bad line number");
- return FALSE;
- }
-
- newLp = xmalloc(sizeof(LINE) + len - 1);
-
- memcpy(newLp->data, data, len);
- newLp->len = len;
-
- if (num > lastNum)
- lp = &lines;
- else {
- lp = findLine(num);
- if (lp == NULL) {
- free((char *) newLp);
- return FALSE;
- }
- }
-
- newLp->next = lp;
- newLp->prev = lp->prev;
- lp->prev->next = newLp;
- lp->prev = newLp;
-
- lastNum++;
- dirty = TRUE;
- return setCurNum(num);
-}
-
-
/*
* Delete lines from the given range.
*/
@@ -946,107 +615,406 @@ static void deleteLines(int num1, int num2)
dirty = TRUE;
}
-
/*
- * Search for a line which contains the specified string.
- * If the string is "", then the previously searched for string
- * is used. The currently searched for string is saved for future use.
- * Returns the line number which matches, or 0 if there was no match
- * with an error printed.
+ * Do the substitute command.
+ * The current line is set to the last substitution done.
*/
-static NOINLINE int searchLines(const char *str, int num1, int num2)
+static void subCommand(const char *cmd, int num1, int num2)
{
- const LINE *lp;
- int len;
+ char *cp, *oldStr, *newStr, buf[USERSIZE];
+ int delim, oldLen, newLen, deltaLen, offset;
+ LINE *lp, *nlp;
+ int globalFlag, printFlag, didSub, needPrint;
- if (bad_nums(num1, num2, "search"))
- return 0;
+ if (bad_nums(num1, num2, "substitute"))
+ return;
- if (*str == '\0') {
+ globalFlag = FALSE;
+ printFlag = FALSE;
+ didSub = FALSE;
+ needPrint = FALSE;
+
+ /*
+ * Copy the command so we can modify it.
+ */
+ strcpy(buf, cmd);
+ cp = buf;
+
+ if (isblank(*cp) || (*cp == '\0')) {
+ bb_error_msg("bad delimiter for substitute");
+ return;
+ }
+
+ delim = *cp++;
+ oldStr = cp;
+
+ cp = strchr(cp, delim);
+ if (cp == NULL) {
+ bb_error_msg("missing 2nd delimiter for substitute");
+ return;
+ }
+
+ *cp++ = '\0';
+
+ newStr = cp;
+ cp = strchr(cp, delim);
+
+ if (cp)
+ *cp++ = '\0';
+ else
+ cp = (char*)"";
+
+ while (*cp) switch (*cp++) {
+ case 'g':
+ globalFlag = TRUE;
+ break;
+ case 'p':
+ printFlag = TRUE;
+ break;
+ default:
+ bb_error_msg("unknown option for substitute");
+ return;
+ }
+
+ if (*oldStr == '\0') {
if (searchString[0] == '\0') {
bb_error_msg("no previous search string");
- return 0;
+ return;
}
- str = searchString;
+ oldStr = searchString;
}
- if (str != searchString)
- strcpy(searchString, str);
-
- len = strlen(str);
+ if (oldStr != searchString)
+ strcpy(searchString, oldStr);
lp = findLine(num1);
if (lp == NULL)
- return 0;
+ return;
+
+ oldLen = strlen(oldStr);
+ newLen = strlen(newStr);
+ deltaLen = newLen - oldLen;
+ offset = 0;
+ nlp = NULL;
while (num1 <= num2) {
- if (findString(lp, str, len, 0) >= 0)
- return num1;
- num1++;
+ offset = findString(lp, oldStr, oldLen, offset);
+
+ if (offset < 0) {
+ if (needPrint) {
+ printLines(num1, num1, FALSE);
+ needPrint = FALSE;
+ }
+ offset = 0;
+ lp = lp->next;
+ num1++;
+ continue;
+ }
+
+ needPrint = printFlag;
+ didSub = TRUE;
+ dirty = TRUE;
+
+ /*
+ * If the replacement string is the same size or shorter
+ * than the old string, then the substitution is easy.
+ */
+ if (deltaLen <= 0) {
+ memcpy(&lp->data[offset], newStr, newLen);
+ if (deltaLen) {
+ memcpy(&lp->data[offset + newLen],
+ &lp->data[offset + oldLen],
+ lp->len - offset - oldLen);
+
+ lp->len += deltaLen;
+ }
+ offset += newLen;
+ if (globalFlag)
+ continue;
+ if (needPrint) {
+ printLines(num1, num1, FALSE);
+ needPrint = FALSE;
+ }
+ lp = lp->next;
+ num1++;
+ continue;
+ }
+
+ /*
+ * The new string is larger, so allocate a new line
+ * structure and use that. Link it in place of
+ * the old line structure.
+ */
+ nlp = xmalloc(sizeof(LINE) + lp->len + deltaLen);
+
+ nlp->len = lp->len + deltaLen;
+
+ memcpy(nlp->data, lp->data, offset);
+ memcpy(&nlp->data[offset], newStr, newLen);
+ memcpy(&nlp->data[offset + newLen],
+ &lp->data[offset + oldLen],
+ lp->len - offset - oldLen);
+
+ nlp->next = lp->next;
+ nlp->prev = lp->prev;
+ nlp->prev->next = nlp;
+ nlp->next->prev = nlp;
+
+ if (curLine == lp)
+ curLine = nlp;
+
+ free(lp);
+ lp = nlp;
+
+ offset += newLen;
+
+ if (globalFlag)
+ continue;
+
+ if (needPrint) {
+ printLines(num1, num1, FALSE);
+ needPrint = FALSE;
+ }
+
lp = lp->next;
+ num1++;
}
- bb_error_msg("can't find string \"%s\"", str);
- return 0;
+ if (!didSub)
+ bb_error_msg("no substitutions found for \"%s\"", oldStr);
}
-
/*
- * Return a pointer to the specified line number.
+ * Read commands until we are told to stop.
*/
-static LINE *findLine(int num)
+static void doCommands(void)
{
- LINE *lp;
- int lnum;
+ const char *cp;
+ char *endbuf, buf[USERSIZE];
+ int len, num1, num2;
+ smallint have1, have2;
- if ((num < 1) || (num > lastNum)) {
- bb_error_msg("line number %d does not exist", num);
- return NULL;
- }
+ while (TRUE) {
+ /* Returns:
+ * -1 on read errors or EOF, or on bare Ctrl-D.
+ * 0 on ctrl-C,
+ * >0 length of input string, including terminating '\n'
+ */
+ len = read_line_input(NULL, ": ", buf, sizeof(buf), /*timeout*/ -1);
+ if (len <= 0)
+ return;
+ endbuf = &buf[len - 1];
+ while ((endbuf > buf) && isblank(endbuf[-1]))
+ endbuf--;
+ *endbuf = '\0';
- if (curNum <= 0) {
- curNum = 1;
- curLine = lines.next;
- }
+ cp = skip_blank(buf);
+ have1 = FALSE;
+ have2 = FALSE;
- if (num == curNum)
- return curLine;
+ if ((curNum == 0) && (lastNum > 0)) {
+ curNum = 1;
+ curLine = lines.next;
+ }
- lp = curLine;
- lnum = curNum;
- if (num < (curNum / 2)) {
- lp = lines.next;
- lnum = 1;
- } else if (num > ((curNum + lastNum) / 2)) {
- lp = lines.prev;
- lnum = lastNum;
- }
+ if (!getNum(&cp, &have1, &num1))
+ continue;
- while (lnum < num) {
- lp = lp->next;
- lnum++;
- }
+ cp = skip_blank(cp);
- while (lnum > num) {
- lp = lp->prev;
- lnum--;
+ if (*cp == ',') {
+ cp++;
+ if (!getNum(&cp, &have2, &num2))
+ continue;
+ if (!have1)
+ num1 = 1;
+ if (!have2)
+ num2 = lastNum;
+ have1 = TRUE;
+ have2 = TRUE;
+ }
+ if (!have1)
+ num1 = curNum;
+ if (!have2)
+ num2 = num1;
+
+ switch (*cp++) {
+ case 'a':
+ addLines(num1 + 1);
+ break;
+
+ case 'c':
+ deleteLines(num1, num2);
+ addLines(num1);
+ break;
+
+ case 'd':
+ deleteLines(num1, num2);
+ break;
+
+ case 'f':
+ if (*cp && !isblank(*cp)) {
+ bb_error_msg("bad file command");
+ break;
+ }
+ cp = skip_blank(cp);
+ if (*cp == '\0') {
+ if (fileName)
+ printf("\"%s\"\n", fileName);
+ else
+ puts("No file name");
+ break;
+ }
+ free(fileName);
+ fileName = xstrdup(cp);
+ break;
+
+ case 'i':
+ addLines(num1);
+ break;
+
+ case 'k':
+ cp = skip_blank(cp);
+ if ((*cp < 'a') || (*cp > 'z') || cp[1]) {
+ bb_error_msg("bad mark name");
+ break;
+ }
+ marks[*cp - 'a'] = num2;
+ break;
+
+ case 'l':
+ printLines(num1, num2, TRUE);
+ break;
+
+ case 'p':
+ printLines(num1, num2, FALSE);
+ break;
+
+ case 'q':
+ cp = skip_blank(cp);
+ if (have1 || *cp) {
+ bb_error_msg("bad quit command");
+ break;
+ }
+ if (!dirty)
+ return;
+ len = read_line_input(NULL, "Really quit? ", buf, 16, /*timeout*/ -1);
+ /* read error/EOF - no way to continue */
+ if (len < 0)
+ return;
+ cp = skip_blank(buf);
+ if ((*cp | 0x20) == 'y') /* Y or y */
+ return;
+ break;
+
+ case 'r':
+ if (*cp && !isblank(*cp)) {
+ bb_error_msg("bad read command");
+ break;
+ }
+ cp = skip_blank(cp);
+ if (*cp == '\0') {
+ bb_error_msg("no file name");
+ break;
+ }
+ if (!have1)
+ num1 = lastNum;
+ if (readLines(cp, num1 + 1))
+ break;
+ if (fileName == NULL)
+ fileName = xstrdup(cp);
+ break;
+
+ case 's':
+ subCommand(cp, num1, num2);
+ break;
+
+ case 'w':
+ if (*cp && !isblank(*cp)) {
+ bb_error_msg("bad write command");
+ break;
+ }
+ cp = skip_blank(cp);
+ if (!have1) {
+ num1 = 1;
+ num2 = lastNum;
+ }
+ if (*cp == '\0')
+ cp = fileName;
+ if (cp == NULL) {
+ bb_error_msg("no file name specified");
+ break;
+ }
+ writeLines(cp, num1, num2);
+ break;
+
+ case 'z':
+ switch (*cp) {
+ case '-':
+ printLines(curNum - 21, curNum, FALSE);
+ break;
+ case '.':
+ printLines(curNum - 11, curNum + 10, FALSE);
+ break;
+ default:
+ printLines(curNum, curNum + 21, FALSE);
+ break;
+ }
+ break;
+
+ case '.':
+ if (have1) {
+ bb_error_msg("no arguments allowed");
+ break;
+ }
+ printLines(curNum, curNum, FALSE);
+ break;
+
+ case '-':
+ if (setCurNum(curNum - 1))
+ printLines(curNum, curNum, FALSE);
+ break;
+
+ case '=':
+ printf("%d\n", num1);
+ break;
+ case '\0':
+ if (have1) {
+ printLines(num2, num2, FALSE);
+ break;
+ }
+ if (setCurNum(curNum + 1))
+ printLines(curNum, curNum, FALSE);
+ break;
+
+ default:
+ bb_error_msg("unimplemented command");
+ break;
+ }
}
- return lp;
}
-
-/*
- * Set the current line number.
- * Returns TRUE if successful.
- */
-static int setCurNum(int num)
+int ed_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
+int ed_main(int argc UNUSED_PARAM, char **argv)
{
- LINE *lp;
+ INIT_G();
- lp = findLine(num);
- if (lp == NULL)
- return FALSE;
- curNum = num;
- curLine = lp;
- return TRUE;
+ bufSize = INITBUF_SIZE;
+ bufBase = xmalloc(bufSize);
+ bufPtr = bufBase;
+ lines.next = &lines;
+ lines.prev = &lines;
+
+ if (argv[1]) {
+ fileName = xstrdup(argv[1]);
+ if (!readLines(fileName, 1)) {
+ return EXIT_SUCCESS;
+ }
+ if (lastNum)
+ setCurNum(1);
+ dirty = FALSE;
+ }
+
+ doCommands();
+ return EXIT_SUCCESS;
}