passenger 4.0.27 → 4.0.28

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of passenger might be problematic. Click here for more details.

Files changed (156) hide show
  1. data.tar.gz.asc +7 -7
  2. data/.gitignore +1 -0
  3. data/NEWS +22 -0
  4. data/build/preprocessor.rb +10 -0
  5. data/build/rpm.rb +74 -65
  6. data/debian.template/rules.template +8 -0
  7. data/dev/copy_boost_headers.rb +11 -2
  8. data/doc/Users guide Apache.idmap.txt +161 -145
  9. data/doc/Users guide Apache.txt +12 -1
  10. data/doc/Users guide Nginx.idmap.txt +142 -126
  11. data/doc/Users guide Nginx.txt +14 -1
  12. data/doc/Users guide Standalone.txt +1 -0
  13. data/doc/users_guide_snippets/environment_variables.txt +1 -1
  14. data/doc/users_guide_snippets/installation.txt +2 -0
  15. data/doc/users_guide_snippets/tips.txt +118 -0
  16. data/ext/apache2/Configuration.cpp +0 -6
  17. data/ext/apache2/Configuration.hpp +0 -5
  18. data/ext/apache2/ConfigurationCommands.cpp +7 -0
  19. data/ext/apache2/ConfigurationFields.hpp +2 -0
  20. data/ext/apache2/ConfigurationSetters.cpp +24 -0
  21. data/ext/apache2/CreateDirConfig.cpp +1 -0
  22. data/ext/apache2/Hooks.cpp +0 -1
  23. data/ext/apache2/MergeDirConfig.cpp +7 -0
  24. data/ext/apache2/SetHeaders.cpp +5 -1
  25. data/ext/boost/cregex.hpp +39 -0
  26. data/ext/boost/libs/regex/src/c_regex_traits.cpp +193 -0
  27. data/ext/boost/libs/regex/src/cpp_regex_traits.cpp +117 -0
  28. data/ext/boost/libs/regex/src/cregex.cpp +660 -0
  29. data/ext/boost/libs/regex/src/instances.cpp +32 -0
  30. data/ext/boost/libs/regex/src/internals.hpp +35 -0
  31. data/ext/boost/libs/regex/src/posix_api.cpp +296 -0
  32. data/ext/boost/libs/regex/src/regex.cpp +227 -0
  33. data/ext/boost/libs/regex/src/regex_debug.cpp +59 -0
  34. data/ext/boost/libs/regex/src/regex_raw_buffer.cpp +72 -0
  35. data/ext/boost/libs/regex/src/regex_traits_defaults.cpp +692 -0
  36. data/ext/boost/libs/regex/src/static_mutex.cpp +179 -0
  37. data/ext/boost/libs/regex/src/wc_regex_traits.cpp +301 -0
  38. data/ext/boost/libs/regex/src/wide_posix_api.cpp +315 -0
  39. data/ext/boost/libs/regex/src/winstances.cpp +35 -0
  40. data/ext/boost/regex.h +100 -0
  41. data/ext/boost/regex.hpp +37 -0
  42. data/ext/boost/regex/concepts.hpp +1128 -0
  43. data/ext/boost/regex/config.hpp +435 -0
  44. data/ext/boost/regex/config/borland.hpp +72 -0
  45. data/ext/boost/regex/config/cwchar.hpp +207 -0
  46. data/ext/boost/regex/mfc.hpp +190 -0
  47. data/ext/boost/regex/pattern_except.hpp +100 -0
  48. data/ext/boost/regex/pending/object_cache.hpp +165 -0
  49. data/ext/boost/regex/pending/static_mutex.hpp +179 -0
  50. data/ext/boost/regex/pending/unicode_iterator.hpp +776 -0
  51. data/ext/boost/regex/regex_traits.hpp +35 -0
  52. data/ext/boost/regex/user.hpp +93 -0
  53. data/ext/boost/regex/v4/basic_regex.hpp +782 -0
  54. data/ext/boost/regex/v4/basic_regex_creator.hpp +1571 -0
  55. data/ext/boost/regex/v4/basic_regex_parser.hpp +2874 -0
  56. data/ext/boost/regex/v4/c_regex_traits.hpp +211 -0
  57. data/ext/boost/regex/v4/char_regex_traits.hpp +81 -0
  58. data/ext/boost/regex/v4/cpp_regex_traits.hpp +1099 -0
  59. data/ext/boost/regex/v4/cregex.hpp +330 -0
  60. data/ext/boost/regex/v4/error_type.hpp +59 -0
  61. data/ext/boost/regex/v4/fileiter.hpp +455 -0
  62. data/ext/boost/regex/v4/instances.hpp +222 -0
  63. data/ext/boost/regex/v4/iterator_category.hpp +91 -0
  64. data/ext/boost/regex/v4/iterator_traits.hpp +135 -0
  65. data/ext/boost/regex/v4/match_flags.hpp +138 -0
  66. data/ext/boost/regex/v4/match_results.hpp +702 -0
  67. data/ext/boost/regex/v4/mem_block_cache.hpp +99 -0
  68. data/ext/boost/regex/v4/perl_matcher.hpp +587 -0
  69. data/ext/boost/regex/v4/perl_matcher_common.hpp +996 -0
  70. data/ext/boost/regex/v4/perl_matcher_non_recursive.hpp +1642 -0
  71. data/ext/boost/regex/v4/perl_matcher_recursive.hpp +991 -0
  72. data/ext/boost/regex/v4/primary_transform.hpp +146 -0
  73. data/ext/boost/regex/v4/protected_call.hpp +81 -0
  74. data/ext/boost/regex/v4/regbase.hpp +180 -0
  75. data/ext/boost/regex/v4/regex.hpp +202 -0
  76. data/ext/boost/regex/v4/regex_format.hpp +1156 -0
  77. data/ext/boost/regex/v4/regex_fwd.hpp +73 -0
  78. data/ext/boost/regex/v4/regex_grep.hpp +155 -0
  79. data/ext/boost/regex/v4/regex_iterator.hpp +201 -0
  80. data/ext/boost/regex/v4/regex_match.hpp +382 -0
  81. data/ext/boost/regex/v4/regex_merge.hpp +93 -0
  82. data/ext/boost/regex/v4/regex_raw_buffer.hpp +210 -0
  83. data/ext/boost/regex/v4/regex_replace.hpp +99 -0
  84. data/ext/boost/regex/v4/regex_search.hpp +217 -0
  85. data/ext/boost/regex/v4/regex_split.hpp +172 -0
  86. data/ext/boost/regex/v4/regex_token_iterator.hpp +342 -0
  87. data/ext/boost/regex/v4/regex_traits.hpp +189 -0
  88. data/ext/boost/regex/v4/regex_traits_defaults.hpp +371 -0
  89. data/ext/boost/regex/v4/regex_workaround.hpp +232 -0
  90. data/ext/boost/regex/v4/states.hpp +301 -0
  91. data/ext/boost/regex/v4/sub_match.hpp +512 -0
  92. data/ext/boost/regex/v4/syntax_type.hpp +105 -0
  93. data/ext/boost/regex/v4/u32regex_iterator.hpp +193 -0
  94. data/ext/boost/regex/v4/u32regex_token_iterator.hpp +377 -0
  95. data/ext/boost/regex/v4/w32_regex_traits.hpp +741 -0
  96. data/ext/boost/regex_fwd.hpp +33 -0
  97. data/ext/common/AgentsStarter.h +0 -11
  98. data/ext/common/ApplicationPool2/Common.h +1 -7
  99. data/ext/common/ApplicationPool2/DirectSpawner.h +3 -3
  100. data/ext/common/ApplicationPool2/Group.h +166 -69
  101. data/ext/common/ApplicationPool2/Implementation.cpp +55 -10
  102. data/ext/common/ApplicationPool2/Options.h +45 -10
  103. data/ext/common/ApplicationPool2/PipeWatcher.h +1 -2
  104. data/ext/common/ApplicationPool2/Pool.h +29 -7
  105. data/ext/common/ApplicationPool2/Process.h +22 -3
  106. data/ext/common/ApplicationPool2/Session.h +1 -0
  107. data/ext/common/ApplicationPool2/SmartSpawner.h +5 -10
  108. data/ext/common/ApplicationPool2/Spawner.h +10 -15
  109. data/ext/common/ApplicationPool2/SuperGroup.h +10 -9
  110. data/ext/common/Constants.h +1 -3
  111. data/ext/common/Hooks.h +193 -0
  112. data/ext/common/Logging.cpp +67 -2
  113. data/ext/common/Logging.h +23 -1
  114. data/ext/common/Utils.cpp +0 -21
  115. data/ext/common/Utils.h +0 -42
  116. data/ext/common/Utils/CachedFileStat.hpp +1 -1
  117. data/ext/common/Utils/StrIntUtils.h +61 -14
  118. data/ext/common/Utils/StringMap.h +4 -0
  119. data/ext/common/agents/HelperAgent/AgentOptions.h +4 -4
  120. data/ext/common/agents/HelperAgent/Main.cpp +2 -3
  121. data/ext/common/agents/HelperAgent/RequestHandler.h +65 -2
  122. data/ext/common/agents/LoggingAgent/FilterSupport.h +3 -1
  123. data/ext/common/agents/Watchdog/Main.cpp +8 -72
  124. data/ext/nginx/CacheLocationConfig.c +29 -1
  125. data/ext/nginx/Configuration.c +0 -12
  126. data/ext/nginx/Configuration.h +0 -1
  127. data/ext/nginx/ConfigurationCommands.c +10 -0
  128. data/ext/nginx/ConfigurationFields.h +2 -0
  129. data/ext/nginx/CreateLocationConfig.c +4 -0
  130. data/ext/nginx/MergeLocationConfig.c +6 -0
  131. data/ext/oxt/system_calls.cpp +7 -1
  132. data/ext/oxt/system_calls.hpp +7 -7
  133. data/helper-scripts/node-loader.js +6 -2
  134. data/helper-scripts/rack-loader.rb +5 -2
  135. data/helper-scripts/rack-preloader.rb +5 -2
  136. data/lib/phusion_passenger.rb +1 -1
  137. data/lib/phusion_passenger/apache2/config_options.rb +8 -0
  138. data/lib/phusion_passenger/constants.rb +0 -1
  139. data/lib/phusion_passenger/nginx/config_options.rb +9 -2
  140. data/lib/phusion_passenger/platform_info/apache.rb +2 -1
  141. data/lib/phusion_passenger/platform_info/compiler.rb +15 -1
  142. data/lib/phusion_passenger/platform_info/cxx_portability.rb +2 -0
  143. data/node_lib/phusion_passenger/httplib_emulation.js +85 -17
  144. data/node_lib/phusion_passenger/request_handler.js +10 -2
  145. data/rpm/Vagrantfile +32 -0
  146. data/rpm/get_distro_id.py +4 -0
  147. data/test/cxx/ApplicationPool2/DirectSpawnerTest.cpp +2 -2
  148. data/test/cxx/ApplicationPool2/PoolTest.cpp +60 -9
  149. data/test/cxx/ApplicationPool2/SmartSpawnerTest.cpp +2 -6
  150. data/test/cxx/CachedFileStatTest.cpp +5 -5
  151. data/test/cxx/RequestHandlerTest.cpp +3 -6
  152. data/test/cxx/UtilsTest.cpp +30 -0
  153. data/test/node/httplib_emulation_spec.js +491 -0
  154. data/test/node/spec_helper.js +25 -0
  155. metadata +78 -2
  156. metadata.gz.asc +7 -7
