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
|
;;; opascal.el --- major mode for editing Object Pascal source in Emacs -*- lexical-binding: t -*-
;; Copyright (C) 1998-1999, 2001-2025 Free Software Foundation, Inc.
;; Authors: Ray Blaak <blaak@infomatch.com>,
;; Simon South <ssouth@member.fsf.org>
;; Maintainer: Simon South <ssouth@member.fsf.org>
;; Keywords: languages
;; This file is part of GNU Emacs.
;; GNU Emacs is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; GNU Emacs 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 GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
;;; Commentary:
;; To enter OPascal mode when you find an Object Pascal source file,
;; one must override the auto-mode-alist to associate OPascal with
;; .pas (and .dpr and .dpk) files. Emacs, by default, will otherwise
;; enter Pascal mode. For example:
;;
;; (add-to-list 'auto-mode-alist
;; '("\\.\\(pas\\|dpr\\|dpk\\)\\'" . opascal-mode))
;; When you have entered OPascal mode, you may get more info by pressing
;; C-h m.
;; This OPascal mode implementation is fairly tolerant of syntax errors,
;; relying as much as possible on the indentation of the previous statement.
;; This also makes it faster and simpler, since there is less searching for
;; properly constructed beginnings.
;;; Code:
(eval-when-compile (require 'cl-lib))
(defgroup opascal nil
"Major mode for editing OPascal source in Emacs."
:version "24.4"
:group 'languages)
(defconst opascal-debug nil
"Non-nil if in debug mode.")
(define-obsolete-variable-alias
'delphi-search-path 'opascal-search-path "24.4")
(defcustom opascal-search-path "."
"Directories to search when finding external units.
It is a list of directory strings. If only a single directory,
it can be a single string instead of a list. If a directory
ends in \"...\" then that directory is recursively searched."
:type 'string)
(define-obsolete-variable-alias
'delphi-indent-level 'opascal-indent-level "24.4")
(defcustom opascal-indent-level 3
"Indentation of OPascal statements with respect to containing block.
E.g.
begin
// This is an indent of 3.
end;"
:type 'integer)
(define-obsolete-variable-alias
'delphi-compound-block-indent 'opascal-compound-block-indent "24.4")
(defcustom opascal-compound-block-indent 0
"Extra indentation for blocks in compound statements. E.g.
// block indent = 0 vs // block indent = 2
if b then if b then
begin begin
end else begin end
end; else
begin
end;"
:type 'integer)
(define-obsolete-variable-alias
'delphi-case-label-indent 'opascal-case-label-indent "24.4")
(defcustom opascal-case-label-indent opascal-indent-level
"Extra indentation for case statement labels. E.g.
// case indent = 0 vs // case indent = 3
case value of case value of
v1: process_v1; v1: process_v1;
v2: process_v2; v2: process_v2;
else else
process_else; process_else;
end; end;"
:type 'integer)
(define-obsolete-variable-alias 'delphi-verbose 'opascal-verbose "24.4")
(defcustom opascal-verbose t ; nil
"If true then OPascal token processing progress is reported to the user."
:type 'boolean)
(define-obsolete-variable-alias
'delphi-tab-always-indents 'opascal-tab-always-indents "24.4")
(defcustom opascal-tab-always-indents tab-always-indent
"Non-nil means `opascal-tab' should always reindent the current line.
That is, regardless of where in the line point is at the time."
:type 'boolean)
(make-obsolete-variable 'opascal-tab-always-indents
"use `indent-for-tab-command' and `tab-always-indent'."
"24.4")
(defconst opascal-directives
'(absolute abstract assembler automated cdecl default dispid dynamic
export external far forward index inline message name near nodefault
overload override pascal private protected public published read readonly
register reintroduce resident resourcestring safecall stdcall stored
virtual write writeonly)
"OPascal4 directives.")
(defconst opascal-keywords
(append
'(;; Keywords.
and array as asm at begin case class const constructor contains
destructor dispinterface div do downto else end except exports
file finalization finally for function goto if implementation implements
in inherited initialization interface is label library mod nil not
of object on or out package packed procedure program property
raise record repeat requires result self set shl shr then threadvar
to try type unit uses until var while with xor
;; These routines should be keywords, if Borland had the balls.
break exit)
;; We want directives to look like keywords.
opascal-directives)
"OPascal4 keywords.")
(defconst opascal-previous-terminators '(semicolon comma)
"Expression/statement terminators that denote a previous expression.")
(defconst opascal-comments
'(comment-single-line comment-multi-line-1 comment-multi-line-2)
"Tokens that represent comments.")
(defconst opascal-whitespace `(space newline ,@opascal-comments)
"Tokens that are considered whitespace.")
(defconst opascal-routine-statements
'(procedure function constructor destructor property)
"Marks the start of a routine, or routine-ish looking expression.")
(defconst opascal-body-expr-statements '(if while for on)
"Statements that have either a single statement or a block as a body and also
are followed by an expression.")
(defconst opascal-expr-statements `(case ,@opascal-body-expr-statements)
"Expression statements contain expressions after their keyword.")
(defconst opascal-body-statements `(else ,@opascal-body-expr-statements)
"Statements that have either a single statement or a block as a body.")
(defconst opascal-expr-delimiters '(then do of)
"Expression delimiter tokens.")
(defconst opascal-binary-ops
'(plus minus equals not-equals times divides div mod and or xor)
"OPascal binary operations.")
(defconst opascal-visibilities '(public private protected published automated)
"Class visibilities.")
(defconst opascal-block-statements
'(begin try case repeat initialization finalization asm)
"Statements that contain multiple substatements.")
(defconst opascal-mid-block-statements
`(except finally ,@opascal-visibilities)
"Statements that mark mid sections of the enclosing block.")
(defconst opascal-end-block-statements '(end until)
"Statements that end block sections.")
(defconst opascal-match-block-statements
`(,@opascal-end-block-statements ,@opascal-mid-block-statements)
"Statements that match the indentation of the parent block.")
(defconst opascal-decl-sections '(type const var label resourcestring)
"Denotes the start of a declaration section.")
(defconst opascal-interface-types '(dispinterface interface)
"Interface types.")
(defconst opascal-class-types '(class object)
"Class types.")
(defconst opascal-composite-types
`(,@opascal-class-types ,@opascal-interface-types record)
"Types that contain declarations within them.")
(defconst opascal-unit-sections
'(interface implementation program library package)
"Unit sections within which the indent is 0.")
(defconst opascal-use-clauses '(uses requires exports contains)
"Statements that refer to foreign symbols.")
(defconst opascal-unit-statements
`(,@opascal-use-clauses ,@opascal-unit-sections initialization finalization)
"Statements indented at level 0.")
(defconst opascal-decl-delimiters
`(,@opascal-decl-sections ,@opascal-unit-statements
,@opascal-routine-statements)
"Statements that a declaration statement should align with.")
(defconst opascal-decl-matchers
`(begin ,@opascal-decl-sections)
"Statements that should match to declaration statement indentation.")
(defconst opascal-enclosing-statements
`(,@opascal-block-statements ,@opascal-mid-block-statements
,@opascal-decl-sections ,@opascal-use-clauses ,@opascal-routine-statements)
"Delimits an enclosing statement.")
(defconst opascal-previous-statements
`(,@opascal-unit-statements ,@opascal-routine-statements)
"Delimits a previous statement.")
(defconst opascal-previous-enclosing-statements
`(,@opascal-block-statements ,@opascal-mid-block-statements
,@opascal-decl-sections)
"Delimits a previous enclosing statement.")
(defconst opascal-begin-enclosing-tokens
`(,@opascal-block-statements ,@opascal-mid-block-statements)
"Tokens that a begin token indents from.")
(defconst opascal-begin-previous-tokens
`(,@opascal-decl-sections ,@opascal-routine-statements)
"Tokens that a begin token aligns with, but only if not part of a \
nested routine.")
(defconst opascal-space-chars "\000-\011\013- ") ; all except \n
(defconst opascal-non-space-chars (concat "^" opascal-space-chars))
(defconst opascal-spaces-re (concat "[" opascal-space-chars "]*"))
(defconst opascal-leading-spaces-re (concat "^" opascal-spaces-re))
(defconst opascal-word-chars "a-zA-Z0-9_")
(defvar opascal-mode-syntax-table
(let ((st (make-syntax-table)))
(modify-syntax-entry ?\\ "." st) ; bug#22224
;; Strings.
(modify-syntax-entry ?\" "\"" st)
(modify-syntax-entry ?\' "\"" st)
;; Comments.
(modify-syntax-entry ?\{ "<" st)
(modify-syntax-entry ?\} ">" st)
(modify-syntax-entry ?\( "()1" st)
(modify-syntax-entry ?\) ")(4" st)
(modify-syntax-entry ?* ". 23b" st)
(modify-syntax-entry ?/ ". 12c" st)
(modify-syntax-entry ?\n "> c" st)
st))
(defmacro opascal-save-excursion (&rest forms)
;; Executes the forms such that any movements have no effect, including
;; searches.
(declare (debug t))
`(save-excursion
(save-match-data
(let ((deactivate-mark nil))
(progn ,@forms)))))
(eval-when-compile
(pcase-defmacro opascal--in (set)
`(pred (memq _ ,set))))
(defun opascal-string-of (start end)
;; Returns the buffer string from start to end.
(buffer-substring-no-properties start end))
(defun opascal-looking-at-string (p s)
;; True if point p marks the start of string s. s is not a regular
;; expression.
(let ((limit (+ p (length s))))
(and (<= limit (point-max))
(string= s (opascal-string-of p limit)))))
(defun opascal-token-of (kind start end)
;; Constructs a token from a kind symbol and its start/end points.
`[,kind ,start ,end])
(defsubst opascal-token-kind (token)
;; Returns the kind symbol of the token.
(if token (aref token 0) nil))
(defun opascal-set-token-kind (token to-kind)
;; Sets the kind symbol of the token.
(if token (aset token 0 to-kind)))
(defsubst opascal-token-start (token)
;; Returns the start point of the token.
(if token (aref token 1) (point-min)))
(defsubst opascal-token-end (token)
;; Returns the end point of the token.
(if token (aref token 2) (point-min)))
(defun opascal-set-token-start (token start)
;; Sets the start point of the token.
(if token (aset token 1 start)))
(defun opascal-set-token-end (token end)
;; Sets the end point of the token.
(if token (aset token 2 end)))
(defun opascal-token-string (token)
;; Returns the string image of the token.
(if token
(opascal-string-of (opascal-token-start token) (opascal-token-end token))
""))
(defun opascal-in-token (p token)
;; Returns true if the point p is within the token's start/end points.
(and (<= (opascal-token-start token) p) (< p (opascal-token-end token))))
(defun opascal-column-of (p)
;; Returns the column of the point p.
(save-excursion (goto-char p) (current-column)))
(defvar opascal-progress-last-reported-point nil
"The last point at which progress was reported.")
(defconst opascal-parsing-progress-step 16384
"Number of chars to process before the next parsing progress report.")
(defconst opascal-scanning-progress-step 2048
"Number of chars to process before the next scanning progress report.")
(defun opascal-progress-start ()
;; Initializes progress reporting.
(setq opascal-progress-last-reported-point nil))
(defun opascal-progress-done (&rest msgs)
;; Finalizes progress reporting.
(setq opascal-progress-last-reported-point nil)
(when opascal-verbose
(if (null msgs)
(message "")
(apply #'message msgs))))
(defun opascal-step-progress (p desc step-size)
;; If enough distance has elapsed since the last reported point, then report
;; the current progress to the user.
(cond ((null opascal-progress-last-reported-point)
;; This is the first progress step.
(setq opascal-progress-last-reported-point p))
((and opascal-verbose
(>= (abs (- p opascal-progress-last-reported-point)) step-size))
;; Report the percentage complete.
(setq opascal-progress-last-reported-point p)
(message "%s %s ... %d%%"
desc (buffer-name) (floor (* 100.0 p) (point-max))))))
(defun opascal-next-line-start (&optional from-point)
;; Returns the first point of the next line.
(let ((curr-point (point))
(next nil))
(if from-point (goto-char from-point))
(end-of-line)
(setq next (min (1+ (point)) (point-max)))
(goto-char curr-point)
next))
(defconst opascal--literal-start-re (regexp-opt '("//" "{" "(*" "'" "\"")))
(defun opascal-literal-kind (p)
;; Returns the literal kind the point p is in (or nil if not in a literal).
(when (and (<= (point-min) p) (<= p (point-max)))
(save-excursion
(let ((ppss (syntax-ppss p)))
;; We want to return non-nil when right in front
;; of a comment/string.
(if (null (nth 8 ppss))
(when (looking-at opascal--literal-start-re)
(pcase (char-after)
(?/ 'comment-single-line)
(?\{ 'comment-multi-line-1)
(?\( 'comment-multi-line-2)
(?\' 'string)
(?\" 'double-quoted-string)))
(if (nth 3 ppss) ;String.
(if (eq (nth 3 ppss) ?\")
'double-quoted-string 'string)
(pcase (nth 7 ppss)
(2 'comment-single-line)
(1 'comment-multi-line-2)
(_ 'comment-multi-line-1))))))))
(defun opascal-literal-start-pattern (literal-kind)
;; Returns the start pattern of the literal kind.
(cdr (assoc literal-kind
'((comment-single-line . "//")
(comment-multi-line-1 . "{")
(comment-multi-line-2 . "(*")
(string . "'")
(double-quoted-string . "\"")))))
(defun opascal-literal-stop-pattern (literal-kind)
;; Returns the pattern that delimits end of the search for the literal kind.
;; These are regular expressions.
(cdr (assoc literal-kind
'((comment-single-line . "\n")
(comment-multi-line-1 . "}")
(comment-multi-line-2 . "\\*)")
;; Strings cannot span lines.
(string . "['\n]")
(double-quoted-string . "[\"\n]")))))
(defun opascal-is-literal-end (p)
;; True if the point p is at the end point of a (completed) literal.
(save-excursion
(and (null (nth 8 (syntax-ppss p)))
(nth 8 (syntax-ppss (1- p))))))
(defun opascal-literal-token-at (p)
"Return the literal token surrounding the point P, or nil if none."
(save-excursion
(let ((ppss (syntax-ppss p)))
(when (or (nth 8 ppss) (looking-at opascal--literal-start-re))
(let* ((new-start (or (nth 8 ppss) p))
(new-end (progn
(goto-char new-start)
(condition-case nil
(if (memq (char-after) '(?\' ?\"))
(forward-sexp 1)
(forward-comment 1))
(scan-error (goto-char (point-max))))
(point))))
(opascal-token-of (opascal-literal-kind p) new-start new-end))))))
(defun opascal-point-token-at (p kind)
;; Returns the single character token at the point p.
(opascal-token-of kind p (1+ p)))
(defsubst opascal-char-token-at (p char kind)
;; Returns the token at the point p that describes the specified character.
;; If not actually over such a character, nil is returned.
(when (eq char (char-after p))
(opascal-token-of kind p (1+ p))))
(defun opascal-charset-token-at (p charset kind)
;; Returns the token surrounding point p that contains only members of the
;; character set.
(let ((currp (point))
(end nil)
(token nil))
(goto-char p)
(when (> (skip-chars-forward charset) 0)
(setq end (point))
(goto-char (1+ p))
(skip-chars-backward charset)
(setq token (opascal-token-of kind (point) end)))
(goto-char currp)
token))
(defun opascal-space-token-at (p)
;; If point p is surrounded by space characters, then return the token of the
;; contiguous spaces.
(opascal-charset-token-at p opascal-space-chars 'space))
(defun opascal-word-token-at (p)
;; If point p is over a word (i.e. identifier characters), then return a word
;; token. If the word is actually a keyword, then return the keyword token.
(let ((word (opascal-charset-token-at p opascal-word-chars 'word)))
(when word
(let* ((word-image (downcase (opascal-token-string word)))
(keyword (intern-soft word-image)))
(when (and (or keyword (string= "nil" word-image))
(memq keyword opascal-keywords))
(opascal-set-token-kind word keyword))
word))))
(defun opascal-explicit-token-at (p token-string kind)
;; If point p is anywhere in the token string then returns the resulting
;; token.
(let ((token (opascal-charset-token-at p token-string kind)))
(when (and token (string= token-string (opascal-token-string token)))
token)))
(defun opascal-token-at (p)
;; Returns the token from parsing text at point p.
(when (and (<= (point-min) p) (<= p (point-max)))
(cond ((opascal-char-token-at p ?\n 'newline))
((opascal-literal-token-at p))
((opascal-space-token-at p))
((opascal-word-token-at p))
((opascal-char-token-at p ?\( 'open-group))
((opascal-char-token-at p ?\) 'close-group))
((opascal-char-token-at p ?\[ 'open-group))
((opascal-char-token-at p ?\] 'close-group))
((opascal-char-token-at p ?\; 'semicolon))
((opascal-char-token-at p ?. 'dot))
((opascal-char-token-at p ?, 'comma))
((opascal-char-token-at p ?= 'equals))
((opascal-char-token-at p ?+ 'plus))
((opascal-char-token-at p ?- 'minus))
((opascal-char-token-at p ?* 'times))
((opascal-char-token-at p ?/ 'divides))
((opascal-char-token-at p ?: 'colon))
((opascal-explicit-token-at p "<>" 'not-equals))
((opascal-point-token-at p 'punctuation)))))
(defun opascal-current-token ()
;; Returns the opascal source token under the current point.
(opascal-token-at (point)))
(defun opascal-next-token (token)
;; Returns the token after the specified token.
(when token
(let ((next (opascal-token-at (opascal-token-end token))))
(if next
(opascal-step-progress (opascal-token-start next) "Scanning"
opascal-scanning-progress-step))
next)))
(defun opascal-previous-token (token)
;; Returns the token before the specified token.
(when token
(let ((previous (opascal-token-at (1- (opascal-token-start token)))))
(if previous
(opascal-step-progress (opascal-token-start previous) "Scanning"
opascal-scanning-progress-step))
previous)))
(defun opascal-next-visible-token (token)
;; Returns the first non-space token after the specified token.
(let (next-token)
(while (progn
(setq next-token (opascal-next-token token))
(memq (opascal-token-kind next-token) '(space newline))))
next-token))
(defun opascal-group-start (from-token)
;; Returns the token that denotes the start of the ()/[] group.
(let ((token (opascal-previous-token from-token))
(token-kind nil))
(catch 'done
(while token
(setq token-kind (opascal-token-kind token))
(cond
;; Skip over nested groups.
((eq 'close-group token-kind) (setq token (opascal-group-start token)))
((eq 'open-group token-kind) (throw 'done token)))
(setq token (opascal-previous-token token)))
;; Start not found.
nil)))
(defun opascal-group-end (from-token)
;; Returns the token that denotes the end of the ()/[] group.
(let ((token (opascal-next-token from-token))
(token-kind nil))
(catch 'done
(while token
(setq token-kind (opascal-token-kind token))
(cond
;; Skip over nested groups.
((eq 'open-group token-kind) (setq token (opascal-group-end token)))
((eq 'close-group token-kind) (throw 'done token)))
(setq token (opascal-next-token token)))
;; end not found.
nil)))
(defun opascal-indent-of (token &optional offset)
;; Returns the start column of the token, plus any offset.
(let ((indent (+ (opascal-column-of (opascal-token-start token))
(if offset offset 0))))
(when opascal-debug
(opascal-debug-log
(concat "\n Indent of: %S %S"
"\n column: %d indent: %d offset: %d")
token (opascal-token-string token)
(opascal-column-of (opascal-token-start token))
indent (if offset offset 0)))
indent))
(defmacro opascal--scan-non-whitespace-backward (token-var last-var
&rest pcases)
(declare (debug (symbolp symbolp &rest (pcase-PAT body)))
(indent 2))
`(let ((,token-var ,token-var))
(while (setq ,token-var (opascal-previous-token ,token-var))
,(macroexp-let2 nil kind-var `(opascal-token-kind ,token-var)
`(unless (memq ,kind-var opascal-whitespace)
(pcase ,kind-var
,@pcases)
,(when last-var `(setq ,last-var ,token-var)))))))
(defun opascal-line-indent-of (from-token &optional offset &rest terminators)
;; Returns the column of first non-space character on the token's line, plus
;; any offset. We also stop if one of the terminators or an open ( or [ is
;; encountered.
(let ((token (opascal-previous-token from-token))
(last-token from-token)
(kind nil))
(catch 'done
;; FIXME: Can't use opascal--scan-non-whitespace-backward here, because
;; we do need to pay attention to `newline'!
(while token
(setq kind (opascal-token-kind token))
(cond
;; Skip over ()/[] groups.
((eq 'close-group kind) (setq token (opascal-group-start token)))
;; Stop at the beginning of the line or an open group.
((memq kind '(newline open-group)) (throw 'done nil))
;; Stop at one of the specified terminators.
((memq kind terminators) (throw 'done nil)))
(unless (memq kind opascal-whitespace) (setq last-token token))
(setq token (opascal-previous-token token))))
(opascal-indent-of last-token offset)))
(defun opascal-stmt-line-indent-of (from-token &optional offset)
;; Like `opascal-line-indent-of' except is also stops on a use clause, and
;; colons that precede statements (i.e. case labels).
(let ((token (opascal-previous-token from-token))
(last-token from-token)
(kind nil))
(catch 'done
;; FIXME: Can't use opascal--scan-non-whitespace-backward here, because
;; we do need to pay attention to `newline'!
(while token
(setq kind (opascal-token-kind token))
(cond
((and (eq 'colon kind)
(memq (opascal-token-kind last-token)
`(,@opascal-block-statements
,@opascal-expr-statements)))
;; We hit a label followed by a statement. Indent to the statement.
(throw 'done nil))
;; Skip over ()/[] groups.
((eq 'close-group kind) (setq token (opascal-group-start token)))
((memq kind `(newline open-group ,@opascal-use-clauses))
;; Stop at the beginning of the line, an open group, or a use clause
(throw 'done nil)))
(unless (memq kind opascal-whitespace) (setq last-token token))
(setq token (opascal-previous-token token))))
(opascal-indent-of last-token offset)))
(defun opascal-open-group-indent (token last-token &optional offset)
;; Returns the indent relative to an unmatched ( or [.
(when (eq 'open-group (opascal-token-kind token))
(if last-token
(opascal-indent-of last-token offset)
;; There is nothing following the ( or [. Indent from its line.
(opascal-stmt-line-indent-of token opascal-indent-level))))
(defun opascal-composite-type-start (token last-token)
;; Returns true (actually the last-token) if the pair equals (= class), (=
;; dispinterface), (= interface), (= object), or (= record), and nil
;; otherwise.
(if (and (eq 'equals (opascal-token-kind token))
(memq (opascal-token-kind last-token) opascal-composite-types))
last-token))
(defun opascal-is-simple-class-type (at-token limit-token)
;; True if at-token is the start of a simple class type. E.g.
;; class of TClass;
;; class (TBaseClass);
;; class;
(when (memq (opascal-token-kind at-token) opascal-class-types)
(catch 'done
;; Scan until the semi colon.
(let ((token (opascal-next-token at-token))
(token-kind nil)
(limit (opascal-token-start limit-token)))
(while (and token (<= (opascal-token-start token) limit))
(setq token-kind (opascal-token-kind token))
(cond
;; A semicolon delimits the search.
((eq 'semicolon token-kind) (throw 'done token))
;; Skip over the inheritance list.
((eq 'open-group token-kind) (setq token (opascal-group-end token)))
;; Only allow "of" and whitespace, and an identifier
((memq token-kind `(of word ,@opascal-whitespace)))
;; Otherwise we are not in a simple class declaration.
((throw 'done nil)))
(setq token (opascal-next-token token)))))))
(defun opascal-block-start (from-token &optional stop-on-class)
;; Returns the token that denotes the start of the block.
(let ((token from-token)
(last-token nil))
(catch 'done
(opascal--scan-non-whitespace-backward token last-token
;; Skip over nested blocks.
((opascal--in opascal-end-block-statements)
(setq token (opascal-block-start token)))
;; Case block start found.
('case
(throw 'done
;; As a special case, when a "case" block appears
;; within a record declaration (to denote a variant
;; part), the record declaration should be considered
;; the enclosing block.
(let ((enclosing-token
(opascal-block-start token
'stop-on-class)))
(if (eq 'record
(opascal-token-kind enclosing-token))
(if stop-on-class
enclosing-token
(opascal-previous-token enclosing-token))
token))))
;; Regular block start found.
((opascal--in opascal-block-statements)
(throw 'done token))
;; A class/record start also begins a block.
((guard (opascal-composite-type-start token last-token))
(throw 'done (if stop-on-class last-token token)))
)
;; Start not found.
nil)))
(defun opascal-else-start (from-else)
;; Returns the token of the if or case statement.
(let ((token from-else)
(semicolon-count 0))
(catch 'done
(opascal--scan-non-whitespace-backward token nil
;; Skip over nested groups.
('close-group (setq token (opascal-group-start token)))
;; Skip over any nested blocks.
((opascal--in opascal-end-block-statements)
(setq token (opascal-block-start token)))
('semicolon
;; Semicolon means we are looking for an enclosing if, unless we
;; are in a case statement. Keep counts of the semicolons and decide
;; later.
(setq semicolon-count (1+ semicolon-count)))
((and 'if (guard (= semicolon-count 0)))
;; We only can match an if when there have been no intervening
;; semicolons.
(throw 'done token))
('case
;; We have hit a case statement start.
(throw 'done token)))
;; No if or case statement found.
nil)))
(defun opascal-comment-content-start (comment)
;; Returns the point of the first non-space character in the comment.
(let ((kind (opascal-token-kind comment)))
(when (memq kind opascal-comments)
(opascal-save-excursion
(goto-char (+ (opascal-token-start comment)
(length (opascal-literal-start-pattern kind))))
(skip-chars-forward opascal-space-chars)
(point)))))
(defun opascal-comment-block-start (comment)
;; Returns the starting comment token of a contiguous // comment block. If
;; the comment is multiline (i.e. {...} or (*...*)), the original comment is
;; returned.
(if (not (eq 'comment-single-line (opascal-token-kind comment)))
comment
;; Scan until we run out of // comments.
(let ((prev-comment comment)
(start-comment comment))
(while (let ((kind (opascal-token-kind prev-comment)))
(cond ((eq kind 'space))
((eq kind 'comment-single-line)
(setq start-comment prev-comment))
(t nil)))
(setq prev-comment (opascal-previous-token prev-comment)))
start-comment)))
(defun opascal-comment-block-end (comment)
;; Returns the end comment token of a contiguous // comment block. If the
;; comment is multiline (i.e. {...} or (*...*)), the original comment is
;; returned.
(if (not (eq 'comment-single-line (opascal-token-kind comment)))
comment
;; Scan until we run out of // comments.
(let ((next-comment comment)
(end-comment comment))
(while (let ((kind (opascal-token-kind next-comment)))
(cond ((eq kind 'space))
((eq kind 'comment-single-line)
(setq end-comment next-comment))
(t nil)))
(setq next-comment (opascal-next-token next-comment)))
end-comment)))
(defun opascal-on-first-comment-line (comment)
;; Returns true if the current point is on the first line of the comment.
(save-excursion
(let ((comment-start (opascal-token-start comment))
(current-point (point)))
(goto-char comment-start)
(end-of-line)
(and (<= comment-start current-point) (<= current-point (point))))))
(defun opascal-comment-indent-of (comment)
;; Returns the correct indentation for the comment.
(let ((start-comment (opascal-comment-block-start comment)))
(if (and (eq start-comment comment)
(opascal-on-first-comment-line comment))
;; Indent as a statement.
(opascal-enclosing-indent-of comment)
(save-excursion
(let ((kind (opascal-token-kind comment)))
(beginning-of-line)
(cond ((eq 'comment-single-line kind)
;; Indent to the first comment in the // block.
(opascal-indent-of start-comment))
((looking-at (concat opascal-leading-spaces-re
(opascal-literal-stop-pattern kind)))
;; Indent multi-line comment terminators to the comment start.
(opascal-indent-of comment))
;; Indent according to the comment's content start.
(t
(opascal-column-of (opascal-comment-content-start comment)))))))
))
(defun opascal-is-use-clause-end (at-token last-token last-colon from-kind)
;; True if we are after the end of a uses type clause.
(when (and last-token
(not last-colon)
(eq 'comma (opascal-token-kind at-token))
(eq 'semicolon from-kind))
;; Scan for the uses statement, just to be sure.
(let ((token at-token))
(catch 'done
(opascal--scan-non-whitespace-backward token nil
((opascal--in opascal-use-clauses)
(throw 'done t))
;; Identifiers, strings, "in" keyword, and commas
;; are allowed in use clauses.
((or 'word 'comma 'in 'string 'double-quoted-string))
;; Nothing else is.
(_ (throw 'done nil)))
nil))))
(defun opascal-is-block-after-expr-statement (token)
;; Returns true if we have a block token trailing an expression delimiter (of
;; presumably an expression statement).
(when (memq (opascal-token-kind token) opascal-block-statements)
(let ((previous (opascal-previous-token token))
(previous-kind nil))
(while (progn
(setq previous-kind (opascal-token-kind previous))
(eq previous-kind 'space))
(setq previous (opascal-previous-token previous)))
(or (memq previous-kind opascal-expr-delimiters)
(eq previous-kind 'else)))))
(defun opascal-previous-indent-of (from-token)
;; Returns the indentation of the previous statement of the token.
(let ((token from-token)
(from-kind (opascal-token-kind from-token))
(last-colon nil)
(last-of nil)
(last-token nil))
(catch 'done
(opascal--scan-non-whitespace-backward token last-token
;; An open ( or [ always is an indent point.
('open-group
(throw 'done (opascal-open-group-indent token last-token)))
;; Skip over any ()/[] groups.
('close-group (setq token (opascal-group-start token)))
((opascal--in opascal-end-block-statements)
(if (eq 'newline (opascal-token-kind (opascal-previous-token token)))
;; We can stop at an end token that is right up against the
;; margin.
(throw 'done 0)
;; Otherwise, skip over any nested blocks.
(setq token (opascal-block-start token))))
;; Special case: if we encounter a ", word;" then we assume that we
;; are in some kind of uses clause, and thus indent to column 0. This
;; works because no other constructs are known to have that form.
;; This fixes the irritating case of having indents after a uses
;; clause look like:
;; uses
;; someUnit,
;; someOtherUnit;
;; // this should be at column 0!
((guard
(opascal-is-use-clause-end token last-token last-colon from-kind))
(throw 'done 0))
;; A previous terminator means we can stop. If we are on a directive,
;; however, then we are not actually encountering a new statement.
((and (guard last-token)
(opascal--in opascal-previous-terminators)
(guard (not (memq (opascal-token-kind last-token)
opascal-directives))))
(throw 'done (opascal-stmt-line-indent-of last-token 0)))
;; Remember any "of" we encounter, since that affects how we
;; indent to a case statement within a record declaration
;; (i.e. a variant part).
('of
(setq last-of token))
;; Remember any ':' we encounter (until we reach an "of"),
;; since that affects how we indent to case statements in
;; general.
('colon
(unless last-of (setq last-colon token)))
;; A case statement delimits a previous statement. We indent labels
;; specially.
('case
(throw 'done
(if last-colon (opascal-line-indent-of last-colon)
(opascal-line-indent-of token opascal-case-label-indent))))
;; If we are in a use clause then commas mark an enclosing rather than
;; a previous statement.
((opascal--in opascal-use-clauses)
(throw 'done
(if (eq 'comma from-kind)
(if last-token
;; Indent to first unit in use clause.
(opascal-indent-of last-token)
;; Indent from use clause keyword.
(opascal-line-indent-of token opascal-indent-level))
;; Indent to use clause keyword.
(opascal-line-indent-of token))))
;; Assembly sections always indent in from the asm keyword.
('asm
(throw 'done (opascal-stmt-line-indent-of token opascal-indent-level)))
;; An enclosing statement delimits a previous statement.
;; We try to use the existing indent of the previous statement,
;; otherwise we calculate from the enclosing statement.
((opascal--in opascal-previous-enclosing-statements)
(throw 'done (if last-token
;; Otherwise indent to the last token
(opascal-line-indent-of last-token)
;; Just indent from the enclosing keyword
(opascal-line-indent-of token opascal-indent-level))))
;; A class or record declaration also delimits a previous statement.
((guard (opascal-composite-type-start token last-token))
(throw
'done
(if (opascal-is-simple-class-type last-token from-token)
;; c = class; or c = class of T; are previous statements.
(opascal-line-indent-of token)
;; Otherwise c = class ... or r = record ... are enclosing
;; statements.
(opascal-line-indent-of last-token opascal-indent-level))))
;; We have a definite previous statement delimiter.
((opascal--in opascal-previous-statements)
(throw 'done (opascal-stmt-line-indent-of token 0)))
)
;; We ran out of tokens. Indent to column 0.
0)))
(defun opascal-section-indent-of (section-token)
;; Returns the indentation appropriate for begin/var/const/type/label
;; tokens.
(let* ((token section-token)
(last-token nil)
(nested-block-count 0)
(expr-delimited nil)
(last-terminator nil))
(catch 'done
(opascal--scan-non-whitespace-backward token last-token
;; Always stop at unmatched ( or [.
('open-group
(throw 'done (opascal-open-group-indent token last-token)))
;; Skip over any ()/[] groups.
('close-group (setq token (opascal-group-start token)))
((opascal--in opascal-end-block-statements)
(if (eq 'newline (opascal-token-kind (opascal-previous-token token)))
;; We can stop at an end token that is right up against the
;; margin.
(throw 'done 0)
;; Otherwise, skip over any nested blocks.
(setq token (opascal-block-start token)
nested-block-count (1+ nested-block-count))))
;; Remember if we have encountered any forward routine declarations.
('forward
(setq nested-block-count (1+ nested-block-count)))
;; Mark the completion of a nested routine traversal.
((and (opascal--in opascal-routine-statements)
(guard (> nested-block-count 0)))
(setq nested-block-count (1- nested-block-count)))
;; Remember if we have encountered any statement terminators.
('semicolon (setq last-terminator token))
;; Remember if we have encountered any expression delimiters.
((opascal--in opascal-expr-delimiters)
(setq expr-delimited token))
;; Enclosing body statements are delimiting. We indent the compound
;; bodies specially.
((and (guard (not last-terminator))
(opascal--in opascal-body-statements))
(throw 'done
(opascal-stmt-line-indent-of token
opascal-compound-block-indent)))
;; An enclosing ":" means a label.
((and 'colon
(guard (and (memq (opascal-token-kind section-token)
opascal-block-statements)
(not last-terminator)
(not expr-delimited)
(not (eq 'equals
(opascal-token-kind last-token))))))
(throw 'done
(opascal-stmt-line-indent-of token opascal-indent-level)))
;; Block and mid block tokens are always enclosing
((opascal--in opascal-begin-enclosing-tokens)
(throw 'done
(opascal-stmt-line-indent-of token opascal-indent-level)))
;; Declaration sections and routines are delimiters, unless they
;; are part of a nested routine.
((and (opascal--in opascal-decl-delimiters)
(guard (= 0 nested-block-count)))
(throw 'done (opascal-line-indent-of token 0)))
;; Unit statements mean we indent right to the left.
((opascal--in opascal-unit-statements) (throw 'done 0))
)
;; We ran out of tokens. Indent to column 0.
0)))
(defun opascal-enclosing-indent-of (from-token)
;; Returns the indentation offset from the enclosing statement of the token.
(let ((token from-token)
(from-kind (opascal-token-kind from-token))
(stmt-start nil)
(last-token nil)
(equals-encountered nil)
(before-equals nil)
(expr-delimited nil))
(catch 'done
(opascal--scan-non-whitespace-backward token last-token
;; An open ( or [ always is an indent point.
('open-group
(throw 'done
(opascal-open-group-indent
token last-token
(if (memq from-kind opascal-binary-ops)
;; Keep binary operations aligned with the open group.
0
opascal-indent-level))))
;; Skip over any ()/[] groups.
('close-group (setq token (opascal-group-start token)))
;; Skip over any nested blocks.
((opascal--in opascal-end-block-statements)
(setq token (opascal-block-start token)))
;; An expression delimiter affects indentation depending on whether
;; the point is before or after it. Remember that we encountered one.
;; Also remember the last encountered token, since if it exists it
;; should be the actual indent point.
((opascal--in opascal-expr-delimiters)
(setq expr-delimited token stmt-start last-token))
;; With a non-delimited expression statement we indent after the
;; statement's keyword, unless we are on the delimiter itself.
((and (guard (not expr-delimited))
(opascal--in opascal-expr-statements))
(throw 'done
(cond
((memq from-kind opascal-expr-delimiters)
;; We are indenting a delimiter. Indent to the statement.
(opascal-stmt-line-indent-of token 0))
((and last-token (memq from-kind opascal-binary-ops))
;; Align binary ops with the expression.
(opascal-indent-of last-token))
(last-token
;; Indent in from the expression.
(opascal-indent-of last-token opascal-indent-level))
;; Indent in from the statement's keyword.
((opascal-indent-of token opascal-indent-level)))))
;; A delimited case statement indents the label according to
;; a special rule.
('case
(throw 'done
(if stmt-start
;; We are not actually indenting to the case statement,
;; but are within a label expression.
(opascal-stmt-line-indent-of
stmt-start opascal-indent-level)
;; Indent from the case keyword.
(opascal-stmt-line-indent-of
token opascal-case-label-indent))))
;; Body expression statements are enclosing. Indent from the
;; statement's keyword, unless we have a non-block statement following
;; it.
((opascal--in opascal-body-expr-statements)
(throw 'done (opascal-stmt-line-indent-of
(or stmt-start token) opascal-indent-level)))
;; An else statement is enclosing, but it doesn't have an expression.
;; Thus we take into account last-token instead of stmt-start.
('else
(throw 'done (opascal-stmt-line-indent-of
(or last-token token) opascal-indent-level)))
;; We indent relative to an enclosing declaration section,
;; unless this is within the a delimited expression
;; (bug#36348).
((and (guard (not expr-delimited))
(opascal--in opascal-decl-sections))
(throw 'done (opascal-indent-of (if last-token last-token token)
opascal-indent-level)))
;; In unit sections we indent right to the left.
;; Handle specially the case of "interface", which can be used
;; to start either a unit section or an interface definition.
('interface ;FIXME: Generalize to all `opascal-interface-types'?
(throw 'done
(let (token-kind)
;; Find the previous non-whitespace token.
(while (progn
(setq last-token token
token (opascal-previous-token token)
token-kind (opascal-token-kind token))
(and token
(memq token-kind
opascal-whitespace))))
;; If this token is an equals sign, "interface" is being
;; used to start an interface definition and we should
;; treat it as a composite type; otherwise, we should
;; consider it the start of a unit section.
(if (and token (eq token-kind 'equals))
(opascal-line-indent-of last-token
opascal-indent-level)
0))))
;; In unit sections we indent right to the left.
((opascal--in opascal-unit-sections)
;; Note: The `interface' case is handled specially above.
(throw 'done 0))
;; A previous terminator means we can stop.
((and (opascal--in opascal-previous-terminators) token-kind)
(throw 'done
(cond ((and last-token
(eq 'comma token-kind)
(memq from-kind opascal-binary-ops))
;; Align binary ops with the expression.
(opascal-indent-of last-token))
(last-token
;; Indent in from the expression.
(opascal-indent-of last-token opascal-indent-level))
;; No enclosing expression; use the previous statement's
;; indent.
((opascal-previous-indent-of token)))))
;; A block statement after an expression delimiter has its start
;; column as the expression statement. E.g.
;; if (a = b)
;; and (a != c) then begin
;; //...
;; end;
;; Remember it for when we encounter the expression statement start.
((guard (opascal-is-block-after-expr-statement token))
(throw 'done
(cond (last-token
(opascal-indent-of last-token opascal-indent-level))
(t (+ (opascal-section-indent-of token)
opascal-indent-level)))))
;; Assembly sections always indent in from the asm keyword.
('asm
(throw 'done (opascal-stmt-line-indent-of token opascal-indent-level)))
;; Stop at an enclosing statement and indent from it.
((opascal--in opascal-enclosing-statements)
(throw 'done (opascal-stmt-line-indent-of
(or last-token token) opascal-indent-level)))
;; A class/record declaration is also enclosing.
((guard (opascal-composite-type-start token last-token))
(throw 'done
(opascal-line-indent-of last-token opascal-indent-level)))
;; A ":" we indent relative to its line beginning. If we are in a
;; parameter list, then stop also if we hit a ";".
((and 'colon
(guard (not (or expr-delimited
(memq from-kind opascal-expr-delimiters)
equals-encountered
(eq from-kind 'equals)))))
(throw 'done
(if last-token
(opascal-indent-of last-token opascal-indent-level)
(opascal-line-indent-of token opascal-indent-level
'semicolon))))
;; If the ":" was not processed above and we have token after the "=",
;; then indent from the "=". Ignore :=, however.
((and 'colon (guard (and equals-encountered before-equals)))
(cond
;; Ignore binary ops for now. It would do, for example:
;; val := 1 + 2
;; + 3;
;; which is good, but also
;; val := Foo
;; (foo, args)
;; + 2;
;; which doesn't look right.
;; ;; Align binary ops with the before token.
;;((memq from-kind opascal-binary-ops)
;;(throw 'done (opascal-indent-of before-equals 0)))
;; Assignments (:=) we skip over to get a normal indent.
((eq (opascal-token-kind last-token) 'equals))
;; Otherwise indent in from the equals.
(t (throw 'done
(opascal-indent-of before-equals opascal-indent-level)))))
;; Remember any "=" we encounter if it has not already been processed.
('equals
(setq equals-encountered token
before-equals last-token))
)
;; We ran out of tokens. Indent to column 0.
0)))
(defun opascal-corrected-indentation ()
;; Returns the corrected indentation for the current line.
(opascal-save-excursion
(opascal-progress-start)
;; The caller should make sure we're at the first token on the line.
(cl-assert (eql (point)
(save-excursion
(beginning-of-line)
(skip-chars-forward opascal-space-chars)
(point))))
(let* ((token (opascal-current-token))
(token-kind (opascal-token-kind token))
(indent
(cond ((eq 'close-group token-kind)
;; Indent to the matching start ( or [.
(opascal-indent-of (opascal-group-start token)))
((memq token-kind opascal-unit-statements) 0)
((memq token-kind opascal-comments)
;; In a comment.
(opascal-comment-indent-of token))
((memq token-kind opascal-decl-matchers)
;; Use a previous section/routine's indent.
(opascal-section-indent-of token))
((memq token-kind opascal-match-block-statements)
;; Use the block's indentation.
(let ((block-start
(opascal-block-start token 'stop-on-class)))
(cond
;; When trailing a body statement, indent to
;; the statement's keyword.
((opascal-is-block-after-expr-statement block-start)
(opascal-section-indent-of block-start))
;; Otherwise just indent to the block start.
((opascal-stmt-line-indent-of block-start 0)))))
((eq 'else token-kind)
;; Find the start of the if or case statement.
(opascal-stmt-line-indent-of (opascal-else-start token) 0))
;; Otherwise indent in from enclosing statement.
(t
(opascal-enclosing-indent-of
(or token (opascal-token-at (1- (point)))))))))
(opascal-progress-done)
indent)))
(defun opascal-indent-line ()
"Indent the current line according to the current language construct.
If before the indent, the point is moved to the indent."
(interactive)
(save-match-data
(let ((marked-point (point-marker))) ; Maintain our position reliably.
(beginning-of-line)
(skip-chars-forward opascal-space-chars)
(let ((new-indent (opascal-corrected-indentation)))
(if (< marked-point (point))
;; If before the indent column, then move to it.
(set-marker marked-point (point)))
;; Advance our marked point after inserted spaces.
(set-marker-insertion-type marked-point t)
(indent-line-to new-indent)
(goto-char marked-point)
(set-marker marked-point nil)))))
(defvar opascal-mode-abbrev-table nil
"Abbrev table in use in OPascal mode buffers.")
(define-abbrev-table 'opascal-mode-abbrev-table ())
(defmacro opascal-ensure-buffer (buffer-var buffer-name)
;; Ensures there exists a buffer of the specified name in the specified
;; variable.
`(when (not (buffer-live-p ,buffer-var))
(setq ,buffer-var (get-buffer-create ,buffer-name))))
(defun opascal-log-msg (to-buffer the-msg)
;; Writes a message to the end of the specified buffer.
(with-current-buffer to-buffer
(save-selected-window
(switch-to-buffer-other-window to-buffer)
(goto-char (point-max))
(set-window-point (get-buffer-window to-buffer) (point))
(insert the-msg))))
;; Debugging helpers:
(defvar opascal-debug-buffer nil
"Buffer to write OPascal mode debug messages to. Created on demand.")
(defun opascal-debug-log (format-string &rest args)
;; Writes a message to the log buffer.
(when opascal-debug
(opascal-ensure-buffer opascal-debug-buffer "*OPascal Debug Log*")
(opascal-log-msg opascal-debug-buffer
(concat (format-time-string "%H:%M:%S ")
(apply #'format (cons format-string args))
"\n"))))
(defun opascal-debug-token-string (token)
(let* ((image (opascal-token-string token))
(has-newline (string-match "^\\([^\n]*\\)\n\\(.+\\)?$" image)))
(when has-newline
(setq image (concat (match-string 1 image)
(if (match-beginning 2) "..."))))
image))
(defun opascal-debug-show-current-token ()
(interactive)
(let ((token (opascal-current-token)))
(opascal-debug-log "Token: %S %S" token (opascal-debug-token-string token))))
(defun opascal-debug-goto-point (p)
(interactive "NGoto char: ")
(goto-char p))
(defun opascal-debug-goto-next-token ()
(interactive)
(goto-char (opascal-token-start (opascal-next-token (opascal-current-token)))))
(defun opascal-debug-goto-previous-token ()
(interactive)
(goto-char
(opascal-token-start (opascal-previous-token (opascal-current-token)))))
(defun opascal-debug-show-current-string (from to)
(interactive "r")
(opascal-debug-log "String: %S" (buffer-substring from to)))
(defun opascal-debug-tokenize-region (from to)
(interactive)
(opascal-save-excursion
(opascal-progress-start)
(goto-char from)
(while (< (point) to)
(goto-char (opascal-token-end (opascal-current-token)))
(opascal-step-progress (point) "Tokenizing" opascal-scanning-progress-step))
(opascal-progress-done "Tokenizing done")))
(defun opascal-debug-tokenize-buffer ()
(interactive)
(opascal-debug-tokenize-region (point-min) (point-max)))
(defun opascal-debug-tokenize-window ()
(interactive)
(opascal-debug-tokenize-region (window-start) (window-end)))
(defun opascal-tab ()
"Indent the region, if Transient Mark mode is on and the region is active.
Otherwise, indent the current line or insert a TAB, depending on the
value of `opascal-tab-always-indents' and the current line position."
(interactive)
(cond ((use-region-p)
;; If Transient Mark mode is enabled and the region is active, indent
;; the entire region.
(indent-region (region-beginning) (region-end)))
((or opascal-tab-always-indents
(save-excursion (skip-chars-backward opascal-space-chars) (bolp)))
;; Otherwise, if we are configured always to indent (regardless of the
;; point's position in the line) or we are before the first non-space
;; character on the line, indent the line.
(opascal-indent-line))
(t
;; Otherwise, insert a tab character.
(insert "\t"))))
(make-obsolete 'opascal-tab 'indent-for-tab-command "24.4")
(defun opascal-is-directory (path)
;; True if the specified path is an existing directory.
(let ((attributes (file-attributes path)))
(and attributes (car attributes))))
(defun opascal-is-file (path)
;; True if the specified file exists as a file.
(let ((attributes (file-attributes path)))
(and attributes (null (car attributes)))))
(defun opascal-search-directory (unit dir &optional recurse)
;; Searches for the unit in the specified directory. If recurse is true, then
;; the directory is recursively searched. File name comparison is done in a
;; case insensitive manner.
(when (opascal-is-directory dir)
(let ((files (directory-files dir))
(unit-file (downcase unit)))
(catch 'done
;; Search for the file.
(dolist (file files)
(let ((path (concat dir "/" file)))
(if (and (string= unit-file (downcase file))
(opascal-is-file path))
(throw 'done path))))
;; Not found. Search subdirectories.
(when recurse
(dolist (subdir files)
(unless (member subdir '("." ".."))
(let ((path (opascal-search-directory
unit (concat dir "/" subdir) recurse)))
(if path (throw 'done path))))))
;; Not found.
nil))))
(defun opascal-find-unit-in-directory (unit dir)
;; Searches for the unit in the specified directory. If the directory ends
;; in \"...\", then it is recursively searched.
(let ((dir-name dir)
(recurse nil))
;; Check if we need to recursively search the directory.
(if (string-match "^\\(.+\\)\\.\\.\\.$" dir-name)
(setq dir-name (match-string 1 dir-name)
recurse t))
;; Ensure the trailing slash is removed.
(if (string-match "^\\(.+\\)[\\/]$" dir-name)
(setq dir-name (match-string 1 dir-name)))
(opascal-search-directory unit dir-name recurse)))
(defun opascal-find-unit-file (unit)
;; Finds the specified opascal source file according to `opascal-search-path'.
;; If found, the full path is returned, otherwise nil is returned.
(catch 'done
(cond ((null opascal-search-path)
(opascal-find-unit-in-directory unit "."))
((stringp opascal-search-path)
(opascal-find-unit-in-directory unit opascal-search-path))
((dolist (dir opascal-search-path)
(let ((file (opascal-find-unit-in-directory unit dir)))
(if file (throw 'done file))))))
nil))
(defun opascal-find-unit (unit)
"Find the specified OPascal source file according to `opascal-search-path'.
If no extension is specified, .pas is assumed. Creates a buffer for the unit."
(interactive "sOPascal unit name: ")
(let* ((unit-file (if (string-match "^\\(.*\\)\\.[a-z]+$" unit)
unit
(concat unit ".pas")))
(file (opascal-find-unit-file unit-file)))
(if (null file)
(error "Unit not found: %s" unit-file)
(find-file file)
(if (not (derived-mode-p 'opascal-mode))
(opascal-mode)))
file))
(defun opascal-find-current-def ()
"Find the definition of the identifier under the current point."
(interactive)
(error "opascal-find-current-def: Not implemented yet"))
(defun opascal-find-current-xdef ()
"Find the definition of the identifier under the current point, searching
in external units if necessary (as listed in the current unit's use clause).
The set of directories to search for a unit is specified by the global variable
`opascal-search-path'."
(interactive)
(error "opascal-find-current-xdef: Not implemented yet"))
(defun opascal-find-current-body ()
"Find the body of the identifier under the current point, assuming
it is a routine."
(interactive)
(error "opascal-find-current-body: Not implemented yet"))
(defun opascal-fill-comment ()
"Fill the text of the current comment, according to `fill-column'.
An error is raised if not in a comment."
(interactive)
(save-excursion
(save-restriction
(let* ((comment (opascal-current-token))
(comment-kind (opascal-token-kind comment)))
(if (not (memq comment-kind opascal-comments))
(error "Not in a comment")
(let* ((start-comment (opascal-comment-block-start comment))
(end-comment (opascal-comment-block-end comment))
;; FIXME: Don't abuse global variables like `comment-end/start'.
(comment-start (opascal-token-start start-comment))
(comment-end (opascal-token-end end-comment))
(content-start (opascal-comment-content-start start-comment))
(content-indent (opascal-column-of content-start))
(content-prefix (make-string content-indent ?\s))
(content-prefix-re opascal-leading-spaces-re)
(p nil)
(marked-point (point-marker))) ; Maintain our position reliably.
(when (eq 'comment-single-line comment-kind)
;; // style comments need more work.
(setq content-prefix
(let ((comment-indent (opascal-column-of comment-start)))
(concat (make-string comment-indent ?\s) "//"
(make-string (- content-indent comment-indent 2)
?\s)))
content-prefix-re (concat opascal-leading-spaces-re
"//"
opascal-spaces-re)
comment-end (if (opascal-is-literal-end comment-end)
;; Don't include the trailing newline.
(1- comment-end)
comment-end)))
;; Advance our marked point after inserted spaces.
(set-marker-insertion-type marked-point t)
;; Ensure we can modify the buffer
(goto-char content-start)
(insert " ")
(delete-char -1)
(narrow-to-region content-start comment-end)
;; Strip off the comment prefixes
(setq p (point-min))
(while (when (< p (point-max))
(goto-char p)
(re-search-forward content-prefix-re nil t))
(replace-match "" nil nil)
(setq p (1+ (point))))
;; add an extra line to prevent the fill from doing it for us.
(goto-char (point-max))
(insert "\n")
;; Fill the comment contents.
(let ((fill-column (- fill-column content-indent)))
(fill-region (point-min) (point-max)))
(goto-char (point-max))
(delete-char -1)
;; Restore comment prefixes.
(goto-char (point-min))
(end-of-line) ; Don't reset the first line.
(setq p (point))
(while (when (< p (point-max))
(goto-char p)
(re-search-forward "^" nil t))
(replace-match content-prefix nil nil)
(setq p (1+ (point))))
(setq comment-end (point-max))
(widen)
;; Restore our position
(goto-char marked-point)
(set-marker marked-point nil)))))))
(defun opascal-new-comment-line ()
"If in a // comment, do a newline, indented such that one is still in the
comment block. If not in a // comment, just does a normal newline."
(declare
(obsolete "use comment-indent-new-line with comment-multi-line instead"
"27.1"))
(interactive)
(let ((comment (opascal-current-token)))
(if (not (eq 'comment-single-line (opascal-token-kind comment)))
;; Not in a // comment. Just do the normal newline.
(newline)
(let* ((start-comment (opascal-comment-block-start comment))
(comment-start (opascal-token-start start-comment))
(content-start (opascal-comment-content-start start-comment))
(prefix
(concat (make-string (opascal-column-of comment-start) ?\s) "//"
(make-string (- content-start comment-start 2) ?\s))))
(delete-horizontal-space)
(insert "\n" prefix)))))
(defun opascal-match-token (token limit)
;; Sets the match region used by (match-string 0) and friends to the token's
;; region. Sets the current point to the end of the token (or limit).
(set-match-data nil)
(if token
(let ((end (min (opascal-token-end token) limit)))
(set-match-data (list (opascal-token-start token) end))
(goto-char end)
token)))
(defconst opascal-font-lock-keywords
`(("\\_<\\(function\\|pro\\(cedure\\|gram\\)\\)[ \t]+\\([[:alpha:]][[:alnum:]_]*\\)"
(1 font-lock-keyword-face) (3 font-lock-function-name-face))
,(concat "\\_<" (regexp-opt (mapcar #'symbol-name opascal-keywords))
"\\_>")))
(defconst opascal-font-lock-defaults
'(opascal-font-lock-keywords
nil ; Syntactic fontification does apply.
nil ; Don't care about case since we don't use regexps to find tokens.
nil ; Syntax alists don't apply.
nil ; Syntax begin movement doesn't apply.
)
"OPascal mode font-lock defaults. Syntactic fontification is ignored.")
(defconst opascal--syntax-propertize
(syntax-propertize-rules
;; The syntax-table settings are too coarse and end up treating /* and (/
;; as comment starters. Fix it here by removing the "2" from the syntax
;; of the second char of such sequences.
("/\\(\\*\\)" (1 ". 3b"))
("(\\(/\\)" (1 (prog1 ". 1c" (forward-char -1) nil)))
;; Pascal uses '' and "" rather than \' and \" to escape quotes.
("''\\|\"\"" (0 (if (save-excursion
(nth 3 (syntax-ppss (match-beginning 0))))
(string-to-syntax ".")
;; In case of 3 or more quotes in a row, only advance
;; one quote at a time.
(forward-char -1)
nil)))))
(defvar opascal-debug-mode-map
(let ((kmap (make-sparse-keymap)))
(dolist (binding '(("n" opascal-debug-goto-next-token)
("p" opascal-debug-goto-previous-token)
("t" opascal-debug-show-current-token)
("T" opascal-debug-tokenize-buffer)
("W" opascal-debug-tokenize-window)
("g" opascal-debug-goto-point)
("s" opascal-debug-show-current-string)))
(define-key kmap (car binding) (cadr binding)))
kmap)
"Keystrokes for OPascal mode debug commands.")
(defvar opascal-mode-map
(let ((kmap (make-sparse-keymap)))
(dolist (binding
(list ;; '("\C-cd" opascal-find-current-def)
;; '("\C-cx" opascal-find-current-xdef)
;; '("\C-cb" opascal-find-current-body)
'("\C-cu" opascal-find-unit)
'("\M-q" opascal-fill-comment)
;; '("\M-j" opascal-new-comment-line)
;; Debug bindings:
(list "\C-c\C-d" opascal-debug-mode-map)))
(define-key kmap (car binding) (cadr binding)))
kmap)
"Keymap used in OPascal mode.")
(define-obsolete-variable-alias 'delphi-mode-hook 'opascal-mode-hook "24.4")
;;;###autoload
(define-obsolete-function-alias 'delphi-mode #'opascal-mode "24.4")
;;;###autoload
(define-derived-mode opascal-mode prog-mode "OPascal"
"Major mode for editing OPascal code.
\\<opascal-mode-map>
\\[opascal-find-unit]\t- Search for a OPascal source file.
\\[opascal-fill-comment]\t- Fill the current comment.
\\[opascal-new-comment-line]\t- If in a // comment, do a new comment line.
\\[indent-region] also works for indenting a whole region.
Customization:
`opascal-indent-level' (default 3)
Indentation of OPascal statements with respect to containing block.
`opascal-compound-block-indent' (default 0)
Extra indentation for blocks in compound statements.
`opascal-case-label-indent' (default 0)
Extra indentation for case statement labels.
`opascal-search-path' (default .)
Directories to search when finding external units.
`opascal-verbose' (default nil)
If true then OPascal token processing progress is reported to the user.
Coloring:
`opascal-keyword-face' (default `font-lock-keyword-face')
Face used to color OPascal keywords."
;; Buffer locals:
(setq-local indent-line-function #'opascal-indent-line)
(setq-local comment-indent-function #'opascal-indent-line)
(setq-local case-fold-search t)
(setq-local opascal-progress-last-reported-point nil)
(setq-local font-lock-defaults opascal-font-lock-defaults)
(setq-local tab-always-indent opascal-tab-always-indents)
(setq-local syntax-propertize-function opascal--syntax-propertize)
(setq-local comment-start "// ")
(setq-local comment-start-skip "\\(?://\\|(\\*\\|{\\)[ \t]*")
(setq-local comment-end-skip "[ \t]*\\(?:\n\\|\\*)\\|}\\)"))
(provide 'opascal)
;;; opascal.el ends here
|