2011-05-22 21:36:34 -04:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
|
|
|
#include <regex.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2011-05-23 20:13:34 -04:00
|
|
|
#include <unistd.h>
|
2011-05-25 15:40:47 -04:00
|
|
|
#include "text.h"
|
2011-05-22 21:36:34 -04:00
|
|
|
|
|
|
|
static void grep(FILE *, const char *, regex_t *);
|
|
|
|
|
|
|
|
static bool iflag = false;
|
|
|
|
static bool vflag = false;
|
|
|
|
static bool many;
|
|
|
|
static bool match = false;
|
|
|
|
static char mode = 0;
|
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
|
|
|
{
|
2011-05-23 20:13:34 -04:00
|
|
|
char c;
|
|
|
|
int flags = 0;
|
2011-05-22 21:36:34 -04:00
|
|
|
regex_t preg;
|
|
|
|
FILE *fp;
|
|
|
|
|
2011-05-23 20:13:34 -04:00
|
|
|
while((c = getopt(argc, argv, "cilnqv")) != -1)
|
|
|
|
switch(c) {
|
|
|
|
case 'c':
|
|
|
|
case 'l':
|
|
|
|
case 'n':
|
|
|
|
case 'q':
|
|
|
|
mode = c;
|
|
|
|
break;
|
|
|
|
case 'i':
|
2011-05-22 21:36:34 -04:00
|
|
|
iflag = true;
|
2011-05-23 20:13:34 -04:00
|
|
|
break;
|
|
|
|
case 'v':
|
2011-05-22 21:36:34 -04:00
|
|
|
vflag = true;
|
|
|
|
break;
|
2011-05-23 20:13:34 -04:00
|
|
|
default:
|
2011-05-24 06:05:36 -04:00
|
|
|
exit(2);
|
2011-05-23 20:13:34 -04:00
|
|
|
}
|
|
|
|
if(optind == argc) {
|
|
|
|
fprintf(stderr, "usage: %s [-cilnqv] pattern [files...]\n", argv[0]);
|
2011-05-22 21:36:34 -04:00
|
|
|
exit(2);
|
|
|
|
}
|
|
|
|
if(mode == 'c')
|
|
|
|
flags |= REG_NOSUB;
|
|
|
|
if(iflag)
|
|
|
|
flags |= REG_ICASE;
|
2011-05-23 20:13:34 -04:00
|
|
|
regcomp(&preg, argv[optind++], flags);
|
2011-05-22 21:36:34 -04:00
|
|
|
|
2011-05-23 20:13:34 -04:00
|
|
|
many = (argc > optind+1);
|
|
|
|
if(optind == argc)
|
2011-05-22 21:36:34 -04:00
|
|
|
grep(stdin, "<stdin>", &preg);
|
2011-05-23 20:13:34 -04:00
|
|
|
else for(; optind < argc; optind++) {
|
|
|
|
if(!(fp = fopen(argv[optind], "r"))) {
|
|
|
|
fprintf(stderr, "fopen %s: ", argv[optind]);
|
2011-05-22 21:36:34 -04:00
|
|
|
perror(NULL);
|
|
|
|
exit(2);
|
|
|
|
}
|
2011-05-23 20:13:34 -04:00
|
|
|
grep(fp, argv[optind], &preg);
|
2011-05-22 21:36:34 -04:00
|
|
|
fclose(fp);
|
|
|
|
}
|
|
|
|
return match ? 0 : 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
grep(FILE *fp, const char *str, regex_t *preg)
|
|
|
|
{
|
2011-05-25 15:40:47 -04:00
|
|
|
char *buf = NULL;
|
|
|
|
long n, c = 0;
|
|
|
|
size_t size = 0;
|
2011-05-22 21:36:34 -04:00
|
|
|
|
2011-05-25 15:40:47 -04:00
|
|
|
for(n = 1; afgets(&buf, &size, fp); n++) {
|
2011-05-22 21:36:34 -04:00
|
|
|
if(regexec(preg, buf, 0, NULL, 0) ^ vflag)
|
|
|
|
continue;
|
2011-05-25 15:40:47 -04:00
|
|
|
switch(mode) {
|
|
|
|
case 'c':
|
2011-05-22 21:36:34 -04:00
|
|
|
c++;
|
|
|
|
break;
|
2011-05-25 15:40:47 -04:00
|
|
|
case 'l':
|
|
|
|
puts(str);
|
|
|
|
goto end;
|
|
|
|
case 'q':
|
2011-05-22 21:36:34 -04:00
|
|
|
exit(0);
|
2011-05-25 15:40:47 -04:00
|
|
|
default:
|
2011-05-22 21:36:34 -04:00
|
|
|
if(many)
|
|
|
|
printf("%s:", str);
|
|
|
|
if(mode == 'n')
|
2011-05-25 15:40:47 -04:00
|
|
|
printf("%ld:", n);
|
2011-05-22 21:36:34 -04:00
|
|
|
fputs(buf, stdout);
|
2011-05-25 15:40:47 -04:00
|
|
|
break;
|
2011-05-22 21:36:34 -04:00
|
|
|
}
|
|
|
|
match = true;
|
|
|
|
}
|
|
|
|
if(mode == 'c')
|
2011-05-25 15:40:47 -04:00
|
|
|
printf("%ld\n", c);
|
|
|
|
end:
|
2011-05-22 21:36:34 -04:00
|
|
|
if(ferror(fp)) {
|
|
|
|
fprintf(stderr, "%s: read error: ", str);
|
|
|
|
perror(NULL);
|
|
|
|
exit(2);
|
|
|
|
}
|
2011-05-25 15:40:47 -04:00
|
|
|
free(buf);
|
2011-05-22 21:36:34 -04:00
|
|
|
}
|