xv6-65oo2/user/grep.c

107 lines
2 KiB
C
Raw Normal View History

2007-08-28 04:26:34 +00:00
// Simple grep. Only supports ^ . * $ operators.
#include "kernel/types.h"
#include "kernel/stat.h"
#include "user/user.h"
2007-08-28 04:26:34 +00:00
char buf[1024];
int match(char*, char*);
void
grep(char *pattern, int fd)
{
int n, m;
char *p, *q;
2007-08-28 04:26:34 +00:00
m = 0;
while((n = read(fd, buf+m, sizeof(buf)-m-1)) > 0){
2007-08-28 04:26:34 +00:00
m += n;
buf[m] = '\0';
2007-08-28 04:26:34 +00:00
p = buf;
while((q = strchr(p, '\n')) != 0){
*q = 0;
if(match(pattern, p)){
*q = '\n';
write(1, p, q+1 - p);
}
p = q+1;
}
if(m > 0){
m -= p - buf;
memmove(buf, p, m);
}
}
}
int
main(int argc, char *argv[])
{
int fd, i;
char *pattern;
2007-08-28 04:26:34 +00:00
if(argc <= 1){
2019-08-27 17:13:03 +00:00
fprintf(2, "usage: grep pattern [file ...]\n");
2019-09-11 14:04:40 +00:00
exit(1);
2007-08-28 04:26:34 +00:00
}
pattern = argv[1];
2007-08-28 04:26:34 +00:00
if(argc <= 2){
grep(pattern, 0);
exit(0);
2007-08-28 04:26:34 +00:00
}
for(i = 2; i < argc; i++){
if((fd = open(argv[i], 0)) < 0){
2019-08-27 17:13:03 +00:00
printf("grep: cannot open %s\n", argv[i]);
2019-09-11 14:04:40 +00:00
exit(1);
2007-08-28 04:26:34 +00:00
}
grep(pattern, fd);
close(fd);
}
exit(0);
2007-08-28 04:26:34 +00:00
}
// Regexp matcher from Kernighan & Pike,
// The Practice of Programming, Chapter 9, or
// https://www.cs.princeton.edu/courses/archive/spr09/cos333/beautiful.html
2007-08-28 04:26:34 +00:00
int matchhere(char*, char*);
int matchstar(int, char*, char*);
int
match(char *re, char *text)
{
if(re[0] == '^')
return matchhere(re+1, text);
do{ // must look at empty string
if(matchhere(re, text))
return 1;
}while(*text++ != '\0');
return 0;
}
// matchhere: search for re at beginning of text
int matchhere(char *re, char *text)
{
if(re[0] == '\0')
return 1;
if(re[1] == '*')
return matchstar(re[0], re+2, text);
if(re[0] == '$' && re[1] == '\0')
return *text == '\0';
if(*text!='\0' && (re[0]=='.' || re[0]==*text))
return matchhere(re+1, text+1);
return 0;
}
// matchstar: search for c*re at beginning of text
int matchstar(int c, char *re, char *text)
{
do{ // a * matches zero or more instances
if(matchhere(re, text))
return 1;
}while(*text!='\0' && (*text++==c || c=='.'));
return 0;
}