1 | #ifndef _theplu_svndigest_directory_ |
---|
2 | #define _theplu_svndigest_directory_ |
---|
3 | |
---|
4 | // $Id: Directory.h 497 2007-10-14 04:58:06Z peter $ |
---|
5 | |
---|
6 | /* |
---|
7 | Copyright (C) 2005, 2006, 2007 Jari Häkkinen, Peter Johansson |
---|
8 | |
---|
9 | This file is part of svndigest, http://trac.thep.lu.se/trac/svndigest |
---|
10 | |
---|
11 | svndigest is free software; you can redistribute it and/or modify it |
---|
12 | under the terms of the GNU General Public License as published by |
---|
13 | the Free Software Foundation; either version 2 of the License, or |
---|
14 | (at your option) any later version. |
---|
15 | |
---|
16 | svndigest is distributed in the hope that it will be useful, but |
---|
17 | WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
18 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
19 | General Public License for more details. |
---|
20 | |
---|
21 | You should have received a copy of the GNU General Public License |
---|
22 | along with this program; if not, write to the Free Software |
---|
23 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA |
---|
24 | 02111-1307, USA. |
---|
25 | */ |
---|
26 | |
---|
27 | #include "Node.h" |
---|
28 | |
---|
29 | #include <list> |
---|
30 | #include <map> |
---|
31 | #include <string> |
---|
32 | |
---|
33 | namespace theplu{ |
---|
34 | namespace svndigest{ |
---|
35 | |
---|
36 | /// |
---|
37 | /// Class taking care of directories. |
---|
38 | /// |
---|
39 | class Directory : public Node |
---|
40 | { |
---|
41 | public: |
---|
42 | |
---|
43 | /// |
---|
44 | /// @brief Constructor |
---|
45 | /// |
---|
46 | /// Recursively create a directory tree starting from \a path. All |
---|
47 | /// entries except explicit directories are treated as File nodes, |
---|
48 | /// i.e. symbolic links to directories are treated as File |
---|
49 | /// nodes. This will ensure that the directory structure is a tree |
---|
50 | /// and double counting of branches is avoided. |
---|
51 | /// |
---|
52 | /// @note Nodes named '.', '..', and '.svn' are ignored and not |
---|
53 | /// traversed. |
---|
54 | /// |
---|
55 | Directory(const u_int level, const std::string& path, |
---|
56 | const std::string& output=""); |
---|
57 | |
---|
58 | /// |
---|
59 | /// @brief Destructor |
---|
60 | /// |
---|
61 | ~Directory(void); |
---|
62 | |
---|
63 | /// |
---|
64 | /// @return true |
---|
65 | /// |
---|
66 | bool dir(void) const; |
---|
67 | |
---|
68 | /// |
---|
69 | /// @return directory-name/index.html |
---|
70 | /// |
---|
71 | std::string href(void) const; |
---|
72 | |
---|
73 | /** |
---|
74 | @return The explicit string "directory", nothing else. |
---|
75 | */ |
---|
76 | std::string node_type(void) const; |
---|
77 | |
---|
78 | /** |
---|
79 | @return output path for example 'lib/File.h.html' for this file |
---|
80 | */ |
---|
81 | std::string output_path(void) const; |
---|
82 | |
---|
83 | const ClassicStats& parse(const bool verbose=false); |
---|
84 | |
---|
85 | void print_copyright(std::map<std::string, Alias>&, bool verbose) const; |
---|
86 | |
---|
87 | private: |
---|
88 | /** |
---|
89 | @return union of logs from daughter nodes. |
---|
90 | */ |
---|
91 | SVNlog log_core(void) const; |
---|
92 | |
---|
93 | /// |
---|
94 | /// @brief Copy Constructor, not implemented |
---|
95 | /// |
---|
96 | Directory(const Directory&); |
---|
97 | |
---|
98 | void print_core(bool verbose=false) const; |
---|
99 | |
---|
100 | void print_core(const std::string& stats_type, const std::string& user, |
---|
101 | const std::string& line_type, const SVNlog&) const; |
---|
102 | |
---|
103 | |
---|
104 | typedef std::list<Node*> NodeContainer; |
---|
105 | typedef NodeContainer::iterator NodeIterator; |
---|
106 | typedef NodeContainer::const_iterator NodeConstIterator; |
---|
107 | NodeContainer daughters_; |
---|
108 | }; |
---|
109 | |
---|
110 | }} // end of namespace svndigest and namespace theplu |
---|
111 | |
---|
112 | #endif |
---|