Installed PCRE release 7.0.
[exim.git] / src / src / pcre / pcre_newline.c
1 /* $Cambridge: exim/src/src/pcre/pcre_newline.c,v 1.1 2007/01/23 15:08:45 ph10 Exp $ */
2
3 /*************************************************
4 *      Perl-Compatible Regular Expressions       *
5 *************************************************/
6
7 /* PCRE is a library of functions to support regular expressions whose syntax
8 and semantics are as close as possible to those of the Perl 5 language.
9
10                        Written by Philip Hazel
11            Copyright (c) 1997-2006 University of Cambridge
12
13 -----------------------------------------------------------------------------
14 Redistribution and use in source and binary forms, with or without
15 modification, are permitted provided that the following conditions are met:
16
17     * Redistributions of source code must retain the above copyright notice,
18       this list of conditions and the following disclaimer.
19
20     * Redistributions in binary form must reproduce the above copyright
21       notice, this list of conditions and the following disclaimer in the
22       documentation and/or other materials provided with the distribution.
23
24     * Neither the name of the University of Cambridge nor the names of its
25       contributors may be used to endorse or promote products derived from
26       this software without specific prior written permission.
27
28 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
29 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
31 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
32 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
33 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
34 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
35 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
36 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
37 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
38 POSSIBILITY OF SUCH DAMAGE.
39 -----------------------------------------------------------------------------
40 */
41
42
43 /* This module contains internal functions for testing newlines when more than
44 one kind of newline is to be recognized. When a newline is found, its length is
45 returned. In principle, we could implement several newline "types", each
46 referring to a different set of newline characters. At present, PCRE supports
47 only NLTYPE_FIXED, which gets handled without these functions, and NLTYPE_ALL,
48 so for now the type isn't passed into the functions. It can easily be added
49 later if required. The full list of Unicode newline characters is taken from
50 http://unicode.org/unicode/reports/tr18/. */
51
52
53 #include "pcre_internal.h"
54
55
56
57 /*************************************************
58 *      Check for newline at given position       *
59 *************************************************/
60
61 /* It is guaranteed that the initial value of ptr is less than the end of the
62 string that is being processed.
63
64 Arguments:
65   ptr          pointer to possible newline
66   endptr       pointer to the end of the string
67   lenptr       where to return the length
68   utf8         TRUE if in utf8 mode
69
70 Returns:       TRUE or FALSE
71 */
72
73 BOOL
74 _pcre_is_newline(const uschar *ptr, const uschar *endptr, int *lenptr,
75   BOOL utf8)
76 {
77 int c;
78 if (utf8) { GETCHAR(c, ptr); } else c = *ptr;
79 switch(c)
80   {
81   case 0x000a:                                       /* LF */
82   case 0x000b:                                       /* VT */
83   case 0x000c: *lenptr = 1; return TRUE;             /* FF */
84   case 0x000d: *lenptr = (ptr < endptr - 1 && ptr[1] == 0x0a)? 2 : 1;
85                return TRUE;                          /* CR */
86   case 0x0085: *lenptr = utf8? 2 : 1; return TRUE;   /* NEL */
87   case 0x2028:                                       /* LS */
88   case 0x2029: *lenptr = 3; return TRUE;             /* PS */
89   default: return FALSE;
90   }
91 }
92
93
94
95 /*************************************************
96 *     Check for newline at previous position     *
97 *************************************************/
98
99 /* It is guaranteed that the initial value of ptr is greater than the start of
100 the string that is being processed.
101
102 Arguments:
103   ptr          pointer to possible newline
104   startptr     pointer to the start of the string
105   lenptr       where to return the length
106   utf8         TRUE if in utf8 mode
107
108 Returns:       TRUE or FALSE
109 */
110
111 BOOL
112 _pcre_was_newline(const uschar *ptr, const uschar *startptr, int *lenptr,
113   BOOL utf8)
114 {
115 int c;
116 ptr--;
117 if (utf8)
118   {
119   BACKCHAR(ptr);
120   GETCHAR(c, ptr);
121   }
122 else c = *ptr;
123 switch(c)
124   {
125   case 0x000a: *lenptr = (ptr > startptr && ptr[-1] == 0x0d)? 2 : 1;
126                return TRUE;                         /* LF */
127   case 0x000b:                                      /* VT */
128   case 0x000c:                                      /* FF */
129   case 0x000d: *lenptr = 1; return TRUE;            /* CR */
130   case 0x0085: *lenptr = utf8? 2 : 1; return TRUE;  /* NEL */
131   case 0x2028:                                      /* LS */
132   case 0x2029: *lenptr = 3; return TRUE;            /* PS */
133   default: return FALSE;
134   }
135 }
136
137 /* End of pcre_newline.c */