aboutsummaryrefslogtreecommitdiff
path: root/cutl/re.hxx
blob: a1a886856221302299c57b6b8da0b2c0285b0ed7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
// file      : cutl/re.hxx
// author    : Boris Kolpackov <boris@codesynthesis.com>
// copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC
// license   : MIT; see accompanying LICENSE file

#ifndef CUTL_RE_HXX
#define CUTL_RE_HXX

#include <string>
#include <iosfwd> // std::ostream

#include <cutl/exception.hxx>
#include <cutl/details/export.hxx>

namespace cutl
{
  namespace re
  {
    struct LIBCUTL_EXPORT format: exception
    {
      virtual
      ~format () throw ();

      format (std::string const& e, std::string const& d)
          : regex_ (e), description_ (d)
      {
      }

      std::string const&
      regex () const
      {
        return regex_;
      }

      std::string const&
      description () const
      {
        return description_;
      }

      virtual char const*
      what () const throw ();

    private:
      std::string regex_;
      std::string description_;
    };

    // Regular expression pattern.
    //
    struct LIBCUTL_EXPORT regex
    {
      ~regex ();

      regex ()
          : impl_ (0)
      {
        init (0);
      }

      explicit
      regex (std::string const& s)
          : impl_ (0)
      {
        init (&s);
      }

      regex&
      operator= (std::string const& s)
      {
        init (&s);
        return *this;
      }

      regex (regex const&);

      regex&
      operator= (regex const&);

    public:
      bool
      match (std::string const&) const;

      bool
      search (std::string const&) const;

      std::string
      replace (std::string const& s,
               std::string const& sub,
               bool first_only = false) const;

    public:
      std::string
      str () const;

      bool
      empty () const;

    private:
      void
      init (std::string const*);

    private:
      struct impl;
      impl* impl_;
    };

    LIBCUTL_EXPORT std::ostream&
    operator<< (std::ostream&, regex const&);

    // Regular expression pattern and substituation.
    //
    struct LIBCUTL_EXPORT regexsub
    {
      typedef re::regex regex_type;

      regexsub ()
      {
      }

      // Expression is of the form /regex/substitution/ where '/' can
      // be replaced with any delimiter. Delimiters must be escaped in
      // regex and substitution using back slashes (e.g., "\/"). Back
      // slashes themselves can be escaped using the double back slash
      // sequence (e.g., "\\").
      //
      explicit
      regexsub (std::string const& e)
      {
        init (e);
      }

      regexsub (std::string const& regex, std::string const& sub)
          : regex_ (regex), sub_ (sub)
      {
      }

      regexsub (regex_type const& regex, std::string const& sub)
          : regex_ (regex), sub_ (sub)
      {
      }

      regexsub&
      operator= (std::string const& e)
      {
        init (e);
        return *this;
      }

    public:
      bool
      match (std::string const& s) const
      {
        return regex_.match (s);
      }

      bool
      search (std::string const& s) const
      {
        return regex_.search (s);
      }

      std::string
      replace (std::string const& s, bool first_only = false) const
      {
        return regex_.replace (s, sub_, first_only);
      }

    public:
      const regex_type&
      regex () const
      {
        return regex_;
      }

      const std::string&
      substitution () const
      {
        return sub_;
      }

      bool
      empty () const
      {
        return sub_.empty () && regex_.empty ();
      }

    private:
      void
      init (std::string const&);

    private:
      regex_type regex_;
      std::string sub_;
    };

    // Once-off regex execution.
    //
    inline bool
    match (std::string const& s, std::string const& regex)
    {
      re::regex r (regex);
      return r.match (s);
    }

    inline bool
    search (std::string const& s, std::string const& regex)
    {
      re::regex r (regex);
      return r.search (s);
    }

    inline std::string
    replace (std::string const& s,
             std::string const& regex,
             std::string const& sub,
             bool first_only = false)
    {
      re::regex r (regex);
      return r.replace (s, sub, first_only);
    }

    inline std::string
    replace (std::string const& s,
             std::string const& regexsub, // /regex/subst/
             bool first_only = false)
    {
      re::regexsub r (regexsub);
      return r.replace (s, first_only);
    }

    // Utility function for parsing expressions in the form /regex/subst/
    // where '/' can be replaced with any delimiter. This function handles
    // escaping. It return the position of the next delimiter and stores
    // the unescaped chunk in result or throws the format exception if
    // the expression is invalid.
    //
    LIBCUTL_EXPORT std::string::size_type
    parse (std::string const& s,
           std::string::size_type start,
           std::string& result);
  }
}

#endif // CUTL_RE_HXX