]> andersk Git - svn-all-fast-export.git/blame - src/ruleparser.h
Remove the recurse rule
[svn-all-fast-export.git] / src / ruleparser.h
CommitLineData
01592f9e
TM
1/*
2 * Copyright (C) 2007 Thiago Macieira <thiago@kde.org>
3 *
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.
8 *
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.
13 *
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/>.
16 */
17
18#ifndef RULEPARSER_H
19#define RULEPARSER_H
20
21#include <QList>
22#include <QRegExp>
23#include <QString>
24
25class Rules
26{
27public:
28 struct Repository
29 {
30 struct Branch
31 {
32 QString name;
01592f9e
TM
33 };
34
35 QString name;
36 QList<Branch> branches;
107fa167
TM
37 int lineNumber;
38
39 Repository() : lineNumber(0) { }
01592f9e
TM
40 };
41
42 struct Match
43 {
44 QRegExp rx;
45 QString repository;
46 QString branch;
5b8a1c0c
TM
47 int minRevision;
48 int maxRevision;
107fa167 49 int lineNumber;
5b8a1c0c 50
898704e4
TM
51 enum Action {
52 Ignore,
16024419 53 Export
898704e4
TM
54 } action;
55
56 Match() : minRevision(-1), maxRevision(-1), lineNumber(0), action(Ignore) { }
01592f9e
TM
57 };
58
59 Rules(const QString &filename);
60 ~Rules();
61
62 QList<Repository> repositories();
63 QList<Match> matchRules();
64
65 void load();
66
67private:
68 QString filename;
69 QList<Repository> m_repositories;
70 QList<Match> m_matchRules;
71};
72
2ddd1758
TM
73#ifndef QT_NO_DEBUG_STREAM
74class QDebug;
75QDebug operator<<(QDebug, const Rules::Match &);
76#endif
77
01592f9e 78#endif
This page took 0.049345 seconds and 5 git commands to generate.