mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-04 03:18:33 +02:00

- Added regex support to substirutions. - Fixed bug that prevented 1.9.4 from shipping with regexes. If the description is "aXXaaXXa", and the substitution is /XX/.../ then the first substitutions changes the length of the string to "a...aaXXa" and therefore invalidates the index for the second match, and makes this change: "a...a...Xa". The fix is to keep a running 'skew' count of the difference in 'from' and 'to' length, to adjust the match indexes. - Moved the helper deltaSubstitutions function into the Task object, which makes more sense. - Cleaned up output composition for CmdAdd. - Eliminated #ifdef FEATURE_REGEX. They are here to stay.
63 lines
1.7 KiB
C++
63 lines
1.7 KiB
C++
////////////////////////////////////////////////////////////////////////////////
|
|
// taskwarrior - a command line task list manager.
|
|
//
|
|
// Copyright 2010 - 2011, Paul Beckingham, Federico Hernandez.
|
|
// All rights reserved.
|
|
//
|
|
// This program is free software; you can redistribute it and/or modify it under
|
|
// the terms of the GNU General Public License as published by the Free Software
|
|
// Foundation; either version 2 of the License, or (at your option) any later
|
|
// version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful, but WITHOUT
|
|
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
|
// details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License along with
|
|
// this program; if not, write to the
|
|
//
|
|
// Free Software Foundation, Inc.,
|
|
// 51 Franklin Street, Fifth Floor,
|
|
// Boston, MA
|
|
// 02110-1301
|
|
// USA
|
|
//
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef INCLUDED_RX
|
|
#define INCLUDED_RX
|
|
#define L10N // Localization complete.
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include <regex.h>
|
|
|
|
#define RX_MAX_MATCHES 64
|
|
|
|
class RX
|
|
{
|
|
public:
|
|
RX ();
|
|
RX (const std::string&, bool caseSensitive = true);
|
|
RX (const RX&);
|
|
RX& operator= (const RX&);
|
|
bool operator== (const RX&) const;
|
|
~RX ();
|
|
|
|
bool match (const std::string&);
|
|
bool match (std::vector<std::string>&, const std::string&);
|
|
bool match (std::vector <int>&, std::vector <int>&, const std::string&);
|
|
|
|
private:
|
|
void compile ();
|
|
|
|
private:
|
|
bool _compiled;
|
|
std::string _pattern;
|
|
bool _case_sensitive;
|
|
regex_t _regex;
|
|
};
|
|
|
|
#endif
|
|
|