sortix-mirror/utils/cat.cpp

83 lines
1.9 KiB
C++
Raw Normal View History

#include <stdio.h>
2011-11-18 18:29:52 +00:00
#include <unistd.h>
#include <fcntl.h>
#include <string.h>
#include <errno.h>
#include <libmaxsi/sortix-keyboard.h>
2011-11-18 18:29:52 +00:00
int cat(int argc, char* argv[])
{
int result = 0;
int outfd = open("/dev/tty", O_WRONLY | O_APPEND);
if ( outfd < 0 ) { printf("%s: %s: %s\n", argv[0], "/dev/tty", strerror(errno)); return 1; }
2011-11-18 18:29:52 +00:00
for ( int i = 1; i < argc; i++ )
{
int fd = open(argv[i], O_RDONLY);
if ( fd < 0 )
{
printf("%s: %s: %s\n", argv[0], argv[i], strerror(errno));
result = 1;
continue;
}
2011-11-18 18:29:52 +00:00
do
{
const size_t BUFFER_SIZE = 255;
char buffer[BUFFER_SIZE+1];
ssize_t bytesread = read(fd, buffer, BUFFER_SIZE);
if ( bytesread == 0 ) { break; }
if ( bytesread < 0 )
{
printf("%s: %s: %s\n", argv[0], argv[i], strerror(errno));
result = 1;
break;
}
2011-11-24 09:26:36 +00:00
if ( writeall(outfd, buffer, bytesread) )
{
printf("%s: /dev/tty: %s\n", argv[0], strerror(errno));
result = 1;
break;
}
2011-11-18 18:29:52 +00:00
} while ( true );
close(fd);
}
return result;
}
int main(int argc, char* argv[])
{
2011-11-18 18:29:52 +00:00
if ( 1 < argc )
{
return cat(argc, argv);
}
bool lastwasesc = false;
while (true)
{
unsigned method = System::Keyboard::POLL;
uint32_t codepoint = System::Keyboard::ReceiveKeystroke(method);
if ( codepoint == 0 ) { continue; }
if ( codepoint & Maxsi::Keyboard::DEPRESSED ) { continue; }
if ( codepoint == Maxsi::Keyboard::UP ) { printf("\e[A"); continue; }
if ( codepoint == Maxsi::Keyboard::DOWN ) { printf("\e[B"); continue; }
if ( codepoint == Maxsi::Keyboard::RIGHT ) { printf("\e[C"); continue; }
if ( codepoint == Maxsi::Keyboard::LEFT ) { printf("\e[D"); continue; }
if ( codepoint == Maxsi::Keyboard::ESC ) { printf("\e["); lastwasesc = true; continue; }
if ( lastwasesc && codepoint == '[' ) { continue; }
if ( codepoint >= 0x80 ) { continue; }
char msg[2]; msg[0] = codepoint; msg[1] = '\0';
printf(msg);
lastwasesc = false;
}
return 0;
}