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
|
#!/bin/sh
#
# rprcs
#
# RPRCS - The Remote Project Revision Control System
# Copyright (C) 1999 Hugo Cornelis
#
# 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 2
# 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 prcs, The Project Revision Control System available at
# http://www.xcf.berkeley.edu ; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
# $Project: prcs $
# $ProjectHeader: prcs 1.2-release.94 Tue, 09 Nov 1999 14:40:19 -0800 jmacd $
# $Id: rprcs 1.1 Sun, 31 Oct 1999 16:52:32 -0800 jmacd $
#
# prcs front end with remote execution extensions using rsh/ssh and rsync
#
# $ProjectHeader: prcs 1.2-release.94 Tue, 09 Nov 1999 14:40:19 -0800 jmacd $
# $Id: rprcs 1.1 Sun, 31 Oct 1999 16:52:32 -0800 jmacd $
#
#
# use:
#
# rprcs subcommand [options ...] [operand ...]
#
#
# assumptions and warnings
#
# 0. Because not all branches are mirrored, the repositories are not
# equal (e.g. the files could have the same RCS revisions, but
# still be different, because they come from a different
# host/repository). For the moment there is no keyword available
# to uniquely identify a file. Such a keyword would probably
# contain the repository's hostname the file came from.
# 1. Project-Version info in project descriptor on one line
# and unique in the file
# 2. Parent-Version info in project descriptor on one line
# and unique in the file
# 3. dots in hostnames not escaped, could match any character in
# regexp's
# 4. user 'prcs' on server via rsh accessed
# 5. usage of PRCS_REPOSITORY on server side without setting it
# 6. use of side effect project.prj == project
# 7. use of directory /tmp/.prcs at remote host
# 8. pattern for files in project descriptor is given as
# no other lines in the project descriptor matches this pattern
# 9. uses an rsync include file name <PROJECT>.rsyncincludefile
# 10. New-Version-Log in the project descriptor must not be preceded
# with any other lisp statement.
# 11. .<project>.prj is used as temporary storage
# 12. Uses $PRCS_REPOSITORY on local side and remote side.
# It must be explicitly set.
# 13. uses file with project versions to sync : <project>.ancestry
# 14. '(Merge-Parents', '(New-Merge-Parents' on one line
#
# uses
#
# 1. bash
# 2. sed
# 3. (g)awk
# 4. rsync
# 5. prcs
# 6. uname -n
# 7. id -un
# 8. wc
# 9. grep
# 10. cat
# 11. uniq
# 12. tac
#
# set rsync logging format
#RSYNC_LOG_FORMAT="--log-format \"%o %h [%a] %m (%u) %f %l (%b) (%c)\""
RSYNC_LOG_FORMAT=
# if no rprcs database
if [ "$RPRCS_DATABASE" = "" ]; then
# set base to default
RPRCS_DATABASE=~/RPRCS
# test for existence
if [ ! -d $RPRCS_DATABASE -a ! -L $RPRCS_DATABASE ]; then
# create directory for database
mkdir 2>/dev/null $RPRCS_DATABASE
# if failed
if [ ! -d $RPRCS_DATABASE ]; then
# give diag's
echo "$0: Unable to find rprcs database"
# exit failure
exit 1
fi
# give diag's
echo "$0: Created rprcs database $RPRCS_DATABASE"
fi
fi
# set file with branch mappings for client
HOSTSFILE=hosts.txt
# update mapping file
touch 2>/dev/null $RPRCS_DATABASE/$HOSTSFILE
# test for existence of mapping file
if [ ! -f $RPRCS_DATABASE/$HOSTSFILE ]; then
# give diagnostics
echo "Unable to find host/branch mapping file"
# exit failure
exit 1
fi
# set file with branch descriptions for server
BRANCHFILE=branches.txt
# set file with user information
USERFILE=users.txt
# set prcs user on remote side
PRCSUSER=prcs
#
# function to acquire a lock on a branch, create tmp subdirs for project/branch
#
# $1: PRCSHOST
# $2: PROJECT
# $3: PROJECTMAJOR
# $4: raw lock file contents
#
AcquireLock ()
{
# create temp. dir at remote host for checkout
rsh -l $PRCSUSER $1 "mkdir 2>/dev/null /tmp/.prcs ; mkdir 2>/dev/null /tmp/.prcs/$2 ; mkdir 2>/dev/null /tmp/.prcs/$2/$3"
# try to obtain readable lock with given contents
rsh -l $PRCSUSER $1 "( umask 377 ; echo >/tmp/.prcs/$2/$3.lock \"$4\" )"
# if lock file has given contents
if [ "`rsh -l $PRCSUSER $1 cat /tmp/.prcs/$2/$3.lock`" = "$4" ]; then
#echo "lock match : $4"
#rsh -l $PRCSUSER $1 cat /tmp/.prcs/$2/$3.lock
# return success
return 0
# else
else
#echo "locking failed"
# return failure
return 1
fi
}
#
# function to release a lock on a branch
#
# $1: PRCSHOST
# $2: PROJECT
# $3: PROJECTMAJOR
# $4: lock file contents
#
ReleaseLock ()
{
# if lock file has given contents
if [ "`rsh -l $PRCSUSER $1 cat /tmp/.prcs/$2/$3.lock`" = "$4" ]; then
# remove the lock
rsh -l $PRCSUSER $1 rm -f /tmp/.prcs/$2/$3.lock
# return success
return 0
# else
else
# give diag's
echo "$0: Lock file has changed, some operations may have failed."
# return failure
return 1
fi
}
#
# copy files section from project descriptor to seperate file
#
# $1: PROJECT.prj
# $2: PROJECT.files
#
function FilesSectionCopy ()
{
# copy all files entries
#! don't mess up the order of regexp's
#! assumes all file entries are enclosed between '^(Files' and '^)$'
awk <$1 >$2 '
BEGIN { x = 0 }
/^\)$/ { x = 0 }
{ if (x) print $0 }
/^\(Files/ { x = 1 }
'
}
#
# merge RCS revisions from files section from project descriptor
#
# $1: local files section
# $2: remote files section
# $3: PROJECT.prj
#
function FilesSectionMerge ()
{
# awk
awk '
# begin section
BEGIN {
# while lines from local files section
while ((getline < ARGV[1]) > 0)
{
# if line like file description
if ($0 ~ /^[[:space:]]*\([^(]*\([^[:space:]]*[[:space:]]*[^[:space:]]*[[:space:]]*[^)]*\)[[:space:]]*\)[[:space:]]*$/)
{
# put file description in files array
files[$1]=$0
}
}
# while lines from project descriptor
while ((getline < ARGV[3]) > 0)
{
# if line like beginning of files section
if ($0 ~ /^\(Files/)
{
# print line to output
print $0
# break reading loop
break
}
# else
else
{
# print line to output
print
}
}
# while lines from remote files section
while ((getline < ARGV[2]) > 0)
{
# if line like file description
if ($0 ~ /^[[:space:]]*\([^(]*\([^[:space:]]*[[:space:]]*[^[:space:]]*[[:space:]]*[^)]*\)[[:space:]]*\)[[:space:]]*$/)
{
# if file present in files array
if (files[$1] != "")
{
# output old file description
print files[$1]
}
# else
else
{
# output file with empty internal file family
print " ", $1, " () )"
}
}
# else
else
{
# output line without file description
print $0
}
}
# while lines from project descriptor
while ((getline < ARGV[3]) > 0)
{
# if line is terminating file section
if ($0 ~ /^\)$/)
{
# print line to output
print $0
# break reading loop
break
}
}
# while lines from project descriptor
while ((getline < ARGV[3]) > 0)
{
# print line to output
print $0
}
#! I had to use a double quote instead of a single quote
#! to prevent bash from misinterpretation when copying and pasting
#! this function into an xterm window.
#! I would expect that a single quote in a comment would be
#! ignored
# unset args so they won"t be read by awk
ARGV[1]="" ;
ARGV[2]="" ;
ARGV[3]="" ;
}
' \
$1 $2 $3
}
#
# check permission on branch : new branch permission
#
# $1: PRCSHOST
# $2: PROJECT
# $3: PROJECTMAJOR
#
function HasBranchPermission ()
{
local branchline
local branchperm
# get permission line for this project/branch from server site
branchline=`rsh -l $PRCSUSER $1 "grep \"[[:space:]]$2[[:space:]]\" \\\$PRCS_REPOSITORY/$BRANCHFILE | grep \"[[:space:]]$3[[:space:]]\"" | grep "^\`id -un\`@\`uname -n\`"`
# get permissions
branchperm=`echo $branchline | cut -f 5 -d " "`
# if no branch permission
if [ "`echo $branchperm | grep b`" = "" ]; then
# give diag's
echo "$0: You don't have branch permission on branch $3"
# return failure
return 1
# else
else
# return success
return 1
fi
}
#
# check permission repo : create new project
#
# $1: PRCSHOST
# $2: USER
# $3: HOST
#
function HasProjectPermission ()
{
local userline
local userperm
#echo rsh -l $PRCSUSER $1 "grep $2@$3 \\\$PRCS_REPOSITORY/$USERFILE"
# get permission line for user
userline=`rsh -l $PRCSUSER $1 "grep $2@$3 \\\$PRCS_REPOSITORY/$USERFILE"`
#echo "userline=$userline"
# get permissions
userperm=`echo $userline | cut -f 2 -d " "`
#echo "userperm=$userperm"
# if no creation permission
if [ "`echo $userperm | grep c`" = "" ]; then
# give diag's
echo "$0: You ($2@$3) don't have permission to create projects"
# return failure
return 1
# else
else
# return success
return 0
fi
}
#
# check permission on branch : read permission
#
# $1: PRCSHOST
# $2: PROJECT
# $3: PROJECTMAJOR
#
function HasReadPermission ()
{
local branchline
local branchperm
# get permission line for this project/branch from server site
#! \\\$PRCS_REPOSITORY is repository at remote site
#! perhaps better to put the thing between single quotes ?
branchline=`rsh -l $PRCSUSER $1 "grep \"[[:space:]]$2[[:space:]]\" \\\$PRCS_REPOSITORY/$BRANCHFILE | grep \"[[:space:]]$3[[:space:]]\"" | grep "^\`id -un\`@\`uname -n\`"`
# get permissions
branchperm=`echo $branchline | cut -f 5 -d " "`
# if no read permission
if [ "`echo $branchperm | grep r`" = "" ]; then
# give diag's
echo "$0: You don't have read permission to checkout branch $3"
# return failure
return 1
# else
else
# return success
return 1
fi
}
#
# check permission on branch : write permission
#
# $1: PRCSHOST
# $2: PROJECT
# $3: PROJECTMAJOR
#
function HasWritePermission ()
{
local branchline
local branchperm
# get permission line for this project/branch from server site
branchline=`rsh -l $PRCSUSER $1 "grep \"[[:space:]]$2[[:space:]]\" \\\$PRCS_REPOSITORY/$BRANCHFILE | grep \"[[:space:]]$3[[:space:]]\"" | grep "^\`id -un\`@\`uname -n\`"`
# get permissions
#! for some reason the tab's from the branchfile are converted to
#! spaces, so we use a space as field delimiter
branchperm=`echo $branchline | cut -f 5 -d " "`
# if no write permission
if [ "`echo $branchperm | grep w`" = "" ]; then
# give diag's
echo "$0: You don't have write permission on branch $3 from $2"
# return failure
return 1
fi
# return success
return 0
}
#
# switch Merge-Parents and New-Merge-Parents
#
# $1: PROJECT.prj
#
function MergeParentsSwitch ()
{
# switch selected text
sed <$1 -e "s/^.Merge-Parents/(Old-Merge-Parents/g" | sed -e "s/^.New-Merge-Parents/(Merge-Parents/g" | sed >$1.parented -e "s/^.Old-Merge-Parents/(New-Merge-Parents/g" && mv $1.parented $1
# return success
return 0
}
#
# get hostname from hosts file given repository, project/branch
#
# $1: PRCS_REPOSITORY
# $2: PROJECT
# $3: PROJECTMAJOR
#
# $PRCSHOST
#
function HostFromProjectBranch ()
{
local branchline
#echo "finding in $1 : $2/$3"
# if more than one registered project/branch
#if [ "`grep \"[[:space:]]$2[[:space:]]\" $RPRCS_DATABASE/$HOSTSFILE | tee project.hosts | grep \"[[:space:]]$3[[:space:]]\" | tee branch.hosts | wc -l`" -ne "1" ]; then
if [ "`grep \"[[:space:]]$2[[:space:]]\" $RPRCS_DATABASE/$HOSTSFILE | grep \"[[:space:]]$3[[:space:]]\" | wc -l`" -ne "1" ]; then
# internal error
# give diag's
branchline="$0: Found `grep \"[[:space:]]$2[[:space:]]\" $RPRCS_DATABASE/$HOSTSFILE | grep \"[[:space:]]$3[[:space:]]\" | wc -l` sites managing $2/$3"
echo $branchline
echo "`grep \"[[:space:]]$2[[:space:]]\" $RPRCS_DATABASE/$HOSTSFILE | grep \"[[:space:]]$3[[:space:]]\"`"
# return failure
return 1
fi
# get line containing the branch
branchline="`grep \"[[:space:]]$2[[:space:]]\" $RPRCS_DATABASE/$HOSTSFILE | grep \"[[:space:]]$3[[:space:]]\"`"
# get the registered hostname
PRCSHOST=`echo $branchline | cut -f 1 -d " "`
# return success
return 0
}
#
# start of main bash script
#
#
# if argument count less than 1
if [ "$#" -lt "1" ]; then
# give diagnostics
echo "$0: subcommand is obligatory"
# exit failure
exit 1
fi
# set prcs command from command line
PRCSCOMMAND="$1"
# shift arguments
shift
# unset prcs subcommand
PRCSSUBCOMMAND=""
# if repository not set
if [ "$PRCS_REPOSITORY" = "" ]; then
# set to prcs default directory
PRCS_REPOSITORY=$HOME/PRCS
fi
# if we cannot read the hosts file
if [ ! -r $RPRCS_DATABASE/$HOSTSFILE ]; then
# give diag's
echo "$0: $RPRCS_DATABASE/$HOSTSFILE is not readable"
# exit failure
exit 1
fi
# parse command line
PRCSOPTIONS=""
PARSECOMMANDLINE=1
while [ $PARSECOMMANDLINE -eq 1 ]; do
# look at command argument
case $1 in
# if version option
"-r")
# if first -r option
if [ "$COMMANDLINEBRANCH" != "1" ]; then
# remember that -r is given
COMMANDLINEBRANCH=1
# shift arguments
shift
# get project version
PROJECTMAJOR=$1
# if project version is empty
if [ "$PROJECTMAJOR" = "" ]; then
# give diagnostics : illegal -r use
echo "$0: -r not followed with project version"
# exit failure
exit 1
fi
# if minor version within commandline branch
if `echo $PROJECTMAJOR | grep >/dev/null "\."` ; then
# remember : commandline contains minor
COMMANDLINEMINOR=1
fi
# shift arguments
shift
# else
else
# remember that second -r is given
COMMANDLINEBRANCH2=1
# shift arguments
shift
# get project version
PROJECTMAJOR2=$1
# if project version is empty
if [ "$PROJECTMAJOR2" = "" ]; then
# give diagnostics : illegal -r use
echo "$0: -r not followed with project version"
# exit failure
exit 1
fi
# if minor version within commandline branch
if `echo $PROJECTMAJOR2 | grep >/dev/null "\."` ; then
# remember : commandline contains minor
COMMANDLINEMINOR2=1
fi
# shift arguments
shift
fi
;;
# if hostname option
"-h")
# remember that -h is given
COMMANDLINEHOST=1
# shift arguments
shift
# get hostname
PRCSHOST=$1
# if project version is empty
if [ "$PRCSHOST" = "" ]; then
# give diagnostics : illegal -h use
echo "$0: -h not followed with hostname"
# exit failure
exit 1
fi
# shift arguments
shift
;;
# normal prcs options
-d | -f | -i | -k | -l | -L | -n | -N | -q | -p | -P | --plain-format | --pre | -s | -u | -v | -z )
PRCSOPTIONS="$PRCSOPTIONS $1"
shift
;;
-j | --match | --not | -R | --sort )
PRCSOPTIONS="$PRCSOPTIONS $1 $2"
shift
shift
;;
# else
*)
# end parsing loop
PARSECOMMANDLINE=0
;;
esac
done
# if project branch var empty
if [ "$PROJECTMAJOR" = "" ]; then
# try to get project branch from project descriptor
PROJECTMAJOR=`grep 2>/dev/null "Project-Version" *.prj | cut -d " " -f 3`
# if project branch is empty
if [ "$PROJECTMAJOR" = "" ]; then
#t try to get the default major version from the repository
#t only if hostname already set
#t get it with -l option
#t | cut off all unwanted fields
#t | sort on field of branch
#t | grep of fields starting with number
#t | tail last line
# give diag's
echo "$0: getting default branch from repository is not yet implemented"
# exit failure
exit 1
fi
fi
# if major project version contains dots
if echo $PROJECTMAJOR | grep >/dev/null "\." ; then
# get major/minor version from major version
# this depends on greedy regex operations and backreferences,
# I don't know if this works the same on all different versions of sed
PROJECTMINOR=`echo "$PROJECTMAJOR" | sed -e "s/\(.*\)\.\(.*\)/\2/"`
PROJECTMAJOR=`echo "$PROJECTMAJOR" | sed -e "s/\(.*\)\.\(.*\)/\1/"`
# else
else
# get minor version number from project descriptor
PROJECTMINOR=`grep 2>/dev/null "Project-Version" *.prj | cut -d " " -f 4 | cut -f 1 -d ")"`
# here minor version number can be empty, perhaps this is broke for some commands
fi
# if project revision is unset
if [ "$PROJECTMINOR" = "" ]; then
# unset dotted project revision
DOTTEDPROJECTMINOR=""
# else
else
# set dotted project minor
DOTTEDPROJECTMINOR=".$PROJECTMINOR"
fi
# set parent branch and revision as from project descriptor
#! no version descriptor -> no parent version numbers, should be ok.
PARENTMAJOR=`grep 2>/dev/null "Parent-Version" *.prj | cut -d " " -f 3`
PARENTMINOR=`grep 2>/dev/null "Parent-Version" *.prj | cut -d " " -f 4 | cut -f 1 -d ")"`
# if project name given on command line
if [ "$1" != "" ]; then
# remember command line contains project
COMMANDLINEPROJECT=1
# set given project
PROJECT=$1
# shift arguments
shift
else
# try to get project from project descriptor
PROJECT=`grep 2>/dev/null "Project-Version" *.prj | cut -d " " -f 2`
# if there is exactly one project descriptor
if [ "$PROJECT" = "" ]; then
# give diagnostics : failure
echo "$0: No project descriptor found in your working directory"
# exit failure
exit 1
# else
else
# if there are multiple project descriptors
if [ `ls *.prj | wc -w` -ne "1" ]; then
# give diagnostics : failure
echo "$0: Multiple project descriptors found in your working directory"
# exit failure
exit 1
fi
fi
fi
# get a randomnumber
random=$RANDOM
#
# status should be :
#
# variables filled out :
#
# PRCSCOMMAND : one of the rprcs commands
# PRCSUSER : user for rsh
# PRCSOPTIONS : extra prcs options
# PROJECT : project name (without .prj)
# PARENTMAJOR : project parent branch
# PROJECTMAJOR : project branch
# PROJECTMINOR : project revision
# PROJECTMAJOR2 : project branch second -r option
# PROJECTMINOR2 : project revision second -r option
# DOTTEDPROJECTMINOR: project revision preceded by '.'
#
# COMMANDLINEHOST :
# COMMANDLINEPROJECT:
# COMMANDLINEBRANCH :
# COMMANDLINEMINOR :
# COMMANDLINEBRANCH2:
# COMMANDLINEMINOR2 :
#
# $* : remaining command line (file arguments)
#
# look at prcs command
case $PRCSCOMMAND in
# checkin
checkin)
# give diag's
echo "$0: Doing $PRCSCOMMAND for $PROJECT on branch $PROJECTMAJOR"
# if host not set from commandline
if [ "$COMMANDLINEHOST" = "" ]; then
# if can't get host for project branch
if ! HostFromProjectBranch $PRCS_REPOSITORY $PROJECT $PROJECTMAJOR ; then
# exit failure
exit 1
fi
fi
# if no lock for branch
if ! AcquireLock $PRCSHOST $PROJECT $PROJECTMAJOR `id -un`@`uname -n`"::$PPID($random)" ; then
# give diag's
echo "$0: could not obtain lock for $PROJECT/$PROJECTMAJOR"
# exit failure
exit 1
fi
# if this a new branch
#! prcs running on remote host
#! `rsh | wc` running on localhost
#! never forget the minor version number for the checkouts, it lets prcs keep
#! track of ancestry relationships
if [ "`rsh 2>/dev/null -l $PRCSUSER $PRCSHOST \"prcs 2>&1 info -fr $PROJECTMAJOR $PROJECT\" | wc -c`" -eq "0" ]; then
# if this is a new project
if [ "`rsh 2>/dev/null -l $PRCSUSER $PRCSHOST \"prcs 2>&1 info -f $PROJECT\" | wc -c`" -eq "0" ]; then
# perform sanity test : is parent branch not "-*-"
if [ "$PARENTMAJOR" != "-*-" ]; then
# internal error : give diagnostics
echo "$0: Internal error, existing parent branch for prcs ($PARENTMAJOR), "
echo "$0: for new project ($PROJECT)"
# release lock project/branch
ReleaseLock $PRCSHOST $PROJECT $PROJECTMAJOR `id -un`@`uname -n`"::$PPID($random)"
# exit failure
exit 1
fi
# if host file not on command line
if [ "$COMMANDLINEHOST" != "1" ]; then
# give diag's
echo "Creating new project requires host on command line"
# release lock project/branch
ReleaseLock $PRCSHOST $PROJECT $PROJECTMAJOR `id -un`@`uname -n`"::$PPID($random)"
# exit failure
exit 1
fi
# if user not allowed to create new projects
if ! HasProjectPermission $PRCSHOST `id -un` `uname -n` ; then
# release lock project/branch
ReleaseLock $PRCSHOST $PROJECT $PROJECTMAJOR `id -un`@`uname -n`"::$PPID($random)"
# exit failure
exit 1
fi
# add project to hosts file
#! do not omit the ending tab
echo >>$RPRCS_DATABASE/$HOSTSFILE "$PRCSHOST $PROJECT $PROJECTMAJOR "
# add project to remote branch file
rsh -l $PRCSUSER $PRCSHOST "echo >>\$PRCS_REPOSITORY/$BRANCHFILE \"`id -un`@`uname -n` \`uname -n\` $PROJECT $PROJECTMAJOR rwb\""
# else
else
# if user has no perm to create new branches from parent
if ! HasBranchPermission $PRCS_REPOSITORY $PROJECT $PARENTMAJOR ; then
# release lock project/branch
ReleaseLock $PRCSHOST $PROJECT $PROJECTMAJOR `id -un`@`uname -n`"::$PPID($random)"
# exit failure
exit 1
fi
# do checkout of parent branch in temp. dir
rsh -l $PRCSUSER $PRCSHOST "cd /tmp/.prcs/$PROJECT/$PROJECTMAJOR ; prcs 2>/dev/null checkout -fr $PARENTMAJOR.$PARENTMINOR $PROJECT"
fi
# else
else
# if no write permission on branch
if ! HasWritePermission $PRCSHOST $PROJECT $PROJECTMAJOR ; then
# release lock project/branch
ReleaseLock $PRCSHOST $PROJECT $PROJECTMAJOR `id -un`@`uname -n`"::$PPID($random)"
# exit failure
exit 1
fi
# do checkout of this branch
rsh -l $PRCSUSER $PRCSHOST "cd /tmp/.prcs/$PROJECT/$PROJECTMAJOR ; prcs 2>/dev/null checkout -fr $PROJECTMAJOR$DOTTEDPROJECTMINOR $PROJECT $*"
fi
#t place New-Version-Log on a line of its own in project descriptor
#t and user logging info in some specific format (user@host, date)
#sed <$PROJECT.prj >.$PROJECT.prj -e 's/\(^[[:space:]]*([[:space:]]*New-Version-Log[[:space:]]*"\)/\1\
#/g'
#t add user/host info in New-Version-Log entry
# construct an rsync include file from the files section in
# the project descriptor
awk <$PROJECT.prj '
BEGIN { x = 0 }
/^[[:space:]]*\(.*[[:space:]]*\((.*\/.*[[:space:]]*[0-9.]*[[:space:]]*[0-9.]*[[:space:]]*|)\).*\)[^\n]*$/ { if (x) print $1 }
/^\(Files/ { x = 1 }
' | cut >$PROJECT.rsyncincludefile -c2-
# add the project descriptor to the files to mirror
echo >>$PROJECT.rsyncincludefile $PROJECT.prj
# run rsync on directories
rsync $RSYNC_LOG_FORMAT -r --include-from $PROJECT.rsyncincludefile --exclude \* . prcs@$PRCSHOST:/tmp/.prcs/$PROJECT/$PROJECTMAJOR
# do checkin on server
rsh -l $PRCSUSER $PRCSHOST "cd /tmp/.prcs/$PROJECT/$PROJECTMAJOR ; prcs checkin -fr $PROJECTMAJOR $PRCSOPTIONS $PROJECT $*"
# perform rekey on server
#rsh -l $PRCSUSER $PRCSHOST "cd /tmp/.prcs/$PROJECT/$PROJECTMAJOR ; prcs -f rekey"
# do rsync on client
rsync $RSYNC_LOG_FORMAT -r --include-from $PROJECT.rsyncincludefile --exclude \* prcs@$PRCSHOST:/tmp/.prcs/$PROJECT/$PROJECTMAJOR/ .
# release lock project/branch
ReleaseLock $PRCSHOST $PROJECT $PROJECTMAJOR `id -un`@`uname -n`"::$PPID($random)"
;;
# checkout
checkout)
# if host not set from commandline
if [ "$COMMANDLINEHOST" = "" ]; then
# if can't get host from given project-branch
if ! HostFromProjectBranch $PRCS_REPOSITORY $PROJECT $PROJECTMAJOR ; then
# exit failure
exit 1
fi
fi
# if no lock for branch
if ! AcquireLock $PRCSHOST $PROJECT $PROJECTMAJOR `id -un`@`uname -n`"::$PPID($random)" ; then
# give diag's
echo "$0: could not obtain lock for $PROJECT/$PROJECTMAJOR"
# exit failure
exit 1
fi
# give diag's
echo "$0: Doing $PRCSCOMMAND for $PROJECT on branch $PROJECTMAJOR at $PRCSHOST"
# remove all files from the directory
rsh -l $PRCSUSER $PRCSHOST "rm 2>/dev/null -fr /tmp/.prcs/$PROJECT/$PROJECTMAJOR/* /tmp/.prcs/$PROJECT/$PROJECTMAJOR/.*"
# if project minor not set from command line
#t bad hack
if [ "$COMMANDLINEMINOR" != "1" ]; then
# reset dotted minor to get default minor from repo
DOTTEDPROJECTMINOR=
fi
# do checkout of this branch
rsh -l $PRCSUSER $PRCSHOST "cd /tmp/.prcs/$PROJECT/$PROJECTMAJOR ; prcs checkout -fr $PROJECTMAJOR$DOTTEDPROJECTMINOR $PRCSOPTIONS $PROJECT $*"
#echo $PRCSHOST
#echo $PROJECT
#echo $PROJECTMAJOR
# run rsync on directories
#! this also rsyncs the .<project>.prcs_aux file
#! we don't need it but don't mind
rsync $RSYNC_LOG_FORMAT -r prcs@$PRCSHOST:/tmp/.prcs/$PROJECT/$PROJECTMAJOR/ .
# release lock project/branch
ReleaseLock $PRCSHOST $PROJECT $PROJECTMAJOR `id -un`@`uname -n`"::$PPID($random)"
;;
# for branch
branch)
#t make distinction between adding and removing branches
# if command line contains no branch
# or contains minor
# or doesn't contain project name
if [ "$COMMANDLINEBRANCH" != "1" -o "$COMMANDLINEMINOR" = "1" -o "$COMMANDLINEPROJECT" != "1" -o "$COMMANDLINEHOST" != "1" ]; then
# give diagnostics
echo "$0: Branching requires -r without minor version number"
echo "$0: Branching requires project from command line"
echo "$0: Branching requires host from command line"
# exit faliure
exit 1
fi
# if no hostname given
if [ "$PRCSHOST" = "" ]; then
# give diagnostics
echo "$0: branching requires host on command line"
# exit failure
exit 1
fi
# give diag's
echo "$0: Mapping branch $PROJECTMAJOR for project $PROJECT to site $PRCSHOST"
# add the branch to the hosts file
#t remove the old entries first for project/branch
#! do not forget the terminating tab
echo >>$RPRCS_DATABASE/$HOSTSFILE "$PRCSHOST $PROJECT $PROJECTMAJOR "
;;
# for resync
resync)
# if host not set from commandline
if [ "$COMMANDLINEHOST" = "" ]; then
# if can't get host from given project-branch
if ! HostFromProjectBranch $PRCS_REPOSITORY $PROJECT $PROJECTMAJOR ; then
# exit failure
exit 1
fi
fi
# if no lock for branch
if ! AcquireLock $PRCSHOST $PROJECT $PROJECTMAJOR `id -un`@`uname -n`"::$PPID($random)" ; then
# give diag's
echo "$0: could not obtain lock for $PROJECT/$PROJECTMAJOR"
# exit failure
exit 1
fi
# count the number of revisions for the branch
#! to get rid of the annoying tabs produced by wc,
#! put between double backquotes
numberofrevisions=`echo \`rsh -l $PRCSUSER $PRCSHOST "cd /tmp/.prcs/$PROJECT/$PROJECTMAJOR ; prcs 2>&1 info -fr $PROJECTMAJOR $PROJECT | wc -l"\``
# if minor version not from command line
if [ "$COMMANDLINEMINOR" != "1" ]; then
# replace minor version with last in repo
PROJECTMINOR=`rsh -l $PRCSUSER $PRCSHOST "prcs 2>&1 info -fr $PROJECTMAJOR $PROJECT | tail -n 1 | cut -f 2 -d \" \" | cut -f 2 -d \".\""`
echo "$0: Default minor version resolved to $PROJECTMINOR"
fi
# give diagnostics
echo "$0: importing branch $PROJECTMAJOR for project $PROJECT from $PRCSHOST (total of $numberofrevisions revisions for that branch)"
echo "$0: starting at $PROJECT $PROJECTMAJOR.$PROJECTMINOR"
# if number of revisions is bigger than 0
if [ "$numberofrevisions" -gt "0" ]; then
# remove all files from the directory
rsh -l $PRCSUSER $PRCSHOST "rm 2>/dev/null -fr /tmp/.prcs/$PROJECT/$PROJECTMAJOR/* /tmp/.prcs/$PROJECT/$PROJECTMAJOR/.*"
# clear file with projects to sync
>$PROJECT.prj.ancestry
# while project has parents
PARENTMAJOR=$PROJECTMAJOR
PARENTMINOR=$PROJECTMINOR
PARENTPROJECT=$PROJECT
while [ "$PARENTMAJOR" != "-*-" ]; do
# add the project version and revision to the projects to sync
echo >>$PROJECT.prj.ancestry "-r $PARENTMAJOR.$PARENTMINOR $PARENTPROJECT"
# checkout the project descriptor
rsh -l $PRCSUSER $PRCSHOST "cd /tmp/.prcs/$PROJECT/$PROJECTMAJOR ; rm 2>/dev/null $PROJECT.prj ; prcs checkout -fr $PARENTMAJOR.$PARENTMINOR $PROJECT $PROJECT.prj"
# get parent project/branch/version from the project file
PARENTPROJECT=`rsh -l $PRCSUSER $PRCSHOST "cd /tmp/.prcs/$PROJECT/$PROJECTMAJOR ; grep 2>/dev/null \"Parent-Version\" *.prj | cut -d \" \" -f 2"`
PARENTMAJOR=`rsh -l $PRCSUSER $PRCSHOST "cd /tmp/.prcs/$PROJECT/$PROJECTMAJOR ; grep 2>/dev/null \"Parent-Version\" *.prj | cut -d \" \" -f 3"`
PARENTMINOR=`rsh -l $PRCSUSER $PRCSHOST "cd /tmp/.prcs/$PROJECT/$PROJECTMAJOR ; grep 2>/dev/null \"Parent-Version\" *.prj | cut -d \" \" -f 4 | cut -f 1 -d \")\""`
done
# give diag's
echo Project branch ancestry at $PRCSHOST : \(`echo \`cat $PROJECT.prj.ancestry\``\)
#echo `( cat $PROJECT.prj.ancestry && prcs 2>&1 info -fr $PROJECTMAJOR $PROJECT | cut -d " " -f 2 ) | sort | uniq -u`
# first parent is NULL version of last revision in ancestry file
PARENTMAJOR=`tail -n 1 $PROJECT.prj.ancestry | cut -f 2 -d " "`
PARENTMAJOR=`echo "$PARENTMAJOR" | sed -e "s/\(.*\)\.\(.*\)/\1/"`
PARENTMINOR=0
# create local repository entry
prcs admin init $PROJECT.prj
# loop over all revisions of the given branch
projectrevision=
for version in `tac $PROJECT.prj.ancestry`
do
if [ "$version" != "$PROJECT" ]; then
projectrevision="$projectrevision $version"
continue
fi
#! a last time needed
projectrevision="$projectrevision $version"
# if this revision is not yet in local repo
#! all info comes on stderr, no matter if any versions match
if [ `prcs 2>&1 info -f $projectrevision | grep -v "No versions" | wc -l ` -eq 0 ]; then
# local checkout parent project descriptor
#echo --1
prcs checkout -fr $PARENTMAJOR.$PARENTMINOR $PROJECT $PROJECT.prj
# get parent project/major/minor from local project descriptor
parentproject=`grep 2>/dev/null "Parent-Version" $PROJECT.prj | cut -d " " -f 2`
parentmajor=`grep 2>/dev/null "Parent-Version" $PROJECT.prj | cut -d " " -f 3`
parentminor=`grep 2>/dev/null "Parent-Version" $PROJECT.prj | cut -d " " -f 4 | cut -f 1 -d ")"`
# copy local files section to seperate file
FilesSectionCopy $PROJECT.prj $PROJECT.prj.localfiles
# remove all files from remote directory
rsh -l $PRCSUSER $PRCSHOST "rm 2>/dev/null -fr /tmp/.prcs/$PROJECT/$PROJECTMAJOR/* /tmp/.prcs/$PROJECT/$PROJECTMAJOR/.*"
# do remote checkout of current version
#echo --2
rsh -l $PRCSUSER $PRCSHOST "cd /tmp/.prcs/$PROJECT/$PROJECTMAJOR ; prcs checkout -f $projectrevision"
# run rsync on directories
if [ "$RSYNC_LOG_FORMAT" != "" ]; then
rsync >$version.rsync.log $RSYNC_LOG_FORMAT -r prcs@$PRCSHOST:/tmp/.prcs/$PROJECT/$PROJECTMAJOR/ .
else
rsync -r prcs@$PRCSHOST:/tmp/.prcs/$PROJECT/$PROJECTMAJOR/ .
fi
# remove the aux. file
rm 2>/dev/null .$PROJECT.prcs_aux
# copy remote files section to seperate file
FilesSectionCopy $PROJECT.prj $PROJECT.prj.remotefiles
# merge RCS revisions from local files into project descriptor
FilesSectionMerge >$PROJECT.prj.merged $PROJECT.prj.localfiles $PROJECT.prj.remotefiles $PROJECT.prj && mv $PROJECT.prj.merged $PROJECT.prj
# replace Merge-Parents with New-Merge-Parents and vice versa
MergeParentsSwitch $PROJECT.prj
#t get all New-Merge-Parents entries from descriptor
#t mkdir /tmp/$PPID
#t ( cd /tmp/$PPID ; rprcs resync $mergedparent $PROJECT )
# get project major/minor from remote checked out revision
#! [0-9][0-9]* should be equivalent to [0-9]+ , but that didn't work
projectmajor=`echo "$projectrevision" | sed -e "s/ -r \(.*\)\.\([0-9][0-9]*\).*$PROJECT/\1/"`
projectminor=`echo "$projectrevision" | sed -e "s/ -r \(.*\)\.\([0-9][0-9]*\).*$PROJECT/\2/"`
echo "version : ($projectrevision)"
#echo "major : ($projectmajor)"
#echo "minor : ($projectminor)"
# update branch/minor in project descriptor to parent revision
#echo "replacing 'Project-Version $PROJECT $projectmajor $projectminor' with 'Project-Version $PROJECT $PARENTMAJOR $PARENTMINOR'"
sed <$PROJECT.prj >$PROJECT.prj.sed -e "s/Project-Version[[:space:]][[:space:]]*$PROJECT[[:space:]][[:space:]]*$projectmajor[[:space:]][[:space:]]*$projectminor/Project-Version $PROJECT $PARENTMAJOR $PARENTMINOR/g" && mv $PROJECT.prj.sed $PROJECT.prj
# update parent project/branch/minor in project descriptor
#echo "replacing 'Parent-Version $PROJECT $PARENTMAJOR $PARENTMINOR' with 'Parent-Version $PROJECT $parentmajor $parentminor'"
#sed <$PROJECT.prj >$PROJECT.prj.sed -e "s/Parent-Version[[:space:]][[:space:]]*$PROJECT[[:space:]][[:space:]]*$PARENTMAJOR[[:space:]][[:space:]]*$PARENTMINOR/Parent-Version $PROJECT $parentmajor $parentminor/g" && mv $PROJECT.prj.sed $PROJECT.prj
# checkin current version in local repo
#echo --3
#t if a host name is given on the command line, we could
#t do 'rprcs checkin -h $hostname -r $projectmajor'
prcs checkin -fr $projectmajor
# remember current branch/revision as parent branch/revision
PARENTMAJOR=$projectmajor
PARENTMINOR=$projectminor
else
# get project major/minor from remote checked out revision
projectmajor=`echo "$projectrevision" | sed -e "s/ -r \(.*\)\.\([0-9][0-9]*\).*$PROJECT/\1/"`
projectminor=`echo "$projectrevision" | sed -e "s/ -r \(.*\)\.\([0-9][0-9]*\).*$PROJECT/\2/"`
# remember current branch/revision as parent branch/revision
PARENTMAJOR=$projectmajor
PARENTMINOR=$projectminor
#t here is the place to do a consistency check : no diffs
#t between remote and local version
# give info : already in local repo
echo "($projectrevision) already in local repository"
fi
projectrevision=
done
fi
# release lock project/branch
ReleaseLock $PRCSHOST $PROJECT $PROJECTMAJOR `id -un`@`uname -n`"::$PPID($random)"
;;
# init
init)
# add project to rprcs project list
echo "$0: init for project $PROJECT"
;;
# populate
populate)
# populate with local prcs
echo "$0: populate for project $PROJECT"
prcs populate $PRCSOPTIONS $PROJECT $*
;;
# depopulate
depopulate)
# depopulate with local prcs
echo "$0: depopulate for project $PROJECT"
prcs depopulate $PRCSOPTIONS $PROJECT $*
;;
# merge
merge)
# resync remote branches
# merge with local prcs
echo "$0: merge for project $PROJECT"
echo "Not yet implemented"
;;
# info
info)
# give info on local branches
echo "$0: info for project $PROJECT"
# if host not set from commandline
if [ "$COMMANDLINEHOST" = "" ]; then
# if can't get host from given project-branch
if ! HostFromProjectBranch $PRCS_REPOSITORY $PROJECT $PROJECTMAJOR ; then
# exit failure
exit 1
fi
fi
# give info on remote site repo
rsh -l $PRCSUSER $PRCSHOST "prcs info -f $PRCSOPTIONS $PROJECT $*"
;;
# status
help)
# give diag's
echo "$0: prcs front end with extensions to maintain remote branches"
echo "$0: to get info on prcs visit http://www.xcf.berkeley.edu/"
;;
# all other cases
*)
# give diagnostics : usage
echo "$0: Usage: $0 <command>"
echo
echo "where command is one of (you gave $PRCSCOMMAND)"
echo " checkin"
echo " checkout"
echo " help"
echo " resync"
echo " init"
echo " info"
echo " populate"
echo " populate"
echo " branch"
exit 1
;;
esac
|