]> andersk Git - svn-all-fast-export.git/blame - src/ruleparser.cpp
Make it a fatal error to have a malformed line in the rules file
[svn-all-fast-export.git] / src / ruleparser.cpp
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#include <QTextStream>
19#include <QFile>
20#include <QDebug>
21
22#include "ruleparser.h"
23
24Rules::Rules(const QString &fn)
25 : filename(fn)
26{
27}
28
12cd84df
TM
29Rules::~Rules()
30{
31}
32
01592f9e
TM
33QList<Rules::Repository> Rules::repositories()
34{
35 return m_repositories;
36}
37
38QList<Rules::Match> Rules::matchRules()
39{
40 return m_matchRules;
41}
42
43void Rules::load()
44{
45 QFile file(filename);
46 if (!file.open(QIODevice::ReadOnly))
47 return;
48
49 // initialize the regexps we will use
5d3d11ec 50 QRegExp repoLine("create repository\\s+(\\S+)", Qt::CaseInsensitive);
01592f9e 51 QRegExp repoBranchLine("branch\\s+(\\S+)\\s+from\\s+(\\S+)", Qt::CaseInsensitive);
5b8a1c0c 52
01592f9e 53 QRegExp matchLine("match\\s+(.*)", Qt::CaseInsensitive);
5d3d11ec 54 QRegExp matchRepoLine("repository\\s+(\\S+)", Qt::CaseInsensitive);
01592f9e
TM
55 QRegExp matchBranchLine("branch\\s+(\\S+)", Qt::CaseInsensitive);
56 QRegExp matchPathLine("path\\s+(.*)", Qt::CaseInsensitive);
5b8a1c0c 57 QRegExp matchRevLine("(min|max) revision (\\d+)", Qt::CaseInsensitive);
01592f9e
TM
58
59 QTextStream s(&file);
60 enum { ReadingNone, ReadingRepository, ReadingMatch } state = ReadingNone;
61 Repository repo;
62 Match match;
63 while (!s.atEnd()) {
64 QString origLine = s.readLine();
c7d45e66 65 QString line = origLine;
01592f9e
TM
66
67 int hash = line.indexOf('#');
c7d45e66 68 if (hash != -1)
01592f9e 69 line.truncate(hash);
c7d45e66 70 line = line.trimmed();
01592f9e
TM
71 if (line.isEmpty())
72 continue;
73
74 if (state == ReadingRepository) {
75 if (repoBranchLine.exactMatch(line)) {
76 Repository::Branch branch;
c7d45e66
TM
77 branch.name = repoBranchLine.cap(1);
78 branch.branchFrom = repoBranchLine.cap(2);
01592f9e
TM
79
80 repo.branches += branch;
add9aaf4 81 continue;
c7d45e66
TM
82 } else if (line == "end repository") {
83 m_repositories += repo;
84 state = ReadingNone;
85 continue;
01592f9e
TM
86 }
87 } else if (state == ReadingMatch) {
add9aaf4 88 if (matchRepoLine.exactMatch(line)) {
c7d45e66 89 match.repository = matchRepoLine.cap(1);
add9aaf4
TM
90 continue;
91 } else if (matchBranchLine.exactMatch(line)) {
c7d45e66 92 match.branch = matchBranchLine.cap(1);
add9aaf4
TM
93 continue;
94 } else if (matchPathLine.exactMatch(line)) {
c7d45e66
TM
95 match.path = matchPathLine.cap(1);
96 continue;
5b8a1c0c
TM
97 } else if (matchRevLine.exactMatch(line)) {
98 if (matchRevLine.cap(1) == "min")
99 match.minRevision = matchRevLine.cap(2).toInt();
100 else // must be max
101 match.maxRevision = matchRevLine.cap(2).toInt();
102 continue;
c7d45e66
TM
103 } else if (line == "end match") {
104 m_matchRules += match;
105 state = ReadingNone;
add9aaf4
TM
106 continue;
107 }
01592f9e
TM
108 }
109
110 bool isRepositoryRule = repoLine.exactMatch(line);
111 bool isMatchRule = matchLine.exactMatch(line);
01592f9e
TM
112
113 if (isRepositoryRule) {
114 // repository rule
115 state = ReadingRepository;
116 repo = Repository(); // clear
c7d45e66 117 repo.name = repoLine.cap(1);
01592f9e
TM
118 } else if (isMatchRule) {
119 // match rule
120 state = ReadingMatch;
121 match = Match();
c7d45e66 122 match.rx = QRegExp(matchLine.cap(1), Qt::CaseSensitive, QRegExp::RegExp2);
01592f9e 123 } else {
1deb8ac5 124 qFatal("Malformed line in rules file: %s", qPrintable(origLine));
01592f9e
TM
125 }
126 }
127}
This page took 0.082444 seconds and 5 git commands to generate.