/usr/include/svncpp/client.hpp is in libsvncpp-dev 0.12.1dfsg-2ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 | /*
* ====================================================================
* Copyright (c) 2002-2009 The RapidSvn Group. All rights reserved.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program (in the file GPL.txt.
* If not, see <http://www.gnu.org/licenses/>.
*
* 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/.
* ====================================================================
*/
#ifndef _SVNCPP_CLIENT_H_
#define _SVNCPP_CLIENT_H_
// Ignore MSVC 6 compiler warning
#if defined (_MSC_VER) && _MSC_VER <= 1200
// debug symbol truncated
#pragma warning (disable: 4786)
// C++ exception specification
#pragma warning (disable: 4290)
#endif
// Ignore MSVC 7,8,9 compiler warnings
#if defined (_MSC_VER) && _MSC_VER > 1200 && _MSC_VER <= 1500
// C++ exception specification
#pragma warning (disable: 4290)
#endif
// stl
#include "svncpp/vector_wrapper.hpp"
#include "svncpp/utility_wrapper.hpp"
#include "svncpp/map_wrapper.hpp"
// svncpp
#include "svncpp/context.hpp"
#include "svncpp/exception.hpp"
#include "svncpp/path.hpp"
#include "svncpp/entry.hpp"
#include "svncpp/revision.hpp"
#include "svncpp/log_entry.hpp"
#include "svncpp/annotate_line.hpp"
namespace svn
{
// forward declarations
class Context;
class DirEntry;
class Info;
class Status;
class Targets;
typedef std::vector<AnnotateLine> AnnotatedFile;
typedef std::vector<DirEntry> DirEntries;
typedef std::vector<Info> InfoVector;
typedef std::vector<LogEntry> LogEntries;
typedef std::vector<Status> StatusEntries;
// map of property names to values
typedef std::map<std::string,std::string> PropertiesMap;
// pair of path, PropertiesMap
typedef std::pair<std::string, PropertiesMap> PathPropertiesMapEntry;
// vector of path, Properties pairs
typedef std::vector<PathPropertiesMapEntry> PathPropertiesMapList;
/**
* These flags can be passed to the status function to filter
* the files
*
* @see status
*/
struct StatusFilter
{
public:
bool showUnversioned;
bool showUnmodified;
bool showModified; ///< this includes @a showConflicted as well
bool showConflicted;
bool showIgnored;
bool showExternals;
StatusFilter()
: showUnversioned(false), showUnmodified(false),
showModified(false), showConflicted(false),
showExternals(false)
{
}
};
/**
* Subversion client API.
*/
class Client
{
public:
/**
* Initializes the primary memory pool.
*/
Client(Context * context = 0);
virtual ~Client();
/**
* @return returns the Client context
*/
const Context *
getContext() const;
/**
* @return returns the Client context
*/
Context *
getContext();
/**
* sets the client context
* you have to make sure the old context
* is de-allocated
*
* @param context new context to use
*/
void
setContext(Context * context = NULL);
/**
* Enumerates all files/dirs at a given path.
*
* Throws an exception if an error occurs
*
* @param path Path to explore.
* @param descend Recurse into subdirectories if existant.
* @param get_all Return all entries, not just the interesting ones.
* @param update Query the repository for updates.
* @param no_ignore Disregard default and svn:ignore property ignores.
* @param ignore_externals Disregard external files.
* @return vector with Status entries.
*/
StatusEntries
status(const char * path,
const bool descend = false,
const bool get_all = true,
const bool update = false,
const bool no_ignore = false,
const bool ignore_externals = false) throw(ClientException);
/**
* Enumerates all files/dirs matchin the parameter @a filter
* at @a path and returns them in the vector @a statusEntries
*
* Throws an exception if an error occurs
*
* @since New in 0.9.7
*
* @param path Path to explore.
* @param filter use a combination of the @a SHOW_* values to filter the
* output
* @param descend Recurse into subdirectories if existant.
* @param update Query the repository for updates.
* @param entries vector with Status entries
*
* @return current revnum
*/
svn_revnum_t
status(const char * path,
const StatusFilter & filter,
const bool descend,
const bool update,
StatusEntries & entries) throw(ClientException);
/**
* Executes a revision checkout.
* @param moduleName name of the module to checkout.
* @param destPath destination directory for checkout.
* @param revision the revision number to checkout. If the number is -1
* then it will checkout the latest revision.
* @param recurse whether you want it to checkout files recursively.
* @param ignore_externals whether you want get external resources too.
* @param peg_revision peg revision to checkout, by default current.
* @exception ClientException
*/
svn_revnum_t
checkout(const char * moduleName,
const Path & destPath,
const Revision & revision,
bool recurse,
bool ignore_externals = false,
const Revision & peg_revision = Revision::UNSPECIFIED) throw(ClientException);
/**
* relocate wc @a from to @a to
* @exception ClientException
*/
void
relocate(const Path & path, const char *from_url,
const char *to_url, bool recurse) throw(ClientException);
/**
* Sets a single file for deletion.
* @exception ClientException
*/
void
remove(const Path & path, bool force) throw(ClientException);
/**
* Sets files for deletion.
*
* @param targets targets to delete
* @param force force if files are locally modified
* @exception ClientException
*/
void
remove(const Targets & targets,
bool force) throw(ClientException);
/**
* Sets files to lock.
*
* @param targets targets to lock
* @param force force setting/stealing lock
* @param comment writing comment about lock setting is neccessary
* @exception ClientException
*/
void
lock(const Targets & targets, bool force,
const char * comment) throw(ClientException);
/**
* Sets files to unlock.
*
* @param targets targets to unlock
* @param force force unlock even if lock belongs to another user
* @exception ClientException
*/
void
unlock(const Targets & targets, bool force) throw(ClientException);
/**
* Reverts a couple of files to a pristiner state.
* @exception ClientException
*/
void
revert(const Targets & targets, bool recurse) throw(ClientException);
/**
* Adds a file to the repository.
* @exception ClientException
*/
void
add(const Path & path, bool recurse) throw(ClientException);
/**
* Updates the file or directory.
* @param targets target files.
* @param revision the revision number to checkout.
* Revision::HEAD will checkout the
* latest revision.
* @param recurse recursively update.
* @param ignore_externals don't affect external destinations.
* @exception ClientException
*
* @return a vector with resulting revisions
*/
std::vector<svn_revnum_t>
update(const Targets & targets,
const Revision & revision,
bool recurse,
bool ignore_externals) throw(ClientException);
svn_revnum_t
update(const Path & path,
const Revision & revision,
bool recurse,
bool ignore_externals) throw(ClientException);
/**
* Retrieves the contents for a specific @a revision of
* a @a path
*
* @param path path of file or directory
* @param revision revision to retrieve
* @param peg_revision peg revision to retrieve,
* by default is the latest one
* @return contents of the file
*/
std::string
cat(const Path & path,
const Revision & revision,
const Revision & peg_revision = Revision::UNSPECIFIED) throw(ClientException);
/**
* Retrieves the contents for a specific @a revision of
* a @a path and saves it to the destination file @a dstPath.
*
* If @a dstPath is empty (""), then this path will be
* constructed from the temporary directory on this system
* and the filename in @a path. @a dstPath will still have
* the file extension from @a path and uniqueness of the
* temporary filename will be ensured.
*
* @param dstPath Filename in which the contents
* of the file file will be safed.
* @param path path or url
* @param revision
* @param peg_revision peg revision to retrieve, by default is the latest one
*/
void
get(Path & dstPath,
const Path & path,
const Revision & revision,
const Revision & peg_revision = Revision::UNSPECIFIED) throw(ClientException);
/**
* Retrieves the contents for a specific @a revision of
* a @a path
*
* @param path path of file or directory
* @param revisionStart revision to retrieve
* @param revisionEnd revision to retrieve
* @return contents of the file
*/
AnnotatedFile *
annotate(const Path & path,
const Revision & revisionStart,
const Revision & revisionEnd) throw(ClientException);
/**
* Commits changes to the repository. This usually requires
* authentication, see Auth.
* @return Returns a long representing the revision. It returns a
* -1 if the revision number is invalid.
* @param targets files to commit.
* @param message log message.
* @param recurse whether the operation should be done recursively.
* @param keep_locks whether to preserve locks or to release them after commit
* @exception ClientException
*/
svn_revnum_t
commit(const Targets & targets,
const char * message,
bool recurse,
bool keep_locks = false) throw(ClientException);
/**
* Copies a versioned file with the history preserved.
* @exception ClientException
*/
void
copy(const Path & srcPath,
const Revision & srcRevision,
const Path & destPath) throw(ClientException);
/**
* Moves or renames a file.
* @exception ClientException
*/
void
move(const Path & srcPath,
const Revision & srcRevision,
const Path & destPath,
bool force) throw(ClientException);
/**
* Creates a directory directly in a repository or creates a
* directory on disk and schedules it for addition. If <i>path</i>
* is a URL then authentication is usually required, see Auth.
*
* @param path
* @exception ClientException
*/
void
mkdir(const Path & path) throw(ClientException);
void
mkdir(const Targets & targets) throw(ClientException);
/**
* Recursively cleans up a local directory, finishing any
* incomplete operations, removing lockfiles, etc.
* @param path a local directory.
* @exception ClientException
*/
void
cleanup(const Path & path) throw(ClientException);
/**
* Removes the 'conflicted' state on a file.
* @exception ClientException
*/
void
resolved(const Path & path, bool recurse) throw(ClientException);
/**
* Export into file or directory TO_PATH from local or remote FROM_PATH
* @param from_path path to import
* @param to_path where to import
* @param revision revision of files in source repository or working copy
* @param peg_revision
* @param overwrite overwrite existing files in to_path
* @param ignore_externals whether to ignore external sources in from_path
* @param recurse
* @param native_eol which EOL to use when exporting, usually different for
* different OSs
* @exception ClientException
*/
void
doExport(const Path & from_path,
const Path & to_path,
const Revision & revision,
bool overwrite = false,
const Revision & peg_revision = Revision::UNSPECIFIED,
bool ignore_externals = false,
bool recurse = true,
const char * native_eol = NULL) throw(ClientException);
/**
* Update local copy to mirror a new url. This excapsulates the
* svn_client_switch() client method.
* @exception ClientException
*/
svn_revnum_t
doSwitch(const Path & path, const char * url,
const Revision & revision,
bool recurse) throw(ClientException);
/**
* Import file or directory PATH into repository directory URL at
* head. This usually requires authentication, see Auth.
* @param path path to import
* @param url
* @param message log message.
* @param recurse
* @exception ClientException
*/
void
import(const Path & path,
const char * url,
const char * message,
bool recurse) throw(ClientException);
void
import(const Path & path,
const Path & url,
const char * message,
bool recurse) throw(ClientException);
/**
* Merge changes from two paths into a new local path.
* @exception ClientException
*/
void
merge(const Path & path1, const Revision & revision1,
const Path & path2, const Revision & revision2,
const Path & localPath, bool force,
bool recurse,
bool notice_ancestry = false,
bool dry_run = false) throw(ClientException);
/**
* retrieve information about the given path
* or URL
*
* @see Client::status
* @see Info
*
* @param pathOrUrl
* @param pegRevision
* @param revision
* @param recurse
*/
InfoVector
info(const Path & pathOrUrl,
bool recurse=false,
const Revision & revision = Revision::UNSPECIFIED,
const Revision & pegRevision = Revision::UNSPECIFIED) throw(ClientException);
/**
* Retrieve log information for the given path
* Loads the log messages result set. The first
* entry is the youngest revision.
*
* You can use the constants Revision::START and
* Revision::HEAD
*
* @param path
* @param revisionStart
* @param revisionEnd
* @param discoverChangedPaths
* @param strictNodeHistory
* @return a vector with log entries
*/
const LogEntries *
log(const char * path,
const Revision & revisionStart,
const Revision & revisionEnd,
bool discoverChangedPaths = false,
bool strictNodeHistory = true) throw(ClientException);
/**
* Produce diff output which describes the delta between
* @a path/@a revision1 and @a path/@a revision2. @a path
* can be either a working-copy path or a URL.
*
* A ClientException will be thrown if either @a revision1 or
* @a revision2 has an `unspecified' or unrecognized `kind'.
*
* @param tmpPath prefix for a temporary directory needed by diff.
* Filenames will have ".tmp" and similar added to this prefix in
* order to ensure uniqueness.
* @param path path of the file.
* @param revision1 one of the revisions to check.
* @param revision2 the other revision.
* @param recurse whether the operation should be done recursively.
* @param ignoreAncestry whether the files will be checked for
* relatedness.
* @param noDiffDeleted if true, no diff output will be generated
* on deleted files.
* @return delta between the files
* @exception ClientException
*/
std::string
diff(const Path & tmpPath, const Path & path,
const Revision & revision1, const Revision & revision2,
const bool recurse, const bool ignoreAncestry,
const bool noDiffDeleted) throw(ClientException);
/**
* Produce diff output which describes the delta between
* @a path1/@a revision1 and @a path2/@a revision2. @a path1,
* @a path2 can be either a working-copy path or a URL.
*
* A ClientException will be thrown if either @a revision1 or
* @a revision2 has an `unspecified' or unrecognized `kind'.
*
* @param tmpPath prefix for a temporary directory needed by diff.
* Filenames will have ".tmp" and similar added to this prefix in
* order to ensure uniqueness.
* @param path1 path of the first file corresponding to @a revision1.
* @param path2 path of the first file corresponding to @a revision2.
* @param revision1 one of the revisions to check.
* @param revision2 the other revision.
* @param recurse whether the operation should be done recursively.
* @param ignoreAncestry whether the files will be checked for
* relatedness.
* @param noDiffDeleted if true, no diff output will be generated
* on deleted files.
* @return delta between the files
* @exception ClientException
*/
std::string
diff(const Path & tmpPath, const Path & path1, const Path & path2,
const Revision & revision1, const Revision & revision2,
const bool recurse, const bool ignoreAncestry,
const bool noDiffDeleted) throw(ClientException);
/**
* Produce diff output which describes the delta of
* @a path/@a pegRevision between @a revision1 and @a revision2.
* @a path can be either a working-copy path or a URL.
*
* A ClientException will be thrown if either @a revision1 or
* @a revision2 has an `unspecified' or unrecognized `kind'.
*
* @param tmpPath prefix for a temporary directory needed by diff.
* Filenames will have ".tmp" and similar added to this prefix in
* order to ensure uniqueness.
* @param path path of the file.
* @param pegRevision the peg revision to identify the path.
* @param revision1 one of the revisions to check.
* @param revision2 the other revision.
* @param recurse whether the operation should be done recursively.
* @param ignoreAncestry whether the files will be checked for
* relatedness.
* @param noDiffDeleted if true, no diff output will be generated
* on deleted files.
* @return delta between the files
* @exception ClientException
*/
std::string
diff(const Path & tmpPath, const Path & path,
const Revision & pegRevision, const Revision & revision1,
const Revision & revision2, const bool recurse,
const bool ignoreAncestry, const bool noDiffDeleted)
throw(ClientException);
/**
* lists entries in @a pathOrUrl no matter whether local or
* repository
*
* @param pathOrUrl
* @param revision
* @param recurse
* @return a vector of directory entries, each with
* a relative path (only filename)
*/
DirEntries
list(const char * pathOrUrl,
svn_opt_revision_t * revision,
bool recurse) throw(ClientException);
/**
* lists properties in @a path no matter whether local or
* repository
*
* @param path
* @param revision
* @param recurse
* @return PropertiesList
*/
PathPropertiesMapList
proplist(const Path &path,
const Revision &revision,
bool recurse = false);
/**
* lists one property in @a path no matter whether local or
* repository
*
* @param propName
* @param path
* @param revision
* @param recurse
* @return PathPropertiesMapList
*/
PathPropertiesMapList
propget(const char * propName,
const Path & path,
const Revision & revision,
bool recurse = false);
/**
* This method is deprecated, please use
* @a Property.set
* set property in @a path no matter whether local or
* repository
*
* @deprecated
*
* @param path
* @param revision
* @param propName
* @param propValue
* @param recurse
* @param skip_checks
* @return PropertiesList
*/
void
propset(const char * propName,
const char * propValue,
const Path & path,
const Revision & revision,
bool recurse = false,
bool skip_checks = true);
/**
* delete property in @a path no matter whether local or
* repository
*
* @param propName
* @param path
* @param revision
* @param recurse
*/
void
propdel(const char * propName,
const Path & path,
const Revision & revision,
bool recurse = false);
/**
* lists revision properties in @a path no matter whether local or
* repository
*
* @param path
* @param revision
* @return PropertiesList
*/
std::pair<svn_revnum_t,PropertiesMap>
revproplist(const Path & path,
const Revision & revision);
/**
* lists one revision property in @a path no matter whether local or
* repository
*
* @param propName
* @param path
* @param revision
* @return PropertiesList
*/
std::pair<svn_revnum_t,std::string>
revpropget(const char * propName,
const Path & path,
const Revision & revision);
/**
* set revision property in @a path no matter whether local or
* repository
*
* @param propName
* @param propValue
* @param path
* @param revision
* @param force
* @return Revision
*/
svn_revnum_t
revpropset(const char * propName,
const char * propValue,
const Path & path,
const Revision & revision,
bool force = false);
/**
* delete revision property in @a path no matter whether local or
* repository
*
* @param propName
* @param path
* @param revision
* @param force
* @return Revision
*/
svn_revnum_t
revpropdel(const char * propName,
const Path & path,
const Revision & revision,
bool force = false);
/**
* Add a single file into ignore list.
*
* @param path path to the file
* @exception ClientException
* @see svn:ignore property description
*/
void
ignore(const Path & path) throw(ClientException);
/**
* Add files into ignore list.
*
* @param targets targets to treat as ignored
* @exception ClientException
* @see svn:ignore property description
*/
void
ignore(const Targets & targets) throw(ClientException);
private:
Context * m_context;
/**
* disallow assignment operator
*/
Client & operator= (const Client &);
/**
* disallow copy constructor
*/
Client(const Client &);
};
}
#endif
/* -----------------------------------------------------------------
* local variables:
* eval: (load-file "../../rapidsvn-dev.el")
* end:
*/
|