Menu

[r28]: / trunk / client_modify.cpp  Maximize  Restore  History

Download this file

578 lines (491 with data), 16.1 kB

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
/*
* ====================================================================
* Copyright (c) 2002-2005 The RapidSvn Group. All rights reserved.
*
* This software is licensed as described in the file LICENSE.txt,
* which you should have received as part of this distribution.
*
* This software consists of voluntary contributions made by many
* individuals. For exact contribution history, see the revision
* history and logs, available at http://rapidsvn.tigris.org/.
* ====================================================================
*/
#if defined( _MSC_VER) && _MSC_VER <= 1200
#pragma warning( disable: 4786 )// debug symbol truncated
#endif
// stl
#include <string>
// subversion api
#include "svn_client.h"
// subcpp
#include "client.hpp"
#include "exception.hpp"
#include "pool.hpp"
#include "targets.hpp"
namespace svn
{
svn_revnum_t Client::Checkout( const Path & url,
const Path & destPath,
const Revision & pegRevision,
const Revision & revision,
svn_depth_t depth,
bool ignoreExternals,
bool allowUnversionedObstructions )
{
Pool subPool;
apr_pool_t * apr_pool = subPool.pool();
svn_revnum_t revnum = 0;
svn_error_t * error =
svn_client_checkout3( &revnum,
url.c_str(), destPath.c_str(),
pegRevision.revision(),
revision.revision(),
depth,
ignoreExternals,
allowUnversionedObstructions,
*m_context,
apr_pool );
if( error != NULL )
throw ClientException( error );
return revnum;
}
void Client::Delete( const Path & path,
const std::string& message,
bool force,
bool keep_local )
{
Targets targets( path.c_str() );
Delete( targets, message, force, keep_local );
}
void Client::Delete( const Targets & targets,
const std::string& message,
bool force,
bool keep_local )
{
Pool pool;
svn_commit_info_t *commit_info = NULL;
m_context->SetLogMessage( message );
svn_error_t * error = svn_client_delete3( &commit_info,
const_cast<apr_array_header_t*>( targets.array( pool ) ),
force,
keep_local,
NULL, /* TODO: Support revprops */
*m_context,
pool );
m_context->ClearLogMessage();
if( error != NULL )
{
throw ClientException( error );
}
}
void Client::Revert( const Targets & targets,
svn_depth_t depth /*= svn_depth_unknown*/ )
{
Pool pool;
svn_error_t * error =
svn_client_revert2( ( targets.array( pool ) ),
depth,
NULL, // TODO: Support changelists
*m_context,
pool );
if( error != NULL )
throw ClientException( error );
}
void Client::Add( const Path & path,
svn_depth_t depth /*= svn_depth_unknown*/,
bool force /*= false*/,
bool no_ignore /*= false*/,
bool add_parents /*= false*/ )
{
Pool pool;
svn_error_t * error =
svn_client_add4( path.c_str(),
depth,
force,
no_ignore,
add_parents,
*m_context,
pool );
if( error != NULL )
throw ClientException( error );
}
std::vector< svn_revnum_t > Client::Update( const Targets & paths,
const Revision & revision,
svn_depth_t depth,
bool depthIsSticky,
bool ignoreExternals,
bool allowUnverObstructions )
{
Pool pool;
apr_array_header_t* revResults;
svn_error_t * error = svn_client_update3( &revResults,
paths.array( pool ),
revision.revision(),
depth,
depthIsSticky,
ignoreExternals,
allowUnverObstructions,
*m_context,
pool );
if( error != NULL )
{
throw ClientException( error );
}
// Convert apr array to vector
std::vector< svn_revnum_t > revs;
revs.reserve( revResults->nelts );
for( int i = 0; i < revResults->nelts; i++ )
{
svn_revnum_t* revNum = &APR_ARRAY_IDX( revResults, i, svn_revnum_t );
revs.push_back( *revNum );
}
return revs;
}
svn_revnum_t Client::Commit( const Targets & targets,
const std::string& message,
svn_depth_t depth,
bool keepLocks,
bool keepChangelists )
{
Pool pool;
m_context->SetLogMessage( message );
svn_commit_info_t *commit_info = NULL;
svn_error_t * error = svn_client_commit4( &commit_info,
targets.array( pool ),
depth,
keepLocks,
keepChangelists,
NULL, /* TODO: Support changelists */
NULL, /* TODO: Support revprops */
*m_context,
pool );
m_context->ClearLogMessage();
if( error != NULL )
throw ClientException( error );
if( commit_info )
return commit_info->revision;
return SVN_INVALID_REVNUM;
}
void Client::Copy( const Path & srcPath,
const Revision & srcRevision,
const Path & destPath )
{
Pool pool;
svn_client_commit_info_t *commit_info = NULL;
svn_error_t * error =
svn_client_copy( &commit_info,
srcPath.c_str(),
srcRevision.revision(),
destPath.c_str(),
*m_context,
pool );
if( error != NULL )
throw ClientException( error );
}
void Client::Move( const Path & srcPath,
const Revision & srcRevision,
const Path & destPath,
bool force )
{
Pool pool;
svn_client_commit_info_t *commit_info = NULL;
svn_error_t * error =
svn_client_move( &commit_info,
srcPath.c_str(),
srcRevision.revision(),
destPath.c_str(),
force,
*m_context,
pool );
if( error != NULL )
throw ClientException( error );
}
void Client::MkDir( const Path & path,
const std::string& message /*= std::string()*/,
bool make_parents /*= false*/ )
{
Targets targets( path.c_str() );
MkDir( targets, message, make_parents );
}
void Client::MkDir( const Targets & targets,
const std::string& message /*= std::string()*/,
bool make_parents /*= false*/ )
{
Pool pool;
m_context->SetLogMessage( message );
svn_commit_info_t *commit_info = NULL;
svn_error_t * error =
svn_client_mkdir3( &commit_info,
const_cast<apr_array_header_t*>( targets.array( pool ) ),
make_parents,
NULL, /* TODO: Support revprops */
*m_context,
pool );
m_context->ClearLogMessage();
if( error != NULL )
{
throw ClientException( error );
}
}
void Client::Cleanup( const Path & path )
{
Pool subPool;
apr_pool_t * apr_pool = subPool.pool();
svn_error_t * error =
svn_client_cleanup( path.c_str(), *m_context, apr_pool );
if( error != NULL )
throw ClientException( error );
}
void Client::Resolved( const Path & path,
bool recurse )
{
Pool pool;
svn_error_t * error =
svn_client_resolved( path.c_str(),
recurse,
*m_context,
pool );
if( error != NULL )
throw ClientException( error );
}
svn_revnum_t Client::Export( const Path & srcPath,
const Path & destPath,
const Revision & peg,
const Revision & revision,
bool overwrite,
bool ignore_externals,
/*bool ignore_keywords,*/
svn_depth_t depth,
const std::string& native_eol )
{
Pool pool;
svn_revnum_t revnum = 0;
svn_error_t * error = svn_client_export4( &revnum,
srcPath.c_str(),
destPath.c_str(),
const_cast< svn_opt_revision_t* >( peg.revision() ),
const_cast< svn_opt_revision_t* >( revision.revision() ),
overwrite,
ignore_externals,
/*ignore_keywords,*/
depth,
native_eol.empty() ? NULL : native_eol.c_str(),
*m_context,
pool );
if( error != NULL )
{
throw ClientException( error );
}
return revnum;
}
svn_revnum_t Client::Switch( const Path & path,
const char * url,
const Revision & revision,
bool recurse )
{
Pool pool;
svn_revnum_t revnum = 0;
svn_error_t * error =
svn_client_switch( &revnum,
path.c_str(),
url,
revision.revision(),
recurse,
*m_context,
pool );
if( error != NULL )
throw ClientException( error );
return revnum;
}
void Client::Import( const Path & path,
const std::string& url,
const std::string& message,
svn_depth_t depth,
bool no_ignore,
bool ignore_unknown_node_types )
{
Pool pool;
svn_commit_info_t *commit_info = NULL;
m_context->SetLogMessage( message );
svn_error_t * error =
svn_client_import3( &commit_info,
path.c_str(),
url.c_str(),
depth,
no_ignore,
ignore_unknown_node_types,
NULL, /* TODO: Support revprops */
*m_context,
pool );
m_context->ClearLogMessage();
if( error != NULL )
{
throw ClientException( error );
}
}
void Client::Merge( const Path & path1, const Revision & revision1,
const Path & path2, const Revision & revision2,
const Path & localPath, bool force,
bool recurse,
bool notice_ancestry,
bool dry_run )
{
Pool pool;
svn_error_t * error =
svn_client_merge( path1.c_str(),
revision1.revision(),
path2.c_str(),
revision2.revision(),
localPath.c_str(),
recurse,
!notice_ancestry,
force,
dry_run,
*m_context,
pool );
if( error != NULL )
throw ClientException( error );
}
void Client::Relocate( const Path & path,
const char * from_url,
const char * to_url,
bool recurse )
{
Pool pool;
svn_error_t * error =
svn_client_relocate( path.c_str(),
from_url,
to_url,
recurse,
*m_context,
pool );
if( error != NULL )
throw ClientException( error );
}
// A place to collect errors during the lock operation
struct LockNotifyBaton
{
svn_wc_notify_func2_t m_originalNotifyFunction;
void* m_originalNotifyBaton;
NotifyException m_notifyEx;
};
// The notification function used for Lock, collects errors and forwards notifications to the original notification functions
void LockNotifier( void* baton, const svn_wc_notify_t* notify, apr_pool_t* pool )
{
LockNotifyBaton* lockNotifyBaton = static_cast< LockNotifyBaton* >( baton );
if( lockNotifyBaton->m_originalNotifyFunction )
{
(*lockNotifyBaton->m_originalNotifyFunction)( lockNotifyBaton->m_originalNotifyBaton, notify, pool );
}
if ( (svn_wc_notify_failed_lock == notify->action) || (svn_wc_notify_failed_unlock == notify->action) )
{
lockNotifyBaton->m_notifyEx.AddNotification( notify );
}
}
void Client::UpgradeWorkingCopy( const Path & workingCopyPath )
{
Pool pool;
// run the upgrade function
svn_error_t* error = svn_client_upgrade
(
workingCopyPath.c_str(),
*m_context,
pool
);
// check the function's return
if( error != NULL )
{
throw ClientException( error );
}
}
int Client::GetWorkingCopyFormatVersion( const Path& workingCopyPath )
{
Pool pool;
int format = 0;
svn_error_t* error = NULL;
svn_wc_context_t* wcContext = NULL;
error = svn_wc_context_create( &wcContext, NULL, pool, pool );
if( error != NULL )
{
throw ClientException( error );
}
error = svn_wc_check_wc2
(
&format,
wcContext,
workingCopyPath.c_str(),
pool
);
svn_wc_context_destroy( wcContext );
if( error != NULL )
{
throw ClientException( error );
}
return format;
}
void Client::Lock( const Targets & targets,
const std::string& msg /*= std::string()*/,
bool steal_lock /*= false*/ )
{
Pool pool;
// Container to collect errors
LockNotifyBaton lockNotifyBaton;
// save the original notification function
lockNotifyBaton.m_originalNotifyFunction = m_context->ctx()->notify_func2;
lockNotifyBaton.m_originalNotifyBaton = m_context->ctx()->notify_baton2;
// setup the lock notification function
m_context->ctx()->notify_baton2 = &lockNotifyBaton;
m_context->ctx()->notify_func2 = &LockNotifier;
// run the lock function
svn_error_t* error = svn_client_lock
(
const_cast< apr_array_header_t* >( targets.array( pool ) ),
msg.c_str(),
steal_lock,
*m_context,
pool
);
// restore the original notification function
m_context->ctx()->notify_baton2 = lockNotifyBaton.m_originalNotifyBaton;
m_context->ctx()->notify_func2 = lockNotifyBaton.m_originalNotifyFunction;
// check the function's return
if( error != NULL )
{
throw ClientException( error );
}
// check for failed locks
if ( !lockNotifyBaton.m_notifyEx.m_notifications.empty() )
{
throw lockNotifyBaton.m_notifyEx;
}
}
void Client::Unlock( const Targets & targets, bool break_lock /*= false*/ )
{
Pool pool;
// Container to collect errors
LockNotifyBaton lockNotifyBaton;
// save the original notification function
lockNotifyBaton.m_originalNotifyFunction = m_context->ctx()->notify_func2;
lockNotifyBaton.m_originalNotifyBaton = m_context->ctx()->notify_baton2;
// setup the lock notification function
m_context->ctx()->notify_baton2 = &lockNotifyBaton;
m_context->ctx()->notify_func2 = &LockNotifier;
// run the unlock function
svn_error_t * error = svn_client_unlock( const_cast< apr_array_header_t* >( targets.array( pool ) ),
break_lock,
*m_context,
pool );
// restore the original notification function
m_context->ctx()->notify_baton2 = lockNotifyBaton.m_originalNotifyBaton;
m_context->ctx()->notify_func2 = lockNotifyBaton.m_originalNotifyFunction;
if( error != NULL )
{
throw ClientException( error );
}
// check for failed locks
if ( !lockNotifyBaton.m_notifyEx.m_notifications.empty() )
{
throw lockNotifyBaton.m_notifyEx;
}
}
}
MongoDB Logo MongoDB