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 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817
|
package SVK::XD;
use strict;
use SVK::Version; our $VERSION = $SVK::VERSION;
require SVN::Core;
require SVN::Repos;
require SVN::Fs;
use SVK::I18N;
use SVK::Util qw( get_anchor abs_path abs_path_noexist abs2rel splitdir catdir splitpath $SEP
HAS_SYMLINK is_symlink is_executable mimetype mimetype_is_text
md5_fh get_prompt traverse_history make_path dirname
from_native to_native get_encoder get_depot_anchor );
use Data::Hierarchy;
use autouse 'File::Find' => qw(find);
use autouse 'File::Path' => qw(rmtree);
use autouse 'YAML' => qw(LoadFile DumpFile);
use autouse 'Regexp::Shellish' => qw( compile_shellish ) ;
use PerlIO::eol 0.10 qw( NATIVE LF );
use PerlIO::via::dynamic;
use PerlIO::via::symlink;
use Class::Autouse qw( SVK::Editor::XD SVK::Editor::Delay );
=head1 NAME
SVK::XD - svk depot and checkout handling.
=head1 SYNOPSIS
use SVK::XD;
$xd = SVK::XD->new (depotmap => { '' => '/path/to/repos'});
=head1 TERMINOLOGY
=over
=item depot
A repository referred by a name. The default depot is '' (the empty string).
=item depotpath
A path referred by a depot name and the path inside the depot. For
example, F<//foo/bar> means F</foo/bar> in the default depot '', and
F</test/foo/bar> means F</foo/bar> in the depot B<test>.
=item copath
Checkout path. A path in the file system that has a checked out
version of a certain depotpath.
=back
=head1 CONSTRUCTOR
Options to C<new>:
=over
=item depotmap
A hash reference for depot name and repository path mapping.
=item checkout
A L<Data::Hierarchy> object for checkout paths mapping.
=item giantlock
A filename for global locking.
=item statefile
Filename for serializing C<SVK::XD> object.
=item svkpath
Directory name of C<giantlock> and C<statefile>.
=back
=cut
sub new {
my $class = shift;
my $self = bless {}, $class;
%$self = @_;
if ($self->{svkpath}) {
mkdir($self->{svkpath})
or die loc("Cannot create svk-config-directory at '%1': %2\n",
$self->{svkpath}, $!)
unless -d $self->{svkpath};
$self->{signature} ||= SVK::XD::Signature->new (root => $self->cache_directory)
}
$self->{checkout} ||= Data::Hierarchy->new( sep => $SEP );
return $self;
}
=head1 METHODS
=head2 Serialization and locking
=over
=item load
Load the serialized C<SVK::XD> data from statefile. Initialize C<$self>
if there's nothing to load. The giant lock is acquired when calling
C<load>.
=cut
sub load {
my ($self) = @_;
my $info;
$self->giant_lock ();
if (-e $self->{statefile}) {
local $@;
$info = eval {LoadFile ($self->{statefile})};
if ($@) {
rename ($self->{statefile}, "$self->{statefile}.backup");
print loc ("Can't load statefile, old statefile saved as %1\n",
"$self->{statefile}.backup");
}
elsif ($info) {
$info->{checkout}{sep} = $SEP;
}
}
$info ||= { depotmap => {'' => catdir($self->{svkpath}, 'local') },
checkout => Data::Hierarchy->new( sep => $SEP ) };
$self->{$_} = $info->{$_} for keys %$info;
$self->{updated} = 0;
$self->create_depots('');
}
=item store
=cut
sub create_depots {
my $self = shift;
my $depotmap = $self->{depotmap};
for my $path (@{$depotmap}{sort (@_ ? @_ : keys %$depotmap)}) {
$path =~ s{[$SEP/]+$}{}go;
next if -d $path;
my $ans = get_prompt(
loc("Repository %1 does not exist, create? (y/n)", $path),
qr/^[yn]/i,
);
next if $ans =~ /^n/i;
make_path(dirname($path));
$ENV{SVNFSTYPE} ||= (($SVN::Core::VERSION =~ /^1\.0/) ? 'bdb' : 'fsfs');
SVN::Repos::create($path, undef, undef, undef,
{'fs-type' => $ENV{SVNFSTYPE},
'bdb-txn-nosync' => '1',
'bdb-log-autoremove' => '1'});
}
return;
}
=item store
Serialize C<$self> to the statefile. If giant lock is still ours,
overwrite the file directly. Otherwise load the file again and merge
the paths we locked into the new state file. After C<store> is called,
giant is unlocked.
=cut
sub _store_config {
my ($self, $hash) = @_;
local $SIG{INT} = sub { warn loc("Please hold on a moment. SVK is writing out a critical configuration file.\n")};
my $file = $self->{statefile};
my $tmpfile = $file."-$$";
my $oldfile = "$file~";
my $ancient_backup = $file.".bak.".$$;
DumpFile ($tmpfile,
{ map { $_ => $hash->{$_}} qw/checkout depotmap/ });
if (not -f $tmpfile ) {
die loc("Couldn't write your new configuration file to %1. Please try again.", $tmpfile);
}
if (-f $oldfile ) {
rename ( $oldfile => $ancient_backup ) ||
die loc("Couldn't remove your old backup configuration file %1 while writing the new one.", $oldfile);
}
if (-f $file ) {
rename ($file => $oldfile) ||
die loc("Couldn't remove your old configuration file %1 while writing the new one.", $file);
}
rename ($tmpfile => $file) ||
die loc("Couldn't write your new configuration file %1. A backup has been stored in %2. Please replace %1 with %2 immediately.", $file, $tmpfile);
if (-f $ancient_backup ) {
unlink ($ancient_backup) ||
die loc("Couldn't remove your old backup configuration file %1 while writing the new one.", $oldfile);
}
}
sub store {
my ($self) = @_;
$self->{updated} = 1;
return unless $self->{statefile};
local $@;
if ($self->{giantlocked}) {
$self->_store_config ($self);
}
elsif ($self->{modified}) {
$self->giant_lock ();
my $info = LoadFile ($self->{statefile});
my @paths = $info->{checkout}->find ('', {lock => $$});
$info->{checkout}->merge ($self->{checkout}, $_)
for @paths;
$self->_store_config($info);
}
$self->giant_unlock ();
}
=item lock
Lock the given checkout path, store the state with the lock info to
prevent other instances from modifying locked paths. The giant lock is
released afterward.
=cut
sub lock {
my ($self, $path) = @_;
if ($self->{checkout}->get ($path)->{lock}) {
die loc("%1 already locked, use 'svk cleanup' if lock is stalled\n", $path);
}
$self->{checkout}->store ($path, {lock => $$});
$self->{modified} = 1;
$self->_store_config($self) if $self->{statefile};
$self->giant_unlock ();
}
=item unlock
Unlock All the checkout paths that was locked by this instance.
=cut
sub unlock {
my ($self) = @_;
my @paths = $self->{checkout}->find ('', {lock => $$});
$self->{checkout}->store ($_, {lock => undef})
for @paths;
}
=item giant_lock
Lock the statefile globally. No other instances need to wait for the
lock before they can do anything.
=cut
sub giant_lock {
my ($self) = @_;
return unless $self->{giantlock};
LOCKED: {
for (1..5) {
-e $self->{giantlock} or last LOCKED;
sleep 1;
}
$self->{updated} = 1;
die loc("Another svk might be running; remove %1 if not.\n", $self->{giantlock});
}
open my ($lock), '>', $self->{giantlock}
or die loc("Cannot acquire giant lock %1:%2.\n", $self->{giantlock}, $!);
print $lock $$;
close $lock;
$self->{giantlocked} = 1;
}
=item giant_unlock
Release the giant lock.
=back
=cut
sub giant_unlock {
my ($self) = @_;
return unless $self->{giantlock};
unlink ($self->{giantlock});
delete $self->{giantlocked};
}
=head2 Depot and path translation
=over
=cut
my %REPOS;
my $REPOSPOOL = SVN::Pool->new;
sub _open_repos {
my ($repospath) = @_;
$REPOS{$repospath} ||= SVN::Repos::open ($repospath, $REPOSPOOL);
}
sub _reset_repos {
%REPOS = ();
$REPOSPOOL = SVN::Pool->new;
}
=item find_repos
Given depotpath and an option about if the repository should be
opened. Returns an array of repository path, the path inside
repository, and the C<SVN::Repos> object if caller wants the
repository to be opened.
=cut
sub find_repos {
my ($self, $depotpath, $open) = @_;
die loc("no depot spec") unless $depotpath;
my ($depot, $path) = $depotpath =~ m|^/([^/]*)(/.*?)/?$|
or die loc("%1 is not a depot path.\n", $depotpath);
$path = File::Spec::Unix->canonpath($path);
my $repospath = $self->{depotmap}{$depot} or die loc("No such depot: %1.\n", $depot);
return ($repospath, $path, $open && _open_repos ($repospath));
}
=item find_repos_from_co
Given the checkout path and an option about if the repository should
be opened. Returns an array of repository path, the path inside
repository, the absolute checkout path, the checkout info, and the
C<SVN::Repos> object if caller wants the repository to be opened.
=cut
sub find_repos_from_co {
my ($self, $copath, $open) = @_;
my $report = $copath;
$copath = abs_path (File::Spec->canonpath ($copath));
die loc("path %1 is not a checkout path.\n", $report)
unless $copath;
my ($cinfo, $coroot) = $self->{checkout}->get ($copath);
die loc("path %1 is not a checkout path.\n", $copath) unless %$cinfo;
my ($repospath, $path, $repos) = $self->find_repos ($cinfo->{depotpath}, $open);
return ($repospath, abs2rel ($copath, $coroot => $path, '/'), $copath,
$cinfo, $repos);
}
=item find_repos_from_co_maybe
Like C<find_repos_from_co>, but falls back to see if the given path is
a depotpath. In that case, the checkout paths returned iwll be undef.
=cut
sub find_repos_from_co_maybe {
my ($self, $target, $open) = @_;
my ($repospath, $path, $copath, $cinfo, $repos);
if (($repospath, $path, $repos) = eval { $self->find_repos ($target, $open) }) {
return ($repospath, $path, undef, undef, $repos);
}
undef $@;
return $self->find_repos_from_co ($target, $open);
}
=item find_depotname
=cut
sub find_depotname {
my ($self, $target, $can_be_co) = @_;
my ($cinfo);
local $@;
if ($can_be_co) {
(undef, undef, $cinfo) = eval { $self->find_repos_from_co ($target, 0) };
$target = $cinfo->{depotpath} unless $@;
}
$self->find_repos ($target, 0);
return ($target =~ m|^/(.*?)/|);
}
=item condense
=back
=cut
sub condense {
my $self = shift;
for (@_) {
if ($_ =~ m/([\x00-\x19\x7f])/) { # XXX: why isn't \c[ working?
die loc("Invalid control character '%1' in path '%2'\n",
sprintf("0x%02X", ord($1)), $_);
}
}
my @targets = map {abs_path($_)} @_;
my ($anchor, $report);
for my $path (@_) {
my $copath = abs_path ($path);
die loc("path %1 is not a checkout path.\n", $path)
unless $copath;
if (!$anchor) {
$anchor = $copath;
$report = $_[0];
}
my ($cinfo, $schedule) = $self->get_entry($anchor);
while (!-d $anchor || $cinfo->{scheduleanchor} ||
$schedule eq 'add' || $schedule eq 'delete' || $schedule eq 'replace' ||
($anchor ne $copath && $anchor ne $SEP && $anchor.$SEP ne substr ($copath, 0, length($anchor)+1))) {
($anchor, $report) = get_anchor (0, $anchor, $report);
# XXX: put .. to report if it's anchorified beyond
($cinfo, $schedule) = $self->get_entry($anchor);
}
}
return ($report, $anchor, $#targets == 0 && $targets[0] eq $anchor ? ()
: map { abs2rel($_, $anchor) } @targets);
}
# simliar to command::arg_copath, but still return a target when
# basepath doesn't exist, arg_copath shuold be gradually deprecated
sub target_from_copath_maybe {
my ($self, $arg) = @_;
my $rev = $arg =~ s/\@(\d+)$// ? $1 : undef;
my ($repospath, $path, $depotpath, $copath, $repos);
unless (($repospath, $path, $repos) = eval { $self->find_repos ($arg, 1) }) {
$arg = File::Spec->canonpath($arg);
$copath = abs_path_noexist($arg);
my ($cinfo, $coroot) = $self->{checkout}->get ($copath);
die loc("path %1 is not a checkout path.\n", $copath) unless %$cinfo;
($repospath, $path, $repos) = $self->find_repos ($cinfo->{depotpath}, 1);
$path = abs2rel ($copath, $coroot => $path, '/');
($depotpath) = $cinfo->{depotpath} =~ m|^/(.*?)/|;
$depotpath = "/$depotpath$path";
}
from_native ($path, 'path', $self->{encoding});
undef $@;
return SVK::Target->new
( repos => $repos,
repospath => $repospath,
depotpath => $depotpath || $arg,
copath => $copath,
report => $arg,
path => $path,
revision => $rev,
);
}
sub xdroot {
SVK::XD::Root->new (create_xd_root (@_));
}
sub create_xd_root {
my ($self, %arg) = @_;
my ($fs, $copath) = ($arg{repos}->fs, $arg{copath});
my ($txn, $root);
my @paths = $self->{checkout}->find ($copath, {revision => qr'.*'});
# In the simple case - only one revision entry found, it can be
# for some descendents. If so we actually need to construct
# txnroot.
my ($simple, $revbase) = $self->{checkout}->get($paths[0] || $copath);
unshift @paths, $revbase unless $revbase eq $copath;
return (undef, $fs->revision_root($simple->{revision}))
if $#paths <= 0;
my $pool = SVN::Pool->new;
for (@paths) {
my $cinfo = $self->{checkout}->get ($_);
my $path = abs2rel($_, $copath => $arg{path}, '/');
unless ($root) {
my $base_rev = $cinfo->{revision};
$txn = $fs->begin_txn ($base_rev);
$root = $txn->root();
if ($base_rev == 0) {
# for interrupted checkout, the anchor will be at rev 0
my @path = ();
for my $dir (File::Spec::Unix->splitdir($path)) {
push @path, $dir;
next unless length $dir;
$root->make_dir(File::Spec::Unix->catdir(@path));
}
}
next;
}
my ($parent) = get_anchor(0, $path);
next if $cinfo->{revision} == $root->node_created_rev($parent, $pool);
$root->delete ($path, $pool)
if eval { $root->check_path ($path, $pool) != $SVN::Node::none };
SVN::Fs::revision_link ($fs->revision_root ($cinfo->{revision}, $pool),
$root, $path, $pool)
unless $cinfo->{'.deleted'};
$pool->clear;
}
return ($txn, $root);
}
=head2 Checkout handling
=over
=cut
sub xd_storage_cb {
my ($self, %arg) = @_;
# translate to abs path before any check
return
( cb_exist => sub { my ($copath, $pool) = @_;
my $path = $copath;
$arg{get_copath} ($copath);
lstat ($copath);
return $SVN::Node::none unless -e _;
$arg{get_path} ($path);
return (is_symlink || -f _) ? $SVN::Node::file : $SVN::Node::dir
if $self->{checkout}->get ($copath)->{'.schedule'} or
$arg{oldroot}->check_path ($path, $pool);
return $SVN::Node::unknown;
},
cb_rev => sub { $_ = shift; $arg{get_copath} ($_);
$self->{checkout}->get ($_)->{revision} },
cb_conflict => sub { $_ = shift; $arg{get_copath} ($_);
$self->{checkout}->store ($_, {'.conflict' => 1})
unless $arg{check_only};
},
cb_prop_merged => sub { return if $arg{check_only};
$_ = shift; $arg{get_copath} ($_);
my $name = shift;
my $entry = $self->{checkout}->get ($_);
my $prop = $entry->{'.newprop'};
delete $prop->{$name};
$self->{checkout}->store ($_, {'.newprop' => $prop,
keys %$prop ? () :
('.schedule' => undef)}
);
},
cb_localmod => sub { my ($path, $checksum) = @_;
my $copath = $path;
# XXX: make use of the signature here too
$arg{get_copath} ($copath);
$arg{get_path} ($path);
my $base = get_fh ($arg{oldroot}, '<',
$path, $copath);
my $md5 = md5_fh ($base);
return undef if $md5 eq $checksum;
seek $base, 0, 0;
return [$base, undef, $md5];
},
cb_localprop => sub { my ($path, $propname) = @_;
my $copath = $path;
$arg{get_copath} ($copath);
$arg{get_path} ($path);
return $self->get_props ($arg{oldroot}, $path, $copath)->{$propname};
},
cb_dirdelta => sub { my ($path, $base_root, $base_path, $pool) = @_;
my $copath = $path;
$arg{get_copath} ($copath);
$arg{get_path} ($path);
my $modified;
my $editor = SVK::Editor::Status->new
( notify => SVK::Notify->new
( cb_flush => sub {
my ($path, $status) = @_;
$modified->{$path} = $status->[0];
}));
$self->checkout_delta
( %arg,
# XXX: proper anchor handling
path => $path,
copath => $copath,
base_root => $base_root,
base_path => $base_path,
xdroot => $arg{oldroot},
nodelay => 1,
depth => 1,
editor => $editor,
absent_as_delete => 1,
cb_unknown => \&SVK::Editor::Status::unknown,
);
return $modified;
},
);
}
=item get_editor
Returns the L<SVK::XD::Editor> object. Apply target translation if
target is given in options. Also returns the callback hash used by
L<SVK::Editor::Merge> when called in array context.
=cut
sub get_editor {
my ($self, %arg) = @_;
my ($copath, $path, $spath) = @arg{qw/copath path store_path/};
$spath = $path unless defined $spath;
my $encoding = $self->{checkout}->get ($copath)->{encoding};
$path = '' if $path eq '/';
$spath = '' if $spath eq '/';
$encoding = Encode::find_encoding($encoding) if $encoding;
$arg{get_copath} = sub { to_native ($_[0], 'path', $encoding) if $encoding;
$_[0] = SVK::Target->copath ($copath, $_[0]) };
$arg{get_path} = sub { $_[0] = "$path/$_[0]" };
$arg{get_store_path} = sub { $_[0] = "$spath/$_[0]" };
my $storage = SVK::Editor::XD->new (%arg, xd => $self);
return wantarray ? ($storage, $self->xd_storage_cb (%arg)) : $storage;
}
=item auto_prop
Return a hash of properties that should attach to the file
automatically when added.
=cut
sub _load_svn_autoprop {
my $self = shift;
$self->{svnautoprop} = {};
local $@;
eval {
$self->{svnconfig}{config}->
enumerate ('auto-props',
sub { $self->{svnautoprop}{compile_shellish $_[0]} = $_[1]; 1} );
};
warn "Your svn is too old, auto-prop in svn config is not supported: $@\n" if $@;
}
sub auto_prop {
my ($self, $copath) = @_;
# no other prop for links
return {'svn:special' => '*'} if is_symlink($copath);
my $prop;
$prop->{'svn:executable'} = '*' if is_executable($copath);
# auto mime-type
open my $fh, '<', $copath or Carp::confess "$copath: $!";
if (my $type = mimetype($fh)) {
# add only binary mime types or text/* but not text/plain
$prop->{'svn:mime-type'} = $type
if $type ne 'text/plain' &&
($type =~ m/^text/ || !mimetype_is_text ($type));
}
# svn auto-prop
if ($self->{svnconfig} && $self->{svnconfig}{config}->get_bool ('miscellany', 'enable-auto-props', 0)) {
$self->_load_svn_autoprop unless $self->{svnautoprop};
my (undef, undef, $filename) = splitpath ($copath);
while (my ($pattern, $value) = each %{$self->{svnautoprop}}) {
next unless $filename =~ m/$pattern/;
for (split (';', $value)) {
my ($propname, $propvalue) = split ('=', $_, 2);
$prop->{$propname} = $propvalue;
}
}
}
return $prop;
}
sub do_delete {
my ($self, %arg) = @_;
my $xdroot = $self->xdroot (%arg);
my @deleted;
# check for if the file/dir is modified.
unless ($arg{targets}) {
my $target;
($arg{path}, undef, $arg{copath}, $target) =
get_anchor (1, @arg{qw/path copath/});
# XXX: This logic is flawed; whether this is target has a copath
# doesn't actually tell us whether the report is a copath or depot
# path. (See also SVK::Target::anchorify.)
if ($arg{copath}) {
($arg{report}) = get_anchor (0, $arg{report});
} else {
($arg{report}) = get_depot_anchor (0, $arg{report});
}
$arg{targets} = [$target];
}
$self->checkout_delta ( %arg,
xdroot => $xdroot,
absent_as_delete => 1,
delete_verbose => 1,
absent_verbose => 1,
editor => SVK::Editor::Status->new
( notify => SVK::Notify->new
( cb_flush => sub {
my ($path, $status) = @_;
my ($copath, $report) = map { SVK::Target->copath ($_, $path) }
@arg{qw/copath report/};
my $st = $status->[0];
if ($st eq 'M') {
die loc("%1 is modified, use 'svk revert' first.\n", $report);
}
elsif ($st eq 'D') {
push @deleted, $copath;
}
else {
lstat ($copath);
die loc("%1 is scheduled, use 'svk revert'.\n", $report)
if -e _ && !-d _;
}
})),
cb_unknown => sub {
die loc("%1 is not under version control.\n",
SVK::Target->copath ($arg{report}, $_[1]));
}
);
# actually remove it from checkout path
my @paths = grep {is_symlink($_) || -e $_} (exists $arg{targets}[0] ?
map { SVK::Target->copath ($arg{copath}, $_) } @{$arg{targets}}
: $arg{copath});
my $ignore = $self->ignore ();
find(sub {
return if m/$ignore/;
my $cpath = catdir($File::Find::dir, $_);
no warnings 'uninitialized';
return if $self->{checkout}->get ($cpath)->{'.schedule'}
eq 'delete';
push @deleted, $cpath;
}, @paths) if @paths;
# need to use undef to avoid the $SEP at the beginning on empty report.
my $report = length ($arg{report}) ? $arg{report} : undef;
for (@deleted) {
print "D ".abs2rel($_, $arg{copath} => $report)."\n"
unless $arg{quiet};
$self->{checkout}->store ($_, {'.schedule' => 'delete'});
}
return if $arg{no_rm};
rmtree (\@paths) if @paths;
}
sub do_proplist {
my ($self, $target) = @_;
return $self->get_props ($target->root ($self), $target->{path}, $target->{copath});
}
sub do_propset {
my ($self, %arg) = @_;
my ($xdroot, %values);
my ($entry, $schedule) = $self->get_entry($arg{copath});
$entry->{'.newprop'} ||= {};
unless ($schedule eq 'add' || !$arg{repos}) {
$xdroot = $self->xdroot (%arg);
my ($source_path, $source_root) = $self->_copy_source ($entry, $arg{copath}, $xdroot);
$source_path ||= $arg{path}; $source_root ||= $xdroot;
die loc("%1 is not under version control.\n", $arg{report})
if $xdroot->check_path ($source_path) == $SVN::Node::none;
}
#XXX: support working on multiple paths and recursive
die loc("%1 is already scheduled for delete.\n", $arg{report})
if $schedule eq 'delete';
%values = %{$entry->{'.newprop'}}
if exists $entry->{'.schedule'};
my $pvalue = defined $arg{propvalue} ? $arg{propvalue} : \undef;
$self->{checkout}->store ($arg{copath},
{ '.schedule' => $schedule || 'prop',
'.newprop' => {%values,
$arg{propname} => $pvalue
}});
print " M $arg{report}\n" unless $arg{quiet};
$self->fix_permission ($arg{copath}, $arg{propvalue})
if $arg{propname} eq 'svn:executable';
}
sub fix_permission {
my ($self, $copath, $value) = @_;
my $mode = (stat ($copath))[2];
if (defined $value) {
$mode |= 0111;
}
else {
$mode &= ~0111;
}
chmod ($mode, $copath);
}
=item depot_delta
Generate C<SVN::Delta::Editor> calls to represent the changes between
C<(oldroot, oldpath)> and C<(newroot, newpath)>. oldpath is a array
ref for anchor and target, newpath is just a string.
Options:
=over
=item editor
The editor receiving delta calls.
=item no_textdelta
Don't generate text deltas in C<apply_textdelta> calls.
=item no_recurse
=item notice_ancestry
=back
=cut
sub depot_delta {
my ($self, %arg) = @_;
my @root = map {$_->isa ('SVK::XD::Root') ? $_->[1] : $_} @arg{qw/oldroot newroot/};
SVN::Repos::dir_delta ($root[0], @{$arg{oldpath}},
$root[1], $arg{newpath},
$arg{editor}, undef,
$arg{no_textdelta} ? 0 : 1,
$arg{no_recurse} ? 0 : 1,
0, # we never need entry props
$arg{notice_ancestry} ? 0 : 1);
}
=item checkout_delta
Generate C<SVN::Delta::Editor> calls to represent the local changes
made to the checked out revision.
Options:
=over
=item delete_verbose
Generate delete_entry calls for sub-entries within deleted entry.
=item absent_verbose
Generate absent_* calls for sub-entries within absent entry.
=item unknown_verbose
generate cb_unknown calls for sub-entries within absent entry.
=item absent_ignore
Don't generate absent_* calls.
=item expand_copy
Mimic the behavior like SVN::Repos::dir_delta, lose copy information
and treat all copied descendents as added too.
=item cb_ignored
Called for ignored items if defined.
=item cb_unchanged
Called for unchanged files if defined.
=back
=cut
# XXX: checkout_delta is getting too complicated and too many options
my %ignore_cache;
sub ignore {
my $self = shift;
no warnings;
my $ignore = $self->{svnconfig} ?
$self->{svnconfig}{config}->
get ('miscellany', 'global-ignores', '') : '';
my @ignore = split / /,
($ignore || "*.o *.lo *.la #*# .*.rej *.rej .*~ *~ .#* .DS_Store");
push @ignore, 'svk-commit*.tmp';
return join('|', map {$ignore_cache{$_} ||= compile_shellish $_} (@ignore, @_));
}
sub _delta_content {
my ($self, %arg) = @_;
my $handle = $arg{editor}->apply_textdelta ($arg{baton}, $arg{md5}, $arg{pool});
return unless $handle && $#{$handle} > 0;
if ($arg{send_delta} && $arg{base}) {
my $spool = SVN::Pool->new_default ($arg{pool});
my $source = $arg{base_root}->file_contents ($arg{base_path}, $spool);
my $txstream = SVN::TxDelta::new
($source, $arg{fh}, $spool);
SVN::TxDelta::send_txstream ($txstream, @$handle, $spool);
}
else {
SVN::TxDelta::send_stream ($arg{fh}, @$handle, SVN::Pool->new ($arg{pool}))
}
}
sub _unknown_verbose {
my ($self, %arg) = @_;
my $ignore = $self->ignore;
# The caller should have processed the entry already.
my %seen = ($arg{copath} => 1);
if ($arg{targets}) {
for my $entry (@{$arg{targets}}) {
my $now = '';
for my $dir (splitdir ($entry)) {
$now .= $now ? "/$dir" : $dir;
my $copath = SVK::Target->copath ($arg{copath}, $now);
next if $seen{$copath};
$arg{cb_unknown}->($arg{editor}, catdir($arg{entry}, $now), $arg{baton});
$seen{$copath} = 1;
}
}
}
my $nentry = $arg{entry};
to_native($nentry, 'path', $arg{encoder});
find ({ preprocess => sub { sort @_ },
wanted =>
sub {
$File::Find::prune = 1, return if m/$ignore/;
my $copath = catdir($File::Find::dir, $_);
return if $seen{$copath};
my $schedule = $self->{checkout}->get ($copath)->{'.schedule'} || '';
return if $schedule eq 'delete';
my $dpath = abs2rel($copath, $arg{copath} => $nentry, '/');
from_native($dpath, 'path');
$arg{cb_unknown}->($arg{editor}, $dpath, $arg{baton});
}}, defined $arg{targets} ?
map { SVK::Target->copath ($arg{copath}, $_) } @{$arg{targets}} : $arg{copath});
}
sub _node_deleted {
my ($self, %arg) = @_;
$arg{rev} = $arg{cb_rev}->($arg{entry});
$arg{editor}->delete_entry (@arg{qw/entry rev baton pool/});
if ($arg{kind} == $SVN::Node::dir && $arg{delete_verbose}) {
foreach my $file (sort $self->{checkout}->find
($arg{copath}, {'.schedule' => 'delete'})) {
next if $file eq $arg{copath};
$file = abs2rel($file, $arg{copath} => undef, '/');
from_native($file, 'path', $arg{encoder});
$arg{editor}->delete_entry ("$arg{entry}/$file", @arg{qw/rev baton pool/});
}
}
}
sub _node_deleted_or_absent {
my ($self, %arg) = @_;
my $schedule = $arg{cinfo}{'.schedule'} || '';
if ($schedule eq 'delete' || $schedule eq 'replace') {
$self->_node_deleted (%arg);
# when doing add over deleted entry, descend into it
if ($schedule eq 'delete') {
$self->_unknown_verbose (%arg)
if $arg{cb_unknown} && $arg{unknown_verbose};
return 1;
}
}
if ($arg{type}) {
if ($arg{kind} && !$schedule &&
(($arg{type} eq 'file') xor ($arg{kind} == $SVN::Node::file))) {
if ($arg{obstruct_as_replace}) {
$self->_node_deleted (%arg);
}
else {
$arg{cb_obstruct}->($arg{editor}, $arg{entry}, $arg{baton})
if $arg{cb_obstruct};
return 1;
}
}
}
else {
# deleted during base_root -> xdroot
if ($arg{xdroot} ne $arg{base_root} && $arg{kind} == $SVN::Node::none) {
$self->_node_deleted (%arg);
return 1;
}
return 1 if $arg{absent_ignore};
# absent
my $type = $arg{kind} == $SVN::Node::dir ? 'directory' : 'file';
if ($arg{absent_as_delete}) {
$arg{rev} = $arg{cb_rev}->($arg{entry});
$self->_node_deleted (%arg);
}
else {
my $func = "absent_$type";
$arg{editor}->$func (@arg{qw/entry baton pool/});
}
return 1 unless $type ne 'file' && $arg{absent_verbose};
}
return 0;
}
sub _prop_delta {
my ($baseprop, $newprop) = @_;
return $newprop unless $baseprop && keys %$baseprop;
return { map {$_ => undef} keys %$baseprop } unless $newprop && keys %$newprop;
my $changed;
for my $propname (keys %{ { %$baseprop, %$newprop } }) {
# deref propvalue
my @value = map { $_ ? ref ($_) ? '' : $_ : '' }
map {$_->{$propname}} ($baseprop, $newprop);
$changed->{$propname} = $newprop->{$propname}
unless $value[0] eq $value[1];
}
return $changed;
}
sub _prop_changed {
my ($root1, $path1, $root2, $path2) = @_;
($root1, $root2) = map {$_->isa ('SVK::XD::Root') ? $_->[1] : $_} ($root1, $root2);
return SVN::Fs::props_changed ($root1, $path1, $root2, $path2);
}
sub _node_props {
my ($self, %arg) = @_;
my $schedule = $arg{cinfo}{'.schedule'} || '';
my $props = $arg{kind} ? $schedule eq 'replace' ? {} : $arg{xdroot}->node_proplist ($arg{path}) :
$arg{base_kind} ? $arg{base_root}->node_proplist ($arg{base_path}) : {};
my $newprops = (!$schedule && $arg{auto_add} && $arg{kind} == $SVN::Node::none && $arg{type} eq 'file')
? $self->auto_prop ($arg{copath}) : $arg{cinfo}{'.newprop'};
my $fullprop = _combine_prop ($props, $newprops);
if (!$arg{base} or $arg{in_copy}) {
$newprops = $fullprop;
}
elsif ($arg{base_root} ne $arg{xdroot} && $arg{base}) {
$newprops = _prop_delta ($arg{base_root}->node_proplist ($arg{base_path}), $fullprop)
if $arg{kind} && $arg{base_kind} && _prop_changed (@arg{qw/base_root base_path xdroot path/});
}
return ($newprops, $fullprop)
}
sub _node_type {
my $copath = shift;
my $st = [lstat ($copath)];
return '' if !-e _;
unless (-r _) {
print loc ("Warning: $copath is unreadable.\n");
return;
}
return ('file', $st) if -f _ or is_symlink;
return ('directory', $st) if -d _;
print loc ("Warning: unsupported node type $copath.\n");
return ('', $st);
}
use Fcntl ':mode';
sub _delta_file {
my ($self, %arg) = @_;
my $pool = SVN::Pool->new_default (undef);
my $cinfo = $arg{cinfo} ||= $self->{checkout}->get ($arg{copath});
my $schedule = $cinfo->{'.schedule'} || '';
my $modified;
if ($arg{cb_conflict} && $cinfo->{'.conflict'}) {
++$modified;
$arg{cb_conflict}->($arg{editor}, $arg{entry}, $arg{baton});
}
return 1 if $self->_node_deleted_or_absent (%arg, pool => $pool);
my ($newprops, $fullprops) = $self->_node_props (%arg);
if (HAS_SYMLINK && (defined $fullprops->{'svn:special'} xor S_ISLNK($arg{st}[2]))) {
# special case obstructure for links, since it's not standard
return 1 if $self->_node_deleted_or_absent (%arg,
type => 'link',
pool => $pool);
if ($arg{obstruct_as_replace}) {
$schedule = 'replace';
$fullprops = $newprops = $self->auto_prop($arg{copath}) || {};
}
else {
return 1;
}
}
$arg{add} = 1 if $arg{auto_add} && $arg{base_kind} == $SVN::Node::none ||
$schedule eq 'replace';
my $fh = get_fh ($arg{xdroot}, '<', $arg{path}, $arg{copath}, $fullprops);
my $mymd5 = md5_fh ($fh);
my ($baton, $md5);
$arg{base} = 0 if $arg{in_copy} || $schedule eq 'replace';
unless ($schedule || $arg{add} ||
($arg{base} && $mymd5 ne ($md5 = $arg{base_root}->file_md5_checksum ($arg{base_path})))) {
$arg{cb_unchanged}->($arg{editor}, $arg{entry}, $arg{baton},
$arg{cb_rev}->($arg{entry})
) if ($arg{cb_unchanged} && !$modified);
return $modified;
}
$baton = $arg{editor}->add_file ($arg{entry}, $arg{baton},
$cinfo->{'.copyfrom'} ?
($arg{cb_copyfrom}->(@{$cinfo}{qw/.copyfrom .copyfrom_rev/}))
: (undef, -1), $pool)
if $arg{add};
$baton ||= $arg{editor}->open_file ($arg{entry}, $arg{baton}, $arg{cb_rev}->($arg{entry}), $pool)
if keys %$newprops;
$arg{editor}->change_file_prop ($baton, $_, ref ($newprops->{$_}) ? undef : $newprops->{$_}, $pool)
for sort keys %$newprops;
if (!$arg{base} ||
$mymd5 ne ($md5 ||= $arg{base_root}->file_md5_checksum ($arg{base_path}))) {
seek $fh, 0, 0;
$baton ||= $arg{editor}->open_file ($arg{entry}, $arg{baton}, $arg{cb_rev}->($arg{entry}), $pool);
$self->_delta_content (%arg, baton => $baton, pool => $pool,
fh => $fh, md5 => $arg{base} ? $md5 : undef);
}
$arg{editor}->close_file ($baton, $mymd5, $pool) if $baton;
return 1;
}
sub _delta_dir {
my ($self, %arg) = @_;
if ($arg{entry} && $arg{exclude} && exists $arg{exclude}{$arg{entry}}) {
$arg{cb_exclude}->($arg{path}, $arg{copath}) if $arg{cb_exclude};
return;
}
my $pool = SVN::Pool->new_default (undef);
my $cinfo = $arg{cinfo} ||= $self->{checkout}->get ($arg{copath});
my $schedule = $cinfo->{'.schedule'} || '';
$arg{add} = 1 if $arg{auto_add} && $arg{base_kind} == $SVN::Node::none ||
$schedule eq 'replace';
# compute targets for children
my $targets;
for (@{$arg{targets} || []}) {
my ($volume, $directories, $file) = splitpath ($_);
if ( my @dirs = splitdir($directories) ) {
my $path = $volume . shift(@dirs);
$file = catdir(grep length, @dirs, $file);
push @{$targets->{$path}}, $file
}
else {
$targets->{$file} = undef;
}
}
my $thisdir;
if ($targets) {
if (exists $targets->{''}) {
delete $targets->{''};
$thisdir = 1;
}
}
else {
$thisdir = 1;
}
# don't use depth when we are still traversing through targets
my $descend = defined $targets || !(defined $arg{depth} && $arg{depth} == 0);
$arg{cb_conflict}->($arg{editor}, $arg{entry}, $arg{baton})
if $thisdir && $arg{cb_conflict} && $cinfo->{'.conflict'};
return 1 if $self->_node_deleted_or_absent (%arg, pool => $pool);
# if a node is replaced, it has no base, unless it was replaced with history.
$arg{base} = 0 if $schedule eq 'replace' && $arg{path} eq $arg{base_path};
my ($entries, $baton) = ({});
if ($arg{add}) {
$baton = $arg{root} ? $arg{baton} :
$arg{editor}->add_directory ($arg{entry}, $arg{baton},
$cinfo->{'.copyfrom'} ?
($arg{cb_copyfrom}->(@{$cinfo}{qw/.copyfrom .copyfrom_rev/}))
: (undef, -1), $pool);
}
$entries = $arg{base_root}->dir_entries ($arg{base_path})
if $arg{base} && $arg{base_kind} == $SVN::Node::dir;
$baton ||= $arg{root} ? $arg{baton}
: $arg{editor}->open_directory ($arg{entry}, $arg{baton},
$arg{cb_rev}->($arg{entry}), $pool);
# check scheduled addition
# XXX: does this work with copied directory?
my ($newprops, $fullprops) = $self->_node_props (%arg);
if ($descend) {
my $signature;
if ($self->{signature} && $arg{xdroot} eq $arg{base_root}) {
$signature = $self->{signature}->load ($arg{copath});
# if we are not iterating over all entries, keep the old signatures
$signature->{keepold} = 1 if defined $targets
}
# XXX: Merge this with @direntries so we have single entry to descendents
for my $entry (sort keys %$entries) {
my $newtarget;
my $copath = $entry;
to_native ($copath, 'path', $arg{encoder});
if (defined $targets) {
next unless exists $targets->{$copath};
$newtarget = delete $targets->{$copath};
}
my $kind = $entries->{$entry}->kind;
my $unchanged = ($kind == $SVN::Node::file && $signature && !$signature->changed ($entry));
$copath = SVK::Target->copath ($arg{copath}, $copath);
my ($ccinfo, $ccschedule) = $self->get_entry($copath);
# a replace with history node requires handling the copy anchor in the
# latter direntries loop. we should really merge the two.
if ($ccschedule eq 'replace' && $ccinfo->{'.copyfrom'}) {
delete $entries->{$entry};
$targets->{$entry} = $newtarget if defined $targets;
next;
}
my $newentry = defined $arg{entry} ? "$arg{entry}/$entry" : $entry;
if ($unchanged && !$ccschedule && !$ccinfo->{'.conflict'}) {
$arg{cb_unchanged}->($arg{editor}, $newentry, $baton,
$arg{cb_rev}->($newentry)
) if $arg{cb_unchanged};
next;
}
my ($type, $st) = _node_type ($copath);
next unless defined $type;
my $delta = $type ? $type eq 'directory' ? \&_delta_dir : \&_delta_file
: $kind == $SVN::Node::file ? \&_delta_file : \&_delta_dir;
my $newpath = $arg{path} eq '/' ? "/$entry" : "$arg{path}/$entry";
my $obs = $type ? ($kind == $SVN::Node::dir xor $type eq 'directory') : 0;
# if the sub-delta returns 1 it means the node is modified. invlidate
# the signature cache
$self->$delta ( %arg,
add => $arg{in_copy} || ($obs && $arg{obstruct_as_replace}),
type => $type,
# if copath exist, we have base only if they are of the same type
base => !$obs,
depth => defined $arg{depth} ? defined $targets ? $arg{depth} : $arg{depth} - 1: undef,
entry => $newentry,
kind => $arg{xdroot} eq $arg{base_root} ? $kind : $arg{xdroot}->check_path ($newpath),
base_kind => $kind,
targets => $newtarget,
baton => $baton,
root => 0,
st => $st,
cinfo => $ccinfo,
base_path => $arg{base_path} eq '/' ? "/$entry" : "$arg{base_path}/$entry",
path => $newpath,
copath => $copath)
and ($signature && $signature->invalidate ($entry));
}
if ($signature) {
$signature->flush;
undef $signature;
}
my $ignore = $self->ignore (split ("\n", $fullprops->{'svn:ignore'} || ''));
my @direntries;
# if we are at somewhere arg{copath} not exist, $arg{type} is empty
if ($arg{type} && !(defined $targets && !keys %$targets)) {
opendir my ($dir), $arg{copath} or die "$arg{copath}: $!";
for (readdir($dir)) {
if (eval {from_native($_, 'path', $arg{encoder}); 1}) {
push @direntries, $_;
}
elsif ($arg{auto_add}) { # fatal for auto_add
die "$_: $@";
}
else {
print "$_: $@";
}
}
@direntries = sort grep { !m/^\.+$/ && !exists $entries->{$_} } @direntries;
}
for my $copath (@direntries) {
my $entry = $copath;
to_native ($copath, 'path', $arg{encoder});
my $newtarget;
if (defined $targets) {
next unless exists $targets->{$copath};
$newtarget = delete $targets->{$copath};
}
my %newpaths = ( copath => SVK::Target->copath ($arg{copath}, $copath),
entry => defined $arg{entry} ? "$arg{entry}/$entry" : $entry,
path => $arg{path} eq '/' ? "/$entry" : "$arg{path}/$entry",
base_path => $arg{base_path} eq '/' ? "/$entry" : "$arg{base_path}/$entry",
targets => $newtarget, base_kind => $SVN::Node::none);
$newpaths{kind} = $arg{xdroot} eq $arg{base_root} ? $SVN::Node::none :
$arg{xdroot}->check_path ($newpaths{path}) != $SVN::Node::none;
my ($ccinfo, $sche) = $self->get_entry($newpaths{copath});
my $add = $sche || $arg{auto_add} || $newpaths{kind};
# If we are not at intermediate path, process ignore
# for unknowns, as well as the case of auto_add (import)
if (!defined $targets) {
if ((!$add || $arg{auto_add}) && $entry =~ m/$ignore/) {
$arg{cb_ignored}->($arg{editor}, $newpaths{entry}, $arg{baton})
if $arg{cb_ignored};
next;
}
}
if ($ccinfo->{'.conflict'}) {
$arg{cb_conflict}->($arg{editor}, $newpaths{entry}, $arg{baton})
if $arg{cb_conflict};
}
unless ($add || $ccinfo->{'.conflict'}) {
if ($arg{cb_unknown}) {
$arg{cb_unknown}->($arg{editor}, $newpaths{entry}, $arg{baton});
$self->_unknown_verbose (%arg, %newpaths)
if $arg{unknown_verbose};
}
next;
}
my ($type, $st) = _node_type ($newpaths{copath}) or next;
my $delta = $type eq 'directory' ? \&_delta_dir : \&_delta_file;
my $copyfrom = $ccinfo->{'.copyfrom'};
my $fromroot = $copyfrom ? $arg{repos}->fs->revision_root ($ccinfo->{'.copyfrom_rev'}) : undef;
$self->$delta ( %arg, %newpaths, add => 1, baton => $baton,
root => 0, base => 0, cinfo => $ccinfo,
type => $type,
st => $st,
depth => defined $arg{depth} ? defined $targets ? $arg{depth} : $arg{depth} - 1: undef,
$copyfrom ?
( base => 1,
in_copy => $arg{expand_copy},
base_kind => $fromroot->check_path ($copyfrom),
base_root => $fromroot,
base_path => $copyfrom) : (),
);
}
}
if ($thisdir) {
$arg{editor}->change_dir_prop ($baton, $_, ref ($newprops->{$_}) ? undef : $newprops->{$_}, $pool)
for sort keys %$newprops;
}
if (defined $targets) {
print loc ("Unknown target: %1.\n", $_) for sort keys %$targets;
}
$arg{editor}->close_directory ($baton, $pool)
unless $arg{root};
return 0;
}
sub _get_rev {
$_[0]->{checkout}->get ($_[1])->{revision};
}
sub checkout_delta {
my ($self, %arg) = @_;
$arg{base_root} ||= $arg{xdroot};
$arg{base_path} ||= $arg{path};
$arg{encoder} = get_encoder;
my $kind = $arg{base_kind} = $arg{base_root}->check_path ($arg{base_path});
$arg{kind} = $arg{base_root} eq $arg{xdroot} ? $kind : $arg{xdroot}->check_path ($arg{path});
die "checkout_delta called with non-dir node"
unless $kind == $SVN::Node::dir;
my ($copath, $repospath) = @arg{qw/copath repospath/};
$arg{editor} = SVN::Delta::Editor->new (_debug => 1, _editor => [$arg{editor}])
if $arg{debug};
$arg{editor} = SVK::Editor::Delay->new ($arg{editor})
unless $arg{nodelay};
$arg{cb_rev} ||= sub { $self->_get_rev (SVK::Target->copath ($copath, $_[0])) };
# XXX: translate $repospath to use '/'
$arg{cb_copyfrom} ||= $arg{expand_copy} ? sub { (undef, -1) }
: sub { ("file://$repospath$_[0]", $_[1]) };
my $rev = $arg{cb_rev}->('');
local $SIG{INT} = sub {
$arg{editor}->abort_edit;
die loc("Interrupted.\n");
};
my $baton = $arg{editor}->open_root ($rev);
$self->_delta_dir (%arg, baton => $baton, root => 1, base => 1, type => 'directory');
$arg{editor}->close_directory ($baton);
$arg{editor}->close_edit ();
}
=item get_entry($copath)
Returns the L<Data::Hierarchy> entry and the schedule of the entry.
=cut
sub get_entry {
my ($self, $copath) = @_;
my $entry = $self->{checkout}->get($copath);
return ($entry, $entry->{'.schedule'} || '');
}
sub resolved_entry {
my ($self, $entry) = @_;
my $val = $self->{checkout}->get ($entry);
return unless $val && $val->{'.conflict'};
$self->{checkout}->store ($entry, {%$val, '.conflict' => undef});
print loc("%1 marked as resolved.\n", $entry);
}
sub do_resolved {
my ($self, %arg) = @_;
if ($arg{recursive}) {
for ($self->{checkout}->find ($arg{copath}, {'.conflict' => 1})) {
$self->resolved_entry ($_);
}
}
else {
$self->resolved_entry ($arg{copath});
}
}
sub get_eol_layer {
my ($prop, $mode, $checkle) = @_;
my $k = $prop->{'svn:eol-style'} or return ':raw';
# short-circuit no-op write layers on lf platforms
if (NATIVE eq LF) {
return ':raw' if $mode eq '>' && ($k eq 'native' or $k eq 'LF');
}
# XXX: on write we should actually be notified when it's to be
# normalized.
if ($k eq 'native') {
$checkle = $checkle ? '!' : '';
return ":raw:eol(LF$checkle-Native)";
}
elsif ($k eq 'CRLF' or $k eq 'CR' or $k eq 'LF') {
$k .= '!' if $checkle;
return ":raw:eol($k)";
}
else {
return ':raw'; # unsupported
}
}
# Remove anything from the keyword value that could prevent us from being able
# to correctly collapse it again later.
sub _sanitize_keyword_value {
my $value = shift;
$value =~ s/[\r\n]/ /g;
$value =~ s/ +\$/\$/g;
return $value;
}
sub get_keyword_layer {
my ($root, $path, $prop) = @_;
my $k = $prop->{'svn:keywords'};
return unless $k;
# XXX: should these respect svm related stuff
my %kmap = ( Date =>
sub { my ($root, $path) = @_;
my $rev = $root->node_created_rev ($path);
my $fs = $root->fs;
$fs->revision_prop ($rev, 'svn:date');
},
Rev =>
sub { my ($root, $path) = @_;
$root->node_created_rev ($path);
},
Author =>
sub { my ($root, $path) = @_;
my $rev = $root->node_created_rev ($path);
my $fs = $root->fs;
$fs->revision_prop ($rev, 'svn:author');
},
Id =>
sub { my ($root, $path) = @_;
my $rev = $root->node_created_rev ($path);
my $fs = $root->fs;
join( ' ', $path, $rev,
$fs->revision_prop ($rev, 'svn:date'),
$fs->revision_prop ($rev, 'svn:author'), ''
);
},
URL =>
sub { my ($root, $path) = @_;
return $path;
},
FileRev =>
sub { my ($root, $path) = @_;
my $rev = 0;
traverse_history ( root => $root,
path => $path,
cross => 0,
callback => sub { ++$rev });
"#$rev";
},
);
my %kalias = qw(
LastChangedDate Date
LastChangedRevision Rev
LastChangedBy Author
HeadURL URL
Change Rev
File URL
DateTime Date
Revision Rev
FileRevision FileRev
);
$kmap{$_} = $kmap{$kalias{$_}} for keys %kalias;
my %key = map { ($_ => 1) } grep {exists $kmap{$_}} (split /\W+/,$k);
return unless %key;
while (my ($k, $v) = each %kalias) {
$key{$k}++ if $key{$v};
$key{$v}++ if $key{$k};
}
my $keyword = '('.join('|', sort keys %key).')';
return PerlIO::via::dynamic->new
(translate =>
sub { $_[1] =~ s/\$($keyword)(?:: .*? )?\$/"\$$1: "._sanitize_keyword_value($kmap{$1}->($root, $path)).' $'/eg; },
untranslate =>
sub { $_[1] =~ s/\$($keyword)(?:: .*? )?\$/\$$1\$/g; });
}
sub _fh_symlink {
my ($mode, $fname) = @_;
my $fh;
if ($mode eq '>') {
open $fh, '>:via(symlink)', $fname;
}
elsif ($mode eq '<') {
# XXX: make PerlIO::via::symlink also do the reading
open $fh, '<', \("link ".readlink($fname));
}
else {
die "unknown mode $mode for symlink fh";
}
return $fh;
}
=item get_fh
Returns a file handle with keyword translation and line-ending layers attached.
=cut
sub get_fh {
my ($root, $mode, $path, $fname, $prop, $layer, $eol, $checkle) = @_;
{
local $@;
$prop ||= eval { $root->node_proplist ($path) };
}
return _fh_symlink ($mode, $fname)
if HAS_SYMLINK and ( defined $prop->{'svn:special'} || ($mode eq '<' && is_symlink($fname)) );
if (keys %$prop) {
$layer ||= get_keyword_layer ($root, $path, $prop);
$eol ||= get_eol_layer($prop, $mode, $checkle);
}
$eol ||= ':raw';
open my ($fh), $mode.$eol, $fname or return undef;
$layer->via ($fh) if $layer;
return $fh;
}
=item get_props
Returns the properties associated with a node. Properties schedule for
commit are merged if C<$copath> is given.
=back
=cut
sub _combine_prop {
my ($props, $newprops) = @_;
return $props unless $newprops;
$props = {%$props, %$newprops};
for (keys %$props) {
delete $props->{$_}
if ref ($props->{$_}) && !defined ${$props->{$_}};
}
return $props;
}
sub _copy_source {
my ($self, $entry, $copath, $root) = @_;
return unless $entry->{scheduleanchor};
my $descendent = abs2rel($copath, $entry->{scheduleanchor}, '', '/');
$entry = $self->{checkout}->get ($entry->{scheduleanchor})
if $entry->{scheduleanchor} ne $copath;
my $from = $entry->{'.copyfrom'} or return;
$from .= $descendent;
return ($from, $root ? $root->fs->revision_root ($entry->{'.copyfrom_rev'})
: $entry->{'.copyfrom_rev'});
}
sub get_props {
my ($self, $root, $path, $copath, $entry) = @_;
my $props = {};
$entry ||= $self->{checkout}->get ($copath) if $copath;
my $schedule = $entry->{'.schedule'} || '';
if (my ($source_path, $source_root) = $self->_copy_source ($entry, $copath, $root)) {
$props = $source_root->node_proplist ($source_path);
}
elsif ($schedule ne 'add' && $schedule ne 'replace') {
$props = $root->node_proplist ($path);
}
return _combine_prop ($props, $entry->{'.newprop'});
}
sub cache_directory {
my ($self) = @_;
my $rv = catdir ( $self->{svkpath}, 'cache' );
mkdir $rv or die $! unless -e $rv;
return $rv;
}
sub patch_directory {
my ($self) = @_;
my $rv = catdir ( $self->{svkpath}, 'patch' );
mkdir $rv or die $! unless -e $rv;
return $rv;
}
sub patch_file {
my ($self, $name) = @_;
return '-' if $name eq '-';
return catdir ($self->patch_directory, "$name.patch");
}
sub DESTROY {
my ($self) = @_;
return if $self->{updated};
$self->store ();
}
package SVK::XD::Signature;
use SVK::Util qw( $SEP );
sub new {
my ($class, @arg) = @_;
my $self = bless {}, __PACKAGE__;
%$self = @arg;
mkdir ($self->{root}) or die $! unless -e $self->{root};
return $self;
}
sub load {
my ($factory, $path) = @_;
my $spath = $path;
$spath =~ s{(?=[_=])}{=}g;
$spath =~ s{:}{=-}g;
$spath =~ s{\Q$SEP}{_}go;
my $self = bless { root => $factory->{root},
path => $path, spath => $spath }, __PACKAGE__;
$self->read;
return $self;
}
sub path {
my $self = shift;
return "$self->{root}$SEP$self->{spath}";
}
sub lock_path {
my $self = shift;
return $self->path.'_lock';
}
sub lock {
my ($self) = @_;
my $path = $self->lock_path;
return if -e $path;
open my $fh, '>', $path or warn $!, return;
print $fh $$;
$self->{locked} = 1;
}
sub unlock {
my ($self) = @_;
my $path = $self->lock_path;
unlink $path if -e $path;
$self->{locked} = 0;
}
sub read {
my ($self) = @_;
my $path = $self->path;
if (-s $path) {
open my $fh, '<:raw', $path or die $!;
$self->{signature} = { <$fh> };
}
else {
$self->{signature} = {};
}
$self->{changed} = {};
$self->{newsignature} = {};
}
sub write {
my ($self) = @_;
my $path = $self->path;
# nothing to write
return unless keys %{$self->{changed}};
$self->lock;
return unless $self->{locked};
my ($hash, $file) = @_;
open my $fh, '>:raw', $path or die $!;
print {$fh} $self->{keepold} ? (%{$self->{signature}}, %{$self->{newsignature}})
: %{ $self->{newsignature} };
$self->unlock;
}
sub changed {
my ($self, $entry) = @_;
my $file = "$self->{path}/$entry";
# inode, mtime, size
my @sig = (stat ($file))[1,7,9] or return 1;
my ($key, $value) = (quotemeta($entry)."\n", "@sig\n");
my $changed = (!exists $self->{signature}{$key} ||
$self->{signature}{$key} ne $value);
$self->{changed}{$key} = 1 if $changed;
delete $self->{signature}{$key};
$self->{newsignature}{$key} = $value
if !$self->{keepold} || $changed;
return $changed;
}
sub invalidate {
my ($self, $entry) = @_;
my $key = quotemeta($entry)."\n";
delete $self->{newsignature}{$key};
delete $self->{changed}{$key};
}
sub flush {
my ($self) = @_;
$self->write;
}
package SVK::XD::Root;
use SVK::I18N;
sub AUTOLOAD {
my $func = our $AUTOLOAD;
$func =~ s/^SVK::XD::Root:://;
return if $func =~ m/^[A-Z]*$/;
no strict 'refs';
no warnings 'redefine';
*$func = sub {
my $self = shift;
# warn "===> $self $func: ".join(',',@_).' '.join(',', (caller(0))[0..3])."\n";
$self->[1]->$func (@_);
};
goto &$func;
}
sub new {
my ($class, @arg) = @_;
unshift @arg, undef if $#arg == 0;
bless [@arg], $class;
}
sub DESTROY {
return unless $_[0][0];
# if this destructor is called upon the pool cleanup which holds the
# txn also, we need to use a new pool, otherwise it segfaults for
# doing allocation in a pool that is being destroyed.
my $pool = SVN::Pool->new_default;
$_[0][0]->abort if $_[0][0];
}
=head1 AUTHORS
Chia-liang Kao E<lt>clkao@clkao.orgE<gt>
=head1 COPYRIGHT
Copyright 2003-2005 by Chia-liang Kao E<lt>clkao@clkao.orgE<gt>.
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
See L<http://www.perl.com/perl/misc/Artistic.html>
=cut
1;
|