1 | // $Id: SVNinfo.cc 318 2007-05-18 09:35:45Z jari $ |
---|
2 | |
---|
3 | /* |
---|
4 | Copyright (C) 2006 Jari Häkkinen |
---|
5 | |
---|
6 | This file is part of svndigest, http://lev.thep.lu.se/trac/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 2 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 this program; if not, write to the Free Software |
---|
20 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA |
---|
21 | 02111-1307, USA. |
---|
22 | */ |
---|
23 | |
---|
24 | #include "SVNinfo.h" |
---|
25 | #include "SVN.h" |
---|
26 | |
---|
27 | #include <string> |
---|
28 | |
---|
29 | namespace theplu { |
---|
30 | namespace svndigest { |
---|
31 | |
---|
32 | |
---|
33 | SVNinfo::SVNinfo(const std::string& path) |
---|
34 | { |
---|
35 | SVN::instance()->client_info(path, info_receiver, |
---|
36 | static_cast<void*>(&info_receiver_baton_)); |
---|
37 | } |
---|
38 | |
---|
39 | |
---|
40 | svn_error_t* SVNinfo::info_receiver(void *baton, const char *, |
---|
41 | const svn_info_t *info, apr_pool_t*) |
---|
42 | { |
---|
43 | if (!info) |
---|
44 | throw SVNException(std::string("SVNinfo::info_receriver: ") + |
---|
45 | "Failed to acquire an svn info object"); |
---|
46 | |
---|
47 | info_receiver_baton* irb=static_cast<struct info_receiver_baton*>(baton); |
---|
48 | if (info->URL) |
---|
49 | irb->url_=info->URL; |
---|
50 | if (info->repos_root_URL) |
---|
51 | irb->repos_root_url_=info->repos_root_URL; |
---|
52 | if (info->last_changed_author) |
---|
53 | irb->last_changed_author_=info->last_changed_author; |
---|
54 | if (info->last_changed_rev) |
---|
55 | irb->last_changed_rev_=info->last_changed_rev; |
---|
56 | if (info->rev) |
---|
57 | irb->rev_=info->rev; |
---|
58 | |
---|
59 | return SVN_NO_ERROR; |
---|
60 | } |
---|
61 | |
---|
62 | }} // end of namespace svndigest and namespace theplu |
---|