sortix-mirror/utils/ls.cpp

79 lines
1.4 KiB
C++
Raw Normal View History

2011-08-27 21:26:11 +00:00
#include <stdio.h>
#include <fcntl.h>
#include <string.h>
#include <unistd.h>
#include <errno.h>
#include <error.h>
2012-01-14 23:47:38 +00:00
#include <dirent.h>
#include <sys/wait.h>
#include <libmaxsi/platform.h>
#include <libmaxsi/process.h>
int ls(const char* path)
2011-08-27 21:26:11 +00:00
{
2012-01-14 23:47:38 +00:00
DIR* dir = opendir(path);
if ( !dir ) { error(2, errno, "%s", path); return 2; }
// TODO: Hack until mountpoints work correctly.
if ( strcmp(path, "/") == 0 ) { printf("bin\ndev\n"); }
2012-01-14 23:47:38 +00:00
struct dirent* entry;
while ( (entry = readdir(dir)) )
{
2012-01-14 23:47:38 +00:00
printf("%s\n", entry->d_name);
}
2012-01-14 23:47:38 +00:00
if ( derror(dir) )
{
error(2, errno, "readdir: %s", path);
}
closedir(dir);
return 0;
}
int main(int argc, char* argv[])
{
pid_t childpid = 0;
if ( isatty(1) )
{
int pipes[2];
if ( pipe(pipes) ) { perror("pipe"); return 1; }
childpid = fork();
if ( childpid < 0 ) { perror("fork"); return 1; }
if ( childpid )
{
close(1);
dup(pipes[1]);
close(pipes[0]);
close(pipes[1]);
}
else
{
close(0);
dup(pipes[0]);
close(pipes[0]);
close(pipes[1]);
const char* columner = "column";
const char* argv[] = { columner, NULL };
execv(columner, (char* const*) argv);
error(127, errno, "%s", columner);
}
}
const size_t CWD_SIZE = 512;
char cwd[CWD_SIZE];
const char* path = getcwd(cwd, CWD_SIZE);
if ( !path ) { path = "."; }
if ( 1 < argc ) { path = argv[1]; }
2011-08-27 21:26:11 +00:00
int result = ls(path);
int status;
if ( childpid ) { close(1); wait(&status); }
return result;
2011-08-27 21:26:11 +00:00
}