30 |
// Author: Sanjay Ghemawat |
// Author: Sanjay Ghemawat |
31 |
|
|
32 |
#ifdef HAVE_CONFIG_H |
#ifdef HAVE_CONFIG_H |
33 |
# include <config.h> |
#include <config.h> |
34 |
#endif |
#endif |
35 |
|
|
36 |
#include <stdlib.h> |
#include <stdlib.h> |
41 |
#include <errno.h> |
#include <errno.h> |
42 |
#include <string> |
#include <string> |
43 |
#include <algorithm> |
#include <algorithm> |
44 |
// We need this to compile the proper dll on windows/msys. This is copied |
|
45 |
// from pcre_internal.h. It would probably be better just to include that. |
#include "pcrecpp_internal.h" |
|
#define PCRE_DEFINITION /* Win32 __declspec(export) trigger for .dll */ |
|
46 |
#include <pcre.h> |
#include <pcre.h> |
|
#include "pcre_stringpiece.h" |
|
47 |
#include "pcrecpp.h" |
#include "pcrecpp.h" |
48 |
|
#include "pcre_stringpiece.h" |
49 |
|
|
50 |
|
|
51 |
namespace pcrecpp { |
namespace pcrecpp { |
55 |
static const int kVecSize = (1 + kMaxArgs) * 3; // results + PCRE workspace |
static const int kVecSize = (1 + kMaxArgs) * 3; // results + PCRE workspace |
56 |
|
|
57 |
// Special object that stands-in for no argument |
// Special object that stands-in for no argument |
58 |
Arg no_arg((void*)NULL); |
PCRECPP_EXP_DECL Arg no_arg((void*)NULL); |
59 |
|
|
60 |
// If a regular expression has no error, its error_ field points here |
// If a regular expression has no error, its error_ field points here |
61 |
static const string empty_string; |
static const string empty_string; |
462 |
return 0; |
return 0; |
463 |
} |
} |
464 |
|
|
465 |
pcre_extra extra = { 0 }; |
pcre_extra extra = { 0, 0, 0, 0, 0, 0 }; |
466 |
if (options_.match_limit() > 0) { |
if (options_.match_limit() > 0) { |
467 |
extra.flags |= PCRE_EXTRA_MATCH_LIMIT; |
extra.flags |= PCRE_EXTRA_MATCH_LIMIT; |
468 |
extra.match_limit = options_.match_limit(); |
extra.match_limit = options_.match_limit(); |