]> andersk Git - svn-all-fast-export.git/blame - src/ruleparser.cpp
Parse rules correctly
[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
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);
56
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();
64
65 int hash = line.indexOf('#');
66 if (hash != -1) {
67 line.truncate(hash);
68 line = line.trimmed();
69 }
70 if (line.isEmpty())
71 continue;
72
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);
78
79 repo.branches += branch;
add9aaf4 80 continue;
01592f9e
TM
81 }
82 } else if (state == ReadingMatch) {
add9aaf4 83 if (matchRepoLine.exactMatch(line)) {
01592f9e 84 match.repository = matchRepoLine.cap(0);
add9aaf4
TM
85 continue;
86 } else if (matchBranchLine.exactMatch(line)) {
01592f9e 87 match.branch = matchBranchLine.cap(0);
add9aaf4
TM
88 continue;
89 } else if (matchPathLine.exactMatch(line)) {
01592f9e 90 match.path = matchPathLine.cap(0);
add9aaf4
TM
91 continue;
92 }
01592f9e
TM
93 }
94
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;
103 }
104
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;
118 }
119 }
120}
This page took 0.122109 seconds and 5 git commands to generate.