@@ -0,0 +1,99 @@
1
+ /*
2
+ * Copyright (c) 2002
3
+ * John Maddock
4
+ *
5
+ * Use, modification and distribution are subject to the
6
+ * Boost Software License, Version 1.0. (See accompanying file
7
+ * LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
8
+ *
9
+ */
10
+
11
+ /*
12
+ * LOCATION: see http://www.boost.org for most recent version.
13
+ * FILE mem_block_cache.hpp
14
+ * VERSION see <boost/version.hpp>
15
+ * DESCRIPTION: memory block cache used by the non-recursive matcher.
16
+ */
17
+
18
+ #ifndef BOOST_REGEX_V4_MEM_BLOCK_CACHE_HPP
19
+ #define BOOST_REGEX_V4_MEM_BLOCK_CACHE_HPP
20
+
21
+ #include <new>
22
+ #ifdef BOOST_HAS_THREADS
23
+ #include <boost/regex/pending/static_mutex.hpp>
24
+ #endif
25
+
26
+ #ifdef BOOST_HAS_ABI_HEADERS
27
+ # include BOOST_ABI_PREFIX
28
+ #endif
29
+
30
+ namespace boost{
31
+ namespace re_detail{
32
+
33
+ struct mem_block_node
34
+ {
35
+ mem_block_node* next;
36
+ };
37
+
38
+ struct mem_block_cache
39
+ {
40
+ // this member has to be statically initialsed:
41
+ mem_block_node* next;
42
+ unsigned cached_blocks;
43
+ #ifdef BOOST_HAS_THREADS
44
+ boost::static_mutex mut;
45
+ #endif
46
+
47
+ ~mem_block_cache()
48
+ {
49
+ while(next)
50
+ {
51
+ mem_block_node* old = next;
52
+ next = next->next;
53
+ ::operator delete(old);
54
+ }
55
+ }
56
+ void* get()
57
+ {
58
+ #ifdef BOOST_HAS_THREADS
59
+ boost::static_mutex::scoped_lock g(mut);
60
+ #endif
61
+ if(next)
62
+ {
63
+ mem_block_node* result = next;
64
+ next = next->next;
65
+ --cached_blocks;
66
+ return result;
67
+ }
68
+ return ::operator new(BOOST_REGEX_BLOCKSIZE);
69
+ }
70
+ void put(void* p)
71
+ {
72
+ #ifdef BOOST_HAS_THREADS
73
+ boost::static_mutex::scoped_lock g(mut);
74
+ #endif
75
+ if(cached_blocks >= BOOST_REGEX_MAX_CACHE_BLOCKS)
76
+ {
77
+ ::operator delete(p);
78
+ }
79
+ else
80
+ {
81
+ mem_block_node* old = static_cast<mem_block_node*>(p);
82
+ old->next = next;
83
+ next = old;
84
+ ++cached_blocks;
85
+ }
86
+ }
87
+ };
88
+
89
+ extern mem_block_cache block_cache;
90
+
91
+ }
92
+ } // namespace boost
93
+
94
+ #ifdef BOOST_HAS_ABI_HEADERS
95
+ # include BOOST_ABI_SUFFIX
96
+ #endif
97
+
98
+ #endif
99
+
@@ -0,0 +1,587 @@
1
+ /*
2
+ *
3
+ * Copyright (c) 2002
4
+ * John Maddock
5
+ *
6
+ * Use, modification and distribution are subject to the
7
+ * Boost Software License, Version 1.0. (See accompanying file
8
+ * LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
9
+ *
10
+ */
11
+
12
+ #ifndef BOOST_REGEX_MATCHER_HPP
13
+ #define BOOST_REGEX_MATCHER_HPP
14
+
15
+ #include <boost/regex/v4/iterator_category.hpp>
16
+
17
+ #ifdef BOOST_MSVC
18
+ #pragma warning(push)
19
+ #pragma warning(disable: 4103)
20
+ #endif
21
+ #ifdef BOOST_HAS_ABI_HEADERS
22
+ # include BOOST_ABI_PREFIX
23
+ #endif
24
+ #ifdef BOOST_MSVC
25
+ #pragma warning(pop)
26
+ #endif
27
+
28
+ #ifdef BOOST_MSVC
29
+ # pragma warning(push)
30
+ # pragma warning(disable: 4800)
31
+ #endif
32
+
33
+ namespace boost{
34
+ namespace re_detail{
35
+
36
+ //
37
+ // error checking API:
38
+ //
39
+ BOOST_REGEX_DECL void BOOST_REGEX_CALL verify_options(boost::regex_constants::syntax_option_type ef, match_flag_type mf);
40
+ //
41
+ // function can_start:
42
+ //
43
+ template <class charT>
44
+ inline bool can_start(charT c, const unsigned char* map, unsigned char mask)
45
+ {
46
+ return ((c < static_cast<charT>(0)) ? true : ((c >= static_cast<charT>(1 << CHAR_BIT)) ? true : map[c] & mask));
47
+ }
48
+ inline bool can_start(char c, const unsigned char* map, unsigned char mask)
49
+ {
50
+ return map[(unsigned char)c] & mask;
51
+ }
52
+ inline bool can_start(signed char c, const unsigned char* map, unsigned char mask)
53
+ {
54
+ return map[(unsigned char)c] & mask;
55
+ }
56
+ inline bool can_start(unsigned char c, const unsigned char* map, unsigned char mask)
57
+ {
58
+ return map[c] & mask;
59
+ }
60
+ inline bool can_start(unsigned short c, const unsigned char* map, unsigned char mask)
61
+ {
62
+ return ((c >= (1 << CHAR_BIT)) ? true : map[c] & mask);
63
+ }
64
+ #if !defined(__hpux) && !defined(__WINSCW__)// WCHAR_MIN not usable in pp-directives.
65
+ #if defined(WCHAR_MIN) && (WCHAR_MIN == 0) && !defined(BOOST_NO_INTRINSIC_WCHAR_T)
66
+ inline bool can_start(wchar_t c, const unsigned char* map, unsigned char mask)
67
+ {
68
+ return ((c >= static_cast<wchar_t>(1u << CHAR_BIT)) ? true : map[c] & mask);
69
+ }
70
+ #endif
71
+ #endif
72
+ #if !defined(BOOST_NO_INTRINSIC_WCHAR_T)
73
+ inline bool can_start(unsigned int c, const unsigned char* map, unsigned char mask)
74
+ {
75
+ return (((c >= static_cast<unsigned int>(1u << CHAR_BIT)) ? true : map[c] & mask));
76
+ }
77
+ #endif
78
+
79
+
80
+ //
81
+ // Unfortunately Rogue Waves standard library appears to have a bug
82
+ // in std::basic_string::compare that results in eroneous answers
83
+ // in some cases (tested with Borland C++ 5.1, Rogue Wave lib version
84
+ // 0x020101) the test case was:
85
+ // {39135,0} < {0xff,0}
86
+ // which succeeds when it should not.
87
+ //
88
+ #ifndef _RWSTD_VER
89
+ #if !BOOST_WORKAROUND(BOOST_MSVC, < 1310)
90
+ template <class C, class T, class A>
91
+ inline int string_compare(const std::basic_string<C,T,A>& s, const C* p)
92
+ {
93
+ if(0 == *p)
94
+ {
95
+ if(s.empty() || ((s.size() == 1) && (s[0] == 0)))
96
+ return 0;
97
+ }
98
+ return s.compare(p);
99
+ }
100
+ #endif
101
+ #else
102
+ #if !BOOST_WORKAROUND(BOOST_MSVC, < 1310)
103
+ template <class C, class T, class A>
104
+ inline int string_compare(const std::basic_string<C,T,A>& s, const C* p)
105
+ {
106
+ if(0 == *p)
107
+ {
108
+ if(s.empty() || ((s.size() == 1) && (s[0] == 0)))
109
+ return 0;
110
+ }
111
+ return s.compare(p);
112
+ }
113
+ #endif
114
+ inline int string_compare(const std::string& s, const char* p)
115
+ { return std::strcmp(s.c_str(), p); }
116
+ # ifndef BOOST_NO_WREGEX
117
+ inline int string_compare(const std::wstring& s, const wchar_t* p)
118
+ { return std::wcscmp(s.c_str(), p); }
119
+ #endif
120
+ #endif
121
+ template <class Seq, class C>
122
+ inline int string_compare(const Seq& s, const C* p)
123
+ {
124
+ std::size_t i = 0;
125
+ while((i < s.size()) && (p[i] == s[i]))
126
+ {
127
+ ++i;
128
+ }
129
+ return (i == s.size()) ? -p[i] : s[i] - p[i];
130
+ }
131
+ # define STR_COMP(s,p) string_compare(s,p)
132
+
133
+ template<class charT>
134
+ inline const charT* re_skip_past_null(const charT* p)
135
+ {
136
+ while (*p != static_cast<charT>(0)) ++p;
137
+ return ++p;
138
+ }
139
+
140
+ template <class iterator, class charT, class traits_type, class char_classT>
141
+ iterator BOOST_REGEX_CALL re_is_set_member(iterator next,
142
+ iterator last,
143
+ const re_set_long<char_classT>* set_,
144
+ const regex_data<charT, traits_type>& e, bool icase)
145
+ {
146
+ const charT* p = reinterpret_cast<const charT*>(set_+1);
147
+ iterator ptr;
148
+ unsigned int i;
149
+ //bool icase = e.m_flags & regex_constants::icase;
150
+
151
+ if(next == last) return next;
152
+
153
+ typedef typename traits_type::string_type traits_string_type;
154
+ const ::boost::regex_traits_wrapper<traits_type>& traits_inst = *(e.m_ptraits);
155
+
156
+ // dwa 9/13/00 suppress incorrect MSVC warning - it claims this is never
157
+ // referenced
158
+ (void)traits_inst;
159
+
160
+ // try and match a single character, could be a multi-character
161
+ // collating element...
162
+ for(i = 0; i < set_->csingles; ++i)
163
+ {
164
+ ptr = next;
165
+ if(*p == static_cast<charT>(0))
166
+ {
167
+ // treat null string as special case:
168
+ if(traits_inst.translate(*ptr, icase) != *p)
169
+ {
170
+ while(*p == static_cast<charT>(0))++p;
171
+ continue;
172
+ }
173
+ return set_->isnot ? next : (ptr == next) ? ++next : ptr;
174
+ }
175
+ else
176
+ {
177
+ while(*p && (ptr != last))
178
+ {
179
+ if(traits_inst.translate(*ptr, icase) != *p)
180
+ break;
181
+ ++p;
182
+ ++ptr;
183
+ }
184
+
185
+ if(*p == static_cast<charT>(0)) // if null we've matched
186
+ return set_->isnot ? next : (ptr == next) ? ++next : ptr;
187
+
188
+ p = re_skip_past_null(p); // skip null
189
+ }
190
+ }
191
+
192
+ charT col = traits_inst.translate(*next, icase);
193
+
194
+
195
+ if(set_->cranges || set_->cequivalents)
196
+ {
197
+ traits_string_type s1;
198
+ //
199
+ // try and match a range, NB only a single character can match
200
+ if(set_->cranges)
201
+ {
202
+ if((e.m_flags & regex_constants::collate) == 0)
203
+ s1.assign(1, col);
204
+ else
205
+ {
206
+ charT a[2] = { col, charT(0), };
207
+ s1 = traits_inst.transform(a, a + 1);
208
+ }
209
+ for(i = 0; i < set_->cranges; ++i)
210
+ {
211
+ if(STR_COMP(s1, p) >= 0)
212
+ {
213
+ do{ ++p; }while(*p);
214
+ ++p;
215
+ if(STR_COMP(s1, p) <= 0)
216
+ return set_->isnot ? next : ++next;
217
+ }
218
+ else
219
+ {
220
+ // skip first string
221
+ do{ ++p; }while(*p);
222
+ ++p;
223
+ }
224
+ // skip second string
225
+ do{ ++p; }while(*p);
226
+ ++p;
227
+ }
228
+ }
229
+ //
230
+ // try and match an equivalence class, NB only a single character can match
231
+ if(set_->cequivalents)
232
+ {
233
+ charT a[2] = { col, charT(0), };
234
+ s1 = traits_inst.transform_primary(a, a +1);
235
+ for(i = 0; i < set_->cequivalents; ++i)
236
+ {
237
+ if(STR_COMP(s1, p) == 0)
238
+ return set_->isnot ? next : ++next;
239
+ // skip string
240
+ do{ ++p; }while(*p);
241
+ ++p;
242
+ }
243
+ }
244
+ }
245
+ if(traits_inst.isctype(col, set_->cclasses) == true)
246
+ return set_->isnot ? next : ++next;
247
+ if((set_->cnclasses != 0) && (traits_inst.isctype(col, set_->cnclasses) == false))
248
+ return set_->isnot ? next : ++next;
249
+ return set_->isnot ? ++next : next;
250
+ }
251
+
252
+ template <class BidiIterator>
253
+ class repeater_count
254
+ {
255
+ repeater_count** stack;
256
+ repeater_count* next;
257
+ int state_id;
258
+ std::size_t count; // the number of iterations so far
259
+ BidiIterator start_pos; // where the last repeat started
260
+ public:
261
+ repeater_count(repeater_count** s)
262
+ {
263
+ stack = s;
264
+ next = 0;
265
+ state_id = -1;
266
+ count = 0;
267
+ }
268
+ repeater_count(int i, repeater_count** s, BidiIterator start)
269
+ : start_pos(start)
270
+ {
271
+ state_id = i;
272
+ stack = s;
273
+ next = *stack;
274
+ *stack = this;
275
+ if(state_id > next->state_id)
276
+ count = 0;
277
+ else
278
+ {
279
+ repeater_count* p = next;
280
+ while(p && (p->state_id != state_id))
281
+ p = p->next;
282
+ if(p)
283
+ {
284
+ count = p->count;
285
+ start_pos = p->start_pos;
286
+ }
287
+ else
288
+ count = 0;
289
+ }
290
+ }
291
+ ~repeater_count()
292
+ {
293
+ if(next)
294
+ *stack = next;
295
+ }
296
+ std::size_t get_count() { return count; }
297
+ int get_id() { return state_id; }
298
+ std::size_t operator++() { return ++count; }
299
+ bool check_null_repeat(const BidiIterator& pos, std::size_t max)
300
+ {
301
+ // this is called when we are about to start a new repeat,
302
+ // if the last one was NULL move our count to max,
303
+ // otherwise save the current position.
304
+ bool result = (count == 0) ? false : (pos == start_pos);
305
+ if(result)
306
+ count = max;
307
+ else
308
+ start_pos = pos;
309
+ return result;
310
+ }
311
+ };
312
+
313
+ struct saved_state;
314
+
315
+ enum saved_state_type
316
+ {
317
+ saved_type_end = 0,
318
+ saved_type_paren = 1,
319
+ saved_type_recurse = 2,
320
+ saved_type_assertion = 3,
321
+ saved_state_alt = 4,
322
+ saved_state_repeater_count = 5,
323
+ saved_state_extra_block = 6,
324
+ saved_state_greedy_single_repeat = 7,
325
+ saved_state_rep_slow_dot = 8,
326
+ saved_state_rep_fast_dot = 9,
327
+ saved_state_rep_char = 10,
328
+ saved_state_rep_short_set = 11,
329
+ saved_state_rep_long_set = 12,
330
+ saved_state_non_greedy_long_repeat = 13,
331
+ saved_state_count = 14
332
+ };
333
+
334
+ template <class Results>
335
+ struct recursion_info
336
+ {
337
+ typedef typename Results::value_type value_type;
338
+ typedef typename value_type::iterator iterator;
339
+ int idx;
340
+ const re_syntax_base* preturn_address;
341
+ Results results;
342
+ repeater_count<iterator>* repeater_stack;
343
+ };
344
+
345
+ #ifdef BOOST_MSVC
346
+ #pragma warning(push)
347
+ #pragma warning(disable : 4251 4231)
348
+ # if BOOST_MSVC < 1600
349
+ # pragma warning(disable : 4660)
350
+ # endif
351
+ #endif
352
+
353
+ template <class BidiIterator, class Allocator, class traits>
354
+ class perl_matcher
355
+ {
356
+ public:
357
+ typedef typename traits::char_type char_type;
358
+ typedef perl_matcher<BidiIterator, Allocator, traits> self_type;
359
+ typedef bool (self_type::*matcher_proc_type)(void);
360
+ typedef std::size_t traits_size_type;
361
+ typedef typename is_byte<char_type>::width_type width_type;
362
+ typedef typename regex_iterator_traits<BidiIterator>::difference_type difference_type;
363
+ typedef match_results<BidiIterator, Allocator> results_type;
364
+
365
+ perl_matcher(BidiIterator first, BidiIterator end,
366
+ match_results<BidiIterator, Allocator>& what,
367
+ const basic_regex<char_type, traits>& e,
368
+ match_flag_type f,
369
+ BidiIterator l_base)
370
+ : m_result(what), base(first), last(end),
371
+ position(first), backstop(l_base), re(e), traits_inst(e.get_traits()),
372
+ m_independent(false), next_count(&rep_obj), rep_obj(&next_count)
373
+ {
374
+ construct_init(e, f);
375
+ }
376
+
377
+ bool match();
378
+ bool find();
379
+
380
+ void setf(match_flag_type f)
381
+ { m_match_flags |= f; }
382
+ void unsetf(match_flag_type f)
383
+ { m_match_flags &= ~f; }
384
+
385
+ private:
386
+ void construct_init(const basic_regex<char_type, traits>& e, match_flag_type f);
387
+
388
+ bool find_imp();
389
+ bool match_imp();
390
+ #ifdef BOOST_REGEX_HAS_MS_STACK_GUARD
391
+ typedef bool (perl_matcher::*protected_proc_type)();
392
+ bool protected_call(protected_proc_type);
393
+ #endif
394
+ void estimate_max_state_count(std::random_access_iterator_tag*);
395
+ void estimate_max_state_count(void*);
396
+ bool match_prefix();
397
+ bool match_all_states();
398
+
399
+ // match procs, stored in s_match_vtable:
400
+ bool match_startmark();
401
+ bool match_endmark();
402
+ bool match_literal();
403
+ bool match_start_line();
404
+ bool match_end_line();
405
+ bool match_wild();
406
+ bool match_match();
407
+ bool match_word_boundary();
408
+ bool match_within_word();
409
+ bool match_word_start();
410
+ bool match_word_end();
411
+ bool match_buffer_start();
412
+ bool match_buffer_end();
413
+ bool match_backref();
414
+ bool match_long_set();
415
+ bool match_set();
416
+ bool match_jump();
417
+ bool match_alt();
418
+ bool match_rep();
419
+ bool match_combining();
420
+ bool match_soft_buffer_end();
421
+ bool match_restart_continue();
422
+ bool match_long_set_repeat();
423
+ bool match_set_repeat();
424
+ bool match_char_repeat();
425
+ bool match_dot_repeat_fast();
426
+ bool match_dot_repeat_slow();
427
+ bool match_dot_repeat_dispatch()
428
+ {
429
+ return ::boost::is_random_access_iterator<BidiIterator>::value ? match_dot_repeat_fast() : match_dot_repeat_slow();
430
+ }
431
+ bool match_backstep();
432
+ bool match_assert_backref();
433
+ bool match_toggle_case();
434
+ #ifdef BOOST_REGEX_RECURSIVE
435
+ bool backtrack_till_match(std::size_t count);
436
+ #endif
437
+ bool match_recursion();
438
+
439
+ // find procs stored in s_find_vtable:
440
+ bool find_restart_any();
441
+ bool find_restart_word();
442
+ bool find_restart_line();
443
+ bool find_restart_buf();
444
+ bool find_restart_lit();
445
+
446
+ private:
447
+ // final result structure to be filled in:
448
+ match_results<BidiIterator, Allocator>& m_result;
449
+ // temporary result for POSIX matches:
450
+ scoped_ptr<match_results<BidiIterator, Allocator> > m_temp_match;
451
+ // pointer to actual result structure to fill in:
452
+ match_results<BidiIterator, Allocator>* m_presult;
453
+ // start of sequence being searched:
454
+ BidiIterator base;
455
+ // end of sequence being searched:
456
+ BidiIterator last;
457
+ // current character being examined:
458
+ BidiIterator position;
459
+ // where to restart next search after failed match attempt:
460
+ BidiIterator restart;
461
+ // where the current search started from, acts as base for $` during grep:
462
+ BidiIterator search_base;
463
+ // how far we can go back when matching lookbehind:
464
+ BidiIterator backstop;
465
+ // the expression being examined:
466
+ const basic_regex<char_type, traits>& re;
467
+ // the expression's traits class:
468
+ const ::boost::regex_traits_wrapper<traits>& traits_inst;
469
+ // the next state in the machine being matched:
470
+ const re_syntax_base* pstate;
471
+ // matching flags in use:
472
+ match_flag_type m_match_flags;
473
+ // how many states we have examined so far:
474
+ std::ptrdiff_t state_count;
475
+ // max number of states to examine before giving up:
476
+ std::ptrdiff_t max_state_count;
477
+ // whether we should ignore case or not:
478
+ bool icase;
479
+ // set to true when (position == last), indicates that we may have a partial match:
480
+ bool m_has_partial_match;
481
+ // set to true whenever we get a match:
482
+ bool m_has_found_match;
483
+ // set to true whenever we're inside an independent sub-expression:
484
+ bool m_independent;
485
+ // the current repeat being examined:
486
+ repeater_count<BidiIterator>* next_count;
487
+ // the first repeat being examined (top of linked list):
488
+ repeater_count<BidiIterator> rep_obj;
489
+ // the mask to pass when matching word boundaries:
490
+ typename traits::char_class_type m_word_mask;
491
+ // the bitmask to use when determining whether a match_any matches a newline or not:
492
+ unsigned char match_any_mask;
493
+ // recursion information:
494
+ std::vector<recursion_info<results_type> > recursion_stack;
495
+
496
+ #ifdef BOOST_REGEX_NON_RECURSIVE
497
+ //
498
+ // additional members for non-recursive version:
499
+ //
500
+ typedef bool (self_type::*unwind_proc_type)(bool);
501
+
502
+ void extend_stack();
503
+ bool unwind(bool);
504
+ bool unwind_end(bool);
505
+ bool unwind_paren(bool);
506
+ bool unwind_recursion_stopper(bool);
507
+ bool unwind_assertion(bool);
508
+ bool unwind_alt(bool);
509
+ bool unwind_repeater_counter(bool);
510
+ bool unwind_extra_block(bool);
511
+ bool unwind_greedy_single_repeat(bool);
512
+ bool unwind_slow_dot_repeat(bool);
513
+ bool unwind_fast_dot_repeat(bool);
514
+ bool unwind_char_repeat(bool);
515
+ bool unwind_short_set_repeat(bool);
516
+ bool unwind_long_set_repeat(bool);
517
+ bool unwind_non_greedy_repeat(bool);
518
+ bool unwind_recursion(bool);
519
+ bool unwind_recursion_pop(bool);
520
+ void destroy_single_repeat();
521
+ void push_matched_paren(int index, const sub_match<BidiIterator>& sub);
522
+ void push_recursion_stopper();
523
+ void push_assertion(const re_syntax_base* ps, bool positive);
524
+ void push_alt(const re_syntax_base* ps);
525
+ void push_repeater_count(int i, repeater_count<BidiIterator>** s);
526
+ void push_single_repeat(std::size_t c, const re_repeat* r, BidiIterator last_position, int state_id);
527
+ void push_non_greedy_repeat(const re_syntax_base* ps);
528
+ void push_recursion(int idx, const re_syntax_base* p, results_type* presults);
529
+ void push_recursion_pop();
530
+
531
+ // pointer to base of stack:
532
+ saved_state* m_stack_base;
533
+ // pointer to current stack position:
534
+ saved_state* m_backup_state;
535
+ // determines what value to return when unwinding from recursion,
536
+ // allows for mixed recursive/non-recursive algorithm:
537
+ bool m_recursive_result;
538
+ // how many memory blocks have we used up?:
539
+ unsigned used_block_count;
540
+ #endif
541
+
542
+ // these operations aren't allowed, so are declared private,
543
+ // bodies are provided to keep explicit-instantiation requests happy:
544
+ perl_matcher& operator=(const perl_matcher&)
545
+ {
546
+ return *this;
547
+ }
548
+ perl_matcher(const perl_matcher& that)
549
+ : m_result(that.m_result), re(that.re), traits_inst(that.traits_inst), rep_obj(0) {}
550
+ };
551
+
552
+ #ifdef BOOST_MSVC
553
+ #pragma warning(pop)
554
+ #endif
555
+
556
+ } // namespace re_detail
557
+
558
+ #ifdef BOOST_MSVC
559
+ #pragma warning(push)
560
+ #pragma warning(disable: 4103)
561
+ #endif
562
+ #ifdef BOOST_HAS_ABI_HEADERS
563
+ # include BOOST_ABI_SUFFIX
564
+ #endif
565
+ #ifdef BOOST_MSVC
566
+ #pragma warning(pop)
567
+ #endif
568
+
569
+ } // namespace boost
570
+
571
+ #ifdef BOOST_MSVC
572
+ # pragma warning(pop)
573
+ #endif
574
+
575
+ //
576
+ // include the implementation of perl_matcher:
577
+ //
578
+ #ifdef BOOST_REGEX_RECURSIVE
579
+ #include <boost/regex/v4/perl_matcher_recursive.hpp>
580
+ #else
581
+ #include <boost/regex/v4/perl_matcher_non_recursive.hpp>
582
+ #endif
583
+ // this one has to be last:
584
+ #include <boost/regex/v4/perl_matcher_common.hpp>
585
+
586
+ #endif
587
+