source: branches/0.6-stable/lib/SVN.cc @ 430

Last change on this file since 430 was 430, checked in by Peter Johansson, 16 years ago

changing lev.thep.lu.se to trac.thep.lu.se

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 9.9 KB
Line 
1// $Id: SVN.cc 430 2007-07-06 23:33:11Z peter $
2
3/*
4  Copyright (C) 2006 Jari Häkkinen
5  Copyright (C) 2007 Jari Häkkinen, Peter Johansson
6
7  This file is part of svndigest, http://trac.thep.lu.se/trac/svndigest
8
9  svndigest is free software; you can redistribute it and/or modify it
10  under the terms of the GNU General Public License as published by
11  the Free Software Foundation; either version 2 of the License, or
12  (at your option) any later version.
13
14  svndigest is distributed in the hope that it will be useful, but
15  WITHOUT ANY WARRANTY; without even the implied warranty of
16  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17  General Public License for more details.
18
19  You should have received a copy of the GNU General Public License
20  along with this program; if not, write to the Free Software
21  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
22  02111-1307, USA.
23*/
24
25#include "SVN.h"
26
27#include <map>
28#include <string>
29#include <vector>
30
31#include <iostream>
32
33#include <apr_allocator.h>
34#include <apr_hash.h>
35#include <subversion-1/svn_client.h>
36#include <subversion-1/svn_cmdline.h>
37#include <subversion-1/svn_path.h>
38#include <subversion-1/svn_pools.h>
39#include <subversion-1/svn_wc.h>
40#include <subversion-1/svn_subst.h>
41
42namespace theplu {
43namespace svndigest {
44
45
46  SVN* SVN::instance_=NULL;
47
48
49  SVN::SVN(const std::string& path)
50    : adm_access_(NULL), allocator_(NULL), context_(NULL), pool_(NULL)
51  {
52    svn_error_t* err=NULL;
53
54    // initialize something (APR subsystem and more). The APR
55    // subsystem is automatically destroyed at program exit. In case
56    // of several calls to svn_cmdline_init (ie. several exceptions
57    // thrown and caught with subsequent reinitializatios is safe
58    // memorywise but what about APR internal counters?)
59    if (svn_cmdline_init("svndigest",stderr) != EXIT_SUCCESS)
60      throw SVNException("SVN: svn_cmdline_init failed");
61
62    /// create top-level pool
63    if (apr_allocator_create(&allocator_))
64      throw SVNException("SVN(_allocator_create failed");
65    apr_allocator_max_free_set(allocator_,SVN_ALLOCATOR_RECOMMENDED_MAX_FREE);
66    pool_ = svn_pool_create_ex(NULL, allocator_);
67    apr_allocator_owner_set(allocator_, pool_);
68
69    // initialize the repository access library
70    if ((err=svn_ra_initialize(pool_)))
71      cleanup_failed_init(err, "SVN: svn_ra_initialize failed");
72
73    // Check that users .subversion exist. Should this really be done?
74    // If this check is to be done, we might be forced to support a
75    // command line option to change the location of the .subversion
76    // stuff (compare with the svn binary).
77    if ((err=svn_config_ensure(NULL, pool_)))
78      cleanup_failed_init(err, "SVN: svn_config_ensure failed");
79
80    // create a client context object
81    if ((err=svn_client_create_context(&context_, pool_)))
82      cleanup_failed_init(err, "SVN: svn_client_create_context failed");
83
84    if ((err=svn_config_get_config(&(context_->config), NULL, pool_)))
85      cleanup_failed_init(err, "SVN: svn_config_get_config failed");
86
87    // set up authentication stuff
88    if ((err=svn_cmdline_setup_auth_baton(&(context_->auth_baton), false, NULL,
89                                          NULL, NULL, false,
90                        static_cast<svn_config_t*>(apr_hash_get(context_->config,
91                                                    SVN_CONFIG_CATEGORY_CONFIG,
92                                                    APR_HASH_KEY_STRING)),
93                                          context_->cancel_func,
94                                          context_->cancel_baton, pool_)))
95      cleanup_failed_init(err, "SVN: svn_cmdline_setup_auth_baton failed");
96
97    // Set up svn administration area access. The whole structure is
98    // setup, maybe this is unnecessary?
99    const char* canonical_path=svn_path_internal_style(path.c_str(), pool_);
100    if (svn_error_t *err=svn_wc_adm_open3(&adm_access_, NULL, canonical_path,
101                                          false, -1, context_->cancel_func,
102                                          context_->cancel_baton, pool_))
103      cleanup_failed_init(err, "SVN: svn_wc_adm_open3 failed");
104
105    // get a session to the repository
106    struct root_url_receiver_baton rurb;
107    client_info(path, root_url_receiver, static_cast<void*>(&rurb));
108    if (svn_error_t *err=svn_client_open_ra_session(&ra_session_,
109                                                    rurb.path.c_str(),
110                                                    context_, pool_))
111      cleanup_failed_init(err, "SVN: svn_client_open_ra_session failed");
112  }
113
114
115  SVN::~SVN(void)
116  {
117    if (adm_access_)
118      svn_error_clear(svn_wc_adm_close(adm_access_));
119    svn_pool_destroy(pool_);
120    apr_allocator_destroy(allocator_);
121    // other apr resources acquired in svn_cmdline_init are destroyed
122    // at program exit, ok since SVN is a singleton
123  }
124
125
126  void SVN::cleanup(svn_error_t *err,apr_pool_t *pool,
127                    const std::string& message)
128  {
129    svn_handle_error2(err,stderr,false,"svndigest: ");
130    svn_error_clear(err);
131    if (pool)
132      svn_pool_destroy(pool);
133    if (message.length()>0)
134      throw SVNException(message);
135  }
136
137
138  void SVN::cleanup_failed_init(svn_error_t *err, const std::string& message)
139  {
140    cleanup(err,pool_);
141    apr_allocator_destroy(allocator_);
142    throw SVNException(message);
143  }
144
145
146  svn_error_t* SVN::client_blame(const std::string& path,
147                                 svn_client_blame_receiver_t receiver,
148                                 void *baton)
149  {
150    // Setup to use all revisions
151    svn_opt_revision_t peg, start, head;
152    peg.kind=svn_opt_revision_unspecified;
153    start.kind=svn_opt_revision_number;
154    start.value.number=0;
155    head.kind = ( svn_path_is_url(path.c_str()) ?
156                  svn_opt_revision_head : svn_opt_revision_base );
157    apr_pool_t *subpool = svn_pool_create(pool_);
158    svn_error_t* err=svn_client_blame3(path.c_str(), &peg, &start, &head,
159                                       svn_diff_file_options_create(subpool),
160                                       false, receiver, baton, context_,
161                                       subpool);
162    if (err && err->apr_err!=SVN_ERR_CLIENT_IS_BINARY_FILE)
163      // cleanup will throw an exception
164      cleanup(err, subpool, "SVN::client_blame: svn_client_blame3 failed");
165    svn_pool_destroy(subpool);
166    return err;
167  }
168
169
170  void SVN::client_info(const std::string& path, svn_info_receiver_t receiver,
171                        void *baton)
172  {
173    apr_pool_t *subpool = svn_pool_create(pool_);
174    if (svn_error_t *err=svn_client_info(path.c_str(), NULL, NULL, receiver,
175                                         baton, false, context_, subpool))
176      // cleanup will throw an exception
177      cleanup(err, subpool, "repository: svn_client_info failed");
178    svn_pool_destroy(subpool);
179  }
180
181
182  void SVN::client_log(const std::string& path,
183                       svn_log_message_receiver_t receiver, void *baton)
184  {
185    // Allocate space in subpool to pool_ for apr_path (here a string).
186    apr_pool_t *subpool = svn_pool_create(pool_);
187    apr_array_header_t* apr_path=apr_array_make(subpool,1,4);
188    // Copy path to apr_path.
189    (*((const char **) apr_array_push(apr_path))) =
190      apr_pstrdup(subpool, svn_path_internal_style(path.c_str(),subpool));
191
192    // Setup to retrieve all commit logs.
193    svn_opt_revision_t peg, start, head;
194    peg.kind=svn_opt_revision_unspecified;
195    start.kind=svn_opt_revision_number;
196    start.value.number=0;
197    head.kind = ( svn_path_is_url(path.c_str()) ?
198                  svn_opt_revision_head : svn_opt_revision_base );
199    svn_error_t* err=NULL;
200    if ((err=svn_client_log3(apr_path, &peg, &start, &head, 0, false, false,
201                             receiver, baton, context_, subpool)))
202      // cleanupp will throw an exception
203      cleanup(err, subpool, "commit_dates: svn_client_log3 failed");
204    svn_pool_destroy(subpool);
205  }
206
207
208  void SVN::client_proplist(const std::string& path,
209                            std::map<std::string, std::string>& property)
210  {
211    svn_opt_revision_t peg, revision;
212    peg.kind=svn_opt_revision_unspecified;
213    revision.kind = ( svn_path_is_url(path.c_str()) ?
214                      svn_opt_revision_head : svn_opt_revision_base );
215    apr_pool_t *subpool = svn_pool_create(pool_);
216    apr_array_header_t * properties;
217    svn_error_t *err=svn_client_proplist2(&properties, path.c_str(), &peg,
218                                          &revision, false, context_, subpool);
219    if (err)
220      cleanup(err, subpool, "repository: svn_client_proplist2 failed");
221
222    for (int j = 0; j < properties->nelts; ++j) {
223      svn_client_proplist_item_t *item = 
224        ((svn_client_proplist_item_t **)properties->elts)[j];
225      for (apr_hash_index_t *hi = apr_hash_first(subpool, item->prop_hash); hi; 
226           hi = apr_hash_next (hi)) {
227        const void *key;
228        void *val;
229        apr_hash_this (hi, &key, NULL, &val);
230        svn_string_t *value;
231        err=svn_subst_detranslate_string(&value,
232                                         static_cast<const svn_string_t*>(val),
233                                         false, subpool);
234        if (err)
235          cleanup(err, subpool,
236                  path +
237                  " property: svn_subst_detranslate_string failed on key " +
238                  static_cast<const char*>(key));
239        property[static_cast<const char*>(key)]=value->data;
240      }
241    }
242    svn_pool_destroy(subpool);
243  }
244
245
246  SVN* SVN::instance(void)
247  {
248    if (!instance_)
249      throw SVNException("SVN::instance(void): SVN singleton not initialized");
250    return instance_;
251  }
252
253
254  SVN* SVN::instance(const std::string& url)
255  {
256    if (!instance_) {
257      instance_=new SVN(url);
258    }
259    return instance_;
260  }
261
262
263  svn_error_t* SVN::root_url_receiver(void *baton, const char *,
264                                      const svn_info_t *info, apr_pool_t*)
265  {
266    if (!info)
267      throw SVNException(std::string("SVN::url_receriver: ") +
268                         "Failed to acquire an svn info object");
269
270    root_url_receiver_baton* rurb=
271      static_cast<struct root_url_receiver_baton*>(baton);
272    if (info->repos_root_URL)
273      rurb->path=info->repos_root_URL;
274
275    return SVN_NO_ERROR;
276  }
277
278
279  SVN::vc_status SVN::version_controlled(const std::string& path)
280  {
281    svn_wc_status2_t* status=NULL;
282    apr_pool_t *subpool = svn_pool_create(pool_);
283    if (svn_error_t *err=
284        svn_wc_status2(&status,svn_path_internal_style(path.c_str(), subpool),
285                       adm_access_, subpool))
286      // cleanup will throw an exception
287      cleanup(err, subpool,"version_controlled(): svn_config_get_config failed");
288    svn_pool_destroy(subpool);
289
290    if ((status->text_status==svn_wc_status_none) ||
291        (status->text_status==svn_wc_status_unversioned))
292      return unversioned;
293    else if (status->text_status==svn_wc_status_normal)
294      return uptodate;
295
296    return unresolved;
297  }
298
299}} // end of namespace svndigest and namespace theplu
Note: See TracBrowser for help on using the repository browser.