6 |
its pattern matching. On a Unix or Win32 system it can recurse into |
its pattern matching. On a Unix or Win32 system it can recurse into |
7 |
directories. |
directories. |
8 |
|
|
9 |
Copyright (c) 1997-2008 University of Cambridge |
Copyright (c) 1997-2011 University of Cambridge |
10 |
|
|
11 |
----------------------------------------------------------------------------- |
----------------------------------------------------------------------------- |
12 |
Redistribution and use in source and binary forms, with or without |
Redistribution and use in source and binary forms, with or without |
71 |
typedef int BOOL; |
typedef int BOOL; |
72 |
|
|
73 |
#define MAX_PATTERN_COUNT 100 |
#define MAX_PATTERN_COUNT 100 |
74 |
|
#define OFFSET_SIZE 99 |
75 |
|
|
76 |
#if BUFSIZ > 8192 |
#if BUFSIZ > 8192 |
77 |
#define MBUFTHIRD BUFSIZ |
#define MBUFTHIRD BUFSIZ |
83 |
output. The order is important; it is assumed that a file name is wanted for |
output. The order is important; it is assumed that a file name is wanted for |
84 |
all values greater than FN_DEFAULT. */ |
all values greater than FN_DEFAULT. */ |
85 |
|
|
86 |
enum { FN_NONE, FN_DEFAULT, FN_ONLY, FN_NOMATCH_ONLY, FN_FORCE }; |
enum { FN_NONE, FN_DEFAULT, FN_MATCH_ONLY, FN_NOMATCH_ONLY, FN_FORCE }; |
87 |
|
|
88 |
/* File reading styles */ |
/* File reading styles */ |
89 |
|
|
104 |
|
|
105 |
enum { EL_LF, EL_CR, EL_CRLF, EL_ANY, EL_ANYCRLF }; |
enum { EL_LF, EL_CR, EL_CRLF, EL_ANY, EL_ANYCRLF }; |
106 |
|
|
107 |
|
/* In newer versions of gcc, with FORTIFY_SOURCE set (the default in some |
108 |
|
environments), a warning is issued if the value of fwrite() is ignored. |
109 |
|
Unfortunately, casting to (void) does not suppress the warning. To get round |
110 |
|
this, we use a macro that compiles a fudge. Oddly, this does not also seem to |
111 |
|
apply to fprintf(). */ |
112 |
|
|
113 |
|
#define FWRITE(a,b,c,d) if (fwrite(a,b,c,d)) {} |
114 |
|
|
115 |
|
|
116 |
|
|
117 |
/************************************************* |
/************************************************* |
163 |
static int DEE_action = DEE_READ; |
static int DEE_action = DEE_READ; |
164 |
static int error_count = 0; |
static int error_count = 0; |
165 |
static int filenames = FN_DEFAULT; |
static int filenames = FN_DEFAULT; |
166 |
|
static int only_matching = -1; |
167 |
static int process_options = 0; |
static int process_options = 0; |
168 |
|
|
169 |
|
static unsigned long int match_limit = 0; |
170 |
|
static unsigned long int match_limit_recursion = 0; |
171 |
|
|
172 |
static BOOL count_only = FALSE; |
static BOOL count_only = FALSE; |
173 |
static BOOL do_colour = FALSE; |
static BOOL do_colour = FALSE; |
174 |
static BOOL file_offsets = FALSE; |
static BOOL file_offsets = FALSE; |
175 |
static BOOL hyphenpending = FALSE; |
static BOOL hyphenpending = FALSE; |
176 |
static BOOL invert = FALSE; |
static BOOL invert = FALSE; |
177 |
|
static BOOL line_buffered = FALSE; |
178 |
static BOOL line_offsets = FALSE; |
static BOOL line_offsets = FALSE; |
179 |
static BOOL multiline = FALSE; |
static BOOL multiline = FALSE; |
180 |
static BOOL number = FALSE; |
static BOOL number = FALSE; |
181 |
static BOOL only_matching = FALSE; |
static BOOL omit_zero_count = FALSE; |
182 |
|
static BOOL resource_error = FALSE; |
183 |
static BOOL quiet = FALSE; |
static BOOL quiet = FALSE; |
184 |
static BOOL silent = FALSE; |
static BOOL silent = FALSE; |
185 |
static BOOL utf8 = FALSE; |
static BOOL utf8 = FALSE; |
186 |
|
|
187 |
/* Structure for options and list of them */ |
/* Structure for options and list of them */ |
188 |
|
|
189 |
enum { OP_NODATA, OP_STRING, OP_OP_STRING, OP_NUMBER, OP_OP_NUMBER, |
enum { OP_NODATA, OP_STRING, OP_OP_STRING, OP_NUMBER, OP_LONGNUMBER, |
190 |
OP_PATLIST }; |
OP_OP_NUMBER, OP_PATLIST }; |
191 |
|
|
192 |
typedef struct option_item { |
typedef struct option_item { |
193 |
int type; |
int type; |
211 |
#define N_NULL (-9) |
#define N_NULL (-9) |
212 |
#define N_LOFFSETS (-10) |
#define N_LOFFSETS (-10) |
213 |
#define N_FOFFSETS (-11) |
#define N_FOFFSETS (-11) |
214 |
|
#define N_LBUFFER (-12) |
215 |
|
#define N_M_LIMIT (-13) |
216 |
|
#define N_M_LIMIT_REC (-14) |
217 |
|
|
218 |
static option_item optionlist[] = { |
static option_item optionlist[] = { |
219 |
{ OP_NODATA, N_NULL, NULL, "", " terminate options" }, |
{ OP_NODATA, N_NULL, NULL, "", " terminate options" }, |
220 |
{ OP_NODATA, N_HELP, NULL, "help", "display this help and exit" }, |
{ OP_NODATA, N_HELP, NULL, "help", "display this help and exit" }, |
221 |
{ OP_NUMBER, 'A', &after_context, "after-context=number", "set number of following context lines" }, |
{ OP_NUMBER, 'A', &after_context, "after-context=number", "set number of following context lines" }, |
222 |
{ OP_NUMBER, 'B', &before_context, "before-context=number", "set number of prior context lines" }, |
{ OP_NUMBER, 'B', &before_context, "before-context=number", "set number of prior context lines" }, |
223 |
{ OP_OP_STRING, N_COLOUR, &colour_option, "color=option", "matched text color option" }, |
{ OP_OP_STRING, N_COLOUR, &colour_option, "color=option", "matched text color option" }, |
224 |
{ OP_NUMBER, 'C', &both_context, "context=number", "set number of context lines, before & after" }, |
{ OP_OP_STRING, N_COLOUR, &colour_option, "colour=option", "matched text colour option" }, |
225 |
{ OP_NODATA, 'c', NULL, "count", "print only a count of matching lines per FILE" }, |
{ OP_NUMBER, 'C', &both_context, "context=number", "set number of context lines, before & after" }, |
226 |
{ OP_OP_STRING, N_COLOUR, &colour_option, "colour=option", "matched text colour option" }, |
{ OP_NODATA, 'c', NULL, "count", "print only a count of matching lines per FILE" }, |
227 |
{ OP_STRING, 'D', &DEE_option, "devices=action","how to handle devices, FIFOs, and sockets" }, |
{ OP_STRING, 'D', &DEE_option, "devices=action","how to handle devices, FIFOs, and sockets" }, |
228 |
{ OP_STRING, 'd', &dee_option, "directories=action", "how to handle directories" }, |
{ OP_STRING, 'd', &dee_option, "directories=action", "how to handle directories" }, |
229 |
{ OP_PATLIST, 'e', NULL, "regex(p)", "specify pattern (may be used more than once)" }, |
{ OP_PATLIST, 'e', NULL, "regex(p)=pattern", "specify pattern (may be used more than once)" }, |
230 |
{ OP_NODATA, 'F', NULL, "fixed_strings", "patterns are sets of newline-separated strings" }, |
{ OP_NODATA, 'F', NULL, "fixed-strings", "patterns are sets of newline-separated strings" }, |
231 |
{ OP_STRING, 'f', &pattern_filename, "file=path", "read patterns from file" }, |
{ OP_STRING, 'f', &pattern_filename, "file=path", "read patterns from file" }, |
232 |
{ OP_NODATA, N_FOFFSETS, NULL, "file-offsets", "output file offsets, not text" }, |
{ OP_NODATA, N_FOFFSETS, NULL, "file-offsets", "output file offsets, not text" }, |
233 |
{ OP_NODATA, 'H', NULL, "with-filename", "force the prefixing filename on output" }, |
{ OP_NODATA, 'H', NULL, "with-filename", "force the prefixing filename on output" }, |
234 |
{ OP_NODATA, 'h', NULL, "no-filename", "suppress the prefixing filename on output" }, |
{ OP_NODATA, 'h', NULL, "no-filename", "suppress the prefixing filename on output" }, |
235 |
{ OP_NODATA, 'i', NULL, "ignore-case", "ignore case distinctions" }, |
{ OP_NODATA, 'i', NULL, "ignore-case", "ignore case distinctions" }, |
236 |
{ OP_NODATA, 'l', NULL, "files-with-matches", "print only FILE names containing matches" }, |
{ OP_NODATA, 'l', NULL, "files-with-matches", "print only FILE names containing matches" }, |
237 |
{ OP_NODATA, 'L', NULL, "files-without-match","print only FILE names not containing matches" }, |
{ OP_NODATA, 'L', NULL, "files-without-match","print only FILE names not containing matches" }, |
238 |
{ OP_STRING, N_LABEL, &stdin_name, "label=name", "set name for standard input" }, |
{ OP_STRING, N_LABEL, &stdin_name, "label=name", "set name for standard input" }, |
239 |
{ OP_NODATA, N_LOFFSETS, NULL, "line-offsets", "output line numbers and offsets, not text" }, |
{ OP_NODATA, N_LBUFFER, NULL, "line-buffered", "use line buffering" }, |
240 |
{ OP_STRING, N_LOCALE, &locale, "locale=locale", "use the named locale" }, |
{ OP_NODATA, N_LOFFSETS, NULL, "line-offsets", "output line numbers and offsets, not text" }, |
241 |
{ OP_NODATA, 'M', NULL, "multiline", "run in multiline mode" }, |
{ OP_STRING, N_LOCALE, &locale, "locale=locale", "use the named locale" }, |
242 |
{ OP_STRING, 'N', &newline, "newline=type", "set newline type (CR, LF, CRLF, ANYCRLF or ANY)" }, |
{ OP_LONGNUMBER, N_M_LIMIT, &match_limit, "match-limit=number", "set PCRE match limit option" }, |
243 |
{ OP_NODATA, 'n', NULL, "line-number", "print line number with output lines" }, |
{ OP_LONGNUMBER, N_M_LIMIT_REC, &match_limit_recursion, "recursion-limit=number", "set PCRE match recursion limit option" }, |
244 |
{ OP_NODATA, 'o', NULL, "only-matching", "show only the part of the line that matched" }, |
{ OP_NODATA, 'M', NULL, "multiline", "run in multiline mode" }, |
245 |
{ OP_NODATA, 'q', NULL, "quiet", "suppress output, just set return code" }, |
{ OP_STRING, 'N', &newline, "newline=type", "set newline type (CR, LF, CRLF, ANYCRLF or ANY)" }, |
246 |
{ OP_NODATA, 'r', NULL, "recursive", "recursively scan sub-directories" }, |
{ OP_NODATA, 'n', NULL, "line-number", "print line number with output lines" }, |
247 |
{ OP_STRING, N_EXCLUDE,&exclude_pattern, "exclude=pattern","exclude matching files when recursing" }, |
{ OP_OP_NUMBER, 'o', &only_matching, "only-matching=n", "show only the part of the line that matched" }, |
248 |
{ OP_STRING, N_INCLUDE,&include_pattern, "include=pattern","include matching files when recursing" }, |
{ OP_NODATA, 'q', NULL, "quiet", "suppress output, just set return code" }, |
249 |
|
{ OP_NODATA, 'r', NULL, "recursive", "recursively scan sub-directories" }, |
250 |
|
{ OP_STRING, N_EXCLUDE,&exclude_pattern, "exclude=pattern","exclude matching files when recursing" }, |
251 |
|
{ OP_STRING, N_INCLUDE,&include_pattern, "include=pattern","include matching files when recursing" }, |
252 |
|
{ OP_STRING, N_EXCLUDE_DIR,&exclude_dir_pattern, "exclude-dir=pattern","exclude matching directories when recursing" }, |
253 |
|
{ OP_STRING, N_INCLUDE_DIR,&include_dir_pattern, "include-dir=pattern","include matching directories when recursing" }, |
254 |
|
|
255 |
|
/* These two were accidentally implemented with underscores instead of |
256 |
|
hyphens in the option names. As this was not discovered for several releases, |
257 |
|
the incorrect versions are left in the table for compatibility. However, the |
258 |
|
--help function misses out any option that has an underscore in its name. */ |
259 |
|
|
260 |
{ OP_STRING, N_EXCLUDE_DIR,&exclude_dir_pattern, "exclude_dir=pattern","exclude matching directories when recursing" }, |
{ OP_STRING, N_EXCLUDE_DIR,&exclude_dir_pattern, "exclude_dir=pattern","exclude matching directories when recursing" }, |
261 |
{ OP_STRING, N_INCLUDE_DIR,&include_dir_pattern, "include_dir=pattern","include matching directories when recursing" }, |
{ OP_STRING, N_INCLUDE_DIR,&include_dir_pattern, "include_dir=pattern","include matching directories when recursing" }, |
262 |
|
|
263 |
#ifdef JFRIEDL_DEBUG |
#ifdef JFRIEDL_DEBUG |
264 |
{ OP_OP_NUMBER, 'S', &S_arg, "jeffS", "replace matched (sub)string with X" }, |
{ OP_OP_NUMBER, 'S', &S_arg, "jeffS", "replace matched (sub)string with X" }, |
265 |
#endif |
#endif |
359 |
} |
} |
360 |
|
|
361 |
|
|
362 |
/************* Test stdout for being a terminal in Unix **********/ |
/************* Test for a terminal in Unix **********/ |
363 |
|
|
364 |
static BOOL |
static BOOL |
365 |
is_stdout_tty(void) |
is_stdout_tty(void) |
367 |
return isatty(fileno(stdout)); |
return isatty(fileno(stdout)); |
368 |
} |
} |
369 |
|
|
370 |
|
static BOOL |
371 |
|
is_file_tty(FILE *f) |
372 |
|
{ |
373 |
|
return isatty(fileno(f)); |
374 |
|
} |
375 |
|
|
376 |
|
|
377 |
/************* Directory scanning in Win32 ***********/ |
/************* Directory scanning in Win32 ***********/ |
378 |
|
|
380 |
Lionel Fourquaux. David Burgess added a patch to define INVALID_FILE_ATTRIBUTES |
Lionel Fourquaux. David Burgess added a patch to define INVALID_FILE_ATTRIBUTES |
381 |
when it did not exist. David Byron added a patch that moved the #include of |
when it did not exist. David Byron added a patch that moved the #include of |
382 |
<windows.h> to before the INVALID_FILE_ATTRIBUTES definition rather than after. |
<windows.h> to before the INVALID_FILE_ATTRIBUTES definition rather than after. |
383 |
*/ |
The double test below stops gcc 4.4.4 grumbling that HAVE_WINDOWS_H is |
384 |
|
undefined when it is indeed undefined. */ |
385 |
|
|
386 |
#elif HAVE_WINDOWS_H |
#elif defined HAVE_WINDOWS_H && HAVE_WINDOWS_H |
387 |
|
|
388 |
#ifndef STRICT |
#ifndef STRICT |
389 |
# define STRICT |
# define STRICT |
427 |
if ((pattern == NULL) || (dir == NULL)) |
if ((pattern == NULL) || (dir == NULL)) |
428 |
{ |
{ |
429 |
fprintf(stderr, "pcregrep: malloc failed\n"); |
fprintf(stderr, "pcregrep: malloc failed\n"); |
430 |
exit(2); |
pcregrep_exit(2); |
431 |
} |
} |
432 |
memcpy(pattern, filename, len); |
memcpy(pattern, filename, len); |
433 |
memcpy(&(pattern[len]), "\\*", 3); |
memcpy(&(pattern[len]), "\\*", 3); |
486 |
} |
} |
487 |
|
|
488 |
|
|
489 |
/************* Test stdout for being a terminal in Win32 **********/ |
/************* Test for a terminal in Win32 **********/ |
490 |
|
|
491 |
/* I don't know how to do this; assume never */ |
/* I don't know how to do this; assume never */ |
492 |
|
|
496 |
return FALSE; |
return FALSE; |
497 |
} |
} |
498 |
|
|
499 |
|
static BOOL |
500 |
|
is_file_tty(FILE *f) |
501 |
|
{ |
502 |
|
return FALSE; |
503 |
|
} |
504 |
|
|
505 |
|
|
506 |
/************* Directory scanning when we can't do it ***********/ |
/************* Directory scanning when we can't do it ***********/ |
507 |
|
|
524 |
int isregfile(char *filename) { return 1; } |
int isregfile(char *filename) { return 1; } |
525 |
|
|
526 |
|
|
527 |
/************* Test stdout for being a terminal when we can't do it **********/ |
/************* Test for a terminal when we can't do it **********/ |
528 |
|
|
529 |
static BOOL |
static BOOL |
530 |
is_stdout_tty(void) |
is_stdout_tty(void) |
532 |
return FALSE; |
return FALSE; |
533 |
} |
} |
534 |
|
|
535 |
|
static BOOL |
536 |
|
is_file_tty(FILE *f) |
537 |
|
{ |
538 |
|
return FALSE; |
539 |
|
} |
540 |
|
|
541 |
#endif |
#endif |
542 |
|
|
565 |
|
|
566 |
|
|
567 |
/************************************************* |
/************************************************* |
568 |
|
* Exit from the program * |
569 |
|
*************************************************/ |
570 |
|
|
571 |
|
/* If there has been a resource error, give a suitable message. |
572 |
|
|
573 |
|
Argument: the return code |
574 |
|
Returns: does not return |
575 |
|
*/ |
576 |
|
|
577 |
|
static void |
578 |
|
pcregrep_exit(int rc) |
579 |
|
{ |
580 |
|
if (resource_error) |
581 |
|
{ |
582 |
|
fprintf(stderr, "pcregrep: Error %d or %d means that a resource limit " |
583 |
|
"was exceeded.\n", PCRE_ERROR_MATCHLIMIT, PCRE_ERROR_RECURSIONLIMIT); |
584 |
|
fprintf(stderr, "pcregrep: Check your regex for nested unlimited loops.\n"); |
585 |
|
} |
586 |
|
|
587 |
|
exit(rc); |
588 |
|
} |
589 |
|
|
590 |
|
|
591 |
|
|
592 |
|
/************************************************* |
593 |
|
* Read one line of input * |
594 |
|
*************************************************/ |
595 |
|
|
596 |
|
/* Normally, input is read using fread() into a large buffer, so many lines may |
597 |
|
be read at once. However, doing this for tty input means that no output appears |
598 |
|
until a lot of input has been typed. Instead, tty input is handled line by |
599 |
|
line. We cannot use fgets() for this, because it does not stop at a binary |
600 |
|
zero, and therefore there is no way of telling how many characters it has read, |
601 |
|
because there may be binary zeros embedded in the data. |
602 |
|
|
603 |
|
Arguments: |
604 |
|
buffer the buffer to read into |
605 |
|
length the maximum number of characters to read |
606 |
|
f the file |
607 |
|
|
608 |
|
Returns: the number of characters read, zero at end of file |
609 |
|
*/ |
610 |
|
|
611 |
|
static int |
612 |
|
read_one_line(char *buffer, int length, FILE *f) |
613 |
|
{ |
614 |
|
int c; |
615 |
|
int yield = 0; |
616 |
|
while ((c = fgetc(f)) != EOF) |
617 |
|
{ |
618 |
|
buffer[yield++] = c; |
619 |
|
if (c == '\n' || yield >= length) break; |
620 |
|
} |
621 |
|
return yield; |
622 |
|
} |
623 |
|
|
624 |
|
|
625 |
|
|
626 |
|
/************************************************* |
627 |
* Find end of line * |
* Find end of line * |
628 |
*************************************************/ |
*************************************************/ |
629 |
|
|
918 |
if (printname != NULL) fprintf(stdout, "%s-", printname); |
if (printname != NULL) fprintf(stdout, "%s-", printname); |
919 |
if (number) fprintf(stdout, "%d-", lastmatchnumber++); |
if (number) fprintf(stdout, "%d-", lastmatchnumber++); |
920 |
pp = end_of_line(pp, endptr, &ellength); |
pp = end_of_line(pp, endptr, &ellength); |
921 |
fwrite(lastmatchrestart, 1, pp - lastmatchrestart, stdout); |
FWRITE(lastmatchrestart, 1, pp - lastmatchrestart, stdout); |
922 |
lastmatchrestart = pp; |
lastmatchrestart = pp; |
923 |
} |
} |
924 |
hyphenpending = TRUE; |
hyphenpending = TRUE; |
928 |
|
|
929 |
|
|
930 |
/************************************************* |
/************************************************* |
931 |
|
* Apply patterns to subject till one matches * |
932 |
|
*************************************************/ |
933 |
|
|
934 |
|
/* This function is called to run through all patterns, looking for a match. It |
935 |
|
is used multiple times for the same subject when colouring is enabled, in order |
936 |
|
to find all possible matches. |
937 |
|
|
938 |
|
Arguments: |
939 |
|
matchptr the start of the subject |
940 |
|
length the length of the subject to match |
941 |
|
offsets the offets vector to fill in |
942 |
|
mrc address of where to put the result of pcre_exec() |
943 |
|
|
944 |
|
Returns: TRUE if there was a match |
945 |
|
FALSE if there was no match |
946 |
|
invert if there was a non-fatal error |
947 |
|
*/ |
948 |
|
|
949 |
|
static BOOL |
950 |
|
match_patterns(char *matchptr, size_t length, int *offsets, int *mrc) |
951 |
|
{ |
952 |
|
int i; |
953 |
|
size_t slen = length; |
954 |
|
const char *msg = "this text:\n\n"; |
955 |
|
if (slen > 200) |
956 |
|
{ |
957 |
|
slen = 200; |
958 |
|
msg = "text that starts:\n\n"; |
959 |
|
} |
960 |
|
for (i = 0; i < pattern_count; i++) |
961 |
|
{ |
962 |
|
*mrc = pcre_exec(pattern_list[i], hints_list[i], matchptr, (int)length, 0, |
963 |
|
PCRE_NOTEMPTY, offsets, OFFSET_SIZE); |
964 |
|
if (*mrc >= 0) return TRUE; |
965 |
|
if (*mrc == PCRE_ERROR_NOMATCH) continue; |
966 |
|
fprintf(stderr, "pcregrep: pcre_exec() gave error %d while matching ", *mrc); |
967 |
|
if (pattern_count > 1) fprintf(stderr, "pattern number %d to ", i+1); |
968 |
|
fprintf(stderr, "%s", msg); |
969 |
|
FWRITE(matchptr, 1, slen, stderr); /* In case binary zero included */ |
970 |
|
fprintf(stderr, "\n\n"); |
971 |
|
if (*mrc == PCRE_ERROR_MATCHLIMIT || *mrc == PCRE_ERROR_RECURSIONLIMIT) |
972 |
|
resource_error = TRUE; |
973 |
|
if (error_count++ > 20) |
974 |
|
{ |
975 |
|
fprintf(stderr, "pcregrep: Too many errors - abandoned.\n"); |
976 |
|
pcregrep_exit(2); |
977 |
|
} |
978 |
|
return invert; /* No more matching; don't show the line again */ |
979 |
|
} |
980 |
|
|
981 |
|
return FALSE; /* No match, no errors */ |
982 |
|
} |
983 |
|
|
984 |
|
|
985 |
|
|
986 |
|
/************************************************* |
987 |
* Grep an individual file * |
* Grep an individual file * |
988 |
*************************************************/ |
*************************************************/ |
989 |
|
|
1016 |
int lastmatchnumber = 0; |
int lastmatchnumber = 0; |
1017 |
int count = 0; |
int count = 0; |
1018 |
int filepos = 0; |
int filepos = 0; |
1019 |
int offsets[99]; |
int offsets[OFFSET_SIZE]; |
1020 |
char *lastmatchrestart = NULL; |
char *lastmatchrestart = NULL; |
1021 |
char buffer[3*MBUFTHIRD]; |
char buffer[3*MBUFTHIRD]; |
1022 |
char *ptr = buffer; |
char *ptr = buffer; |
1023 |
char *endptr; |
char *endptr; |
1024 |
size_t bufflength; |
size_t bufflength; |
1025 |
BOOL endhyphenpending = FALSE; |
BOOL endhyphenpending = FALSE; |
1026 |
|
BOOL input_line_buffered = line_buffered; |
1027 |
FILE *in = NULL; /* Ensure initialized */ |
FILE *in = NULL; /* Ensure initialized */ |
1028 |
|
|
1029 |
#ifdef SUPPORT_LIBZ |
#ifdef SUPPORT_LIBZ |
1061 |
|
|
1062 |
{ |
{ |
1063 |
in = (FILE *)handle; |
in = (FILE *)handle; |
1064 |
bufflength = fread(buffer, 1, 3*MBUFTHIRD, in); |
if (is_file_tty(in)) input_line_buffered = TRUE; |
1065 |
|
bufflength = input_line_buffered? |
1066 |
|
read_one_line(buffer, 3*MBUFTHIRD, in) : |
1067 |
|
fread(buffer, 1, 3*MBUFTHIRD, in); |
1068 |
} |
} |
1069 |
|
|
1070 |
endptr = buffer + bufflength; |
endptr = buffer + bufflength; |
1076 |
|
|
1077 |
while (ptr < endptr) |
while (ptr < endptr) |
1078 |
{ |
{ |
1079 |
int i, endlinelength; |
int endlinelength; |
1080 |
int mrc = 0; |
int mrc = 0; |
1081 |
BOOL match = FALSE; |
BOOL match; |
1082 |
char *matchptr = ptr; |
char *matchptr = ptr; |
1083 |
char *t = ptr; |
char *t = ptr; |
1084 |
size_t length, linelength; |
size_t length, linelength; |
1086 |
/* At this point, ptr is at the start of a line. We need to find the length |
/* At this point, ptr is at the start of a line. We need to find the length |
1087 |
of the subject string to pass to pcre_exec(). In multiline mode, it is the |
of the subject string to pass to pcre_exec(). In multiline mode, it is the |
1088 |
length remainder of the data in the buffer. Otherwise, it is the length of |
length remainder of the data in the buffer. Otherwise, it is the length of |
1089 |
the next line. After matching, we always advance by the length of the next |
the next line, excluding the terminating newline. After matching, we always |
1090 |
line. In multiline mode the PCRE_FIRSTLINE option is used for compiling, so |
advance by the length of the next line. In multiline mode the PCRE_FIRSTLINE |
1091 |
that any match is constrained to be in the first line. */ |
option is used for compiling, so that any match is constrained to be in the |
1092 |
|
first line. */ |
1093 |
|
|
1094 |
t = end_of_line(t, endptr, &endlinelength); |
t = end_of_line(t, endptr, &endlinelength); |
1095 |
linelength = t - ptr - endlinelength; |
linelength = t - ptr - endlinelength; |
1104 |
#include <time.h> |
#include <time.h> |
1105 |
struct timeval start_time, end_time; |
struct timeval start_time, end_time; |
1106 |
struct timezone dummy; |
struct timezone dummy; |
1107 |
|
int i; |
1108 |
|
|
1109 |
if (jfriedl_XT) |
if (jfriedl_XT) |
1110 |
{ |
{ |
1113 |
ptr = malloc(newlen + 1); |
ptr = malloc(newlen + 1); |
1114 |
if (!ptr) { |
if (!ptr) { |
1115 |
printf("out of memory"); |
printf("out of memory"); |
1116 |
exit(2); |
pcregrep_exit(2); |
1117 |
} |
} |
1118 |
endptr = ptr; |
endptr = ptr; |
1119 |
strcpy(endptr, jfriedl_prefix); endptr += strlen(jfriedl_prefix); |
strcpy(endptr, jfriedl_prefix); endptr += strlen(jfriedl_prefix); |
1130 |
|
|
1131 |
|
|
1132 |
for (i = 0; i < jfriedl_XR; i++) |
for (i = 0; i < jfriedl_XR; i++) |
1133 |
match = (pcre_exec(pattern_list[0], hints_list[0], ptr, length, 0, 0, offsets, 99) >= 0); |
match = (pcre_exec(pattern_list[0], hints_list[0], ptr, length, 0, |
1134 |
|
PCRE_NOTEMPTY, offsets, OFFSET_SIZE) >= 0); |
1135 |
|
|
1136 |
if (gettimeofday(&end_time, &dummy) != 0) |
if (gettimeofday(&end_time, &dummy) != 0) |
1137 |
perror("bad gettimeofday"); |
perror("bad gettimeofday"); |
1150 |
|
|
1151 |
ONLY_MATCHING_RESTART: |
ONLY_MATCHING_RESTART: |
1152 |
|
|
1153 |
/* Run through all the patterns until one matches. Note that we don't include |
/* Run through all the patterns until one matches or there is an error other |
1154 |
the final newline in the subject string. */ |
than NOMATCH. This code is in a subroutine so that it can be re-used for |
1155 |
|
finding subsequent matches when colouring matched lines. */ |
1156 |
|
|
1157 |
for (i = 0; i < pattern_count; i++) |
match = match_patterns(matchptr, length, offsets, &mrc); |
|
{ |
|
|
mrc = pcre_exec(pattern_list[i], hints_list[i], matchptr, length, 0, 0, |
|
|
offsets, 99); |
|
|
if (mrc >= 0) { match = TRUE; break; } |
|
|
if (mrc != PCRE_ERROR_NOMATCH) |
|
|
{ |
|
|
fprintf(stderr, "pcregrep: pcre_exec() error %d while matching ", mrc); |
|
|
if (pattern_count > 1) fprintf(stderr, "pattern number %d to ", i+1); |
|
|
fprintf(stderr, "this line:\n"); |
|
|
fwrite(matchptr, 1, linelength, stderr); /* In case binary zero included */ |
|
|
fprintf(stderr, "\n"); |
|
|
if (error_count == 0 && |
|
|
(mrc == PCRE_ERROR_MATCHLIMIT || mrc == PCRE_ERROR_RECURSIONLIMIT)) |
|
|
{ |
|
|
fprintf(stderr, "pcregrep: error %d means that a resource limit " |
|
|
"was exceeded\n", mrc); |
|
|
fprintf(stderr, "pcregrep: check your regex for nested unlimited loops\n"); |
|
|
} |
|
|
if (error_count++ > 20) |
|
|
{ |
|
|
fprintf(stderr, "pcregrep: too many errors - abandoned\n"); |
|
|
exit(2); |
|
|
} |
|
|
match = invert; /* No more matching; don't show the line again */ |
|
|
break; |
|
|
} |
|
|
} |
|
1158 |
|
|
1159 |
/* If it's a match or a not-match (as required), do what's wanted. */ |
/* If it's a match or a not-match (as required), do what's wanted. */ |
1160 |
|
|
1173 |
/* If all we want is a file name, there is no need to scan any more lines |
/* If all we want is a file name, there is no need to scan any more lines |
1174 |
in the file. */ |
in the file. */ |
1175 |
|
|
1176 |
else if (filenames == FN_ONLY) |
else if (filenames == FN_MATCH_ONLY) |
1177 |
{ |
{ |
1178 |
fprintf(stdout, "%s\n", printname); |
fprintf(stdout, "%s\n", printname); |
1179 |
return 0; |
return 0; |
1183 |
|
|
1184 |
else if (quiet) return 0; |
else if (quiet) return 0; |
1185 |
|
|
1186 |
/* The --only-matching option prints just the substring that matched, and |
/* The --only-matching option prints just the substring that matched, or a |
1187 |
the --file-offsets and --line-offsets options output offsets for the |
captured portion of it, as long as this string is not empty, and the |
1188 |
matching substring (they both force --only-matching). None of these options |
--file-offsets and --line-offsets options output offsets for the matching |
1189 |
|
substring (they both force --only-matching = 0). None of these options |
1190 |
prints any context. Afterwards, adjust the start and length, and then jump |
prints any context. Afterwards, adjust the start and length, and then jump |
1191 |
back to look for further matches in the same line. If we are in invert |
back to look for further matches in the same line. If we are in invert |
1192 |
mode, however, nothing is printed - this could be still useful because the |
mode, however, nothing is printed and we do not restart - this could still |
1193 |
return code is set. */ |
be useful because the return code is set. */ |
1194 |
|
|
1195 |
else if (only_matching) |
else if (only_matching >= 0) |
1196 |
{ |
{ |
1197 |
if (!invert) |
if (!invert) |
1198 |
{ |
{ |
1199 |
if (printname != NULL) fprintf(stdout, "%s:", printname); |
if (printname != NULL) fprintf(stdout, "%s:", printname); |
1200 |
if (number) fprintf(stdout, "%d:", linenumber); |
if (number) fprintf(stdout, "%d:", linenumber); |
1201 |
if (line_offsets) |
if (line_offsets) |
1202 |
fprintf(stdout, "%d,%d", (int)(matchptr + offsets[0] - ptr), |
fprintf(stdout, "%d,%d\n", (int)(matchptr + offsets[0] - ptr), |
1203 |
offsets[1] - offsets[0]); |
offsets[1] - offsets[0]); |
1204 |
else if (file_offsets) |
else if (file_offsets) |
1205 |
fprintf(stdout, "%d,%d", (int)(filepos + matchptr + offsets[0] - ptr), |
fprintf(stdout, "%d,%d\n", |
1206 |
|
(int)(filepos + matchptr + offsets[0] - ptr), |
1207 |
offsets[1] - offsets[0]); |
offsets[1] - offsets[0]); |
1208 |
else |
else if (only_matching < mrc) |
1209 |
fwrite(matchptr + offsets[0], 1, offsets[1] - offsets[0], stdout); |
{ |
1210 |
fprintf(stdout, "\n"); |
int plen = offsets[2*only_matching + 1] - offsets[2*only_matching]; |
1211 |
|
if (plen > 0) |
1212 |
|
{ |
1213 |
|
if (do_colour) fprintf(stdout, "%c[%sm", 0x1b, colour_string); |
1214 |
|
FWRITE(matchptr + offsets[only_matching*2], 1, plen, stdout); |
1215 |
|
if (do_colour) fprintf(stdout, "%c[00m", 0x1b); |
1216 |
|
fprintf(stdout, "\n"); |
1217 |
|
} |
1218 |
|
} |
1219 |
|
else if (printname != NULL || number) fprintf(stdout, "\n"); |
1220 |
matchptr += offsets[1]; |
matchptr += offsets[1]; |
1221 |
length -= offsets[1]; |
length -= offsets[1]; |
1222 |
match = FALSE; |
match = FALSE; |
1223 |
|
if (line_buffered) fflush(stdout); |
1224 |
|
rc = 0; /* Had some success */ |
1225 |
goto ONLY_MATCHING_RESTART; |
goto ONLY_MATCHING_RESTART; |
1226 |
} |
} |
1227 |
} |
} |
1257 |
if (printname != NULL) fprintf(stdout, "%s-", printname); |
if (printname != NULL) fprintf(stdout, "%s-", printname); |
1258 |
if (number) fprintf(stdout, "%d-", lastmatchnumber++); |
if (number) fprintf(stdout, "%d-", lastmatchnumber++); |
1259 |
pp = end_of_line(pp, endptr, &ellength); |
pp = end_of_line(pp, endptr, &ellength); |
1260 |
fwrite(lastmatchrestart, 1, pp - lastmatchrestart, stdout); |
FWRITE(lastmatchrestart, 1, pp - lastmatchrestart, stdout); |
1261 |
lastmatchrestart = pp; |
lastmatchrestart = pp; |
1262 |
} |
} |
1263 |
if (lastmatchrestart != ptr) hyphenpending = TRUE; |
if (lastmatchrestart != ptr) hyphenpending = TRUE; |
1297 |
if (printname != NULL) fprintf(stdout, "%s-", printname); |
if (printname != NULL) fprintf(stdout, "%s-", printname); |
1298 |
if (number) fprintf(stdout, "%d-", linenumber - linecount--); |
if (number) fprintf(stdout, "%d-", linenumber - linecount--); |
1299 |
pp = end_of_line(pp, endptr, &ellength); |
pp = end_of_line(pp, endptr, &ellength); |
1300 |
fwrite(p, 1, pp - p, stdout); |
FWRITE(p, 1, pp - p, stdout); |
1301 |
p = pp; |
p = pp; |
1302 |
} |
} |
1303 |
} |
} |
1347 |
{ |
{ |
1348 |
int first = S_arg * 2; |
int first = S_arg * 2; |
1349 |
int last = first + 1; |
int last = first + 1; |
1350 |
fwrite(ptr, 1, offsets[first], stdout); |
FWRITE(ptr, 1, offsets[first], stdout); |
1351 |
fprintf(stdout, "X"); |
fprintf(stdout, "X"); |
1352 |
fwrite(ptr + offsets[last], 1, linelength - offsets[last], stdout); |
FWRITE(ptr + offsets[last], 1, linelength - offsets[last], stdout); |
1353 |
} |
} |
1354 |
else |
else |
1355 |
#endif |
#endif |
1356 |
|
|
1357 |
/* We have to split the line(s) up if colouring. */ |
/* We have to split the line(s) up if colouring, and search for further |
1358 |
|
matches, but not of course if the line is a non-match. */ |
1359 |
|
|
1360 |
if (do_colour) |
if (do_colour && !invert) |
1361 |
{ |
{ |
1362 |
fwrite(ptr, 1, offsets[0], stdout); |
int last_offset = 0; |
1363 |
|
FWRITE(ptr, 1, offsets[0], stdout); |
1364 |
fprintf(stdout, "%c[%sm", 0x1b, colour_string); |
fprintf(stdout, "%c[%sm", 0x1b, colour_string); |
1365 |
fwrite(ptr + offsets[0], 1, offsets[1] - offsets[0], stdout); |
FWRITE(ptr + offsets[0], 1, offsets[1] - offsets[0], stdout); |
1366 |
fprintf(stdout, "%c[00m", 0x1b); |
fprintf(stdout, "%c[00m", 0x1b); |
1367 |
fwrite(ptr + offsets[1], 1, (linelength + endlinelength) - offsets[1], |
for (;;) |
1368 |
stdout); |
{ |
1369 |
|
last_offset += offsets[1]; |
1370 |
|
matchptr += offsets[1]; |
1371 |
|
length -= offsets[1]; |
1372 |
|
if (!match_patterns(matchptr, length, offsets, &mrc)) break; |
1373 |
|
FWRITE(matchptr, 1, offsets[0], stdout); |
1374 |
|
fprintf(stdout, "%c[%sm", 0x1b, colour_string); |
1375 |
|
FWRITE(matchptr + offsets[0], 1, offsets[1] - offsets[0], stdout); |
1376 |
|
fprintf(stdout, "%c[00m", 0x1b); |
1377 |
|
} |
1378 |
|
FWRITE(ptr + last_offset, 1, |
1379 |
|
(linelength + endlinelength) - last_offset, stdout); |
1380 |
} |
} |
1381 |
else fwrite(ptr, 1, linelength + endlinelength, stdout); |
|
1382 |
|
/* Not colouring; no need to search for further matches */ |
1383 |
|
|
1384 |
|
else FWRITE(ptr, 1, linelength + endlinelength, stdout); |
1385 |
} |
} |
1386 |
|
|
1387 |
/* End of doing what has to be done for a match */ |
/* End of doing what has to be done for a match. If --line-buffered was |
1388 |
|
given, flush the output. */ |
1389 |
|
|
1390 |
|
if (line_buffered) fflush(stdout); |
1391 |
rc = 0; /* Had some success */ |
rc = 0; /* Had some success */ |
1392 |
|
|
1393 |
/* Remember where the last match happened for after_context. We remember |
/* Remember where the last match happened for after_context. We remember |
1419 |
offset to the current line is maintained in filepos. */ |
offset to the current line is maintained in filepos. */ |
1420 |
|
|
1421 |
ptr += linelength + endlinelength; |
ptr += linelength + endlinelength; |
1422 |
filepos += linelength + endlinelength; |
filepos += (int)(linelength + endlinelength); |
1423 |
linenumber++; |
linenumber++; |
1424 |
|
|
1425 |
|
/* If input is line buffered, and the buffer is not yet full, read another |
1426 |
|
line and add it into the buffer. */ |
1427 |
|
|
1428 |
|
if (input_line_buffered && bufflength < sizeof(buffer)) |
1429 |
|
{ |
1430 |
|
int add = read_one_line(ptr, sizeof(buffer) - (ptr - buffer), in); |
1431 |
|
bufflength += add; |
1432 |
|
endptr += add; |
1433 |
|
} |
1434 |
|
|
1435 |
/* If we haven't yet reached the end of the file (the buffer is full), and |
/* If we haven't yet reached the end of the file (the buffer is full), and |
1436 |
the current point is in the top 1/3 of the buffer, slide the buffer down by |
the current point is in the top 1/3 of the buffer, slide the buffer down by |
1437 |
1/3 and refill it. Before we do this, if some unprinted "after" lines are |
1/3 and refill it. Before we do this, if some unprinted "after" lines are |
1466 |
else |
else |
1467 |
#endif |
#endif |
1468 |
|
|
1469 |
bufflength = 2*MBUFTHIRD + fread(buffer + 2*MBUFTHIRD, 1, MBUFTHIRD, in); |
bufflength = 2*MBUFTHIRD + |
1470 |
|
(input_line_buffered? |
1471 |
|
read_one_line(buffer + 2*MBUFTHIRD, MBUFTHIRD, in) : |
1472 |
|
fread(buffer + 2*MBUFTHIRD, 1, MBUFTHIRD, in)); |
1473 |
endptr = buffer + bufflength; |
endptr = buffer + bufflength; |
1474 |
|
|
1475 |
/* Adjust any last match point */ |
/* Adjust any last match point */ |
1481 |
/* End of file; print final "after" lines if wanted; do_after_lines sets |
/* End of file; print final "after" lines if wanted; do_after_lines sets |
1482 |
hyphenpending if it prints something. */ |
hyphenpending if it prints something. */ |
1483 |
|
|
1484 |
if (!only_matching && !count_only) |
if (only_matching < 0 && !count_only) |
1485 |
{ |
{ |
1486 |
do_after_lines(lastmatchnumber, lastmatchrestart, endptr, printname); |
do_after_lines(lastmatchnumber, lastmatchrestart, endptr, printname); |
1487 |
hyphenpending |= endhyphenpending; |
hyphenpending |= endhyphenpending; |
1500 |
|
|
1501 |
if (count_only) |
if (count_only) |
1502 |
{ |
{ |
1503 |
if (printname != NULL) fprintf(stdout, "%s:", printname); |
if (count > 0 || !omit_zero_count) |
1504 |
fprintf(stdout, "%d\n", count); |
{ |
1505 |
|
if (printname != NULL && filenames != FN_NONE) |
1506 |
|
fprintf(stdout, "%s:", printname); |
1507 |
|
fprintf(stdout, "%d\n", count); |
1508 |
|
} |
1509 |
} |
} |
1510 |
|
|
1511 |
return rc; |
return rc; |
1585 |
{ |
{ |
1586 |
int frc, nflen; |
int frc, nflen; |
1587 |
sprintf(buffer, "%.512s%c%.128s", pathname, sep, nextfile); |
sprintf(buffer, "%.512s%c%.128s", pathname, sep, nextfile); |
1588 |
nflen = strlen(nextfile); |
nflen = (int)(strlen(nextfile)); |
1589 |
|
|
1590 |
if (isdirectory(buffer)) |
if (isdirectory(buffer)) |
1591 |
{ |
{ |
1629 |
argument at top level, we don't show the file name, unless we are only showing |
argument at top level, we don't show the file name, unless we are only showing |
1630 |
the file name, or the filename was forced (-H). */ |
the file name, or the filename was forced (-H). */ |
1631 |
|
|
1632 |
pathlen = strlen(pathname); |
pathlen = (int)(strlen(pathname)); |
1633 |
|
|
1634 |
/* Open using zlib if it is supported and the file name ends with .gz. */ |
/* Open using zlib if it is supported and the file name ends with .gz. */ |
1635 |
|
|
1669 |
PLAIN_FILE: |
PLAIN_FILE: |
1670 |
#endif |
#endif |
1671 |
{ |
{ |
1672 |
in = fopen(pathname, "r"); |
in = fopen(pathname, "rb"); |
1673 |
handle = (void *)in; |
handle = (void *)in; |
1674 |
frtype = FR_PLAIN; |
frtype = FR_PLAIN; |
1675 |
} |
} |
1791 |
{ |
{ |
1792 |
int n; |
int n; |
1793 |
char s[4]; |
char s[4]; |
1794 |
|
|
1795 |
|
/* Two options were accidentally implemented and documented with underscores |
1796 |
|
instead of hyphens in their names, something that was not noticed for quite a |
1797 |
|
few releases. When fixing this, I left the underscored versions in the list |
1798 |
|
in case people were using them. However, we don't want to display them in the |
1799 |
|
help data. There are no other options that contain underscores, and we do not |
1800 |
|
expect ever to implement such options. Therefore, just omit any option that |
1801 |
|
contains an underscore. */ |
1802 |
|
|
1803 |
|
if (strchr(op->long_name, '_') != NULL) continue; |
1804 |
|
|
1805 |
if (op->one_char > 0) sprintf(s, "-%c,", op->one_char); else strcpy(s, " "); |
if (op->one_char > 0) sprintf(s, "-%c,", op->one_char); else strcpy(s, " "); |
1806 |
n = 30 - printf(" %s --%s", s, op->long_name); |
n = 31 - printf(" %s --%s", s, op->long_name); |
1807 |
if (n < 1) n = 1; |
if (n < 1) n = 1; |
1808 |
printf("%.*s%s\n", n, " ", op->help_text); |
printf("%.*s%s\n", n, " ", op->help_text); |
1809 |
} |
} |
1810 |
|
|
1811 |
printf("\nWhen reading patterns from a file instead of using a command line option,\n"); |
printf("\nWhen reading patterns from a file instead of using a command line option,\n"); |
1829 |
switch(letter) |
switch(letter) |
1830 |
{ |
{ |
1831 |
case N_FOFFSETS: file_offsets = TRUE; break; |
case N_FOFFSETS: file_offsets = TRUE; break; |
1832 |
case N_HELP: help(); exit(0); |
case N_HELP: help(); pcregrep_exit(0); |
1833 |
case N_LOFFSETS: line_offsets = number = TRUE; break; |
case N_LOFFSETS: line_offsets = number = TRUE; break; |
1834 |
|
case N_LBUFFER: line_buffered = TRUE; break; |
1835 |
case 'c': count_only = TRUE; break; |
case 'c': count_only = TRUE; break; |
1836 |
case 'F': process_options |= PO_FIXED_STRINGS; break; |
case 'F': process_options |= PO_FIXED_STRINGS; break; |
1837 |
case 'H': filenames = FN_FORCE; break; |
case 'H': filenames = FN_FORCE; break; |
1838 |
case 'h': filenames = FN_NONE; break; |
case 'h': filenames = FN_NONE; break; |
1839 |
case 'i': options |= PCRE_CASELESS; break; |
case 'i': options |= PCRE_CASELESS; break; |
1840 |
case 'l': filenames = FN_ONLY; break; |
case 'l': omit_zero_count = TRUE; filenames = FN_MATCH_ONLY; break; |
1841 |
case 'L': filenames = FN_NOMATCH_ONLY; break; |
case 'L': filenames = FN_NOMATCH_ONLY; break; |
1842 |
case 'M': multiline = TRUE; options |= PCRE_MULTILINE|PCRE_FIRSTLINE; break; |
case 'M': multiline = TRUE; options |= PCRE_MULTILINE|PCRE_FIRSTLINE; break; |
1843 |
case 'n': number = TRUE; break; |
case 'n': number = TRUE; break; |
1844 |
case 'o': only_matching = TRUE; break; |
case 'o': only_matching = 0; break; |
1845 |
case 'q': quiet = TRUE; break; |
case 'q': quiet = TRUE; break; |
1846 |
case 'r': dee_action = dee_RECURSE; break; |
case 'r': dee_action = dee_RECURSE; break; |
1847 |
case 's': silent = TRUE; break; |
case 's': silent = TRUE; break; |
1852 |
|
|
1853 |
case 'V': |
case 'V': |
1854 |
fprintf(stderr, "pcregrep version %s\n", pcre_version()); |
fprintf(stderr, "pcregrep version %s\n", pcre_version()); |
1855 |
exit(0); |
pcregrep_exit(0); |
1856 |
break; |
break; |
1857 |
|
|
1858 |
default: |
default: |
1859 |
fprintf(stderr, "pcregrep: Unknown option -%c\n", letter); |
fprintf(stderr, "pcregrep: Unknown option -%c\n", letter); |
1860 |
exit(usage(2)); |
pcregrep_exit(usage(2)); |
1861 |
} |
} |
1862 |
|
|
1863 |
return options; |
return options; |
2022 |
|
|
2023 |
/* Set the default line ending value from the default in the PCRE library; |
/* Set the default line ending value from the default in the PCRE library; |
2024 |
"lf", "cr", "crlf", and "any" are supported. Anything else is treated as "lf". |
"lf", "cr", "crlf", and "any" are supported. Anything else is treated as "lf". |
2025 |
*/ |
Note that the return values from pcre_config(), though derived from the ASCII |
2026 |
|
codes, are the same in EBCDIC environments, so we must use the actual values |
2027 |
|
rather than escapes such as as '\r'. */ |
2028 |
|
|
2029 |
(void)pcre_config(PCRE_CONFIG_NEWLINE, &i); |
(void)pcre_config(PCRE_CONFIG_NEWLINE, &i); |
2030 |
switch(i) |
switch(i) |
2031 |
{ |
{ |
2032 |
default: newline = (char *)"lf"; break; |
default: newline = (char *)"lf"; break; |
2033 |
case '\r': newline = (char *)"cr"; break; |
case 13: newline = (char *)"cr"; break; |
2034 |
case ('\r' << 8) | '\n': newline = (char *)"crlf"; break; |
case (13 << 8) | 10: newline = (char *)"crlf"; break; |
2035 |
case -1: newline = (char *)"any"; break; |
case -1: newline = (char *)"any"; break; |
2036 |
case -2: newline = (char *)"anycrlf"; break; |
case -2: newline = (char *)"anycrlf"; break; |
2037 |
} |
} |
2038 |
|
|
2039 |
/* Process the options */ |
/* Process the options */ |
2053 |
if (argv[i][1] == 0) |
if (argv[i][1] == 0) |
2054 |
{ |
{ |
2055 |
if (pattern_filename != NULL || pattern_count > 0) break; |
if (pattern_filename != NULL || pattern_count > 0) break; |
2056 |
else exit(usage(2)); |
else pcregrep_exit(usage(2)); |
2057 |
} |
} |
2058 |
|
|
2059 |
/* Handle a long name option, or -- to terminate the options */ |
/* Handle a long name option, or -- to terminate the options */ |
2075 |
Some options have variations in the long name spelling: specifically, we |
Some options have variations in the long name spelling: specifically, we |
2076 |
allow "regexp" because GNU grep allows it, though I personally go along |
allow "regexp" because GNU grep allows it, though I personally go along |
2077 |
with Jeffrey Friedl and Larry Wall in preferring "regex" without the "p". |
with Jeffrey Friedl and Larry Wall in preferring "regex" without the "p". |
2078 |
These options are entered in the table as "regex(p)". No option is in both |
These options are entered in the table as "regex(p)". Options can be in |
2079 |
these categories, fortunately. */ |
both these categories. */ |
2080 |
|
|
2081 |
for (op = optionlist; op->one_char != 0; op++) |
for (op = optionlist; op->one_char != 0; op++) |
2082 |
{ |
{ |
2083 |
char *opbra = strchr(op->long_name, '('); |
char *opbra = strchr(op->long_name, '('); |
2084 |
char *equals = strchr(op->long_name, '='); |
char *equals = strchr(op->long_name, '='); |
2085 |
if (opbra == NULL) /* Not a (p) case */ |
|
2086 |
|
/* Handle options with only one spelling of the name */ |
2087 |
|
|
2088 |
|
if (opbra == NULL) /* Does not contain '(' */ |
2089 |
{ |
{ |
2090 |
if (equals == NULL) /* Not thing=data case */ |
if (equals == NULL) /* Not thing=data case */ |
2091 |
{ |
{ |
2093 |
} |
} |
2094 |
else /* Special case xxx=data */ |
else /* Special case xxx=data */ |
2095 |
{ |
{ |
2096 |
int oplen = equals - op->long_name; |
int oplen = (int)(equals - op->long_name); |
2097 |
int arglen = (argequals == NULL)? (int)strlen(arg) : argequals - arg; |
int arglen = (argequals == NULL)? |
2098 |
|
(int)strlen(arg) : (int)(argequals - arg); |
2099 |
if (oplen == arglen && strncmp(arg, op->long_name, oplen) == 0) |
if (oplen == arglen && strncmp(arg, op->long_name, oplen) == 0) |
2100 |
{ |
{ |
2101 |
option_data = arg + arglen; |
option_data = arg + arglen; |
2108 |
} |
} |
2109 |
} |
} |
2110 |
} |
} |
2111 |
else /* Special case xxxx(p) */ |
|
2112 |
|
/* Handle options with an alternate spelling of the name */ |
2113 |
|
|
2114 |
|
else |
2115 |
{ |
{ |
2116 |
char buff1[24]; |
char buff1[24]; |
2117 |
char buff2[24]; |
char buff2[24]; |
2118 |
int baselen = opbra - op->long_name; |
|
2119 |
|
int baselen = (int)(opbra - op->long_name); |
2120 |
|
int fulllen = (int)(strchr(op->long_name, ')') - op->long_name + 1); |
2121 |
|
int arglen = (argequals == NULL || equals == NULL)? |
2122 |
|
(int)strlen(arg) : (int)(argequals - arg); |
2123 |
|
|
2124 |
sprintf(buff1, "%.*s", baselen, op->long_name); |
sprintf(buff1, "%.*s", baselen, op->long_name); |
2125 |
sprintf(buff2, "%s%.*s", buff1, |
sprintf(buff2, "%s%.*s", buff1, fulllen - baselen - 2, opbra + 1); |
2126 |
(int)strlen(op->long_name) - baselen - 2, opbra + 1); |
|
2127 |
if (strcmp(arg, buff1) == 0 || strcmp(arg, buff2) == 0) |
if (strncmp(arg, buff1, arglen) == 0 || |
2128 |
|
strncmp(arg, buff2, arglen) == 0) |
2129 |
|
{ |
2130 |
|
if (equals != NULL && argequals != NULL) |
2131 |
|
{ |
2132 |
|
option_data = argequals; |
2133 |
|
if (*option_data == '=') |
2134 |
|
{ |
2135 |
|
option_data++; |
2136 |
|
longopwasequals = TRUE; |
2137 |
|
} |
2138 |
|
} |
2139 |
break; |
break; |
2140 |
|
} |
2141 |
} |
} |
2142 |
} |
} |
2143 |
|
|
2144 |
if (op->one_char == 0) |
if (op->one_char == 0) |
2145 |
{ |
{ |
2146 |
fprintf(stderr, "pcregrep: Unknown option %s\n", argv[i]); |
fprintf(stderr, "pcregrep: Unknown option %s\n", argv[i]); |
2147 |
exit(usage(2)); |
pcregrep_exit(usage(2)); |
2148 |
} |
} |
2149 |
} |
} |
2150 |
|
|
|
|
|
2151 |
/* Jeffrey Friedl's debugging harness uses these additional options which |
/* Jeffrey Friedl's debugging harness uses these additional options which |
2152 |
are not in the right form for putting in the option table because they use |
are not in the right form for putting in the option table because they use |
2153 |
only one hyphen, yet are more than one character long. By putting them |
only one hyphen, yet are more than one character long. By putting them |
2181 |
while (*s != 0) |
while (*s != 0) |
2182 |
{ |
{ |
2183 |
for (op = optionlist; op->one_char != 0; op++) |
for (op = optionlist; op->one_char != 0; op++) |
2184 |
{ if (*s == op->one_char) break; } |
{ |
2185 |
|
if (*s == op->one_char) break; |
2186 |
|
} |
2187 |
if (op->one_char == 0) |
if (op->one_char == 0) |
2188 |
{ |
{ |
2189 |
fprintf(stderr, "pcregrep: Unknown option letter '%c' in \"%s\"\n", |
fprintf(stderr, "pcregrep: Unknown option letter '%c' in \"%s\"\n", |
2190 |
*s, argv[i]); |
*s, argv[i]); |
2191 |
exit(usage(2)); |
pcregrep_exit(usage(2)); |
2192 |
|
} |
2193 |
|
|
2194 |
|
/* Check for a single-character option that has data: OP_OP_NUMBER |
2195 |
|
is used for one that either has a numerical number or defaults, i.e. the |
2196 |
|
data is optional. If a digit follows, there is data; if not, carry on |
2197 |
|
with other single-character options in the same string. */ |
2198 |
|
|
2199 |
|
option_data = s+1; |
2200 |
|
if (op->type == OP_OP_NUMBER) |
2201 |
|
{ |
2202 |
|
if (isdigit((unsigned char)s[1])) break; |
2203 |
} |
} |
2204 |
if (op->type != OP_NODATA || s[1] == 0) |
else /* Check for end or a dataless option */ |
2205 |
{ |
{ |
2206 |
option_data = s+1; |
if (op->type != OP_NODATA || s[1] == 0) break; |
|
break; |
|
2207 |
} |
} |
2208 |
|
|
2209 |
|
/* Handle a single-character option with no data, then loop for the |
2210 |
|
next character in the string. */ |
2211 |
|
|
2212 |
pcre_options = handle_option(*s++, pcre_options); |
pcre_options = handle_option(*s++, pcre_options); |
2213 |
} |
} |
2214 |
} |
} |
2225 |
|
|
2226 |
/* If the option type is OP_OP_STRING or OP_OP_NUMBER, it's an option that |
/* If the option type is OP_OP_STRING or OP_OP_NUMBER, it's an option that |
2227 |
either has a value or defaults to something. It cannot have data in a |
either has a value or defaults to something. It cannot have data in a |
2228 |
separate item. At the moment, the only such options are "colo(u)r" and |
separate item. At the moment, the only such options are "colo(u)r", |
2229 |
Jeffrey Friedl's special -S debugging option. */ |
"only-matching", and Jeffrey Friedl's special -S debugging option. */ |
2230 |
|
|
2231 |
if (*option_data == 0 && |
if (*option_data == 0 && |
2232 |
(op->type == OP_OP_STRING || op->type == OP_OP_NUMBER)) |
(op->type == OP_OP_STRING || op->type == OP_OP_NUMBER)) |
2236 |
case N_COLOUR: |
case N_COLOUR: |
2237 |
colour_option = (char *)"auto"; |
colour_option = (char *)"auto"; |
2238 |
break; |
break; |
2239 |
|
|
2240 |
|
case 'o': |
2241 |
|
only_matching = 0; |
2242 |
|
break; |
2243 |
|
|
2244 |
#ifdef JFRIEDL_DEBUG |
#ifdef JFRIEDL_DEBUG |
2245 |
case 'S': |
case 'S': |
2246 |
S_arg = 0; |
S_arg = 0; |
2257 |
if (i >= argc - 1 || longopwasequals) |
if (i >= argc - 1 || longopwasequals) |
2258 |
{ |
{ |
2259 |
fprintf(stderr, "pcregrep: Data missing after %s\n", argv[i]); |
fprintf(stderr, "pcregrep: Data missing after %s\n", argv[i]); |
2260 |
exit(usage(2)); |
pcregrep_exit(usage(2)); |
2261 |
} |
} |
2262 |
option_data = argv[++i]; |
option_data = argv[++i]; |
2263 |
} |
} |
2278 |
|
|
2279 |
/* Otherwise, deal with single string or numeric data values. */ |
/* Otherwise, deal with single string or numeric data values. */ |
2280 |
|
|
2281 |
else if (op->type != OP_NUMBER && op->type != OP_OP_NUMBER) |
else if (op->type != OP_NUMBER && op->type != OP_LONGNUMBER && |
2282 |
|
op->type != OP_OP_NUMBER) |
2283 |
{ |
{ |
2284 |
*((char **)op->dataptr) = option_data; |
*((char **)op->dataptr) = option_data; |
2285 |
} |
} |
2286 |
|
|
2287 |
|
/* Avoid the use of strtoul() because SunOS4 doesn't have it. This is used |
2288 |
|
only for unpicking arguments, so just keep it simple. */ |
2289 |
|
|
2290 |
else |
else |
2291 |
{ |
{ |
2292 |
char *endptr; |
unsigned long int n = 0; |
2293 |
int n = strtoul(option_data, &endptr, 10); |
char *endptr = option_data; |
2294 |
|
while (*endptr != 0 && isspace((unsigned char)(*endptr))) endptr++; |
2295 |
|
while (isdigit((unsigned char)(*endptr))) |
2296 |
|
n = n * 10 + (int)(*endptr++ - '0'); |
2297 |
if (*endptr != 0) |
if (*endptr != 0) |
2298 |
{ |
{ |
2299 |
if (longop) |
if (longop) |
2300 |
{ |
{ |
2301 |
char *equals = strchr(op->long_name, '='); |
char *equals = strchr(op->long_name, '='); |
2302 |
int nlen = (equals == NULL)? (int)strlen(op->long_name) : |
int nlen = (equals == NULL)? (int)strlen(op->long_name) : |
2303 |
equals - op->long_name; |
(int)(equals - op->long_name); |
2304 |
fprintf(stderr, "pcregrep: Malformed number \"%s\" after --%.*s\n", |
fprintf(stderr, "pcregrep: Malformed number \"%s\" after --%.*s\n", |
2305 |
option_data, nlen, op->long_name); |
option_data, nlen, op->long_name); |
2306 |
} |
} |
2307 |
else |
else |
2308 |
fprintf(stderr, "pcregrep: Malformed number \"%s\" after -%c\n", |
fprintf(stderr, "pcregrep: Malformed number \"%s\" after -%c\n", |
2309 |
option_data, op->one_char); |
option_data, op->one_char); |
2310 |
exit(usage(2)); |
pcregrep_exit(usage(2)); |
2311 |
} |
} |
2312 |
*((int *)op->dataptr) = n; |
if (op->type == OP_LONGNUMBER) |
2313 |
|
*((unsigned long int *)op->dataptr) = n; |
2314 |
|
else |
2315 |
|
*((int *)op->dataptr) = n; |
2316 |
} |
} |
2317 |
} |
} |
2318 |
|
|
2326 |
} |
} |
2327 |
|
|
2328 |
/* Only one of --only-matching, --file-offsets, or --line-offsets is permitted. |
/* Only one of --only-matching, --file-offsets, or --line-offsets is permitted. |
2329 |
However, the latter two set the only_matching flag. */ |
However, the latter two set only_matching. */ |
2330 |
|
|
2331 |
if ((only_matching && (file_offsets || line_offsets)) || |
if ((only_matching >= 0 && (file_offsets || line_offsets)) || |
2332 |
(file_offsets && line_offsets)) |
(file_offsets && line_offsets)) |
2333 |
{ |
{ |
2334 |
fprintf(stderr, "pcregrep: Cannot mix --only-matching, --file-offsets " |
fprintf(stderr, "pcregrep: Cannot mix --only-matching, --file-offsets " |
2335 |
"and/or --line-offsets\n"); |
"and/or --line-offsets\n"); |
2336 |
exit(usage(2)); |
pcregrep_exit(usage(2)); |
2337 |
} |
} |
2338 |
|
|
2339 |
if (file_offsets || line_offsets) only_matching = TRUE; |
if (file_offsets || line_offsets) only_matching = 0; |
2340 |
|
|
2341 |
/* If a locale has not been provided as an option, see if the LC_CTYPE or |
/* If a locale has not been provided as an option, see if the LC_CTYPE or |
2342 |
LC_ALL environment variable is set, and if so, use it. */ |
LC_ALL environment variable is set, and if so, use it. */ |
2545 |
hint_count++; |
hint_count++; |
2546 |
} |
} |
2547 |
|
|
2548 |
|
/* If --match-limit or --recursion-limit was set, put the value(s) into the |
2549 |
|
pcre_extra block for each pattern. */ |
2550 |
|
|
2551 |
|
if (match_limit > 0 || match_limit_recursion > 0) |
2552 |
|
{ |
2553 |
|
for (j = 0; j < pattern_count; j++) |
2554 |
|
{ |
2555 |
|
if (hints_list[j] == NULL) |
2556 |
|
{ |
2557 |
|
hints_list[j] = malloc(sizeof(pcre_extra)); |
2558 |
|
if (hints_list[j] == NULL) |
2559 |
|
{ |
2560 |
|
fprintf(stderr, "pcregrep: malloc failed\n"); |
2561 |
|
pcregrep_exit(2); |
2562 |
|
} |
2563 |
|
} |
2564 |
|
if (match_limit > 0) |
2565 |
|
{ |
2566 |
|
hints_list[j]->flags |= PCRE_EXTRA_MATCH_LIMIT; |
2567 |
|
hints_list[j]->match_limit = match_limit; |
2568 |
|
} |
2569 |
|
if (match_limit_recursion > 0) |
2570 |
|
{ |
2571 |
|
hints_list[j]->flags |= PCRE_EXTRA_MATCH_LIMIT_RECURSION; |
2572 |
|
hints_list[j]->match_limit_recursion = match_limit_recursion; |
2573 |
|
} |
2574 |
|
} |
2575 |
|
} |
2576 |
|
|
2577 |
/* If there are include or exclude patterns, compile them. */ |
/* If there are include or exclude patterns, compile them. */ |
2578 |
|
|
2579 |
if (exclude_pattern != NULL) |
if (exclude_pattern != NULL) |
2655 |
} |
} |
2656 |
if (hints_list != NULL) |
if (hints_list != NULL) |
2657 |
{ |
{ |
2658 |
for (i = 0; i < hint_count; i++) free(hints_list[i]); |
for (i = 0; i < hint_count; i++) |
2659 |
|
{ |
2660 |
|
if (hints_list[i] != NULL) free(hints_list[i]); |
2661 |
|
} |
2662 |
free(hints_list); |
free(hints_list); |
2663 |
} |
} |
2664 |
return rc; |
pcregrep_exit(rc); |
2665 |
|
|
2666 |
EXIT2: |
EXIT2: |
2667 |
rc = 2; |
rc = 2; |