splitting things out
This commit is contained in:
parent
42658b8d98
commit
38a85b745e
|
@ -1,5 +1,5 @@
|
||||||
BIN := ke
|
BIN := ke
|
||||||
OBJS := main.o
|
OBJS := main.o terminal.o util.o
|
||||||
|
|
||||||
LDFLAGS := -static
|
LDFLAGS := -static
|
||||||
CFLAGS := -pedantic -Wall -Werror -Wextra -O2 -std=c99
|
CFLAGS := -pedantic -Wall -Werror -Wextra -O2 -std=c99
|
||||||
|
@ -16,6 +16,7 @@ clean:
|
||||||
|
|
||||||
.PHONY: run
|
.PHONY: run
|
||||||
run: $(BIN)
|
run: $(BIN)
|
||||||
|
reset
|
||||||
./$(BIN)
|
./$(BIN)
|
||||||
|
|
||||||
%.o: %.c
|
%.o: %.c
|
||||||
|
|
82
ke/main.c
82
ke/main.c
|
@ -1,68 +1,62 @@
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
|
#include <errno.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <termios.h>
|
#include <termios.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
||||||
|
#include "terminal.h"
|
||||||
/* entry_term contains a snapshot of the termios settings at startup. */
|
#include "util.h"
|
||||||
struct termios entry_term;
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
void
|
||||||
* A text editor needs the terminal to be in raw mode; but the default
|
loop()
|
||||||
* is to be in canonical (cooked) mode, which is a buffered input mode.
|
|
||||||
*/
|
|
||||||
|
|
||||||
static void
|
|
||||||
enable_termraw()
|
|
||||||
{
|
{
|
||||||
struct termios raw;
|
char c;
|
||||||
|
int command = 0;
|
||||||
/* Read the current terminal parameters for standard input. */
|
|
||||||
tcgetattr(STDIN_FILENO, &raw);
|
|
||||||
|
|
||||||
|
while (1) {
|
||||||
|
c = '\0';
|
||||||
/*
|
/*
|
||||||
* Turn off the local ECHO mode, which we need to do in raw mode
|
* Note that Cygwin, apparently, will treat a read time-
|
||||||
* because what gets displayed is going to need extra control.
|
* out as an error with errno == EAGAIN. I don't really
|
||||||
*
|
* have any interest in supporting code for Cygwin.
|
||||||
* NOTE(kyle): look into cfmakeraw, which will require
|
|
||||||
* snapshotting.
|
|
||||||
*/
|
*/
|
||||||
raw.c_lflag &= ~(ECHO|ICANON);
|
if ((read(STDIN_FILENO, &c, 1) == -1)) {
|
||||||
|
die("failed to read from the terminal");
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
if (c == 0x00) {
|
||||||
* Now write the terminal parameters to the current terminal,
|
continue;
|
||||||
* after flushing any waiting input out.
|
}
|
||||||
*/
|
|
||||||
tcsetattr(STDIN_FILENO, TCSAFLUSH, &raw);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
if (command && ((c == 'q') || (c == 0x11))) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
static void
|
if (c == 0x0b) {
|
||||||
disable_termraw()
|
if (!command) {
|
||||||
{
|
command = 1;
|
||||||
tcsetattr(STDIN_FILENO, TCSAFLUSH, &entry_term);
|
continue;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
command = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (iscntrl(c)) {
|
||||||
|
printf("%02x\r\n", c);
|
||||||
|
} else {
|
||||||
|
printf("%02x ('%c')\r\n", c, c);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
int
|
int
|
||||||
main()
|
main()
|
||||||
{
|
{
|
||||||
char c;
|
setup_terminal();
|
||||||
|
loop();
|
||||||
/* prepare the terminal */
|
|
||||||
tcgetattr(STDIN_FILENO, &entry_term);
|
|
||||||
atexit(disable_termraw);
|
|
||||||
enable_termraw();
|
|
||||||
|
|
||||||
while (read(STDIN_FILENO, &c, 1) == 1 && c != 'q') {
|
|
||||||
if (iscntrl(c)) {
|
|
||||||
printf("%02x\n", c);
|
|
||||||
} else {
|
|
||||||
printf("%02x ('%c')\n", c, c);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,70 @@
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <termios.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
|
||||||
|
#include "util.h"
|
||||||
|
|
||||||
|
|
||||||
|
static struct termios entry_term;
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* A text editor needs the terminal to be in raw mode; but the default
|
||||||
|
* is to be in canonical (cooked) mode, which is a buffered input mode.
|
||||||
|
*/
|
||||||
|
|
||||||
|
static void
|
||||||
|
enable_termraw()
|
||||||
|
{
|
||||||
|
struct termios raw;
|
||||||
|
|
||||||
|
/* Read the current terminal parameters for standard input. */
|
||||||
|
if (tcgetattr(STDIN_FILENO, &raw) == -1) {
|
||||||
|
die("tcgetattr while enabling raw mode");
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Put the terminal into raw mode.
|
||||||
|
*/
|
||||||
|
cfmakeraw(&raw);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Set timeout for read(2).
|
||||||
|
*
|
||||||
|
* VMIN: what is the minimum number of bytes required for read
|
||||||
|
* to return?
|
||||||
|
*
|
||||||
|
* VTIME: max time before read(2) returns in hundreds of milli-
|
||||||
|
* seconds.
|
||||||
|
*/
|
||||||
|
raw.c_cc[VMIN] = 0;
|
||||||
|
raw.c_cc[VTIME] = 1;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Now write the terminal parameters to the current terminal,
|
||||||
|
* after flushing any waiting input out.
|
||||||
|
*/
|
||||||
|
if (tcsetattr(STDIN_FILENO, TCSAFLUSH, &raw) == -1) {
|
||||||
|
die("tcsetattr while enabling raw mode");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static void
|
||||||
|
disable_termraw()
|
||||||
|
{
|
||||||
|
if (tcsetattr(STDIN_FILENO, TCSAFLUSH, &entry_term) == -1) {
|
||||||
|
die("couldn't disable terminal raw mode");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void
|
||||||
|
setup_terminal()
|
||||||
|
{
|
||||||
|
if (tcgetattr(STDIN_FILENO, &entry_term) == -1) {
|
||||||
|
die("can't snapshot terminal settings");
|
||||||
|
}
|
||||||
|
atexit(disable_termraw);
|
||||||
|
enable_termraw();
|
||||||
|
}
|
|
@ -0,0 +1,8 @@
|
||||||
|
#ifndef KE_TERMINAL_H
|
||||||
|
#define KE_TERMINAL_H
|
||||||
|
|
||||||
|
|
||||||
|
void setup_terminal();
|
||||||
|
|
||||||
|
|
||||||
|
#endif /* KE_TERMINAL_H */
|
|
@ -0,0 +1,10 @@
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
|
||||||
|
void
|
||||||
|
die(const char *s)
|
||||||
|
{
|
||||||
|
perror(s);
|
||||||
|
exit(1);
|
||||||
|
}
|
Loading…
Reference in New Issue