New #define, WIN_GUI_EDIT, enables the (embryonic) Win32 GUI editor.
[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.1.1.1  2001/05/15 13:59:02  oes
30  *    Initial import of version 2.9.3 source tree
31  *
32  *    Revision 1.4  2001/05/11 01:57:02  rodney
33  *    Added new file header standard w/RCS control tags.
34  *
35  *    revision 1.3  2001/05/08 02:38:13  rodney
36  *    Changed C++ "//" style comment to C style comments.
37  *
38  *    revision 1.2  2001/04/30 02:39:24  rodney
39  *    Made this pcrs.h file conditionally included.
40  *
41  *    revision 1.1  2001/04/16 21:10:38  rodney
42  *    Initial checkin
43  *
44  *********************************************************************/
45
46 #define PCRS_H_VERSION "$Id: pcrs.h,v 1.1.1.1 2001/05/15 13:59:02 oes Exp $"
47 \f
48
49
50 #include <pcre.h>
51
52 #define FALSE 0
53 #define TRUE 1
54 #define PCRS_MAX_MATCHES 300
55 #define PCRS_MAX_SUBMATCHES 33
56 #define CHARBUFSIZ BUFSIZ * sizeof(char)
57
58 #define PCRS_ERR_NOMEM     -10      /* Failed to acquire memory. */
59 #define PCRS_ERR_CMDSYNTAX -11      /* Syntax of s///-command */
60 #define PCRS_ERR_STUDY     -12      /* pcre error while studying the pattern */
61 #define PCRS_ERR_BADJOB    -13      /* NULL job pointer, pattern or substitute */
62
63 typedef struct S_PCRS_SUBSTITUTE {
64   char *text;
65   int backrefs;
66   int block_offset[PCRS_MAX_SUBMATCHES];
67   int block_length[PCRS_MAX_SUBMATCHES];
68   int backref[PCRS_MAX_SUBMATCHES];
69   int backref_count[PCRS_MAX_SUBMATCHES];
70 } pcrs_substitute;
71
72 typedef struct S_PCRS_MATCH {
73   /* char *buffer; */
74   int submatches;
75   int submatch_offset[PCRS_MAX_SUBMATCHES];
76   int submatch_length[PCRS_MAX_SUBMATCHES];
77 } pcrs_match;
78
79 typedef struct S_PCRS_JOB {
80   pcre *pattern;
81   pcre_extra *hints;
82   int options;
83   int globalflag;
84   int successflag;
85   pcrs_substitute *substitute;
86   struct S_PCRS_JOB *next;
87 } pcrs_job;
88
89 extern int              pcrs_compile_perl_options(char *optstring, int *globalflag);
90 extern pcrs_substitute *pcrs_compile_replacement(char *replacement, int *errptr);
91 extern pcrs_job        *pcrs_free_job(pcrs_job *job);
92 extern pcrs_job        *pcrs_make_job(char *command, int *errptr);
93 extern pcrs_job        *create_pcrs_job(pcre *pattern, pcre_extra *hints, int options, int globalflag, pcrs_substitute *substitute, int *errptr);
94 extern int              pcrs_exec_substitution(pcrs_job *job, char *subject, int subject_length, char **result, int *result_length);
95
96
97 #endif /* ndef _PCRS_H */
98
99 /*
100   Local Variables:
101   tab-width: 3
102   end:
103 */