1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
|
/* Copyright (c) 1994 Sun Wu, Udi Manber, Burra Gopal. All Rights Reserved. */
/* test the conflicts between options */
#include <stdio.h>
#include "agrep.h"
extern int D;
extern int FILENAMEONLY, APPROX, PAT_FILE, PAT_BUFFER, MULTI_OUTPUT, COUNT, INVERSE, BESTMATCH;
extern FILEOUT;
extern REGEX;
extern DELIMITER;
extern WHOLELINE;
extern LINENUM;
extern I, S, DD;
extern JUMP;
extern char Progname[32];
extern int agrep_initialfd;
extern int EXITONERROR;
extern int errno;
int
compat()
{
if(BESTMATCH) if(COUNT || FILENAMEONLY || APPROX || PAT_FILE) {
BESTMATCH = 0;
fprintf(stderr, "%s: -B option ignored when -c, -l, -f, or -# is on\n", Progname);
}
if (COUNT && LINENUM) {
LINENUM = 0;
fprintf(stderr, "%s: -n option ignored with -c\n", Progname);
}
if(PAT_FILE || PAT_BUFFER) {
if(APPROX && (D > 0)) {
fprintf(stderr, "%s: approximate matching is not supported with -f option\n", Progname);
}
/*
if(INVERSE) {
fprintf(stderr, "%s: -f and -v are not compatible\n", Progname);
if (!EXITONERROR) {
errno = AGREP_ERROR;
return -1;
}
else exit(2);
}
*/
if(LINENUM) {
fprintf(stderr, "%s: -f and -n are not compatible\n", Progname);
if (!EXITONERROR) {
errno = AGREP_ERROR;
return -1;
}
else exit(2);
}
/*
if(DELIMITER) {
fprintf(stderr, "%s: -f and -d are not compatible\n", Progname);
if (!EXITONERROR) {
errno = AGREP_ERROR;
return -1;
}
else exit(2);
}
*/
}
if (MULTI_OUTPUT && LINENUM) {
fprintf(stderr, "%s: -M and -n are not compatible\n", Progname);
if (!EXITONERROR) {
errno = AGREP_ERROR;
return -1;
}
else exit(2);
}
if(JUMP) {
if(REGEX) {
fprintf(stderr, "%s: -D#, -I#, or -S# option is ignored for regular expression pattern\n", Progname);
JUMP = 0;
}
if(I == 0 || S == 0 || DD == 0) {
fprintf(stderr, "%s: the error cost cannot be 0\n", Progname);
if (!EXITONERROR) {
errno = AGREP_ERROR;
return -1;
}
else exit(2);
}
}
if(DELIMITER) {
if(WHOLELINE) {
fprintf(stderr, "%s: -d and -x are not compatible\n", Progname);
if (!EXITONERROR) {
errno = AGREP_ERROR;
return -1;
}
else exit(2);
}
}
if (INVERSE && (PAT_FILE || PAT_BUFFER) && MULTI_OUTPUT) {
fprintf(stderr, "%s: -v and -M are not compatible\n", Progname);
if (!EXITONERROR) {
errno = AGREP_ERROR;
return -1;
}
else exit(2);
}
return 0;
}
|