Fixed compiler warning by adding a cast
[privoxy.git] / pcrs.h
1 #ifndef _PCRS_H
2 #define _PCRS_H
3
4 /*********************************************************************
5  *
6  * File        :  $Source: /cvsroot/ijbswa/current/pcrs.h,v $
7  *
8  * Purpose     :  This is the pre-pre-alpha realease of libpcrs. It is only
9  *                published at this (ugly) stage of development, because it is
10  *                needed for a new feature in JunkBuster.
11  *
12  *                Apart from the code being quite a mess, no inconsistencies,
13  *                memory leaks or functional bugs **should** be present.
14  *
15  *                While you ROTFL at the code, you could just as well mail me
16  *                (oes@paradis.rhein.de) with advice for improvement.
17  *
18  *                pcrs is a supplement to the brilliant pcre library by Philip
19  *                Hazel (ph10@cam.ac.uk) and adds Perl-style substitution. That
20  *                is, it mimics Perl's 's' operator.
21  *
22  *                Currently, there's no documentation besides comments and the
23  *                source itself ;-)
24  *
25  * Copyright   :  Written and copyright 2001 by Sourceforge IJBSWA team.
26  *
27  * Revisions   :
28  *    $Log: pcrs.h,v $
29  *    Revision 1.4  2001/06/29 13:33:19  oes
30  *    - Cleaned up, commented and adapted to reflect the
31  *      changes in pcrs.c
32  *    - Introduced the PCRS_* flags
33  *
34  *    Revision 1.3  2001/06/09 10:58:57  jongfoster
35  *    Removing a single unused #define which referenced BUFSIZ
36  *
37  *    Revision 1.2  2001/05/25 11:03:55  oes
38  *    Added sanity check for NULL jobs to pcrs_exec_substitution
39  *
40  *    Revision 1.1.1.1  2001/05/15 13:59:02  oes
41  *    Initial import of version 2.9.3 source tree
42  *
43  *    Revision 1.4  2001/05/11 01:57:02  rodney
44  *    Added new file header standard w/RCS control tags.
45  *
46  *    revision 1.3  2001/05/08 02:38:13  rodney
47  *    Changed C++ "//" style comment to C style comments.
48  *
49  *    revision 1.2  2001/04/30 02:39:24  rodney
50  *    Made this pcrs.h file conditionally included.
51  *
52  *    revision 1.1  2001/04/16 21:10:38  rodney
53  *    Initial checkin
54  *
55  *********************************************************************/
56
57 #define PCRS_H_VERSION "$Id: pcrs.h,v 1.4 2001/06/29 13:33:19 oes Exp $"
58 \f
59
60 #include <pcre.h>
61
62 /*
63  * Constants:
64  */
65
66 #define FALSE 0
67 #define TRUE 1
68
69 /* Capacity */
70 #define PCRS_MAX_MATCHES 300
71 #define PCRS_MAX_SUBMATCHES 33
72
73 /* Error codes */
74 #define PCRS_ERR_NOMEM     -10      /* Failed to acquire memory. */
75 #define PCRS_ERR_CMDSYNTAX -11      /* Syntax of s///-command */
76 #define PCRS_ERR_STUDY     -12      /* pcre error while studying the pattern */
77 #define PCRS_ERR_BADJOB    -13      /* NULL job pointer, pattern or substitute */
78
79 /* Flags */
80 #define PCRS_GLOBAL          1      /* Job should be applied globally, as with perl's g option */
81 #define PCRS_SUCCESS         2      /* Job did previously match */
82 #define PCRS_TRIVIAL         4      /* Backreferences in the substitute are ignored */
83
84 /*
85  * Data types:
86  */
87
88 /* A compiled substitute */
89 typedef struct PCRS_SUBSTITUTE {
90   char *text;                               /* The plaintext part of the substitute, with all backreferences stripped */
91   int backrefs;                             /* The number of backreferences */
92   int block_offset[PCRS_MAX_SUBMATCHES];    /* Array with the offsets of all plaintext blocks in text */
93   int block_length[PCRS_MAX_SUBMATCHES];    /* Array with the lengths of all plaintext blocks in text */
94   int backref[PCRS_MAX_SUBMATCHES];         /* Array with the backref number for all plaintext block borders */
95   int backref_count[PCRS_MAX_SUBMATCHES];   /* Array with the number of reference to each backref index */
96 } pcrs_substitute;
97
98 typedef struct PCRS_MATCH {
99   /* char *buffer; */
100   int submatches;                           /* Number of submatches. Note: The zeroth is the whole match */
101   int submatch_offset[PCRS_MAX_SUBMATCHES]; /* Offset for each submatch in the subject */
102   int submatch_length[PCRS_MAX_SUBMATCHES]; /* Length of each submatch in the subject */
103 } pcrs_match;
104
105 typedef struct PCRS_JOB {
106   pcre *pattern;                            /* The compiled pcre pattern */
107   pcre_extra *hints;                        /* The pcre hints for the pattern */
108   int options;                              /* The pcre options (numeric) */
109   int flags;                                /* The pcrs and user flags (see "Flags" above) */
110   pcrs_substitute *substitute;              /* The compiles pcrs substitute */
111   struct PCRS_JOB *next;                    /* Pointer for chaining jobs to joblists */
112 } pcrs_job;
113
114 /*
115  * Prototypes:
116  */
117
118 /* Main usage */
119 extern pcrs_job        *pcrs_compile_command(char *command, int *errptr);
120 extern pcrs_job        *pcrs_compile(char *pattern, char *substitute, char *options, int *errptr);
121 extern int              pcrs_execute(pcrs_job *job, char *subject, int subject_length, char **result, int *result_length);
122
123 /* Freeing jobs */
124 extern pcrs_job        *pcrs_free_job(pcrs_job *job);
125 extern void             pcrs_free_joblist(pcrs_job *joblist);
126
127 /* Expert usage */
128 extern int              pcrs_compile_perl_options(char *optstring, int *flags);
129 extern pcrs_substitute *pcrs_compile_replacement(char *replacement, int trivialflag, int *errptr);
130
131 #endif /* ndef _PCRS_H */
132
133 /*
134   Local Variables:
135   tab-width: 3
136   end:
137 */