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
|
//--------------------------------------------------------------------
//
// Visual Binary Diff
// Copyright 1995-2017 by Christopher J. Madsen
//
// Visual display of differences in binary files
//
// 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 this program. If not, see <https://www.gnu.org/licenses/>.
//--------------------------------------------------------------------
#include "config.h"
#include <ctype.h>
#include <limits.h>
#include <stdlib.h>
#include <string.h>
#include <algorithm>
#include <iostream>
#include <sstream>
#include <map>
#include <string>
#include <vector>
using namespace std;
#include "GetOpt/GetOpt.hpp"
#include "ConWin.hpp"
#include "FileIO.hpp"
const char titleString[] =
"\nVBinDiff " PACKAGE_VERSION "\nCopyright 1995-2017 Christopher J. Madsen";
void exitMsg(int status, const char* message);
void usage(bool showHelp=true, int exitStatus=0);
//====================================================================
// Type definitions:
typedef unsigned char Byte;
typedef unsigned short Word;
typedef Byte Command;
enum LockState { lockNeither = 0, lockTop, lockBottom };
//--------------------------------------------------------------------
// Strings:
typedef string String;
typedef String::size_type StrIdx;
typedef String::iterator StrItr;
typedef String::const_iterator StrConstItr;
//--------------------------------------------------------------------
// Vectors:
typedef vector<String> StrVec;
typedef StrVec::iterator SVItr;
typedef StrVec::const_iterator SVConstItr;
typedef StrVec::size_type VecSize;
//--------------------------------------------------------------------
// Map:
typedef map<VecSize, String> StrMap;
typedef StrMap::value_type SMVal;
typedef StrMap::iterator SMItr;
typedef StrMap::const_iterator SMConstItr;
//====================================================================
// Constants:
const Command cmmMove = 0x80;
const Command cmmMoveSize = 0x03;
const Command cmmMoveForward = 0x04;
const Command cmmMoveTop = 0x08;
const Command cmmMoveBottom = 0x10;
const Command cmmMoveByte = 0x00; // Move 1 byte
const Command cmmMoveLine = 0x01; // Move 1 line
const Command cmmMovePage = 0x02; // Move 1 page
const Command cmmMoveAll = 0x03; // Move to beginning or end
const Command cmmMoveBoth = cmmMoveTop|cmmMoveBottom;
const Command cmgGoto = 0x04; // Commands 4-7
const Command cmgGotoTop = 0x01;
const Command cmgGotoBottom = 0x02;
const Command cmgGotoBoth = cmgGotoTop|cmgGotoBottom;
const Command cmgGotoMask = ~cmgGotoBoth;
const Command cmfFind = 0x40; // Commands 64-67
const Command cmfFindNext = 0x10;
const Command cmfFindPrev = 0x20;
const Command cmNothing = 0;
const Command cmNextDiff = 1;
const Command cmQuit = 2;
const Command cmEditTop = 8;
const Command cmEditBottom = 9;
const Command cmUseTop = 10;
const Command cmUseBottom = 11;
const Command cmToggleASCII = 12;
const short leftMar = 13; // Starting column of hex display
#ifdef WIDTH24
// display 3 x 8 Byte
const int lineWidth = 24;
const int screenWidth = 114;
const short leftMar2 = 88;
#elif WIDTH32
// display 4 x 8 Byte
const int lineWidth = 32;
const int screenWidth = 148;
const short leftMar2 = 113;
#else
// display 2 x 8 Byte
const int lineWidth = 16; // Number of bytes displayed per line
const int screenWidth = 80; // Key value - but _must_ be constant!
const short leftMar2 = 63; // Starting column of ASCII display
#endif
const int promptHeight = 4; // Height of prompt window
const int inWidth = 10; // Width of input window (excluding border)
const int maxPath = 260;
const VecSize maxHistory = 2000;
const char hexDigits[] = "0123456789ABCDEF";
#include "tables.h" // ASCII and EBCDIC tables
//====================================================================
// Class Declarations:
void showEditPrompt();
void showPrompt();
class Difference;
union FileBuffer
{
Byte line[1][lineWidth];
Byte buffer[lineWidth];
}; // end FileBuffer
class FileDisplay
{
friend class Difference;
protected:
int bufContents;
FileBuffer* data;
const Difference* diffs;
File file;
char fileName[maxPath];
FPos offset;
ConWindow win;
bool writable;
int yPos;
int search;
public:
FileDisplay();
~FileDisplay();
void init(int y, const Difference* aDiff);
void resize();
void shutDown();
void display();
bool edit(const FileDisplay* other);
const Byte* getBuffer() const { return data->buffer; };
void move(int step) { moveTo(offset + step); };
void moveTo(FPos newOffset);
bool moveTo(const Byte* searchFor, int searchLen);
bool moveToBack(const Byte* searchFor, int searchLen);
void moveToEnd(FileDisplay* other);
bool setFile(const char* aFileName);
FPos filesize;
protected:
void setByte(short x, short y, Byte b);
}; // end FileDisplay
class Difference
{
friend void FileDisplay::display();
protected:
FileBuffer* data;
const FileDisplay* file1;
const FileDisplay* file2;
int numDiffs;
public:
Difference(const FileDisplay* aFile1, const FileDisplay* aFile2);
~Difference();
int compute();
int getNumDiffs() const { return numDiffs; };
void resize();
}; // end Difference
class InputManager
{
private:
char* buf; // The editing buffer
const char* restrict; // If non-NULL, only allow these chars
StrVec& history; // The history vector to use
StrMap historyOverlay; // Overlay of modified history entries
VecSize historyPos; // The current offset into history[]
int maxLen; // The size of buf (not including NUL)
int len; // The current length of the string
int i; // The current cursor position
bool upcase; // Force all characters to uppercase?
bool splitHex; // Entering space-separated hex bytes?
bool insert; // False for overstrike mode
public:
InputManager(char* aBuf, int aMaxLen, StrVec& aHistory);
bool run();
void setCharacters(const char* aRestriction) { restrict = aRestriction; };
void setSplitHex(bool val) { splitHex = val; };
void setUpcase(bool val) { upcase = val; };
private:
bool normalize(int pos);
void useHistory(int delta);
}; // end InputManager
//====================================================================
// Global Variables:
String lastSearch;
StrVec hexSearchHistory, textSearchHistory, positionHistory;
ConWindow promptWin,inWin;
FileDisplay file1, file2;
Difference diffs(&file1, &file2);
const char* displayTable = asciiDisplayTable;
const char* program_name; // Name under which this program was invoked
LockState lockState = lockNeither;
bool singleFile = false;
int numLines = 9; // Number of lines of each file to display
int bufSize = numLines * lineWidth;
int linesBetween = 1; // Number of lines of padding between files
// The number of bytes to move for each possible step size:
// See cmmMoveByte, cmmMoveLine, cmmMovePage
int steps[4] = {1, lineWidth, bufSize-lineWidth, 0};
//====================================================================
// Miscellaneous Functions:
//--------------------------------------------------------------------
// Beep the speaker:
#ifdef WIN32_CONSOLE // beep() is defined by ncurses
void beep()
{
MessageBeep(-1);
} // end beep
#endif // WIN32_CONSOLE
//--------------------------------------------------------------------
// Convert a character to uppercase:
//
// The standard toupper(c) isn't guaranteed for arbitrary integers.
int safeUC(int c)
{
return (c >= 0 && c <= UCHAR_MAX) ? toupper(c) : c;
} // end safeUC
//====================================================================
// Class Difference:
//
// Member Variables:
// file1, file2:
// The FileDisplay objects being compared
// numDiffs:
// The number of differences between the two FileDisplay buffers
// line/table:
// An array of bools for each byte in the FileDisplay buffers
// True marks differences
//
//--------------------------------------------------------------------
// Constructor:
//
// Input:
// aFile1, aFile2:
// Pointers to the FileDisplay objects to compare
Difference::Difference(const FileDisplay* aFile1, const FileDisplay* aFile2)
: data(NULL),
file1(aFile1),
file2(aFile2)
{
} // end Difference::Difference
//--------------------------------------------------------------------
Difference::~Difference()
{
delete [] reinterpret_cast<Byte*>(data);
} // end Difference::~Difference
//--------------------------------------------------------------------
// Compute differences:
//
// Input Variables:
// file1, file2: The files to compare
//
// Returns:
// The number of differences between the buffers
// -1 if both buffers are empty
//
// Output Variables:
// numDiffs: The number of differences between the buffers
int Difference::compute()
{
if (singleFile)
// We return 1 so that cmNextDiff won't keep searching:
return (file1->bufContents ? 1 : -1);
memset(data->buffer, 0, bufSize); // Clear the difference table
int different = 0;
const Byte* buf1 = file1->data->buffer;
const Byte* buf2 = file2->data->buffer;
int size = min(file1->bufContents, file2->bufContents);
int i;
for (i = 0; i < size; i++)
if (*(buf1++) != *(buf2++)) {
data->buffer[i] = true;
++different;
}
size = max(file1->bufContents, file2->bufContents);
if (i < size) {
// One buffer has more data than the other:
different += size - i;
for (; i < size; i++)
data->buffer[i] = true; // These bytes are only in 1 buffer
} else if (!size)
return -1; // Both buffers are empty
numDiffs = different;
return different;
} // end Difference::compute
//--------------------------------------------------------------------
void Difference::resize()
{
if (singleFile) return;
if (data)
delete [] reinterpret_cast<Byte*>(data);
data = reinterpret_cast<FileBuffer*>(new Byte[bufSize]);
} // end Difference::resize
//====================================================================
// Class FileDisplay:
//
// Member Variables:
// bufContents:
// The number of bytes in the file buffer
// diffs:
// A pointer to the Difference object related to this file
// file:
// The file being displayed
// fileName:
// The relative pathname of the file being displayed
// offset:
// The position in the file of the first byte in the buffer
// win:
// The handle of the window used for display
// yPos:
// The vertical position of the display window
// search:
// The number of bytes to highlight
// buffer/line:
// The currently displayed portion of the file
//
//--------------------------------------------------------------------
// Constructor:
FileDisplay::FileDisplay()
: bufContents(0),
data(NULL),
diffs(NULL),
offset(0),
writable(false),
yPos(0),
search(0)
{
fileName[0] = '\0';
} // end FileDisplay::FileDisplay
//--------------------------------------------------------------------
// Initialize:
//
// Creates the display window and opens the file.
//
// Input:
// y: The vertical position of the display window
// aDiff: The Difference object related to this buffer
void FileDisplay::init(int y, const Difference* aDiff)
{
diffs = aDiff;
yPos = y;
win.init(0, y, screenWidth, (numLines + 1 + (y ? 0 : linesBetween)), cFileWin);
resize();
} // end FileDisplay::init
//--------------------------------------------------------------------
// Destructor:
FileDisplay::~FileDisplay()
{
shutDown();
CloseFile(file);
delete [] reinterpret_cast<Byte*>(data);
} // end FileDisplay::~FileDisplay
//--------------------------------------------------------------------
void FileDisplay::resize()
{
if (data)
delete [] reinterpret_cast<Byte*>(data);
data = reinterpret_cast<FileBuffer*>(new Byte[bufSize]);
// FIXME resize window
} // end FileDisplay::resize
//--------------------------------------------------------------------
// Shut down the file display:
//
// Deletes the display window.
void FileDisplay::shutDown()
{
win.close();
} // end FileDisplay::shutDown
//--------------------------------------------------------------------
// Display the file contents:
void FileDisplay::display()
{
if (! fileName[0]) return;
short row, col, idx, lineLength;
FPos lineOffset = offset;
char bufHex[screenWidth + 1] = { 0 };
char bufAsc[lineWidth + lineWidth / 8] = { 0 };
for (row=0; row < numLines; ++row) {
memset(bufHex, ' ', sizeof(bufHex) - 1);
memset(bufAsc, ' ', sizeof(bufAsc) - 1);
char *pbufHex = bufHex, *pZero;
pbufHex += sprintf(pbufHex, "%01X%04X %04X: ",
Word(lineOffset >> 32), Word(lineOffset >> 16), Word(lineOffset & 0xFFFF));
lineLength = min(lineWidth, bufContents - row * lineWidth);
for (col=0, idx = -1; col < lineLength; ++col) {
if (! (col % 8)) { *pbufHex++ = ' '; ++idx; }
pbufHex += sprintf(pbufHex, "%02X ", data->line[row][col]);
bufAsc[idx++] = displayTable[data->line[row][col]];
}
if ((pZero = (char*) memchr(bufHex, 0, sizeof(bufHex) - 1))) *pZero = ' ';
win.put(0, row + 1, bufHex);
win.put(leftMar2, row + 1, bufAsc);
if (diffs)
for (col=0; col < lineWidth; ++col)
if (diffs->data->line[row][col]) {
win.putAttribs(leftMar + col * 3 + (col / 8), row + 1, cFileDiff, 2);
win.putAttribs(leftMar2 + col + (col / 8), row + 1, cFileDiff, 1);
}
if (search)
for (col=0; col < lineWidth && search; ++col, --search) {
win.putAttribs(leftMar + col * 3 + (col / 8), row + 1, cFileSearch, 2);
win.putAttribs(leftMar2 + col + (col / 8), row + 1, cFileSearch, 1);
}
lineOffset += lineWidth;
} // end for row up to numLines
} // end FileDisplay::display
//--------------------------------------------------------------------
// Edit the file:
//
// Returns:
// true: File changed
// false: File did not change
bool FileDisplay::edit(const FileDisplay* other)
{
if (!bufContents && offset)
return false; // You must not be completely past EOF
if (!writable) {
File w = OpenFile(fileName, true);
if (w == InvalidFile) return false;
CloseFile(file);
file = w;
writable = true;
}
if (bufContents < bufSize)
memset(data->buffer + bufContents, 0, bufSize - bufContents);
short x = 0;
short y = 0;
bool hiNib = true;
bool ascii = false;
bool changed = false;
int key;
const Byte *const inputTable = ((displayTable == ebcdicDisplayTable)
? ascii2ebcdicTable
: NULL); // No translation
showEditPrompt();
win.setCursor(leftMar,1);
ConWindow::showCursor();
for (;;) {
win.setCursor((ascii ? leftMar2 + x : leftMar + 3*x + !hiNib) + (x / 8),
y+1);
key = win.readKey();
switch (key) {
case KEY_ESCAPE: goto done;
case KEY_TAB:
hiNib = true;
ascii = !ascii;
break;
case KEY_DELETE:
case KEY_BACKSPACE:
case KEY_LEFT:
if (!hiNib)
hiNib = true;
else {
if (!ascii) hiNib = false;
if (--x < 0) x = lineWidth-1;
}
if (hiNib || (x < lineWidth-1))
break;
// else fall thru
case KEY_UP: if (--y < 0) y = numLines-1; break;
default: {
short newByte = -1;
if ((key == KEY_RETURN) && other &&
(other->bufContents > x + y*lineWidth)) {
newByte = other->data->line[y][x]; // Copy from other file
hiNib = ascii; // Always advance cursor to next byte
} else if (ascii) {
if (isprint(key)) newByte = (inputTable ? inputTable[key] : key);
} else { // hex
if (isdigit(key))
newByte = key - '0';
else if (isxdigit(key))
newByte = safeUC(key) - 'A' + 10;
if (newByte >= 0) {
if (hiNib)
newByte = (newByte * 0x10) | (0x0F & data->line[y][x]);
else
newByte |= 0xF0 & data->line[y][x];
} // end if valid digit entered
} // end else hex
if (newByte >= 0) {
changed = true;
setByte(x,y,newByte);
} else
break;
} // end default and fall thru
case KEY_RIGHT:
if (hiNib && !ascii)
hiNib = false;
else {
hiNib = true;
if (++x >= lineWidth) x = 0;
}
if (x || !hiNib)
break;
// else fall thru
case KEY_DOWN: if (++y >= numLines) y = 0; break;
} // end switch
} // end forever
done:
if (changed) {
promptWin.clear();
promptWin.border();
promptWin.put(30,1,"Save changes (Y/N):");
promptWin.update();
promptWin.setCursor(50,1);
key = promptWin.readKey();
if (safeUC(key) != 'Y') {
changed = false;
moveTo(offset); // Re-read buffer contents
} else {
SeekFile(file, offset);
WriteFile(file, data->buffer, bufContents);
}
}
showPrompt();
ConWindow::hideCursor();
return changed;
} // end FileDisplay::edit
//--------------------------------------------------------------------
void FileDisplay::setByte(short x, short y, Byte b)
{
if (x + y*lineWidth >= bufContents) {
if (x + y*lineWidth > bufContents) {
short y1 = bufContents / lineWidth;
short x1 = bufContents % lineWidth;
while (y1 <= numLines) {
while (x1 < lineWidth) {
if ((x1 == x) && (y1 == y)) goto done;
setByte(x1,y1,0);
++x1;
}
x1 = 0;
++y1;
} // end while y1
} // end if more than 1 byte past the end
done:
++bufContents;
data->line[y][x] = b ^ 1; // Make sure it's different
} // end if past the end
if (data->line[y][x] != b) {
data->line[y][x] = b;
char str[3];
sprintf(str, "%02X", b);
win.setAttribs(cFileEdit);
win.put(leftMar + 3*x + (x / 8), y+1, str);
str[0] = displayTable[b];
str[1] = '\0';
win.put(leftMar2 + x + (x / 8), y+1, str);
win.setAttribs(cFileWin);
win.update();
}
} // end FileDisplay::setByte
//--------------------------------------------------------------------
// Change the file position:
//
// Changes the file offset and updates the buffer.
// Does not update the display.
//
// Input:
// step:
// The number of bytes to move
// A negative value means to move backward
//
// void FileDisplay::move(int step) /* Inline function */
//--------------------------------------------------------------------
// Change the file position:
//
// Changes the file offset and updates the buffer.
// Does not update the display.
//
// Input:
// newOffset:
// The new position of the file
void FileDisplay::moveTo(FPos newOffset)
{
if (!fileName[0]) return; // No file
offset = newOffset;
if (offset < 0)
offset = 0;
if (offset > filesize)
offset = filesize;
SeekFile(file, offset);
bufContents = ReadFile(file, data->buffer, bufSize);
} // end FileDisplay::moveTo
//--------------------------------------------------------------------
// Change the file position by searching:
//
// Changes the file offset and updates the buffer.
// Does not update the display.
//
// Input:
// searchFor: The bytes to search for
// searchLen: The number of bytes in searchFor
//
// Returns:
// true: The search was successful
// false: Search unsuccessful, file not moved
bool FileDisplay::moveTo(const Byte* searchFor, int searchLen)
{
if (! fileName[0]) return true; // No file, pretend success
const int blockSize = 1024 * 1024;
Byte *const searchBuf = new Byte[blockSize + searchLen];
FPos newPos = offset + 1;
SeekFile(file, newPos);
Size bytesRead = ReadFile(file, searchBuf + searchLen, blockSize);
for (int l = searchLen; bytesRead > 0; l = 0) { // adjust for first block
for (int i=0; i <= bytesRead - l; ++i) {
if (*searchFor == searchBuf[l + i]) {
if (! memcmp(searchFor, searchBuf + l + i, searchLen)) {
delete [] searchBuf;
moveTo(newPos + i - searchLen + l);
search = searchLen;
return true;
}
}
}
newPos += blockSize;
memcpy(searchBuf, searchBuf + blockSize, searchLen);
bytesRead = ReadFile(file, searchBuf + searchLen, blockSize);
}
delete [] searchBuf;
return false;
} // end FileDisplay::moveTo
//--------------------------------------------------------------------
// Change the file position by searching backward:
//
// Changes the file offset and updates the buffer.
// Does not update the display.
//
// Input:
// searchFor: The bytes to search for
// searchLen: The number of bytes in searchFor
//
// Returns:
// true: The search was successful
// false: Search unsuccessful, file not moved
bool FileDisplay::moveToBack(const Byte* searchFor, int searchLen)
{
if (! fileName[0] || offset == 0)
return true;
const int blockSize = 8 * 1024 * 1024;
Byte *const searchBuf = new Byte[blockSize + searchLen];
memcpy(searchBuf + blockSize, data->buffer, searchLen);
FPos newPos = offset - blockSize;
int diff = 0;
for (;;) {
if (newPos < 0) {
diff = newPos;
newPos = 0;
}
SeekFile(file, newPos);
if ((ReadFile(file, searchBuf, blockSize)) <= 0) break;
if (diff)
memmove(searchBuf + (blockSize + diff), searchBuf + blockSize, searchLen);
for (int i = blockSize - 1 + diff; i >= 0; --i) {
if (*searchFor == searchBuf[i]) {
if (! memcmp(searchFor, searchBuf + i, searchLen)) {
delete [] searchBuf;
moveTo(newPos + i);
search = searchLen;
return true;
}
}
}
if (! newPos) break;
memcpy(searchBuf + blockSize, searchBuf, searchLen);
newPos -= blockSize;
}
delete [] searchBuf;
return false;
} // end FileDisplay::moveToBack
//--------------------------------------------------------------------
// Move to the end of the file:
//
// Input:
// other: If non NULL, move both files to the end of the shorter file
void FileDisplay::moveToEnd(FileDisplay* other)
{
if (!fileName[0]) return; // No file
FPos end = SeekFile(file, 0, SeekEnd);
FPos diff = 0;
if (other) {
// If the files aren't currently at the same position,
// we want to keep them offset by the same amount:
diff = other->offset - offset;
end = min(end, SeekFile(other->file, 0, SeekEnd) - diff);
} // end if moving other file too
end -= steps[cmmMovePage];
end -= end % 0x10;
moveTo(end);
if (other) other->moveTo(end + diff);
} // end FileDisplay::moveToEnd
//--------------------------------------------------------------------
// Open a file for display:
//
// Opens the file, updates the filename display, and reads the start
// of the file into the buffer.
//
// Input:
// aFileName: The name of the file to open
//
// Returns:
// True: Operation successful
// False: Unable to open file (call ErrorMsg for error message)
bool FileDisplay::setFile(const char* aFileName)
{
strncpy(fileName, aFileName, maxPath);
fileName[maxPath-1] = '\0';
win.put(0,0, fileName);
win.putAttribs(0,0, cFileName, screenWidth);
win.update(); // FIXME
bufContents = 0;
file = OpenFile(fileName);
writable = false;
if (file == InvalidFile)
return false;
filesize = SeekFile(file, 0, SeekEnd);
SeekFile(file, 0);
offset = 0;
bufContents = ReadFile(file, data->buffer, bufSize);
return true;
} // end FileDisplay::setFile
//====================================================================
// Main Program:
//--------------------------------------------------------------------
void calcScreenLayout(bool resize = true)
{
int screenX, screenY;
ConWindow::getScreenSize(screenX, screenY);
if (screenX < screenWidth) {
ostringstream err;
err << "The screen must be at least "
<< screenWidth << " characters wide.";
exitMsg(2, err.str().c_str());
}
if (screenY < promptHeight + 4) {
ostringstream err;
err << "The screen must be at least "
<< (promptHeight + 4) << " lines high.";
exitMsg(2, err.str().c_str());
}
numLines = screenY - promptHeight - (singleFile ? 1 : 2);
if (singleFile)
linesBetween = 0;
else {
linesBetween = numLines % 2;
numLines = (numLines - linesBetween) / 2;
}
bufSize = numLines * lineWidth;
steps[cmmMovePage] = bufSize-lineWidth;
// FIXME resize existing windows
} // end calcScreenLayout
//--------------------------------------------------------------------
void displayCharacterSet()
{
const bool isASCII = (displayTable == asciiDisplayTable);
promptWin.putAttribs(4,2, (isASCII ? cCurrentMode : cBackground), 5);
promptWin.putAttribs(10,2, (isASCII ? cBackground : cCurrentMode), 6);
promptWin.update();
} // end displayCharacterSet
//--------------------------------------------------------------------
void displayLockState()
{
#ifndef WIN32_CONSOLE // The Win32 version uses Ctrl & Alt instead
if (singleFile) return;
promptWin.putAttribs(67,1,
((lockState == lockBottom) ? cCurrentMode : cBackground),
8);
promptWin.putAttribs(67,2,
((lockState == lockTop) ? cCurrentMode : cBackground),
11);
#endif
} // end displayLockState
//--------------------------------------------------------------------
// Print a message to stderr and exit:
//
// Input:
// status: The exit status to use
// message: The message to print
void exitMsg(int status, const char* message)
{
ConWindow::shutdown();
cerr << endl << message << endl;
exit(status);
} // end exitMsg
//--------------------------------------------------------------------
// Normalize the string in the input window:
//
// Does nothing unless splitHex mode is active.
//
// Input:
// pos: The position of the cursor in buf
//
// Returns:
// true: The input buffer was changed
// false: No changes were necessary
bool InputManager::normalize(int pos)
{
if (!splitHex) return false;
// Change D_ to 0D:
if (pos && buf[pos] == ' ' && buf[pos-1] != ' ') {
buf[pos] = buf[pos-1];
buf[pos-1] = '0';
if (pos == len) len += 2;
return true;
}
// Change _D to 0D:
if (pos < len && buf[pos] == ' ' && buf[pos+1] != ' ') {
buf[pos] = '0';
return true;
}
return false; // No changes necessary
} // end InputManager::normalize
//--------------------------------------------------------------------
// Get a string using inWin:
//
// Input:
// buf: The buffer where the string will be stored
// maxLen: The maximum number of chars to accept (not including NUL byte)
// history: The history vector to use
// restrict: If not NULL, accept only chars in this string
// upcase: If true, convert all chars with safeUC
void getString(char* buf, int maxLen, StrVec& history,
const char* restrict=NULL,
bool upcase=false, bool splitHex=false)
{
InputManager manager(buf, maxLen, history);
manager.setCharacters(restrict);
manager.setSplitHex(splitHex);
manager.setUpcase(upcase);
manager.run();
} // end getString
//--------------------------------------------------------------------
// Construct the InputManager object:
//
// Input:
// aBuf: The buffer where the string will be stored
// aMaxLen: The maximum number of chars to accept (not including NUL byte)
// aHistory: The history vector to use
InputManager::InputManager(char* aBuf, int aMaxLen, StrVec& aHistory)
: buf(aBuf),
restrict(NULL),
history(aHistory),
historyPos(aHistory.size()),
maxLen(aMaxLen),
len(0),
i(0),
upcase(false),
splitHex(false),
insert(true)
{
} // end InputManager
//--------------------------------------------------------------------
// Run the main loop to get an input string:
//
// Returns:
// true: Enter was pressed
// false: Escape was pressed
bool InputManager::run()
{
inWin.setCursor(2,1);
bool inWinShown = false;
bool done = false;
bool aborted = true;
ConWindow::showCursor(insert);
memset(buf, ' ', maxLen);
buf[maxLen] = '\0';
// We need to be able to display complete bytes:
if (splitHex && (maxLen % 3 == 1)) --maxLen;
// Main input loop:
while (!done) {
inWin.put(2,1,buf);
if (inWinShown) inWin.update(1); // Only update inside the box
else { inWin.update(); inWinShown = true; } // Show the input window
inWin.setCursor(2+i,1);
int key = inWin.readKey();
if (upcase) key = safeUC(key);
switch (key) {
case KEY_ESCAPE: buf[0] = '\0'; done = true; break; // ESC
case KEY_RETURN: // Enter
normalize(i);
buf[len] = '\0';
done = true;
aborted = false;
break;
case KEY_BACKSPACE:
case KEY_DELETE: // Backspace on most Unix terminals
case 0x08: // Backspace (Ctrl-H)
if (!i) continue; // Can't back up if we're at the beginning already
if (splitHex) {
if ((i % 3) == 0) {
// At the beginning of a byte; erase last digit of previous byte:
if (i == len) len -= 2;
i -= 2;
buf[i] = ' ';
} else if (i < len && buf[i] != ' ') {
// On the second digit; erase the first digit:
buf[--i] = ' ';
} else {
// On a blank second digit; delete the entire byte:
buf[--i] = ' ';
memmove(buf + i, buf + i + 3, maxLen - i - 3);
len -= 3;
if (len < i) len = i;
}
} else { // not splitHex mode
memmove(buf + i - 1, buf + i, maxLen - i);
buf[maxLen-1] = ' ';
--len; --i;
} // end else not splitHex mode
break;
case 0x04: // Ctrl-D
case KEY_DC:
if (i >= len) continue;
if (splitHex) {
i -= i%3;
memmove(buf + i, buf + i + 3, maxLen - i - 3);
len -= 3;
if (len < i) len = i;
} else {
memmove(buf + i, buf + i + 1, maxLen - i - 1);
buf[maxLen-1] = ' ';
--len;
} // end else not splitHex mode
break;
case KEY_IC:
insert = !insert;
ConWindow::showCursor(insert);
break;
case 0x02: // Ctrl-B
case KEY_LEFT:
if (i) {
--i;
if (splitHex) {
normalize(i+1);
if (i % 3 == 2) --i;
}
}
break;
case 0x06: // Ctrl-F
case KEY_RIGHT:
if (i < len) {
++i;
if (splitHex) {
normalize(i-1);
if ((i < maxLen) && (i % 3 == 2)) ++i;
}
}
break;
case 0x0B: // Ctrl-K
if (len > i) {
memset(buf + i, ' ', len - i);
len = i;
}
break;
case 0x01: // Ctrl-A
case KEY_HOME:
normalize(i);
i = 0;
break;
case 0x05: // Ctrl-E
case KEY_END:
if (splitHex && (i < len))
normalize(i);
i = len;
break;
case 0x10: // Ctrl-P
case KEY_UP:
if (historyPos == 0) beep();
else useHistory(-1);
break;
case 0x0E: // Ctrl-N
case KEY_DOWN:
if (historyPos == history.size()) beep();
else useHistory(+1);
break;
default:
if (isprint(key) && (!restrict || strchr(restrict, key))) {
if (insert) {
if (splitHex) {
if (buf[i] == ' ') {
if (i >= maxLen) continue;
} else {
if (len >= maxLen) continue;
i -= i % 3;
memmove(buf + i + 3, buf + i, maxLen - i - 3);
buf[i+1] = ' ';
len += 3;
}
} // end if splitHex mode
else {
if (len >= maxLen) continue;
memmove(buf + i + 1, buf + i, maxLen - i - 1);
++len;
} // end else not splitHex mode
} else { // overstrike mode
if (i >= maxLen) continue;
} // end else overstrike mode
buf[i++] = key;
if (splitHex && (i < maxLen) && (i % 3 == 2))
++i;
if (i > len) len = i;
} // end if is acceptable character to insert
} // end switch key
} // end while not done
// Hide the input window & cursor:
ConWindow::hideCursor();
inWin.hide();
// Record the result in the history:
if (!aborted && len) {
String newValue(buf);
SVItr exists = find(history.begin(), history.end(), newValue);
if (exists != history.end())
// Already in history. Move it to the end:
rotate(exists, exists + 1, history.end());
else if (history.size() >= maxHistory) {
// History is full. Replace the first entry & move it to the end:
history.front().swap(newValue);
rotate(history.begin(), history.begin() + 1, history.end());
} else
// Just append to history:
history.push_back(newValue);
} // end if we have a value to store in the history
return !aborted;
} // end run
//--------------------------------------------------------------------
// Switch the current input line with one from the history:
//
// Input:
// delta: The number to add to historyPos (-1 previous, +1 next)
void InputManager::useHistory(int delta)
{
// Clean up the current string if necessary:
normalize(i);
// Update the history overlay if necessary:
// We always store the initial value, because it doesn't
// correspond to a valid entry in history.
if (len || historyPos == history.size())
historyOverlay[historyPos].assign(buf, len);
// Look for an entry in the overlay:
SMItr itr = historyOverlay.find(historyPos += delta);
String& s = ((itr == historyOverlay.end())
? history[historyPos] : itr->second);
// Store the new string in the buffer:
memset(buf, ' ', maxLen);
i = len = min(static_cast<VecSize>(maxLen), s.length());
memcpy(buf, s.c_str(), len);
} // end useHistory
//--------------------------------------------------------------------
// Convert hex string to bytes:
//
// Input:
// buf: Must contain a well-formed string of hex characters
// (each byte must be separated by spaces)
//
// Output:
// buf: Contains the translated bytes
//
// Returns:
// The number of bytes in buf
int packHex(Byte* buf)
{
unsigned long val;
char* in = reinterpret_cast<char*>(buf);
Byte* out = buf;
while (*in) {
if (*in == ' ')
++in;
else {
val = strtoul(in, &in, 16);
*(out++) = Byte(val);
}
}
return out - buf;
} // end packHex
//--------------------------------------------------------------------
// Position the input window:
//
// Input:
// cmd: Indicates where the window should be positioned
// width: The width of the window
// title: The title for the window
void positionInWin(Command cmd, short width, const char* title)
{
inWin.resize(width, 3);
inWin.move((screenWidth-width)/2,
((!singleFile && (cmd & cmgGotoBottom))
? ((cmd & cmgGotoTop)
? numLines + linesBetween // Moving both
: numLines + numLines/2 + 1 + linesBetween) // Moving bottom
: numLines/2)); // Moving top
inWin.border();
inWin.put((width-strlen(title))/2,0, title);
} // end positionInWin
//--------------------------------------------------------------------
// Display prompt window for editing:
void showEditPrompt()
{
promptWin.clear();
promptWin.border();
promptWin.put(3,1, "Arrow keys move cursor TAB hex\x3C\x3E"
"ASCII ESC done");
if (displayTable == ebcdicDisplayTable)
promptWin.put(42,1, "EBCDIC");
promptWin.putAttribs( 3,1, cPromptKey, 10);
promptWin.putAttribs(33,1, cPromptKey, 3);
promptWin.putAttribs(54,1, cPromptKey, 3);
if (!singleFile) {
promptWin.put(25,2, "RET copy byte from other file");
promptWin.putAttribs(25,2, cPromptKey, 3);
}
promptWin.update();
} // end showEditPrompt
//--------------------------------------------------------------------
// Display prompt window:
void showPrompt()
{
promptWin.clear();
promptWin.border();
#ifdef WIN32_CONSOLE
promptWin.put(1,1, "Arrow keys move F find N next RET next difference ESC quit ALT top");
promptWin.put(1,2, "C ASCII/EBCDIC E edit P prev G goto position Q quit CTRL bottom");
const short
topBotLength = 4,
topLength = 8;
#else // curses
promptWin.put(1,1, "Arrow keys move F find N next RET next difference ESC quit T move top");
promptWin.put(1,2, "C ASCII/EBCDIC E edit P prev G goto position Q quit B move bottom");
const short
topBotLength = 1,
topLength = 10;
#endif
promptWin.putAttribs( 1,1, cPromptKey, 10);
promptWin.putAttribs(18,1, cPromptKey, 1);
promptWin.putAttribs(26,1, cPromptKey, 1);
promptWin.putAttribs(34,1, cPromptKey, 3);
promptWin.putAttribs(55,1, cPromptKey, 3);
promptWin.putAttribs( 1,2, cPromptKey, 1);
promptWin.putAttribs(18,2, cPromptKey, 1);
promptWin.putAttribs(26,2, cPromptKey, 1);
promptWin.putAttribs(34,2, cPromptKey, 1);
promptWin.putAttribs(55,2, cPromptKey, 1);
if (singleFile) {
// Erase "move top" & "move bottom":
promptWin.putChar(65,1, ' ', topLength);
promptWin.putChar(65,2, ' ', topLength + 3);
} else {
promptWin.putAttribs(65,1, cPromptKey, topBotLength);
promptWin.putAttribs(65,2, cPromptKey, topBotLength);
}
displayLockState();
displayCharacterSet(); // Calls promptWin.update()
} // end showPrompt
//--------------------------------------------------------------------
// Initialize program:
//
// Returns:
// True: Initialization complete
// False: Error
bool initialize()
{
if (!ConWindow::startup())
return false;
ConWindow::hideCursor();
calcScreenLayout(false);
inWin.init(0,0, inWidth+2,3, cPromptBdr);
inWin.border();
inWin.put((inWidth-4)/2,0, " Goto ");
inWin.setAttribs(cPromptWin);
inWin.hide();
int y;
if (singleFile) y = numLines + 1;
else y = numLines * 2 + linesBetween + 2;
promptWin.init(0,y, screenWidth,promptHeight, cBackground);
showPrompt();
if (!singleFile) diffs.resize();
file1.init(0, (singleFile ? NULL : &diffs));
if (!singleFile) file2.init(numLines + linesBetween + 1, &diffs);
return true;
} // end initialize
//--------------------------------------------------------------------
// Get a command from the keyboard:
//
// Returns:
// Command code
#ifdef WIN32_CONSOLE
Command getCommand()
{
KEY_EVENT_RECORD e;
Command cmd = cmNothing;
while (cmd == cmNothing) {
ConWindow::readKey(e);
switch (safeUC(e.uChar.AsciiChar)) {
case KEY_RETURN: // Enter
cmd = cmNextDiff;
break;
case 0x05: // Ctrl+E
case 'E':
if (e.dwControlKeyState & (LEFT_ALT_PRESSED|RIGHT_ALT_PRESSED))
cmd = cmEditBottom;
else
cmd = cmEditTop;
break;
case 'F':
if (e.dwControlKeyState & (LEFT_ALT_PRESSED|RIGHT_ALT_PRESSED))
cmd = cmfFind|cmgGotoBottom;
else
cmd = cmfFind|cmgGotoBoth;
break;
case 'N':
if (e.dwControlKeyState & (LEFT_ALT_PRESSED|RIGHT_ALT_PRESSED))
cmd = cmfFind|cmgGotoBottom|cmfFindNext;
else
cmd = cmfFind|cmgGotoBoth|cmfFindNext;
break;
case 'P':
if (e.dwControlKeyState & (LEFT_ALT_PRESSED|RIGHT_ALT_PRESSED))
cmd = cmfFind|cmgGotoBottom|cmfFindPrev;
else
cmd = cmfFind|cmgGotoBoth|cmfFindPrev;
break;
case 0x06: // Ctrl+F
cmd = cmfFind|cmgGotoTop;
break;
case 'G':
if (e.dwControlKeyState & (LEFT_ALT_PRESSED|RIGHT_ALT_PRESSED))
cmd = cmgGoto|cmgGotoBottom;
else
cmd = cmgGoto|cmgGotoBoth;
break;
case 0x07: // Ctrl+G
cmd = cmgGoto|cmgGotoTop;
break;
case KEY_ESCAPE: // Esc
case 0x03: // Ctrl+C
case 'Q':
cmd = cmQuit;
break;
case 'C': cmd = cmToggleASCII; break;
default: // Try extended codes
switch (e.wVirtualKeyCode) {
case VK_DOWN: cmd = cmmMove|cmmMoveLine|cmmMoveForward; break;
case VK_RIGHT: cmd = cmmMove|cmmMoveByte|cmmMoveForward; break;
case ' ':
case VK_NEXT: cmd = cmmMove|cmmMovePage|cmmMoveForward; break;
case VK_END: cmd = cmmMove|cmmMoveAll|cmmMoveForward; break;
case VK_LEFT: cmd = cmmMove|cmmMoveByte; break;
case VK_UP: cmd = cmmMove|cmmMoveLine; break;
case VK_BACK:
case VK_PRIOR: cmd = cmmMove|cmmMovePage; break;
case VK_HOME: cmd = cmmMove|cmmMoveAll; break;
} // end switch virtual key code
break;
} // end switch ASCII code
} // end while no command
if (cmd & cmmMove) {
if ((e.dwControlKeyState & (LEFT_ALT_PRESSED|RIGHT_ALT_PRESSED)) == 0)
cmd |= cmmMoveTop;
if ((e.dwControlKeyState & (LEFT_CTRL_PRESSED|RIGHT_CTRL_PRESSED)) == 0)
cmd |= cmmMoveBottom;
} // end if move command
return cmd;
} // end getCommand
#else // using curses interface
Command getCommand()
{
Command cmd = cmNothing;
while (cmd == cmNothing) {
int e = promptWin.readKey();
switch (safeUC(e)) {
case KEY_RETURN: // Enter
cmd = cmNextDiff;
break;
case 'E':
if (lockState == lockTop)
cmd = cmEditBottom;
else
cmd = cmEditTop;
break;
case 'F':
cmd = cmfFind;
break;
case 'N':
cmd = cmfFind | cmfFindNext;
break;
case 'P':
cmd = cmfFind | cmfFindPrev;
break;
case 'G':
cmd = cmgGoto;
if (lockState != lockTop) cmd |= cmgGotoTop;
if (lockState != lockBottom) cmd |= cmgGotoBottom;
break;
case KEY_ESCAPE:
case 0x03: // Ctrl+C
case 'Q':
cmd = cmQuit;
break;
case 'C': cmd = cmToggleASCII; break;
case 'B': if (!singleFile) cmd = cmUseBottom; break;
case 'T': if (!singleFile) cmd = cmUseTop; break;
case KEY_DOWN: cmd = cmmMove|cmmMoveLine|cmmMoveForward; break;
case KEY_RIGHT: cmd = cmmMove|cmmMoveByte|cmmMoveForward; break;
case ' ':
case KEY_NPAGE: cmd = cmmMove|cmmMovePage|cmmMoveForward; break;
case KEY_END: cmd = cmmMove|cmmMoveAll|cmmMoveForward; break;
case KEY_LEFT: cmd = cmmMove|cmmMoveByte; break;
case KEY_UP: cmd = cmmMove|cmmMoveLine; break;
case KEY_BACKSPACE:
case KEY_PPAGE: cmd = cmmMove|cmmMovePage; break;
case KEY_HOME: cmd = cmmMove|cmmMoveAll; break;
} // end switch ASCII code
} // end while no command
if (cmd & cmfFind) {
if (lockState != lockTop) cmd |= cmgGotoTop;
if (lockState != lockBottom) cmd |= cmgGotoBottom;
} // end if find command
if (cmd & cmmMove) {
if (lockState != lockTop) cmd |= cmmMoveTop;
if (lockState != lockBottom) cmd |= cmmMoveBottom;
} // end if move command
return cmd;
} // end getCommand
#endif // end else curses interface
//--------------------------------------------------------------------
// Get a file position and move there:
void gotoPosition(Command cmd)
{
positionInWin(cmd, inWidth + 4, " Goto ");
const int maxLen = inWidth - 1;
char buf[maxLen + 1];
getString(buf, maxLen, positionHistory, hexDigits, true);
if (! buf[0]) return;
FPos pos = ConvString(buf);
if (cmd & cmgGotoTop)
file1.moveTo(pos);
if (cmd & cmgGotoBottom)
file2.moveTo(pos);
} // end gotoPosition
//--------------------------------------------------------------------
// Search for text or bytes in the files:
void searchFiles(Command cmd)
{
const bool havePrev = !lastSearch.empty();
int key = 0;
if (! ((cmd & cmfFindNext || cmd & cmfFindPrev) && havePrev)) {
positionInWin(cmd, (havePrev ? 36 : 18), " Find ");
inWin.put(2, 1, "H Hex");
inWin.put(10, 1, "T Text");
inWin.putAttribs(2, 1, cPromptKey, 1);
inWin.putAttribs(10, 1, cPromptKey, 1);
if (havePrev) {
inWin.put(19, 1, "N Next");
inWin.put(28, 1, "P Prev");
inWin.putAttribs(19, 1, cPromptKey, 1);
inWin.putAttribs(28, 1, cPromptKey, 1);
}
inWin.update();
key = safeUC(inWin.readKey());
bool hex = false;
if (key == KEY_ESCAPE) {
inWin.hide();
return;
} else if (key == 'H')
hex = true;
if ((key == 'N' || key == 'P') && havePrev) {
inWin.hide();
} else {
positionInWin(cmd, screenWidth, (hex ? " Find Hex Bytes" : " Find Text "));
const int maxLen = screenWidth-4;
Byte buf[maxLen+1];
int searchLen;
if (hex) {
getString(reinterpret_cast<char*>(buf), maxLen, hexSearchHistory, hexDigits, true, true);
searchLen = packHex(buf);
} else {
getString(reinterpret_cast<char*>(buf), maxLen, textSearchHistory);
searchLen = strlen(reinterpret_cast<char*>(buf));
if (displayTable == ebcdicDisplayTable) {
for (int i = 0; i < searchLen; ++i)
buf[i] = ascii2ebcdicTable[buf[i]];
} // end if in EBCDIC mode
} // end else text search
if (!searchLen) return;
lastSearch.assign(reinterpret_cast<char*>(buf), searchLen);
} // end else need to read search string
} // end direct N or P
bool problem = false;
const Byte *const searchPattern = reinterpret_cast<const Byte*>(lastSearch.c_str());
if (cmd & cmfFindPrev || key == 'P') {
if ((cmd & cmgGotoTop) && !file1.moveToBack(searchPattern, lastSearch.length()))
problem = true;
if ((cmd & cmgGotoBottom) && !file2.moveToBack(searchPattern, lastSearch.length()))
problem = true;
}
else {
if ((cmd & cmgGotoTop) && !file1.moveTo(searchPattern, lastSearch.length()))
problem = true;
if ((cmd & cmgGotoBottom) && !file2.moveTo(searchPattern, lastSearch.length()))
problem = true;
}
if (problem) beep();
} // end searchFiles
//--------------------------------------------------------------------
// Handle a command:
//
// Input:
// cmd: The command to be handled
void handleCmd(Command cmd)
{
if (cmd & cmmMove) {
int step = steps[cmd & cmmMoveSize];
if ((cmd & cmmMoveForward) == 0)
step *= -1; // We're moving backward
if ((cmd & cmmMoveForward) && !step) {
if (cmd & cmmMoveTop)
file1.moveToEnd((!singleFile && (cmd & cmmMoveBottom)) ? &file2 : NULL);
else
file2.moveToEnd(NULL);
} else {
if (cmd & cmmMoveTop) {
if (step)
file1.move(step);
else
file1.moveTo(0);
} // end if moving top file
if (cmd & cmmMoveBottom) {
if (step)
file2.move(step);
else
file2.moveTo(0);
} // end if moving bottom file
} // end else not moving to end
} // end if move
else if ((cmd & cmgGotoMask) == cmgGoto)
gotoPosition(cmd);
else if (cmd & cmfFind)
searchFiles(cmd);
else if (cmd == cmNextDiff) {
if (lockState) {
lockState = lockNeither;
displayLockState();
}
do {
file1.move(bufSize);
file2.move(bufSize);
} while (!diffs.compute());
} // end else if cmNextDiff
else if (cmd == cmUseTop) {
if (lockState == lockBottom)
lockState = lockNeither;
else
lockState = lockBottom;
displayLockState();
}
else if (cmd == cmUseBottom) {
if (lockState == lockTop)
lockState = lockNeither;
else
lockState = lockTop;
displayLockState();
}
else if (cmd == cmToggleASCII) {
displayTable = ((displayTable == asciiDisplayTable)
? ebcdicDisplayTable
: asciiDisplayTable );
displayCharacterSet();
}
else if (cmd == cmEditTop)
file1.edit(singleFile ? NULL : &file2);
else if (cmd == cmEditBottom)
file2.edit(&file1);
// Make sure we haven't gone past the end of both files:
while (diffs.compute() < 0) {
file1.move(-steps[cmmMovePage]);
file2.move(-steps[cmmMovePage]);
}
file1.display();
file2.display();
} // end handleCmd
//====================================================================
// Initialization and option processing:
//====================================================================
// Display license information and exit:
bool license(GetOpt*, const GetOpt::Option*, const char*,
GetOpt::Connection, const char*, int*)
{
puts(titleString);
puts("\n"
"This program is free software; you can redistribute it and/or\n"
"modify it under the terms of the GNU General Public License as\n"
"published by the Free Software Foundation; either version 2 of\n"
"the License, or (at your option) any later version.\n"
"\n"
"This program is distributed in the hope that it will be useful,\n"
"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
"GNU General Public License for more details.\n"
"\n"
"You should have received a copy of the GNU General Public License\n"
"along with this program; if not, see <https://www.gnu.org/licenses/>."
);
exit(0);
return false; // Never happens
} // end license
//--------------------------------------------------------------------
// Display version & usage information and exit:
//
// Input:
// showHelp: True means display usage information
// exitStatus: Status code to pass to exit()
void usage(bool showHelp, int exitStatus)
{
if (exitStatus > 1)
cerr << "Try `" << program_name << " --help' for more information.\n";
else {
cout << titleString << endl;
if (showHelp)
cout << "Usage: " << program_name << " FILE1 [FILE2]\n\
Compare FILE1 and FILE2 byte by byte.\n\
If FILE2 is omitted, just display FILE1.\n\
\n\
Options:\n\
--help display this help information and exit\n\
-L, --license display license & warranty information and exit\n\
-V, --version display version information and exit\n";
}
exit(exitStatus);
} // end usage
bool usage(GetOpt* getopt, const GetOpt::Option* option,
const char*, GetOpt::Connection, const char*, int*)
{
usage(option->shortName == '?');
return false; // Never happens
} // end usage
//--------------------------------------------------------------------
// Handle options:
//
// Input:
// argc, argv: The parameters passed to main
//
// Output:
// argc, argv:
// Modified to list only the non-option arguments
// Note: argv[0] may not be the executable name
void processOptions(int& argc, char**& argv)
{
static const GetOpt::Option options[] =
{
{ '?', "help", NULL, 0, &usage },
{ 'L', "license", NULL, 0, &license },
{ 'V', "version", NULL, 0, &usage },
{ 0 }
};
GetOpt getopt(options);
int argi = getopt.process(argc, const_cast<const char**>(argv));
if (getopt.error)
usage(true, 1);
if (argi >= argc)
argc = 1; // No arguments
else {
argc -= --argi; // Reduce argc by number of arguments used
argv += argi; // And adjust argv[1] to the next argument
}
} // end processOptions
//====================================================================
// Main Program:
//====================================================================
int main(int argc, char* argv[])
{
if ((program_name = strrchr(argv[0], '\\')))
// Isolate the filename:
++program_name;
else
program_name = argv[0];
processOptions(argc, argv);
if (argc < 2 || argc > 3)
usage(1);
cout << "\
VBinDiff " PACKAGE_VERSION ", Copyright 1995-2017 Christopher J. Madsen\n\
VBinDiff comes with ABSOLUTELY NO WARRANTY; for details type `vbindiff -L'.\n";
singleFile = (argc == 2);
if (!initialize()) {
cerr << '\n' << program_name << ": Unable to initialize windows\n";
return 1;
}
{
ostringstream errMsg;
if (!file1.setFile(argv[1])) {
const char* errStr = ErrorMsg();
errMsg << "Unable to open " << argv[1] << ": " << errStr;
}
else if (!singleFile && !file2.setFile(argv[2])) {
const char* errStr = ErrorMsg();
errMsg << "Unable to open " << argv[2] << ": " << errStr;
}
else if (!file1.filesize)
errMsg << "File is empty: " << argv[1];
else if (!singleFile && !file2.filesize)
errMsg << "File is empty: " << argv[2];
string error(errMsg.str());
if (error.length())
exitMsg(1, error.c_str());
} // end block around errMsg
diffs.compute();
file1.display();
file2.display();
Command cmd;
while ((cmd = getCommand()) != cmQuit)
handleCmd(cmd);
file1.shutDown();
file2.shutDown();
inWin.close();
promptWin.close();
ConWindow::shutdown();
return 0;
} // end main
//--------------------------------------------------------------------
// Local Variables:
// c-file-style: "cjm"
// End:
|