Parse rules correctly
[svn-all-fast-export.git] / src / ruleparser.cpp
blobf116ce4e428e3baf6bd7fb262e3d41158fba68d6
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 #include <QTextStream>
19 #include <QFile>
20 #include <QDebug>
22 #include "ruleparser.h"
24 Rules::Rules(const QString &fn)
25 : filename(fn)
29 Rules::~Rules()
33 QList<Rules::Repository> Rules::repositories()
35 return m_repositories;
38 QList<Rules::Match> Rules::matchRules()
40 return m_matchRules;
43 void Rules::load()
45 QFile file(filename);
46 if (!file.open(QIODevice::ReadOnly))
47 return;
49 // initialize the regexps we will use
50 QRegExp repoLine("create repository\\s+(\\w+)", Qt::CaseInsensitive);
51 QRegExp repoBranchLine("branch\\s+(\\S+)\\s+from\\s+(\\S+)", Qt::CaseInsensitive);
52 QRegExp matchLine("match\\s+(.*)", Qt::CaseInsensitive);
53 QRegExp matchRepoLine("repository\\s+(\\w+)", Qt::CaseInsensitive);
54 QRegExp matchBranchLine("branch\\s+(\\S+)", Qt::CaseInsensitive);
55 QRegExp matchPathLine("path\\s+(.*)", Qt::CaseInsensitive);
57 QTextStream s(&file);
58 enum { ReadingNone, ReadingRepository, ReadingMatch } state = ReadingNone;
59 Repository repo;
60 Match match;
61 while (!s.atEnd()) {
62 QString origLine = s.readLine();
63 QString line = origLine.trimmed();
65 int hash = line.indexOf('#');
66 if (hash != -1) {
67 line.truncate(hash);
68 line = line.trimmed();
70 if (line.isEmpty())
71 continue;
73 if (state == ReadingRepository) {
74 if (repoBranchLine.exactMatch(line)) {
75 Repository::Branch branch;
76 branch.name = repoBranchLine.cap(0);
77 branch.branchFrom = repoBranchLine.cap(1);
79 repo.branches += branch;
80 continue;
82 } else if (state == ReadingMatch) {
83 if (matchRepoLine.exactMatch(line)) {
84 match.repository = matchRepoLine.cap(0);
85 continue;
86 } else if (matchBranchLine.exactMatch(line)) {
87 match.branch = matchBranchLine.cap(0);
88 continue;
89 } else if (matchPathLine.exactMatch(line)) {
90 match.path = matchPathLine.cap(0);
91 continue;
95 bool isRepositoryRule = repoLine.exactMatch(line);
96 bool isMatchRule = matchLine.exactMatch(line);
97 if (isRepositoryRule || isMatchRule) {
98 // save the current rule
99 if (state == ReadingRepository)
100 m_repositories += repo;
101 else if (state == ReadingMatch)
102 m_matchRules += match;
105 if (isRepositoryRule) {
106 // repository rule
107 state = ReadingRepository;
108 repo = Repository(); // clear
109 repo.name = repoLine.cap(0);
110 } else if (isMatchRule) {
111 // match rule
112 state = ReadingMatch;
113 match = Match();
114 match.rx = QRegExp(matchLine.cap(0), Qt::CaseSensitive, QRegExp::RegExp2);
115 } else {
116 qWarning() << "Malformed line in configure file:" << origLine;
117 state = ReadingNone;