1 | #ifndef _theplu_svndigest_file_ |
---|
2 | #define _theplu_svndigest_file_ |
---|
3 | |
---|
4 | // $Id: File.h 258 2007-04-30 12:08:25Z peter $ |
---|
5 | |
---|
6 | /* |
---|
7 | Copyright (C) 2005, 2006 Jari Häkkinen, Peter Johansson |
---|
8 | Copyright (C) 2007 Peter Johansson |
---|
9 | |
---|
10 | This file is part of svndigest, http://lev.thep.lu.se/trac/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 2 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 this program; if not, write to the Free Software |
---|
24 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA |
---|
25 | 02111-1307, USA. |
---|
26 | */ |
---|
27 | |
---|
28 | #include "Node.h" |
---|
29 | |
---|
30 | #include <map> |
---|
31 | #include <string> |
---|
32 | |
---|
33 | namespace theplu{ |
---|
34 | namespace svndigest{ |
---|
35 | |
---|
36 | class File : public Node |
---|
37 | { |
---|
38 | public: |
---|
39 | /// |
---|
40 | /// @brief Default Constructor |
---|
41 | /// |
---|
42 | File(const u_int level, const std::string& path, |
---|
43 | const std::string& output="") |
---|
44 | : Node(level,path,output) {} |
---|
45 | |
---|
46 | /// |
---|
47 | /// @return href to this file |
---|
48 | /// |
---|
49 | std::string href(void) const; |
---|
50 | |
---|
51 | /// |
---|
52 | /// @return file |
---|
53 | /// |
---|
54 | const std::string node_type(void) const; |
---|
55 | |
---|
56 | /// |
---|
57 | /// @brief Parsing out information from svn repository |
---|
58 | /// |
---|
59 | /// @return true if succesful |
---|
60 | /// |
---|
61 | const Stats& parse(const bool verbose=false); |
---|
62 | |
---|
63 | /// |
---|
64 | /// printing all pages related to this file |
---|
65 | /// |
---|
66 | void print(const bool verbose=false) const; |
---|
67 | |
---|
68 | /// |
---|
69 | /// print blame output |
---|
70 | /// |
---|
71 | void print_blame(std::ofstream&, const std::string line_type) const; |
---|
72 | |
---|
73 | void print_copyright(std::map<std::string, std::string>&) const; |
---|
74 | |
---|
75 | private: |
---|
76 | |
---|
77 | /// |
---|
78 | /// @brief Parsing svn blame output |
---|
79 | /// |
---|
80 | /// @return true if parsing is succesful |
---|
81 | /// |
---|
82 | bool blame(void) const; |
---|
83 | |
---|
84 | /// |
---|
85 | /// @brief Copy Constructor, not implemented |
---|
86 | /// |
---|
87 | File(const File&); |
---|
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 | |
---|