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 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473
|
// This file is part of par2cmdline (a PAR 2.0 compatible file verification and
// repair tool). See http://parchive.sourceforge.net for details of PAR 2.0.
//
// Copyright (c) 2003 Peter Brian Clements
//
// par2cmdline 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.
//
// par2cmdline is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
#include "par2cmdline.h"
#ifdef _MSC_VER
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
#endif
Par2Repairer::Par2Repairer(void)
{
firstpacket = true;
mainpacket = 0;
creatorpacket = 0;
blocksize = 0;
sourceblockcount = 0;
blocksallocated = false;
availableblockcount = 0;
missingblockcount = 0;
completefilecount = 0;
renamedfilecount = 0;
damagedfilecount = 0;
missingfilecount = 0;
inputbuffer = 0;
outputbuffer = 0;
noiselevel = CommandLine::nlNormal;
headers = new ParHeaders;
alreadyloaded = false;
}
Par2Repairer::~Par2Repairer(void)
{
delete [] (u8*)inputbuffer;
delete [] (u8*)outputbuffer;
map<u32,RecoveryPacket*>::iterator rp = recoverypacketmap.begin();
while (rp != recoverypacketmap.end())
{
delete (*rp).second;
++rp;
}
map<MD5Hash,Par2RepairerSourceFile*>::iterator sf = sourcefilemap.begin();
while (sf != sourcefilemap.end())
{
Par2RepairerSourceFile *sourcefile = (*sf).second;
delete sourcefile;
++sf;
}
delete mainpacket;
delete creatorpacket;
delete headers;
}
Result Par2Repairer::PreProcess(const CommandLine &commandline)
{
//sig_filename.emit("coucou cmoa");
// What noiselevel are we using
noiselevel = commandline.GetNoiseLevel();
// Get filesnames from the command line
string par2filename = commandline.GetParFilename();
const list<CommandLine::ExtraFile> &extrafiles = commandline.GetExtraFiles();
// Determine the searchpath from the location of the main PAR2 file
string name;
DiskFile::SplitFilename(par2filename, searchpath, name);
// Load packets from the main PAR2 file
if (!LoadPacketsFromFile(searchpath + name))
return eLogicError;
// Load packets from other PAR2 files with names based on the original PAR2 file
if (!LoadPacketsFromOtherFiles(par2filename))
return eLogicError;
// Load packets from any other PAR2 files whose names are given on the command line
if (!LoadPacketsFromExtraFiles(extrafiles))
return eLogicError;
if (noiselevel > CommandLine::nlQuiet)
cout << endl;
// Check that the packets are consistent and discard any that are not
if (!CheckPacketConsistency())
return eInsufficientCriticalData;
// Use the information in the main packet to get the source files
// into the correct order and determine their filenames
if (!CreateSourceFileList())
return eLogicError;
// Determine the total number of DataBlocks for the recoverable source files
// The allocate the DataBlocks and assign them to each source file
if (!AllocateSourceBlocks())
return eLogicError;
headers->setid = setid.print();
headers->block_size = blocksize;
headers->chunk_size = chunksize;
headers->data_blocks = sourceblockcount;
headers->data_size = totalsize;
headers->recoverable_files = mainpacket->RecoverableFileCount();
headers->other_files =
mainpacket->TotalFileCount() - mainpacket->RecoverableFileCount();
sig_headers.emit(headers);
/*
cout << "Values:" << endl <<
"setid: " << setid << endl <<
"blocksize: " << blocksize << endl <<
"chunksize: " << chunksize << endl <<
"sourceblockcount: " << sourceblockcount << endl <<
"availableblockcount: " << availableblockcount << endl <<
"missingblockcount: " << missingblockcount << endl <<
"completefilecount: " << completefilecount << endl <<
"renamedfilecount: " << renamedfilecount << endl <<
"damagedfilecount: " << damagedfilecount << endl <<
"missingfilecount: " << missingfilecount << endl <<
"progress: " << progress << endl <<
"totaldata: " << totaldata << endl <<
"totalsize: " << totalsize << endl <<
"RecoverableFileCount: " << mainpacket->RecoverableFileCount() << endl <<
"TotalFileCount: " << mainpacket->TotalFileCount() << endl;
*/
return eSuccess;
}
Result Par2Repairer::Process(const CommandLine &commandline, bool dorepair)
{
//sig_filename.emit("coucou cmoa");
// What noiselevel are we using
noiselevel = commandline.GetNoiseLevel();
// Get filesnames from the command line
string par2filename = commandline.GetParFilename();
const list<CommandLine::ExtraFile> &extrafiles = commandline.GetExtraFiles();
// Determine the searchpath from the location of the main PAR2 file
string name;
DiskFile::SplitFilename(par2filename, searchpath, name);
// Load packets from the main PAR2 file
/* if (!LoadPacketsFromFile(searchpath + name))
return eLogicError;
// Load packets from other PAR2 files with names based on the original PAR2 file
if (!LoadPacketsFromOtherFiles(par2filename))
return eLogicError;
// Load packets from any other PAR2 files whose names are given on the command line
if (!LoadPacketsFromExtraFiles(extrafiles))
return eLogicError;
if (noiselevel > CommandLine::nlQuiet)
cout << endl;
// Check that the packets are consistent and discard any that are not
if (!CheckPacketConsistency())
return eInsufficientCriticalData;
// Use the information in the main packet to get the source files
// into the correct order and determine their filenames
if (!CreateSourceFileList())
return eLogicError;
// Determine the total number of DataBlocks for the recoverable source files
// The allocate the DataBlocks and assign them to each source file
if (!AllocateSourceBlocks())
return eLogicError;
*/
// ---------- /Header -------------
// Create a verification hash table for all files for which we have not
// found a complete version of the file and for which we have
// a verification packet
if (!alreadyloaded) {
if (!PrepareVerificationHashTable())
return eLogicError;
// Compute the table for the sliding CRC computation
if (!ComputeWindowTable())
return eLogicError;
if (noiselevel > CommandLine::nlQuiet)
cout << endl << "Verifying source files:" << endl << endl;
// Attempt to verify all of the source files
if (!VerifySourceFiles())
return eFileIOError;
if (completefilecount<mainpacket->RecoverableFileCount())
{
if (noiselevel > CommandLine::nlQuiet)
cout << endl << "Scanning extra files:" << endl << endl;
// Scan any extra files specified on the command line
if (!VerifyExtraFiles(extrafiles))
return eLogicError;
}
// Find out how much data we have found
UpdateVerificationResults();
alreadyloaded = true;
}
if (noiselevel > CommandLine::nlSilent)
cout << endl;
// Check the verification results and report the results
if (!CheckVerificationResults())
return eRepairNotPossible;
// Are any of the files incomplete
if (completefilecount<mainpacket->RecoverableFileCount())
{
// Do we want to carry out a repair
if (dorepair)
{
if (noiselevel > CommandLine::nlSilent)
cout << endl;
// Rename any damaged or missnamed target files.
if (!RenameTargetFiles())
return eFileIOError;
// Are we still missing any files
if (completefilecount<mainpacket->RecoverableFileCount())
{
// Work out which files are being repaired, create them, and allocate
// target DataBlocks to them, and remember them for later verification.
if (!CreateTargetFiles())
return eFileIOError;
// Work out which data blocks are available, which need to be copied
// directly to the output, and which need to be recreated, and compute
// the appropriate Reed Solomon matrix.
if (!ComputeRSmatrix())
{
// Delete all of the partly reconstructed files
DeleteIncompleteTargetFiles();
return eFileIOError;
}
if (noiselevel > CommandLine::nlSilent)
cout << endl;
// Allocate memory buffers for reading and writing data to disk.
if (!AllocateBuffers(commandline.GetMemoryLimit()))
{
// Delete all of the partly reconstructed files
DeleteIncompleteTargetFiles();
return eMemoryError;
}
// Set the total amount of data to be processed.
progress = 0;
totaldata = blocksize * sourceblockcount * (missingblockcount > 0 ? missingblockcount : 1);
// Start at an offset of 0 within a block.
u64 blockoffset = 0;
while (blockoffset < blocksize) // Continue until the end of the block.
{
// Work out how much data to process this time.
size_t blocklength = (size_t)min((u64)chunksize, blocksize-blockoffset);
// Read source data, process it through the RS matrix and write it to disk.
if (!ProcessData(blockoffset, blocklength))
{
// Delete all of the partly reconstructed files
DeleteIncompleteTargetFiles();
return eFileIOError;
}
// Advance to the need offset within each block
blockoffset += blocklength;
}
if (noiselevel > CommandLine::nlSilent)
cout << endl << "Verifying repaired files:" << endl << endl;
// Verify that all of the reconstructed target files are now correct
if (!VerifyTargetFiles())
{
// Delete all of the partly reconstructed files
DeleteIncompleteTargetFiles();
return eFileIOError;
}
}
// Are all of the target files now complete?
if (completefilecount<mainpacket->RecoverableFileCount())
{
cerr << "Repair Failed." << endl;
return eRepairFailed;
}
else
{
if (noiselevel > CommandLine::nlSilent)
cout << endl << "Repair complete." << endl;
}
}
else
{
return eRepairPossible;
}
}
return eSuccess;
}
// Load the packets from the specified file
bool Par2Repairer::LoadPacketsFromFile(string filename)
{
// Skip the file if it has already been processed
if (diskFileMap.Find(filename) != 0)
{
return true;
}
DiskFile *diskfile = new DiskFile;
// Open the file
if (!diskfile->Open(filename))
{
// If we could not open the file, ignore the error and
// proceed to the next file
delete diskfile;
return true;
}
if (noiselevel > CommandLine::nlSilent)
{
string path;
string name;
DiskFile::SplitFilename(filename, path, name);
cout << "Loading \"" << name << "\"." << endl;
sig_filename.emit(name);
}
// How many useable packets have we found
u32 packets = 0;
// How many recovery packets were there
u32 recoverypackets = 0;
// How big is the file
u64 filesize = diskfile->FileSize();
if (filesize > 0)
{
// Allocate a buffer to read data into
// The buffer should be large enough to hold a whole
// critical packet (i.e. file verification, file description, main,
// and creator), but not necessarily a whole recovery packet.
size_t buffersize = (size_t)min((u64)1048576, filesize);
u8 *buffer = new u8[buffersize];
// Progress indicator
u64 progress = 0;
// Start at the beginning of the file
u64 offset = 0;
// Continue as long as there is at least enough for the packet header
while (offset + sizeof(PACKET_HEADER) <= filesize)
{
if (noiselevel > CommandLine::nlQuiet)
{
// Update a progress indicator
u32 oldfraction = (u32)(1000 * progress / filesize);
u32 newfraction = (u32)(1000 * offset / filesize);
if (oldfraction != newfraction)
{
cout << "Loading: " << newfraction/10 << '.' << newfraction%10 << "%\r" << flush;
progress = offset;
sig_progress.emit(newfraction);
}
}
// Attempt to read the next packet header
PACKET_HEADER header;
if (!diskfile->Read(offset, &header, sizeof(header)))
break;
// Does this look like it might be a packet
if (packet_magic != header.magic)
{
offset++;
// Is there still enough for at least a whole packet header
while (offset + sizeof(PACKET_HEADER) <= filesize)
{
// How much can we read into the buffer
size_t want = (size_t)min((u64)buffersize, filesize-offset);
// Fill the buffer
if (!diskfile->Read(offset, buffer, want))
{
offset = filesize;
break;
}
// Scan the buffer for the magic value
u8 *current = buffer;
u8 *limit = &buffer[want-sizeof(PACKET_HEADER)];
while (current <= limit && packet_magic != ((PACKET_HEADER*)current)->magic)
{
current++;
}
// What file offset did we reach
offset += current-buffer;
// Did we find the magic
if (current <= limit)
{
memcpy(&header, current, sizeof(header));
break;
}
}
// Did we reach the end of the file
if (offset + sizeof(PACKET_HEADER) > filesize)
{
break;
}
}
// We have found the magic
// Check the packet length
if (sizeof(PACKET_HEADER) > header.length || // packet length is too small
0 != (header.length & 3) || // packet length is not a multiple of 4
filesize < offset + header.length) // packet would extend beyond the end of the file
{
offset++;
continue;
}
// Compute the MD5 Hash of the packet
MD5Context context;
context.Update(&header.setid, sizeof(header)-offsetof(PACKET_HEADER, setid));
// How much more do I need to read to get the whole packet
u64 current = offset+sizeof(PACKET_HEADER);
u64 limit = offset+header.length;
while (current < limit)
{
size_t want = (size_t)min((u64)buffersize, limit-current);
if (!diskfile->Read(current, buffer, want))
break;
context.Update(buffer, want);
current += want;
}
// Did the whole packet get processed
if (current<limit)
{
offset++;
continue;
}
// Check the calculated packet hash against the value in the header
MD5Hash hash;
context.Final(hash);
if (hash != header.hash)
{
offset++;
continue;
}
// If this is the first packet that we have found then record the setid
if (firstpacket)
{
setid = header.setid;
firstpacket = false;
}
// Is the packet from the correct set
if (setid == header.setid)
{
// Is it a packet type that we are interested in
if (recoveryblockpacket_type == header.type)
{
if (LoadRecoveryPacket(diskfile, offset, header))
{
recoverypackets++;
packets++;
}
}
else if (fileverificationpacket_type == header.type)
{
if (LoadVerificationPacket(diskfile, offset, header))
{
packets++;
}
}
else if (filedescriptionpacket_type == header.type)
{
if (LoadDescriptionPacket(diskfile, offset, header))
{
packets++;
}
}
else if (mainpacket_type == header.type)
{
if (LoadMainPacket(diskfile, offset, header))
{
packets++;
}
}
else if (creatorpacket_type == header.type)
{
if (LoadCreatorPacket(diskfile, offset, header))
{
packets++;
}
}
}
// Advance to the next packet
offset += header.length;
}
delete [] buffer;
}
// We have finished with the file for now
diskfile->Close();
// Did we actually find any interesting packets
if (packets > 0)
{
if (noiselevel > CommandLine::nlQuiet)
{
cout << "Loaded " << packets << " new packets";
if (recoverypackets > 0) cout << " including " << recoverypackets << " recovery blocks";
cout << endl;
}
// Remember that the file was processed
bool success = diskFileMap.Insert(diskfile);
assert(success);
}
else
{
if (noiselevel > CommandLine::nlQuiet)
cout << "No new packets found" << endl;
delete diskfile;
}
return true;
}
// Finish loading a recovery packet
bool Par2Repairer::LoadRecoveryPacket(DiskFile *diskfile, u64 offset, PACKET_HEADER &header)
{
RecoveryPacket *packet = new RecoveryPacket;
// Load the packet from disk
if (!packet->Load(diskfile, offset, header))
{
delete packet;
return false;
}
// What is the exponent value of this recovery packet
u32 exponent = packet->Exponent();
// Try to insert the new packet into the recovery packet map
pair<map<u32,RecoveryPacket*>::const_iterator, bool> location = recoverypacketmap.insert(pair<u32,RecoveryPacket*>(exponent, packet));
// Did the insert fail
if (!location.second)
{
// The packet must be a duplicate of one we already have
delete packet;
return false;
}
return true;
}
// Finish loading a file description packet
bool Par2Repairer::LoadDescriptionPacket(DiskFile *diskfile, u64 offset, PACKET_HEADER &header)
{
DescriptionPacket *packet = new DescriptionPacket;
// Load the packet from disk
if (!packet->Load(diskfile, offset, header))
{
delete packet;
return false;
}
// What is the fileid
const MD5Hash &fileid = packet->FileId();
// Look up the fileid in the source file map for an existing source file entry
map<MD5Hash, Par2RepairerSourceFile*>::iterator sfmi = sourcefilemap.find(fileid);
Par2RepairerSourceFile *sourcefile = (sfmi == sourcefilemap.end()) ? 0 :sfmi->second;
// Was there an existing source file
if (sourcefile)
{
// Does the source file already have a description packet
if (sourcefile->GetDescriptionPacket())
{
// Yes. We don't need another copy
delete packet;
return false;
}
else
{
// No. Store the packet in the source file
sourcefile->SetDescriptionPacket(packet);
return true;
}
}
else
{
// Create a new source file for the packet
sourcefile = new Par2RepairerSourceFile(packet, NULL);
// Record the source file in the source file map
sourcefilemap.insert(pair<MD5Hash, Par2RepairerSourceFile*>(fileid, sourcefile));
return true;
}
}
// Finish loading a file verification packet
bool Par2Repairer::LoadVerificationPacket(DiskFile *diskfile, u64 offset, PACKET_HEADER &header)
{
VerificationPacket *packet = new VerificationPacket;
// Load the packet from disk
if (!packet->Load(diskfile, offset, header))
{
delete packet;
return false;
}
// What is the fileid
const MD5Hash &fileid = packet->FileId();
// Look up the fileid in the source file map for an existing source file entry
map<MD5Hash, Par2RepairerSourceFile*>::iterator sfmi = sourcefilemap.find(fileid);
Par2RepairerSourceFile *sourcefile = (sfmi == sourcefilemap.end()) ? 0 :sfmi->second;
// Was there an existing source file
if (sourcefile)
{
// Does the source file already have a verification packet
if (sourcefile->GetVerificationPacket())
{
// Yes. We don't need another copy.
delete packet;
return false;
}
else
{
// No. Store the packet in the source file
sourcefile->SetVerificationPacket(packet);
return true;
}
}
else
{
// Create a new source file for the packet
sourcefile = new Par2RepairerSourceFile(NULL, packet);
// Record the source file in the source file map
sourcefilemap.insert(pair<MD5Hash, Par2RepairerSourceFile*>(fileid, sourcefile));
return true;
}
}
// Finish loading the main packet
bool Par2Repairer::LoadMainPacket(DiskFile *diskfile, u64 offset, PACKET_HEADER &header)
{
// Do we already have a main packet
if (0 != mainpacket)
return false;
MainPacket *packet = new MainPacket;
// Load the packet from disk;
if (!packet->Load(diskfile, offset, header))
{
delete packet;
return false;
}
mainpacket = packet;
return true;
}
// Finish loading the creator packet
bool Par2Repairer::LoadCreatorPacket(DiskFile *diskfile, u64 offset, PACKET_HEADER &header)
{
// Do we already have a creator packet
if (0 != creatorpacket)
return false;
CreatorPacket *packet = new CreatorPacket;
// Load the packet from disk;
if (!packet->Load(diskfile, offset, header))
{
delete packet;
return false;
}
creatorpacket = packet;
return true;
}
// Load packets from other PAR2 files with names based on the original PAR2 file
bool Par2Repairer::LoadPacketsFromOtherFiles(string filename)
{
// Split the original PAR2 filename into path and name parts
string path;
string name;
DiskFile::SplitFilename(filename, path, name);
string::size_type where;
// Trim ".par2" off of the end original name
// Look for the last "." in the filename
while (string::npos != (where = name.find_last_of('.')))
{
// Trim what follows the last .
string tail = name.substr(where+1);
name = name.substr(0,where);
// Was what followed the last "." "par2"
if (0 == stricmp(tail.c_str(), "par2"))
break;
}
// If what is left ends in ".volNNN-NNN" or ".volNNN+NNN" strip that as well
// Is there another "."
if (string::npos != (where = name.find_last_of('.')))
{
// What follows the "."
string tail = name.substr(where+1);
// Scan what follows the last "." to see of it matches vol123-456 or vol123+456
int n = 0;
string::const_iterator p;
for (p=tail.begin(); p!=tail.end(); ++p)
{
char ch = *p;
if (0 == n)
{
if (tolower(ch) == 'v') { n++; } else { break; }
}
else if (1 == n)
{
if (tolower(ch) == 'o') { n++; } else { break; }
}
else if (2 == n)
{
if (tolower(ch) == 'l') { n++; } else { break; }
}
else if (3 == n)
{
if (isdigit(ch)) {} else if (ch == '-' || ch == '+') { n++; } else { break; }
}
else if (4 == n)
{
if (isdigit(ch)) {} else { break; }
}
}
// If we matched then retain only what preceeds the "."
if (p == tail.end())
{
name = name.substr(0,where);
}
}
// Find files called "*.par2" or "name.*.par2"
{
string wildcard = name.empty() ? "*.par2" : name + ".*.par2";
list<string> *files = DiskFile::FindFiles(path, wildcard);
// Load packets from each file that was found
for (list<string>::const_iterator s=files->begin(); s!=files->end(); ++s)
{
LoadPacketsFromFile(*s);
}
delete files;
}
{
string wildcard = name.empty() ? "*.PAR2" : name + ".*.PAR2";
list<string> *files = DiskFile::FindFiles(path, wildcard);
// Load packets from each file that was found
for (list<string>::const_iterator s=files->begin(); s!=files->end(); ++s)
{
LoadPacketsFromFile(*s);
}
delete files;
}
return true;
}
// Load packets from any other PAR2 files whose names are given on the command line
bool Par2Repairer::LoadPacketsFromExtraFiles(const list<CommandLine::ExtraFile> &extrafiles)
{
for (ExtraFileIterator i=extrafiles.begin(); i!=extrafiles.end(); i++)
{
string filename = i->FileName();
// If the filename contains ".par2" anywhere
if (string::npos != filename.find(".par2") ||
string::npos != filename.find(".PAR2"))
{
LoadPacketsFromFile(filename);
}
}
return true;
}
// Check that the packets are consistent and discard any that are not
bool Par2Repairer::CheckPacketConsistency(void)
{
// Do we have a main packet
if (0 == mainpacket)
{
// If we don't have a main packet, then there is nothing more that we can do.
// We cannot verify or repair any files.
cerr << "Main packet not found." << endl;
return false;
}
// Remember the block size from the main packet
blocksize = mainpacket->BlockSize();
// Check that the recovery blocks have the correct amount of data
// and discard any that don't
{
map<u32,RecoveryPacket*>::iterator rp = recoverypacketmap.begin();
while (rp != recoverypacketmap.end())
{
if (rp->second->BlockSize() == blocksize)
{
++rp;
}
else
{
cerr << "Incorrect sized recovery block for exponent " << rp->second->Exponent() << " discarded" << endl;
delete rp->second;
map<u32,RecoveryPacket*>::iterator x = rp++;
recoverypacketmap.erase(x);
}
}
}
// Check for source files that have no description packet or where the
// verification packet has the wrong number of entries and discard them.
{
map<MD5Hash, Par2RepairerSourceFile*>::iterator sf = sourcefilemap.begin();
while (sf != sourcefilemap.end())
{
// Do we have a description packet
DescriptionPacket *descriptionpacket = sf->second->GetDescriptionPacket();
if (descriptionpacket == 0)
{
// No description packet
// Discard the source file
delete sf->second;
map<MD5Hash, Par2RepairerSourceFile*>::iterator x = sf++;
sourcefilemap.erase(x);
continue;
}
// Compute and store the block count from the filesize and blocksize
sf->second->SetBlockCount(blocksize);
// Do we have a verification packet
VerificationPacket *verificationpacket = sf->second->GetVerificationPacket();
if (verificationpacket == 0)
{
// No verification packet
// That is ok, but we won't be able to use block verification.
// Proceed to the next file.
++sf;
continue;
}
// Work out the block count for the file from the file size
// and compare that with the verification packet
u64 filesize = descriptionpacket->FileSize();
u32 blockcount = verificationpacket->BlockCount();
if ((filesize + blocksize-1) / blocksize != (u64)blockcount)
{
// The block counts are different!
cerr << "Incorrectly sized verification packet for \"" << descriptionpacket->FileName() << "\" discarded" << endl;
// Discard the source file
delete sf->second;
map<MD5Hash, Par2RepairerSourceFile*>::iterator x = sf++;
sourcefilemap.erase(x);
continue;
}
// Everything is ok.
// Proceed to the next file
++sf;
}
}
if (noiselevel > CommandLine::nlQuiet)
{
cout << "There are "
<< mainpacket->RecoverableFileCount()
<< " recoverable files and "
<< mainpacket->TotalFileCount() - mainpacket->RecoverableFileCount()
<< " other files."
<< endl;
cout << "The block size used was "
<< blocksize
<< " bytes."
<< endl;
}
return true;
}
// Use the information in the main packet to get the source files
// into the correct order and determine their filenames
bool Par2Repairer::CreateSourceFileList(void)
{
// For each FileId entry in the main packet
for (u32 filenumber=0; filenumber<mainpacket->TotalFileCount(); filenumber++)
{
const MD5Hash &fileid = mainpacket->FileId(filenumber);
// Look up the fileid in the source file map
map<MD5Hash, Par2RepairerSourceFile*>::iterator sfmi = sourcefilemap.find(fileid);
Par2RepairerSourceFile *sourcefile = (sfmi == sourcefilemap.end()) ? 0 :sfmi->second;
if (sourcefile)
{
sourcefile->ComputeTargetFileName(searchpath);
}
sourcefiles.push_back(sourcefile);
}
return true;
}
// Determine the total number of DataBlocks for the recoverable source files
// The allocate the DataBlocks and assign them to each source file
bool Par2Repairer::AllocateSourceBlocks(void)
{
sourceblockcount = 0;
u32 filenumber = 0;
vector<Par2RepairerSourceFile*>::iterator sf = sourcefiles.begin();
// For each recoverable source file
while (filenumber < mainpacket->RecoverableFileCount() && sf != sourcefiles.end())
{
// Do we have a source file
Par2RepairerSourceFile *sourcefile = *sf;
if (sourcefile)
{
sourceblockcount += sourcefile->BlockCount();
}
else
{
// No details for this source file so we don't know what the
// total number of source blocks is
// sourceblockcount = 0;
// break;
}
++sf;
++filenumber;
}
// Did we determine the total number of source blocks
if (sourceblockcount > 0)
{
// Yes.
// Allocate all of the Source and Target DataBlocks (which will be used
// to read and write data to disk).
sourceblocks.resize(sourceblockcount);
targetblocks.resize(sourceblockcount);
// Which DataBlocks will be allocated first
vector<DataBlock>::iterator sourceblock = sourceblocks.begin();
vector<DataBlock>::iterator targetblock = targetblocks.begin();
u32 blocknumber = 0;
totalsize = 0;
filenumber = 0;
sf = sourcefiles.begin();
while (filenumber < mainpacket->RecoverableFileCount() && sf != sourcefiles.end())
{
Par2RepairerSourceFile *sourcefile = *sf;
if (sourcefile)
{
totalsize += sourcefile->GetDescriptionPacket()->FileSize();
u32 blockcount = sourcefile->BlockCount();
// Allocate the source and target DataBlocks to the sourcefile
sourcefile->SetBlocks(blocknumber, blockcount, sourceblock, targetblock, blocksize);
blocknumber++;
sourceblock += blockcount;
targetblock += blockcount;
}
++sf;
++filenumber;
}
blocksallocated = true;
if (noiselevel > CommandLine::nlQuiet)
{
cout << "There are a total of "
<< sourceblockcount
<< " data blocks."
<< endl;
cout << "The total size of the data files is "
<< totalsize
<< " bytes."
<< endl;
}
}
return true;
}
// Create a verification hash table for all files for which we have not
// found a complete version of the file and for which we have
// a verification packet
bool Par2Repairer::PrepareVerificationHashTable(void)
{
// Choose a size for the hash table
verificationhashtable.SetLimit(sourceblockcount);
// Will any files be block verifiable
blockverifiable = false;
// For each source file
vector<Par2RepairerSourceFile*>::iterator sf = sourcefiles.begin();
while (sf != sourcefiles.end())
{
// Get the source file
Par2RepairerSourceFile *sourcefile = *sf;
if (sourcefile)
{
// Do we have a verification packet
if (0 != sourcefile->GetVerificationPacket())
{
// Yes. Load the verification entries into the hash table
verificationhashtable.Load(sourcefile, blocksize);
blockverifiable = true;
}
else
{
// No. We can only check the whole file
unverifiablesourcefiles.push_back(sourcefile);
}
}
++sf;
}
return true;
}
// Compute the table for the sliding CRC computation
bool Par2Repairer::ComputeWindowTable(void)
{
if (blockverifiable)
{
GenerateWindowTable(blocksize, windowtable);
windowmask = ComputeWindowMask(blocksize);
}
return true;
}
static bool SortSourceFilesByFileName(Par2RepairerSourceFile *low,
Par2RepairerSourceFile *high)
{
return low->TargetFileName() < high->TargetFileName();
}
// Attempt to verify all of the source files
bool Par2Repairer::VerifySourceFiles(void)
{
bool finalresult = true;
// Created a sorted list of the source files and verify them in that
// order rather than the order they are in the main packet.
vector<Par2RepairerSourceFile*> sortedfiles;
u32 filenumber = 0;
vector<Par2RepairerSourceFile*>::iterator sf = sourcefiles.begin();
while (sf != sourcefiles.end())
{
// Do we have a source file
Par2RepairerSourceFile *sourcefile = *sf;
if (sourcefile)
{
sortedfiles.push_back(sourcefile);
}
else
{
// Was this one of the recoverable files
if (filenumber < mainpacket->RecoverableFileCount())
{
cerr << "No details available for recoverable file number " << filenumber+1 << "." << endl << "Recovery will not be possible." << endl;
// Set error but let verification of other files continue
finalresult = false;
}
else
{
cerr << "No details available for non-recoverable file number " << filenumber - mainpacket->RecoverableFileCount() + 1 << endl;
}
}
++sf;
}
sort(sortedfiles.begin(), sortedfiles.end(), SortSourceFilesByFileName);
// Start verifying the files
sf = sortedfiles.begin();
while (sf != sortedfiles.end())
{
// Do we have a source file
Par2RepairerSourceFile *sourcefile = *sf;
// What filename does the file use
string filename = sourcefile->TargetFileName();
// Check to see if we have already used this file
if (diskFileMap.Find(filename) != 0)
{
// The file has already been used!
cerr << "Source file " << filenumber+1 << " is a duplicate." << endl;
return false;
}
DiskFile *diskfile = new DiskFile;
// Does the target file exist
if (diskfile->Open(filename))
{
// Yes. Record that fact.
sourcefile->SetTargetExists(true);
// Remember that the DiskFile is the target file
sourcefile->SetTargetFile(diskfile);
// Remember that we have processed this file
bool success = diskFileMap.Insert(diskfile);
assert(success);
// Do the actual verification
if (!VerifyDataFile(diskfile, sourcefile))
finalresult = false;
// We have finished with the file for now
diskfile->Close();
// Find out how much data we have found
UpdateVerificationResults();
}
else
{
// The file does not exist.
delete diskfile;
if (noiselevel > CommandLine::nlSilent)
{
string path;
string name;
DiskFile::SplitFilename(filename, path, name);
cout << "Target: \"" << name << "\" - missing." << endl;
sig_done.emit(name, 0, sourcefile->GetVerificationPacket() ? sourcefile->GetVerificationPacket()->BlockCount() : 0);
}
}
++sf;
}
return finalresult;
}
// Scan any extra files specified on the command line
bool Par2Repairer::VerifyExtraFiles(const list<CommandLine::ExtraFile> &extrafiles)
{
for (ExtraFileIterator i=extrafiles.begin();
i!=extrafiles.end() && completefilecount<mainpacket->RecoverableFileCount();
++i)
{
string filename = i->FileName();
// If the filename does not include ".par2" we are interested in it.
if (string::npos == filename.find(".par2") &&
string::npos == filename.find(".PAR2"))
{
filename = DiskFile::GetCanonicalPathname(filename);
// Has this file already been dealt with
if (diskFileMap.Find(filename) == 0)
{
DiskFile *diskfile = new DiskFile;
// Does the file exist
if (!diskfile->Open(filename))
{
delete diskfile;
continue;
}
// Remember that we have processed this file
bool success = diskFileMap.Insert(diskfile);
assert(success);
// Do the actual verification
VerifyDataFile(diskfile, 0);
// Ignore errors
// We have finished with the file for now
diskfile->Close();
// Find out how much data we have found
UpdateVerificationResults();
}
}
}
return true;
}
// Attempt to match the data in the DiskFile with the source file
bool Par2Repairer::VerifyDataFile(DiskFile *diskfile, Par2RepairerSourceFile *sourcefile)
{
MatchType matchtype; // What type of match was made
MD5Hash hashfull; // The MD5 Hash of the whole file
MD5Hash hash16k; // The MD5 Hash of the files 16k of the file
// Are there any files that can be verified at the block level
if (blockverifiable)
{
u32 count;
// Scan the file at the block level.
if (!ScanDataFile(diskfile, // [in] The file to scan
sourcefile, // [in/out] Modified in the match is for another source file
matchtype, // [out]
hashfull, // [out]
hash16k, // [out]
count)) // [out]
return false;
switch (matchtype)
{
case eNoMatch:
// No data was found at all.
// Continue to next test.
break;
case ePartialMatch:
{
// We found some data.
// Return them.
return true;
}
break;
case eFullMatch:
{
// We found a perfect match.
sourcefile->SetCompleteFile(diskfile);
// Return the match
return true;
}
break;
}
}
// We did not find a match for any blocks of data within the file, but if
// there are any files for which we did not have a verification packet
// we can try a simple match of the hash for the whole file.
// Are there any files that cannot be verified at the block level
if (unverifiablesourcefiles.size() > 0)
{
// Would we have already computed the file hashes
if (!blockverifiable)
{
u64 filesize = diskfile->FileSize();
size_t buffersize = 1024*1024;
if (buffersize > min(blocksize, filesize))
buffersize = (size_t)min(blocksize, filesize);
char *buffer = new char[buffersize];
u64 offset = 0;
MD5Context context;
while (offset < filesize)
{
size_t want = (size_t)min((u64)buffersize, filesize-offset);
if (!diskfile->Read(offset, buffer, want))
{
delete [] buffer;
return false;
}
// Will the newly read data reach the 16k boundary
if (offset < 16384 && offset + want >= 16384)
{
context.Update(buffer, (size_t)(16384-offset));
// Compute the 16k hash
MD5Context temp = context;
temp.Final(hash16k);
// Is there more data
if (offset + want > 16384)
{
context.Update(&buffer[16384-offset], (size_t)(offset+want)-16384);
}
}
else
{
context.Update(buffer, want);
}
offset += want;
}
// Compute the file hash
MD5Hash hashfull;
context.Final(hashfull);
// If we did not have 16k of data, then the 16k hash
// is the same as the full hash
if (filesize < 16384)
{
hash16k = hashfull;
}
}
list<Par2RepairerSourceFile*>::iterator sf = unverifiablesourcefiles.begin();
// Compare the hash values of each source file for a match
while (sf != unverifiablesourcefiles.end())
{
sourcefile = *sf;
// Does the file match
if (sourcefile->GetCompleteFile() == 0 &&
diskfile->FileSize() == sourcefile->GetDescriptionPacket()->FileSize() &&
hash16k == sourcefile->GetDescriptionPacket()->Hash16k() &&
hashfull == sourcefile->GetDescriptionPacket()->HashFull())
{
if (noiselevel > CommandLine::nlSilent)
cout << diskfile->FileName() << " is a perfect match for " << sourcefile->GetDescriptionPacket()->FileName() << endl;
// Record that we have a perfect match for this source file
sourcefile->SetCompleteFile(diskfile);
if (blocksallocated)
{
// Allocate all of the DataBlocks for the source file to the DiskFile
u64 offset = 0;
u64 filesize = sourcefile->GetDescriptionPacket()->FileSize();
vector<DataBlock>::iterator sb = sourcefile->SourceBlocks();
while (offset < filesize)
{
DataBlock &datablock = *sb;
datablock.SetLocation(diskfile, offset);
datablock.SetLength(min(blocksize, filesize-offset));
offset += blocksize;
++sb;
}
}
// Return the match
return true;
}
++sf;
}
}
return true;
}
// Perform a sliding window scan of the DiskFile looking for blocks of data that
// might belong to any of the source files (for which a verification packet was
// available). If a block of data might be from more than one source file, prefer
// the one specified by the "sourcefile" parameter. If the first data block
// found is for a different source file then "sourcefile" is changed accordingly.
bool Par2Repairer::ScanDataFile(DiskFile *diskfile, // [in]
Par2RepairerSourceFile* &sourcefile, // [in/out]
MatchType &matchtype, // [out]
MD5Hash &hashfull, // [out]
MD5Hash &hash16k, // [out]
u32 &count) // [out]
{
// Remember which file we wanted to match
Par2RepairerSourceFile *originalsourcefile = sourcefile;
matchtype = eNoMatch;
// Is the file empty
if (diskfile->FileSize() == 0)
{
// If the file is empty, then just return
return true;
}
string path;
string name;
DiskFile::SplitFilename(diskfile->FileName(), path, name);
sig_filename.emit(name);
string shortname;
if (name.size() > 56)
{
shortname = name.substr(0, 28) + "..." + name.substr(name.size()-28);
}
else
{
shortname = name;
}
// Create the checksummer for the file and start reading from it
FileCheckSummer filechecksummer(diskfile, blocksize, windowtable, windowmask);
if (!filechecksummer.Start())
return false;
// Assume we will make a perfect match for the file
matchtype = eFullMatch;
// How many matches have we had
count = 0;
// How many blocks have already been found
u32 duplicatecount = 0;
// Have we found data blocks in this file that belong to more than one target file
bool multipletargets = false;
// Which block do we expect to find first
const VerificationHashEntry *nextentry = 0;
u64 progress = 0;
// Whilst we have not reached the end of the file
while (filechecksummer.Offset() < diskfile->FileSize())
{
if (noiselevel > CommandLine::nlQuiet)
{
// Update a progress indicator
u32 oldfraction = (u32)(1000 * progress / diskfile->FileSize());
u32 newfraction = (u32)(1000 * (progress = filechecksummer.Offset()) / diskfile->FileSize());
if (oldfraction != newfraction)
{
cout << "Scanning: \"" << shortname << "\": " << newfraction/10 << '.' << newfraction%10 << "%\r" << flush;
sig_progress.emit(newfraction);
}
}
// If we fail to find a match, it might be because it was a duplicate of a block
// that we have already found.
bool duplicate;
// Look for a match
const VerificationHashEntry *currententry = verificationhashtable.FindMatch(nextentry, sourcefile, filechecksummer, duplicate);
// Did we find a match
if (currententry != 0)
{
// Is this the first match
if (count == 0)
{
// Which source file was it
sourcefile = currententry->SourceFile();
// If the first match found was not actually the first block
// for the source file, or it was not at the start of the
// data file: then this is a partial match.
if (!currententry->FirstBlock() || filechecksummer.Offset() != 0)
{
matchtype = ePartialMatch;
}
}
else
{
// If the match found is not the one which was expected
// then this is a partial match
if (currententry != nextentry)
{
matchtype = ePartialMatch;
}
// Is the match from a different source file
if (sourcefile != currententry->SourceFile())
{
multipletargets = true;
}
}
if (blocksallocated)
{
// Record the match
currententry->SetBlock(diskfile, filechecksummer.Offset());
}
// Update the number of matches found
count++;
// What entry do we expect next
nextentry = currententry->Next();
// Advance to the next block
if (!filechecksummer.Jump(currententry->GetDataBlock()->GetLength()))
return false;
}
else
{
// This cannot be a perfect match
matchtype = ePartialMatch;
// Was this a duplicate match
if (duplicate)
{
duplicatecount++;
// What entry would we expect next
nextentry = 0;
// Advance one whole block
if (!filechecksummer.Jump(blocksize))
return false;
}
else
{
// What entry do we expect next
nextentry = 0;
// Advance 1 byte
if (!filechecksummer.Step())
return false;
}
}
}
// Get the Full and 16k hash values of the file
filechecksummer.GetFileHashes(hashfull, hash16k);
// Did we make any matches at all
if (count > 0)
{
// If this still might be a perfect match, check the
// hashes, file size, and number of blocks to confirm.
if (matchtype != eFullMatch ||
count != sourcefile->GetVerificationPacket()->BlockCount() ||
diskfile->FileSize() != sourcefile->GetDescriptionPacket()->FileSize() ||
hashfull != sourcefile->GetDescriptionPacket()->HashFull() ||
hash16k != sourcefile->GetDescriptionPacket()->Hash16k())
{
matchtype = ePartialMatch;
if (noiselevel > CommandLine::nlSilent)
{
// Did we find data from multiple target files
if (multipletargets)
{
// Were we scanning the target file or an extra file
if (originalsourcefile != 0)
{
cout << "Target: \""
<< name
<< "\" - damaged, found "
<< count
<< " data blocks from several target files."
<< endl;
}
else
{
cout << "File: \""
<< name
<< "\" - found "
<< count
<< " data blocks from several target files."
<< endl;
}
}
else
{
// Did we find data blocks that belong to the target file
if (originalsourcefile == sourcefile)
{
cout << "Target: \""
<< name
<< "\" - damaged. Found "
<< count
<< " of "
<< sourcefile->GetVerificationPacket()->BlockCount()
<< " data blocks."
<< endl;
}
// Were we scanning the target file or an extra file
else if (originalsourcefile != 0)
{
string targetname;
DiskFile::SplitFilename(sourcefile->TargetFileName(), path, targetname);
cout << "Target: \""
<< name
<< "\" - damaged. Found "
<< count
<< " of "
<< sourcefile->GetVerificationPacket()->BlockCount()
<< " data blocks from \""
<< targetname
<< "\"."
<< endl;
}
else
{
string targetname;
DiskFile::SplitFilename(sourcefile->TargetFileName(), path, targetname);
cout << "File: \""
<< name
<< "\" - found "
<< count
<< " of "
<< sourcefile->GetVerificationPacket()->BlockCount()
<< " data blocks from \""
<< targetname
<< "\"."
<< endl;
}
}
}
}
else
{
if (noiselevel > CommandLine::nlSilent)
{
// Did we match the target file
if (originalsourcefile == sourcefile)
{
cout << "Target: \"" << name << "\" - found." << endl;
}
// Were we scanning the target file or an extra file
else if (originalsourcefile != 0)
{
string targetname;
DiskFile::SplitFilename(sourcefile->TargetFileName(), path, targetname);
cout << "Target: \""
<< name
<< "\" - is a match for \""
<< targetname
<< "\"."
<< endl;
}
else
{
string targetname;
DiskFile::SplitFilename(sourcefile->TargetFileName(), path, targetname);
cout << "File: \""
<< name
<< "\" - is a match for \""
<< targetname
<< "\"."
<< endl;
}
}
}
}
else
{
matchtype = eNoMatch;
if (noiselevel > CommandLine::nlSilent)
{
// We found not data, but did the file actually contain blocks we
// had already found in other files.
if (duplicatecount > 0)
{
cout << "File: \""
<< name
<< "\" - found "
<< duplicatecount
<< " duplicate data blocks."
<< endl;
}
else
{
cout << "File: \""
<< name
<< "\" - no data found."
<< endl;
}
}
}
sig_done.emit(name,count, sourcefile->GetVerificationPacket() ? sourcefile->GetVerificationPacket()->BlockCount() : 0);
sig_progress.emit(1000.0);
return true;
}
// Find out how much data we have found
void Par2Repairer::UpdateVerificationResults(void)
{
availableblockcount = 0;
missingblockcount = 0;
completefilecount = 0;
renamedfilecount = 0;
damagedfilecount = 0;
missingfilecount = 0;
u32 filenumber = 0;
vector<Par2RepairerSourceFile*>::iterator sf = sourcefiles.begin();
// Check the recoverable files
while (sf != sourcefiles.end() && filenumber < mainpacket->TotalFileCount())
{
Par2RepairerSourceFile *sourcefile = *sf;
if (sourcefile)
{
// Was a perfect match for the file found
if (sourcefile->GetCompleteFile() != 0)
{
// Is it the target file or a different one
if (sourcefile->GetCompleteFile() == sourcefile->GetTargetFile())
{
completefilecount++;
}
else
{
renamedfilecount++;
}
availableblockcount += sourcefile->BlockCount();
}
else
{
// Count the number of blocks that have been found
vector<DataBlock>::iterator sb = sourcefile->SourceBlocks();
for (u32 blocknumber=0; blocknumber<sourcefile->BlockCount(); ++blocknumber, ++sb)
{
DataBlock &datablock = *sb;
if (datablock.IsSet())
availableblockcount++;
}
// Does the target file exist
if (sourcefile->GetTargetExists())
{
damagedfilecount++;
}
else
{
missingfilecount++;
}
}
}
else
{
missingfilecount++;
}
++filenumber;
++sf;
}
missingblockcount = sourceblockcount - availableblockcount;
}
// Check the verification results and report the results
bool Par2Repairer::CheckVerificationResults(void)
{
// Is repair needed
if (completefilecount < mainpacket->RecoverableFileCount() ||
renamedfilecount > 0 ||
damagedfilecount > 0 ||
missingfilecount > 0)
{
if (noiselevel > CommandLine::nlSilent)
cout << "Repair is required." << endl;
if (noiselevel > CommandLine::nlQuiet)
{
if (renamedfilecount > 0) cout << renamedfilecount << " file(s) have the wrong name." << endl;
if (missingfilecount > 0) cout << missingfilecount << " file(s) are missing." << endl;
if (damagedfilecount > 0) cout << damagedfilecount << " file(s) exist but are damaged." << endl;
if (completefilecount > 0) cout << completefilecount << " file(s) are ok." << endl;
cout << "You have " << availableblockcount
<< " out of " << sourceblockcount
<< " data blocks available." << endl;
if (recoverypacketmap.size() > 0)
cout << "You have " << (u32)recoverypacketmap.size()
<< " recovery blocks available." << endl;
}
// Is repair possible
if (recoverypacketmap.size() >= missingblockcount)
{
if (noiselevel > CommandLine::nlSilent)
cout << "Repair is possible." << endl;
if (noiselevel > CommandLine::nlQuiet)
{
if (recoverypacketmap.size() > missingblockcount)
cout << "You have an excess of "
<< (u32)recoverypacketmap.size() - missingblockcount
<< " recovery blocks." << endl;
if (missingblockcount > 0)
cout << missingblockcount
<< " recovery blocks will be used to repair." << endl;
else if (recoverypacketmap.size())
cout << "None of the recovery blocks will be used for the repair." << endl;
}
return true;
}
else
{
if (noiselevel > CommandLine::nlSilent)
{
cout << "Repair is not possible." << endl;
cout << "You need " << missingblockcount - recoverypacketmap.size()
<< " more recovery blocks to be able to repair." << endl;
}
return false;
}
}
else
{
if (noiselevel > CommandLine::nlSilent)
cout << "All files are correct, repair is not required." << endl;
return true;
}
return true;
}
// Rename any damaged or missnamed target files.
bool Par2Repairer::RenameTargetFiles(void)
{
u32 filenumber = 0;
vector<Par2RepairerSourceFile*>::iterator sf = sourcefiles.begin();
// Rename any damaged target files
while (sf != sourcefiles.end() && filenumber < mainpacket->TotalFileCount())
{
Par2RepairerSourceFile *sourcefile = *sf;
// If the target file exists but is not a complete version of the file
if (sourcefile->GetTargetExists() &&
sourcefile->GetTargetFile() != sourcefile->GetCompleteFile())
{
DiskFile *targetfile = sourcefile->GetTargetFile();
// Rename it
diskFileMap.Remove(targetfile);
if (!targetfile->Rename())
return false;
bool success = diskFileMap.Insert(targetfile);
assert(success);
// We no longer have a target file
sourcefile->SetTargetExists(false);
sourcefile->SetTargetFile(0);
}
++sf;
++filenumber;
}
filenumber = 0;
sf = sourcefiles.begin();
// Rename any missnamed but complete versions of the files
while (sf != sourcefiles.end() && filenumber < mainpacket->TotalFileCount())
{
Par2RepairerSourceFile *sourcefile = *sf;
// If there is no targetfile and there is a complete version
if (sourcefile->GetTargetFile() == 0 &&
sourcefile->GetCompleteFile() != 0)
{
DiskFile *targetfile = sourcefile->GetCompleteFile();
// Rename it
diskFileMap.Remove(targetfile);
if (!targetfile->Rename(sourcefile->TargetFileName()))
return false;
bool success = diskFileMap.Insert(targetfile);
assert(success);
// This file is now the target file
sourcefile->SetTargetExists(true);
sourcefile->SetTargetFile(targetfile);
// We have one more complete file
completefilecount++;
}
++sf;
++filenumber;
}
return true;
}
// Work out which files are being repaired, create them, and allocate
// target DataBlocks to them, and remember them for later verification.
bool Par2Repairer::CreateTargetFiles(void)
{
u32 filenumber = 0;
vector<Par2RepairerSourceFile*>::iterator sf = sourcefiles.begin();
// Create any missing target files
while (sf != sourcefiles.end() && filenumber < mainpacket->TotalFileCount())
{
Par2RepairerSourceFile *sourcefile = *sf;
// If the file does not exist
if (!sourcefile->GetTargetExists())
{
DiskFile *targetfile = new DiskFile;
string filename = sourcefile->TargetFileName();
u64 filesize = sourcefile->GetDescriptionPacket()->FileSize();
// Create the target file
if (!targetfile->Create(filename, filesize))
{
delete targetfile;
return false;
}
// This file is now the target file
sourcefile->SetTargetExists(true);
sourcefile->SetTargetFile(targetfile);
// Remember this file
bool success = diskFileMap.Insert(targetfile);
assert(success);
u64 offset = 0;
vector<DataBlock>::iterator tb = sourcefile->TargetBlocks();
// Allocate all of the target data blocks
while (offset < filesize)
{
DataBlock &datablock = *tb;
datablock.SetLocation(targetfile, offset);
datablock.SetLength(min(blocksize, filesize-offset));
offset += blocksize;
++tb;
}
// Add the file to the list of those that will need to be verified
// once the repair has completed.
verifylist.push_back(sourcefile);
}
++sf;
++filenumber;
}
return true;
}
// Work out which data blocks are available, which need to be copied
// directly to the output, and which need to be recreated, and compute
// the appropriate Reed Solomon matrix.
bool Par2Repairer::ComputeRSmatrix(void)
{
inputblocks.resize(sourceblockcount); // The DataBlocks that will read from disk
copyblocks.resize(availableblockcount); // Those DataBlocks which need to be copied
outputblocks.resize(missingblockcount); // Those DataBlocks that will re recalculated
vector<DataBlock*>::iterator inputblock = inputblocks.begin();
vector<DataBlock*>::iterator copyblock = copyblocks.begin();
vector<DataBlock*>::iterator outputblock = outputblocks.begin();
// Build an array listing which source data blocks are present and which are missing
vector<bool> present;
present.resize(sourceblockcount);
vector<DataBlock>::iterator sourceblock = sourceblocks.begin();
vector<DataBlock>::iterator targetblock = targetblocks.begin();
vector<bool>::iterator pres = present.begin();
// Iterate through all source blocks for all files
while (sourceblock != sourceblocks.end())
{
// Was this block found
if (sourceblock->IsSet())
{
// // Open the file the block was found in.
// if (!sourceblock->Open())
// return false;
// Record that the block was found
*pres = true;
// Add the block to the list of those which will be read
// as input (and which might also need to be copied).
*inputblock = &*sourceblock;
*copyblock = &*targetblock;
++inputblock;
++copyblock;
}
else
{
// Record that the block was missing
*pres = false;
// Add the block to the list of those to be written
*outputblock = &*targetblock;
++outputblock;
}
++sourceblock;
++targetblock;
++pres;
}
// Set the number of source blocks and which of them are present
if (!rs.SetInput(present))
return false;
// Start iterating through the available recovery packets
map<u32,RecoveryPacket*>::iterator rp = recoverypacketmap.begin();
// Continue to fill the remaining list of data blocks to be read
while (inputblock != inputblocks.end())
{
// Get the next available recovery packet
u32 exponent = rp->first;
RecoveryPacket* recoverypacket = rp->second;
// Get the DataBlock from the recovery packet
DataBlock *recoveryblock = recoverypacket->GetDataBlock();
// // Make sure the file is open
// if (!recoveryblock->Open())
// return false;
// Add the recovery block to the list of blocks that will be read
*inputblock = recoveryblock;
// Record that the corresponding exponent value is the next one
// to use in the RS matrix
if (!rs.SetOutput(true, (u16)exponent))
return false;
++inputblock;
++rp;
}
// If we need to, compute and solve the RS matrix
if (missingblockcount == 0)
return true;
bool success = rs.Compute(noiselevel);
return success;
}
// Allocate memory buffers for reading and writing data to disk.
bool Par2Repairer::AllocateBuffers(size_t memorylimit)
{
// Would single pass processing use too much memory
if (blocksize * missingblockcount > memorylimit)
{
// Pick a size that is small enough
chunksize = ~3 & (memorylimit / missingblockcount);
}
else
{
chunksize = (size_t)blocksize;
}
// Allocate the two buffers
inputbuffer = new u8[(size_t)chunksize];
outputbuffer = new u8[(size_t)chunksize * missingblockcount];
if (inputbuffer == NULL || outputbuffer == NULL)
{
cerr << "Could not allocate buffer memory." << endl;
return false;
}
return true;
}
// Read source data, process it through the RS matrix and write it to disk.
bool Par2Repairer::ProcessData(u64 blockoffset, size_t blocklength)
{
u64 totalwritten = 0;
// Clear the output buffer
memset(outputbuffer, 0, (size_t)chunksize * missingblockcount);
vector<DataBlock*>::iterator inputblock = inputblocks.begin();
vector<DataBlock*>::iterator copyblock = copyblocks.begin();
u32 inputindex = 0;
DiskFile *lastopenfile = NULL;
// Are there any blocks which need to be reconstructed
if (missingblockcount > 0)
{
// For each input block
while (inputblock != inputblocks.end())
{
// Are we reading from a new file?
if (lastopenfile != (*inputblock)->GetDiskFile())
{
// Close the last file
if (lastopenfile != NULL)
{
lastopenfile->Close();
}
// Open the new file
lastopenfile = (*inputblock)->GetDiskFile();
if (!lastopenfile->Open())
{
return false;
}
}
// Read data from the current input block
if (!(*inputblock)->ReadData(blockoffset, blocklength, inputbuffer))
return false;
// Have we reached the last source data block
if (copyblock != copyblocks.end())
{
// Does this block need to be copied to the target file
if ((*copyblock)->IsSet())
{
size_t wrote;
// Write the block back to disk in the new target file
if (!(*copyblock)->WriteData(blockoffset, blocklength, inputbuffer, wrote))
return false;
totalwritten += wrote;
}
++copyblock;
}
// For each output block
for (u32 outputindex=0; outputindex<missingblockcount; outputindex++)
{
// Select the appropriate part of the output buffer
void *outbuf = &((u8*)outputbuffer)[chunksize * outputindex];
// Process the data
rs.Process(blocklength, inputindex, inputbuffer, outputindex, outbuf);
if (noiselevel > CommandLine::nlQuiet)
{
// Update a progress indicator
u32 oldfraction = (u32)(1000 * progress / totaldata);
progress += blocklength;
u32 newfraction = (u32)(1000 * progress / totaldata);
if (oldfraction != newfraction)
{
cout << "Repairing: " << newfraction/10 << '.' << newfraction%10 << "%\r" << flush;
sig_progress.emit(newfraction);
}
}
}
++inputblock;
++inputindex;
}
}
else
{
// Reconstruction is not required, we are just copying blocks between files
// For each block that might need to be copied
while (copyblock != copyblocks.end())
{
// Does this block need to be copied
if ((*copyblock)->IsSet())
{
// Are we reading from a new file?
if (lastopenfile != (*inputblock)->GetDiskFile())
{
// Close the last file
if (lastopenfile != NULL)
{
lastopenfile->Close();
}
// Open the new file
lastopenfile = (*inputblock)->GetDiskFile();
if (!lastopenfile->Open())
{
return false;
}
}
// Read data from the current input block
if (!(*inputblock)->ReadData(blockoffset, blocklength, inputbuffer))
return false;
size_t wrote;
if (!(*copyblock)->WriteData(blockoffset, blocklength, inputbuffer, wrote))
return false;
totalwritten += wrote;
}
if (noiselevel > CommandLine::nlQuiet)
{
// Update a progress indicator
u32 oldfraction = (u32)(1000 * progress / totaldata);
progress += blocklength;
u32 newfraction = (u32)(1000 * progress / totaldata);
if (oldfraction != newfraction)
{
cout << "Processing: " << newfraction/10 << '.' << newfraction%10 << "%\r" << flush;
sig_progress.emit(newfraction);
}
}
++copyblock;
++inputblock;
}
}
// Close the last file
if (lastopenfile != NULL)
{
lastopenfile->Close();
}
if (noiselevel > CommandLine::nlQuiet)
cout << "Writing recovered data\r";
// For each output block that has been recomputed
vector<DataBlock*>::iterator outputblock = outputblocks.begin();
for (u32 outputindex=0; outputindex<missingblockcount;outputindex++)
{
// Select the appropriate part of the output buffer
char *outbuf = &((char*)outputbuffer)[chunksize * outputindex];
// Write the data to the target file
size_t wrote;
if (!(*outputblock)->WriteData(blockoffset, blocklength, outbuf, wrote))
return false;
totalwritten += wrote;
++outputblock;
}
if (noiselevel > CommandLine::nlQuiet)
cout << "Wrote " << totalwritten << " bytes to disk" << endl;
return true;
}
// Verify that all of the reconstructed target files are now correct
bool Par2Repairer::VerifyTargetFiles(void)
{
bool finalresult = true;
// Verify the target files in alphabetical order
sort(verifylist.begin(), verifylist.end(), SortSourceFilesByFileName);
// Iterate through each file in the verification list
for (vector<Par2RepairerSourceFile*>::iterator sf = verifylist.begin();
sf != verifylist.end();
++sf)
{
Par2RepairerSourceFile *sourcefile = *sf;
DiskFile *targetfile = sourcefile->GetTargetFile();
// Close the file
if (targetfile->IsOpen())
targetfile->Close();
// Mark all data blocks for the file as unknown
vector<DataBlock>::iterator sb = sourcefile->SourceBlocks();
for (u32 blocknumber=0; blocknumber<sourcefile->BlockCount(); blocknumber++)
{
sb->ClearLocation();
++sb;
}
// Say we don't have a complete version of the file
sourcefile->SetCompleteFile(0);
// Re-open the target file
if (!targetfile->Open())
{
finalresult = false;
continue;
}
// Verify the file again
if (!VerifyDataFile(targetfile, sourcefile))
finalresult = false;
// Close the file again
targetfile->Close();
// Find out how much data we have found
UpdateVerificationResults();
}
return finalresult;
}
// Delete all of the partly reconstructed files
bool Par2Repairer::DeleteIncompleteTargetFiles(void)
{
vector<Par2RepairerSourceFile*>::iterator sf = verifylist.begin();
// Iterate through each file in the verification list
while (sf != verifylist.end())
{
Par2RepairerSourceFile *sourcefile = *sf;
if (sourcefile->GetTargetExists())
{
DiskFile *targetfile = sourcefile->GetTargetFile();
// Close and delete the file
if (targetfile->IsOpen())
targetfile->Close();
targetfile->Delete();
// Forget the file
diskFileMap.Remove(targetfile);
delete targetfile;
// There is no target file
sourcefile->SetTargetExists(false);
sourcefile->SetTargetFile(0);
}
++sf;
}
return true;
}
|