Add support for annotated tags
[svn-all-fast-export.git] / src / ruleparser.h
blob2e0904edad72ee41fd3d3eb725069a7b18b97c6e
1 /*
2 * Copyright (C) 2007 Thiago Macieira <thiago@kde.org>
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 #ifndef RULEPARSER_H
19 #define RULEPARSER_H
21 #include <QList>
22 #include <QRegExp>
23 #include <QString>
25 class Rules
27 public:
28 struct Repository
30 struct Branch
32 QString name;
35 QString name;
36 QList<Branch> branches;
37 int lineNumber;
39 Repository() : lineNumber(0) { }
42 struct Match
44 QRegExp rx;
45 QString repository;
46 QString branch;
47 int minRevision;
48 int maxRevision;
49 int lineNumber;
50 bool annotate;
52 enum Action {
53 Ignore,
54 Export,
55 Recurse
56 } action;
58 Match() : minRevision(-1), maxRevision(-1), lineNumber(0), annotate(false), action(Ignore) { }
61 Rules(const QString &filename);
62 ~Rules();
64 QList<Repository> repositories();
65 QList<Match> matchRules();
67 void load();
69 private:
70 QString filename;
71 QList<Repository> m_repositories;
72 QList<Match> m_matchRules;
75 #ifndef QT_NO_DEBUG_STREAM
76 class QDebug;
77 QDebug operator<<(QDebug, const Rules::Match &);
78 #endif
80 #endif