1 | #ifndef _theplu_svndigest_file_ |
---|
2 | #define _theplu_svndigest_file_ |
---|
3 | |
---|
4 | // $Id: File.h 430 2007-07-06 23:33:11Z 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 <map> |
---|
30 | #include <string> |
---|
31 | |
---|
32 | namespace theplu{ |
---|
33 | namespace svndigest{ |
---|
34 | |
---|
35 | class File : public Node |
---|
36 | { |
---|
37 | public: |
---|
38 | /// |
---|
39 | /// @brief Default Constructor |
---|
40 | /// |
---|
41 | File(const u_int level, const std::string& path, |
---|
42 | const std::string& output=""); |
---|
43 | |
---|
44 | /** |
---|
45 | For example 'File.h.html' |
---|
46 | |
---|
47 | @return href to this file |
---|
48 | */ |
---|
49 | std::string href(void) const; |
---|
50 | |
---|
51 | /** |
---|
52 | @return The explicit string "file", nothing else. |
---|
53 | */ |
---|
54 | std::string node_type(void) const; |
---|
55 | |
---|
56 | /** |
---|
57 | @return output path for example 'lib/File.h.html' for this file |
---|
58 | */ |
---|
59 | std::string output_path(void) const; |
---|
60 | |
---|
61 | /// |
---|
62 | /// @brief Parsing out information from svn repository |
---|
63 | /// |
---|
64 | /// @return Stats object of the file |
---|
65 | /// |
---|
66 | const Stats& parse(const bool verbose=false); |
---|
67 | |
---|
68 | void print_copyright(std::map<std::string, Alias>&) const; |
---|
69 | |
---|
70 | private: |
---|
71 | |
---|
72 | /// |
---|
73 | /// @brief Parsing svn blame output |
---|
74 | /// |
---|
75 | /// @return true if parsing is succesful |
---|
76 | /// |
---|
77 | bool blame(void) const; |
---|
78 | |
---|
79 | /// |
---|
80 | /// @brief Copy Constructor, not implemented |
---|
81 | /// |
---|
82 | File(const File&); |
---|
83 | |
---|
84 | /** |
---|
85 | @brief Print blame output |
---|
86 | */ |
---|
87 | void print_blame(std::ofstream& os) const; |
---|
88 | |
---|
89 | void print_core(bool verbose=false) const; |
---|
90 | |
---|
91 | /// |
---|
92 | /// print page for specific user (or all) and specific line_style |
---|
93 | /// (or total). |
---|
94 | /// |
---|
95 | void print_core(const std::string& user, const std::string& line_type, |
---|
96 | const SVNlog&) const; |
---|
97 | |
---|
98 | }; |
---|
99 | |
---|
100 | }} // end of namespace svndigest and namespace theplu |
---|
101 | |
---|
102 | #endif |
---|
103 | |
---|
104 | |
---|