source: trunk/lib/Directory.h @ 1238

Last change on this file since 1238 was 1238, checked in by Peter Johansson, 12 years ago

remove print_copyright from Node interface since we use traverse to traverse node tree and only need to update copyright on File

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 3.1 KB
Line 
1#ifndef _theplu_svndigest_directory_
2#define _theplu_svndigest_directory_
3
4// $Id: Directory.h 1238 2010-10-23 22:05:25Z peter $
5
6/*
7  Copyright (C) 2005, 2006, 2007, 2008 Jari Häkkinen, Peter Johansson
8  Copyright (C) 2009 Peter Johansson
9
10  This file is part of svndigest, http://dev.thep.lu.se/svndigest
11
12  svndigest is free software; you can redistribute it and/or modify it
13  under the terms of the GNU General Public License as published by
14  the Free Software Foundation; either version 3 of the License, or
15  (at your option) any later version.
16
17  svndigest is distributed in the hope that it will be useful, but
18  WITHOUT ANY WARRANTY; without even the implied warranty of
19  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20  General Public License for more details.
21
22  You should have received a copy of the GNU General Public License
23  along with svndigest. If not, see <http://www.gnu.org/licenses/>.
24*/
25
26#include "Node.h"
27
28#include <map>
29#include <string>
30#include <vector>
31
32namespace theplu{
33namespace svndigest{
34
35  class NodeVisitor;
36
37  ///
38  /// Class taking care of directories.
39  ///
40  class Directory : public Node
41  {
42  public:
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 unsigned int level, const std::string& path, 
56              const std::string& output="");
57
58    ///
59    /// @brief Destructor
60    ///
61    ~Directory(void);
62
63    /**
64       Collect stats from daughter nodes and reset stats in daughter
65       nodes.
66     */
67    void collect_stats(void);
68
69    ///
70    /// @return true
71    ///
72    bool dir(void) const;
73
74    ///
75    /// @return directory-name/index.html
76    ///
77    std::string href(void) const;
78
79    /**
80       \brief Get the revision number of the latest commit.
81
82       Does not only check this directory but also daughter nodes.
83    */
84    svn_revnum_t last_changed_rev(void) const;
85
86    /**
87       @return The explicit string "directory", nothing else.
88    */
89    std::string node_type(void) const;
90
91    /**
92       @return output path for example 'lib/File.h.html' for this file
93     */
94    std::string output_path(void) const;
95
96    /**
97       Calls visitor.enter(*this). If enter returns true, daughter
98       nodes are traverses. Finally visitor visitor.leave(*this) i called.
99     */
100    void traverse(NodeVisitor& visitor);
101
102  private:
103    /**
104       add union of logs from daughter nodes.
105    */
106    void log_core(SVNlog&) const;
107
108    ///
109    /// @brief Copy Constructor, not implemented
110    ///
111    Directory(const Directory&);
112
113    void print_core(bool verbose=false) const;
114
115    void print_core(const std::string& stats_type, const std::string& user, 
116                    const std::string& line_type, const SVNlog&) const;
117
118
119    typedef std::vector<Node*> NodeContainer;
120    typedef NodeContainer::iterator NodeIterator;
121    typedef NodeContainer::const_iterator NodeConstIterator;
122    NodeContainer daughters_;
123  };
124
125}} // end of namespace svndigest and namespace theplu
126
127#endif
Note: See TracBrowser for help on using the repository browser.