Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

shellext: move DirectoryStatus into separate files

Changeset 00f07be142c1

Parent e1b00c46beff

by Adrian Buehlmann

Changes to 4 files · Browse files at 00f07be142c1 Showing diff from parent e1b00c46beff Diff from another changeset...

Change 1 of 1 Show Entire File tortoise/​shellext/​DirectoryStatus.cpp Stacked
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
@@ -0,0 +1,102 @@
+ +// Copyright (C) 2009 Adrian Buehlmann +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 2 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see <http://www.gnu.org/licenses/>. + +#include "stdafx.h" + +#include "DirectoryStatus.h" + + +char DirectoryStatus::status(const std::string& relpath) const +{ + TDEBUG_TRACE("DirectoryStatus::status(" << relpath << ")"); + + char res = 'C'; + bool added = false; + bool modified = false; + + for (V::const_iterator i = v_.begin(); i != v_.end(); ++i) + { + const E& e = *i; + if (e.path_.compare(0, relpath.length(), relpath) == 0) + { + TDEBUG_TRACE("DirectoryStatus::status(" << relpath << "):" + << " found '" << e.path_ << "'"); + if (e.status_ == 'r' || e.status_ == 'm') + { + modified = true; + break; + } + if (e.status_ == 'a') + added = true; + } + } + + if (modified) + res = 'M'; + else if (added) + res = 'A'; + else + res = 'C'; + + TDEBUG_TRACE("DirectoryStatus::status(" << relpath << "): returns " << res); + return res; +} + + +int DirectoryStatus::read(const std::string& hgroot) +{ + v_.clear(); + + std::string p = hgroot + "\\.hg\\thgstatus"; + + FILE *f = fopen(p.c_str(), "rb"); + if (!f) + { + TDEBUG_TRACE("DirectoryStatus::read: can't open " << p); + return 0; + } + + char state; + std::vector<char> path(MAX_PATH); + + DirectoryStatus::E e; + + while (fread(&state, sizeof(state), 1, f) == 1) + { + e.status_ = state; + + path.clear(); + char t; + while (fread(&t, sizeof(t), 1, f) == 1 && t != '\n') + { + path.push_back(t); + if (path.size() > 1000) + return 0; + } + path.push_back(0); + + e.path_ = &path[0]; + + v_.push_back(e); + } + + fclose(f); + + TDEBUG_TRACE("DirectoryStatus::read(" << hgroot << "): done. " + << v_.size() << " entries read"); + + return 1; +}
Change 1 of 1 Show Entire File tortoise/​shellext/​DirectoryStatus.h Stacked
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
@@ -0,0 +1,37 @@
+ +// Copyright (C) 2009 Adrian Buehlmann +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 2 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see <http://www.gnu.org/licenses/>. + +#include <string> +#include <vector> + + +class DirectoryStatus +{ + struct E + { + std::string path_; + char status_; + + E(): status_(0) {} + }; + + typedef std::vector<E> V; + V v_; + +public: + int read(const std::string& hgroot); + char status(const std::string& relpath) const; +};
 
1
2
 
 
 
 
 
3
4
5
 
1
 
2
3
4
5
6
7
8
9
@@ -1,5 +1,9 @@
  -OBJECTS_DIRSTATE = TortoiseUtils.o Direntry.o Directory.o Winstat.o +OBJECTS_DIRSTATE = TortoiseUtils.o \ + Direntry.o \ + Directory.o \ + Winstat.o \ + DirectoryStatus.o    OBJECTS_THGSGELL = $(OBJECTS_DIRSTATE) \   ContextMenu.o \
 
18
19
20
 
21
22
23
 
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
 
18
19
20
21
22
23
24
 
90
91
92
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
93
94
95
@@ -18,6 +18,7 @@
   #include "dirstate.h"  #include "Directory.h" +#include "DirectoryStatus.h"  #include "TortoiseUtils.h"  #include "Winstat.h"   @@ -89,108 +90,6 @@
 }     -class DirectoryStatus -{ - struct E - { - std::string path_; - char status_; - - E(): status_(0) {} - }; - - typedef std::vector<E> V; - V v_; - -public: - int read(const std::string& hgroot); - char status(const std::string& relpath) const; -}; - - -char DirectoryStatus::status(const std::string& relpath) const -{ - TDEBUG_TRACE("DirectoryStatus::status(" << relpath << ")"); - - char res = 'C'; - bool added = false; - bool modified = false; - - for (V::const_iterator i = v_.begin(); i != v_.end(); ++i) - { - const E& e = *i; - if (e.path_.compare(0, relpath.length(), relpath) == 0) - { - TDEBUG_TRACE("DirectoryStatus::status(" << relpath << "):" - << " found '" << e.path_ << "'"); - if (e.status_ == 'r' || e.status_ == 'm') - { - modified = true; - break; - } - if (e.status_ == 'a') - added = true; - } - } - - if (modified) - res = 'M'; - else if (added) - res = 'A'; - else - res = 'C'; - - TDEBUG_TRACE("DirectoryStatus::status(" << relpath << "): returns " << res); - return res; -} - - -int DirectoryStatus::read(const std::string& hgroot) -{ - v_.clear(); - - std::string p = hgroot + "\\.hg\\thgstatus"; - - FILE *f = fopen(p.c_str(), "rb"); - if (!f) - { - TDEBUG_TRACE("DirectoryStatus::read: can't open " << p); - return 0; - } - - char state; - std::vector<char> path(MAX_PATH); - - DirectoryStatus::E e; - - while (fread(&state, sizeof(state), 1, f) == 1) - { - e.status_ = state; - - path.clear(); - char t; - while (fread(&t, sizeof(t), 1, f) == 1 && t != '\n') - { - path.push_back(t); - if (path.size() > 1000) - return 0; - } - path.push_back(0); - - e.path_ = &path[0]; - - v_.push_back(e); - } - - fclose(f); - - TDEBUG_TRACE("DirectoryStatus::read(" << hgroot << "): done. " - << v_.size() << " entries read"); - - return 1; -} - -  class Dirstatecache  {   struct E