1 | // $Id: Directory.cc 1024 2010-01-10 23:33:34Z peter $ |
---|
2 | |
---|
3 | /* |
---|
4 | Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Jari Häkkinen, Peter Johansson |
---|
5 | |
---|
6 | This file is part of svndigest, http://dev.thep.lu.se/svndigest |
---|
7 | |
---|
8 | svndigest is free software; you can redistribute it and/or modify it |
---|
9 | under the terms of the GNU General Public License as published by |
---|
10 | the Free Software Foundation; either version 3 of the License, or |
---|
11 | (at your option) any later version. |
---|
12 | |
---|
13 | svndigest is distributed in the hope that it will be useful, but |
---|
14 | WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
16 | General Public License for more details. |
---|
17 | |
---|
18 | You should have received a copy of the GNU General Public License |
---|
19 | along with svndigest. If not, see <http://www.gnu.org/licenses/>. |
---|
20 | */ |
---|
21 | |
---|
22 | #include "Directory.h" |
---|
23 | |
---|
24 | #include "Alias.h" |
---|
25 | #include "Configuration.h" |
---|
26 | #include "File.h" |
---|
27 | #include "html_utility.h" |
---|
28 | #include "Node.h" |
---|
29 | #include "SVN.h" |
---|
30 | #include "SVNlog.h" |
---|
31 | #include "utility.h" |
---|
32 | |
---|
33 | #include <algorithm> |
---|
34 | #include <cassert> |
---|
35 | #include <fstream> |
---|
36 | #include <functional> |
---|
37 | #include <iostream> |
---|
38 | #include <iterator> |
---|
39 | #include <list> |
---|
40 | #include <map> |
---|
41 | #include <sstream> |
---|
42 | |
---|
43 | #include <cerrno> // Needed to check error state below. |
---|
44 | #include <dirent.h> |
---|
45 | #include <sys/stat.h> |
---|
46 | |
---|
47 | namespace theplu{ |
---|
48 | namespace svndigest{ |
---|
49 | |
---|
50 | |
---|
51 | Directory::Directory(const unsigned int level, const std::string& path, |
---|
52 | const std::string& output) |
---|
53 | : Node(level,path,output) |
---|
54 | { |
---|
55 | output_dir_=local_path(); |
---|
56 | if (!output_dir_.empty()) |
---|
57 | output_dir_+='/'; |
---|
58 | |
---|
59 | using namespace std; |
---|
60 | DIR* directory=opendir(path.c_str()); // C API from dirent.h |
---|
61 | if (!directory) |
---|
62 | throw NodeException("ERROR: opendir() failed; " + path + |
---|
63 | " is not a directory"); |
---|
64 | list<string> entries; |
---|
65 | struct dirent* entry; |
---|
66 | errno=0; // Global variable used by C to track errors, from errno.h |
---|
67 | while ((entry=readdir(directory))) // C API from dirent.h |
---|
68 | entries.push_back(string(entry->d_name)); |
---|
69 | if (errno) |
---|
70 | throw NodeException("ERROR: readdir() failed on " + path); |
---|
71 | closedir(directory); |
---|
72 | |
---|
73 | SVN* svn=SVN::instance(); |
---|
74 | for (list<string>::iterator i=entries.begin(); i!=entries.end(); ++i) |
---|
75 | if ((*i)!=string(".") && (*i)!=string("..") && (*i)!=string(".svn")) { |
---|
76 | string fullpath(path_+'/'+(*i)); |
---|
77 | switch (svn->version_controlled(fullpath)) { |
---|
78 | case SVN::uptodate: |
---|
79 | struct stat nodestat; // C api from sys/stat.h |
---|
80 | lstat(fullpath.c_str(),&nodestat); // C api from sys/stat.h |
---|
81 | if (S_ISDIR(nodestat.st_mode)) // C api from sys/stat.h |
---|
82 | daughters_.push_back(new Directory(level_+1,fullpath,local_path())); |
---|
83 | else |
---|
84 | daughters_.push_back(new File(level_,fullpath,local_path())); |
---|
85 | break; |
---|
86 | case SVN::unresolved: |
---|
87 | throw NodeException(fullpath+" is not up to date"); |
---|
88 | case SVN::unversioned: ; // do nothing |
---|
89 | } |
---|
90 | } |
---|
91 | std::sort(daughters_.begin(), daughters_.end(), NodePtrLess()); |
---|
92 | } |
---|
93 | |
---|
94 | |
---|
95 | Directory::~Directory(void) |
---|
96 | { |
---|
97 | for (NodeIterator i=daughters_.begin(); i!=daughters_.end(); ++i) |
---|
98 | delete *i; |
---|
99 | } |
---|
100 | |
---|
101 | bool Directory::dir(void) const |
---|
102 | { |
---|
103 | return true; |
---|
104 | } |
---|
105 | |
---|
106 | std::string Directory::href(void) const |
---|
107 | { |
---|
108 | return name() + "/index.html"; |
---|
109 | } |
---|
110 | |
---|
111 | |
---|
112 | svn_revnum_t Directory::last_changed_rev(void) const |
---|
113 | { |
---|
114 | svn_revnum_t res = svn_info().last_changed_rev(); |
---|
115 | for (NodeConstIterator i=daughters_.begin(); i!=daughters_.end(); ++i) |
---|
116 | res = std::max(res, (*i)->last_changed_rev()); |
---|
117 | return res; |
---|
118 | } |
---|
119 | |
---|
120 | |
---|
121 | void Directory::log_core(SVNlog& log) const |
---|
122 | { |
---|
123 | for (NodeConstIterator i(daughters_.begin()); i != daughters_.end(); ++i) |
---|
124 | log += (*i)->log(); |
---|
125 | } |
---|
126 | |
---|
127 | std::string Directory::node_type(void) const |
---|
128 | { |
---|
129 | return std::string("directory"); |
---|
130 | } |
---|
131 | |
---|
132 | |
---|
133 | std::string Directory::output_path(void) const |
---|
134 | { |
---|
135 | return output_dir()+"index.html"; |
---|
136 | } |
---|
137 | |
---|
138 | const StatsCollection& Directory::parse(bool verbose, bool ignore) |
---|
139 | { |
---|
140 | stats_.reset(); |
---|
141 | // Directories themselved give no contribution to statistics. |
---|
142 | for (NodeIterator i=daughters_.begin(); i!=daughters_.end(); ++i) |
---|
143 | if (!(*i)->ignore()) |
---|
144 | stats_ += (*i)->parse(verbose, ignore); |
---|
145 | return stats_; |
---|
146 | } |
---|
147 | |
---|
148 | |
---|
149 | void Directory::print_core(const bool verbose) const |
---|
150 | { |
---|
151 | mkdir("blame_output/" + local_path()); |
---|
152 | // print daughter nodes |
---|
153 | for (NodeConstIterator i=daughters_.begin(); i!=daughters_.end(); ++i) |
---|
154 | (*i)->print(verbose); |
---|
155 | } |
---|
156 | |
---|
157 | |
---|
158 | void Directory::print_core(const std::string& stats_type, |
---|
159 | const std::string& user, |
---|
160 | const std::string& line_type, |
---|
161 | const SVNlog& log) const |
---|
162 | { |
---|
163 | |
---|
164 | const Stats& stats = stats_[stats_type]; |
---|
165 | std::string imagedir = stats_type+"/"+"images/"+line_type; |
---|
166 | std::string outdir = stats_type+"/"+user+"/" +line_type; |
---|
167 | if (local_path()!="") { |
---|
168 | imagedir += "/"+local_path(); |
---|
169 | outdir += "/"+local_path(); |
---|
170 | } |
---|
171 | mkdir(outdir); |
---|
172 | if (user=="all") |
---|
173 | mkdir(imagedir); |
---|
174 | std::string html_name = outdir+"/index.html"; |
---|
175 | std::ofstream os(html_name.c_str()); |
---|
176 | assert(os.good()); |
---|
177 | if (local_path().empty()) |
---|
178 | print_header(os, name(), level_+3, user, line_type, "index.html", |
---|
179 | stats_type); |
---|
180 | else |
---|
181 | print_header(os, name(), level_+3, user, line_type, |
---|
182 | local_path()+"/index.html", stats_type); |
---|
183 | path_anchor(os); |
---|
184 | |
---|
185 | std::stringstream ss; |
---|
186 | for (size_t i=0; i<level_; ++i) |
---|
187 | ss << "../"; |
---|
188 | ss << "../../../"; |
---|
189 | if (user=="all") |
---|
190 | ss << stats.plot(imagedir+"/index", line_type); |
---|
191 | else |
---|
192 | ss << imagedir << "/index"; |
---|
193 | os << "<p class=\"plot\">\n"; |
---|
194 | os << image(ss.str()); |
---|
195 | os << "</p>\n"; |
---|
196 | |
---|
197 | os << "<h3>File Summary"; |
---|
198 | if (user!="all") |
---|
199 | os << " for " << user; |
---|
200 | os << "</h3>"; |
---|
201 | os << "<table class=\"listings\">\n"; |
---|
202 | os << "<thead>\n"; |
---|
203 | os << "<tr>\n"; |
---|
204 | os << "<th>Node</th>\n"; |
---|
205 | os << "<th>Lines</th>\n"; |
---|
206 | os << "<th>Code</th>\n"; |
---|
207 | os << "<th>Comments</th>\n"; |
---|
208 | os << "<th>Other</th>\n"; |
---|
209 | os << "<th>Revision</th>\n"; |
---|
210 | os << "<th>Author</th>\n"; |
---|
211 | os << "</tr>\n</thead>\n"; |
---|
212 | os << "<tbody>\n"; |
---|
213 | |
---|
214 | std::string color("light"); |
---|
215 | if (level_){ |
---|
216 | os << "<tr class=\"light\">\n"; |
---|
217 | os << "<td class=\"directory\" colspan=\"7\">"; |
---|
218 | os << anchor("../index.html", "../"); |
---|
219 | os << "</td>\n</tr>\n"; |
---|
220 | color = "dark"; |
---|
221 | } |
---|
222 | |
---|
223 | // print html links to daughter nodes |
---|
224 | for (NodeConstIterator d = daughters_.begin(); d!=daughters_.end(); ++d) { |
---|
225 | (*d)->html_tablerow(os,stats_type, color, user); |
---|
226 | if (color=="dark") |
---|
227 | color = "light"; |
---|
228 | else |
---|
229 | color = "dark"; |
---|
230 | } |
---|
231 | os << "<tr class=\"" << color << "\">\n"; |
---|
232 | os << "<td>Total</td>\n"; |
---|
233 | if (user=="all"){ |
---|
234 | os << "<td>" << stats.lines() << "</td>\n"; |
---|
235 | os << "<td>" << stats.code() << "</td>\n"; |
---|
236 | os << "<td>" << stats.comments() << "</td>\n"; |
---|
237 | os << "<td>" << stats.empty() << "</td>\n"; |
---|
238 | } |
---|
239 | else { |
---|
240 | os << "<td>" << stats.lines(user); |
---|
241 | if (stats.lines(user)) |
---|
242 | os << " (" << percent(stats.lines(user),stats.lines()) << "%)"; |
---|
243 | os << "</td>\n"; |
---|
244 | os << "<td>" << stats.code(user); |
---|
245 | if (stats.code(user)) |
---|
246 | os << " (" << percent(stats.code(user),stats.code()) << "%)"; |
---|
247 | os << "</td>\n"; |
---|
248 | os << "<td>" << stats.comments(user); |
---|
249 | if (stats.comments(user)) |
---|
250 | os << " (" << percent(stats.comments(user),stats.comments()) << "%)"; |
---|
251 | os << "</td>\n"; |
---|
252 | os << "<td>" << stats.empty(user); |
---|
253 | if (stats.empty(user)) |
---|
254 | os << " (" << percent(stats.empty(user),stats.empty()) << "%)"; |
---|
255 | os << "</td>\n"; |
---|
256 | } |
---|
257 | os << "<td>" << trac_revision(last_changed_rev()) << "</td>\n"; |
---|
258 | os << "<td>" << author() << "</td>\n"; |
---|
259 | os << "</tr>\n"; |
---|
260 | os << "</tbody>\n"; |
---|
261 | os << "</table>\n"; |
---|
262 | print_author_summary(os, stats, line_type, log); |
---|
263 | os << "\n"; |
---|
264 | print_footer(os); |
---|
265 | os.close(); |
---|
266 | } |
---|
267 | |
---|
268 | |
---|
269 | void Directory::print_copyright(std::map<std::string, Alias>& alias, |
---|
270 | bool verbose, |
---|
271 | const std::map<int,svn_revnum_t>& y2r) const |
---|
272 | { |
---|
273 | if (!ignore()){ |
---|
274 | // print daughter nodes, i.e, this function is recursive |
---|
275 | for (NodeConstIterator i = daughters_.begin(); i!=daughters_.end(); ++i) |
---|
276 | (*i)->print_copyright(alias, verbose, y2r); |
---|
277 | } |
---|
278 | } |
---|
279 | |
---|
280 | }} // end of namespace svndigest and namespace theplu |
---|