Chris@109
|
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
|
Chris@109
|
2
|
Chris@109
|
3 /*
|
Chris@109
|
4 EasyMercurial
|
Chris@109
|
5
|
Chris@109
|
6 Based on HgExplorer by Jari Korhonen
|
Chris@109
|
7 Copyright (c) 2010 Jari Korhonen
|
Chris@109
|
8 Copyright (c) 2010 Chris Cannam
|
Chris@109
|
9 Copyright (c) 2010 Queen Mary, University of London
|
Chris@109
|
10
|
Chris@109
|
11 This program is free software; you can redistribute it and/or
|
Chris@109
|
12 modify it under the terms of the GNU General Public License as
|
Chris@109
|
13 published by the Free Software Foundation; either version 2 of the
|
Chris@109
|
14 License, or (at your option) any later version. See the file
|
Chris@109
|
15 COPYING included with this distribution for more information.
|
Chris@109
|
16 */
|
Chris@109
|
17
|
Chris@92
|
18 #include "filestates.h"
|
Chris@74
|
19
|
Chris@86
|
20 #include "debug.h"
|
Chris@86
|
21
|
Chris@74
|
22 #include <QMap>
|
Chris@74
|
23
|
Chris@94
|
24 FileStates::FileStates()
|
Chris@94
|
25 {
|
Chris@94
|
26 }
|
Chris@94
|
27
|
Chris@94
|
28 void FileStates::clearBuckets()
|
Chris@94
|
29 {
|
Chris@94
|
30 m_modified.clear();
|
Chris@94
|
31 m_added.clear();
|
Chris@94
|
32 m_removed.clear();
|
Chris@94
|
33 m_missing.clear();
|
Chris@159
|
34 m_inConflict.clear();
|
Chris@94
|
35 m_unknown.clear();
|
Chris@94
|
36 }
|
Chris@94
|
37
|
Chris@94
|
38 FileStates::State FileStates::charToState(QChar c, bool *ok)
|
Chris@94
|
39 {
|
Chris@159
|
40 // Note that InConflict does not correspond to a stat char -- it's
|
Chris@159
|
41 // reported separately, by resolve --list -- stat reports files in
|
Chris@159
|
42 // conflict as M which means they will appear in more than one bin
|
Chris@159
|
43 // if we handle them naively.
|
Chris@159
|
44
|
Chris@159
|
45 //!!! -- but InConflict isn't actually handled elsewhere, it's
|
Chris@159
|
46 //!!! -- only a placeholder really at the moment
|
Chris@94
|
47 if (ok) *ok = true;
|
Chris@94
|
48 if (c == 'M') return Modified;
|
Chris@94
|
49 if (c == 'A') return Added;
|
Chris@94
|
50 if (c == 'R') return Removed;
|
Chris@94
|
51 if (c == '!') return Missing;
|
Chris@94
|
52 if (c == '?') return Unknown;
|
Chris@94
|
53 if (c == 'C') return Clean;
|
Chris@94
|
54 if (ok) *ok = false;
|
Chris@94
|
55 return Unknown;
|
Chris@94
|
56 }
|
Chris@94
|
57
|
Chris@94
|
58 QStringList *FileStates::stateToBucket(State s)
|
Chris@94
|
59 {
|
Chris@94
|
60 switch (s) {
|
Chris@94
|
61 case Clean: default: return 0; // not implemented yet
|
Chris@94
|
62 case Modified: return &m_modified;
|
Chris@94
|
63 case Added: return &m_added;
|
Chris@94
|
64 case Unknown: return &m_unknown;
|
Chris@94
|
65 case Removed: return &m_removed;
|
Chris@94
|
66 case Missing: return &m_missing;
|
Chris@159
|
67 case InConflict: return &m_inConflict;
|
Chris@94
|
68 }
|
Chris@94
|
69 }
|
Chris@94
|
70
|
Chris@94
|
71 void FileStates::parseStates(QString text)
|
Chris@74
|
72 {
|
Chris@74
|
73 text.replace("\r\n", "\n");
|
Chris@74
|
74
|
Chris@94
|
75 clearBuckets();
|
Chris@74
|
76
|
Chris@74
|
77 QStringList lines = text.split("\n", QString::SkipEmptyParts);
|
Chris@94
|
78
|
Chris@74
|
79 foreach (QString line, lines) {
|
Chris@94
|
80
|
Chris@86
|
81 if (line.length() < 3 || line[1] != ' ') {
|
Chris@86
|
82 continue;
|
Chris@86
|
83 }
|
Chris@94
|
84
|
Chris@94
|
85 QChar c = line[0];
|
Chris@94
|
86 bool ok = false;
|
Chris@94
|
87 State s = charToState(c, &ok);
|
Chris@94
|
88 if (!ok) continue;
|
Chris@94
|
89
|
Chris@74
|
90 QString file = line.right(line.length() - 2);
|
Chris@94
|
91 QStringList *bucket = stateToBucket(s);
|
Chris@94
|
92 bucket->push_back(file);
|
Chris@94
|
93 m_stateMap[file] = s;
|
Chris@74
|
94 }
|
Chris@86
|
95
|
Chris@94
|
96 DEBUG << "FileStates: " << m_modified.size() << " modified, " << m_added.size()
|
Chris@159
|
97 << " added, " << m_removed.size() << " removed, " << m_missing.size()
|
Chris@159
|
98 << " missing, " << m_inConflict.size() << " in conflict, "
|
Chris@159
|
99 << m_unknown.size() << " unknown" << endl;
|
Chris@74
|
100 }
|
Chris@92
|
101
|
Chris@94
|
102 QStringList FileStates::getFilesInState(State s) const
|
Chris@92
|
103 {
|
Chris@94
|
104 QStringList *sl = const_cast<FileStates *>(this)->stateToBucket(s);
|
Chris@94
|
105 if (sl) return *sl;
|
Chris@94
|
106 else return QStringList();
|
Chris@92
|
107 }
|
Chris@92
|
108
|
Chris@94
|
109 FileStates::State FileStates::getStateOfFile(QString file) const
|
Chris@92
|
110 {
|
Chris@94
|
111 if (m_stateMap.contains(file)) {
|
Chris@94
|
112 return m_stateMap[file];
|
Chris@92
|
113 }
|
Chris@92
|
114 DEBUG << "FileStates: WARNING: getStateOfFile: file "
|
Chris@92
|
115 << file << " is unknown to us: returning Unknown state, "
|
Chris@92
|
116 << "but unknown to us is not supposed to be the same "
|
Chris@92
|
117 << "thing as unknown state..."
|
Chris@92
|
118 << endl;
|
Chris@92
|
119 return Unknown;
|
Chris@92
|
120 }
|