This file is indexed.

/usr/share/emacs/site-lisp/emacs-goodies-el/ctypes.el is in emacs-goodies-el 36.3ubuntu1.

This file is owned by root:root, with mode 0o755.

The actual contents of the file can be viewed below.

   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
;;; ctypes.el --- Enhanced Font lock support for custom defined types.

;; Copyright (C) 1997, 1999 Anders Lindgren.

;; Author: Anders Lindgren <andersl@andersl.com>
;; Maintainer: Anders Lindgren <andersl@andersl.com>
;; Version: 1.4 by Peter S Galbraith
;; Created: 1997-03-16
;; Date: 2003-11-10

;; CTypes 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, or (at your option)
;; any later version.

;; CTypes 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; see the file COPYING.  If not, write to the
;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;; Boston, MA 02111-1307, USA.

;;; Commentary:

;;{{{ Documentation

;; Background:
;;
;; As most Emacs users know, Emacs can fontify source code buffers
;; using the `font-lock' package.  Most of the time it does a really
;; good job.  Unfortunately, the syntax of one of the most widely
;; spread languages, C, makes it difficult to fontify variable
;; declarations.  For example, what does the following line mean:
;;
;;     hello(foo * bar);
;;
;; 1) A new function `hello' that takes one argument `bar' that is a
;;    pointer to a `foo', or;
;;
;; 2) call the function `hello' with the result of `foo' multiplied
;;    by `bar'.
;;
;; To answer the question correctly you must know whether `foo' is a
;; type or not.  Unfortunately, font-lock has no way of knowing this.

;; This package:
;;
;; This package can search through source files hunting down typedefs.
;; When found, font-lock is informed and your source code will be even
;; more beautifully colored than before.
;;
;; Each major mode has it's own set of types.  It is possible for one
;; major mode to inherit the types of another mode.
;;
;; Currently, this package can parse C and C++ files.  (However, since
;; I do not use C++, the probability is high (about 12, on a scale
;; from 1 to 12) that I've missed something).  By default C++ inherits
;; the types defined for C mode.

;; Installation:
;;
;; Place this file in any directory in the emacs load path
;; and add the following line to your init file:
;;  (require 'ctypes)
;;
;; Or, if you should prefer to load ctypes only when needed:
;;
;; (defun my-activate-ctypes () (require 'ctypes))
;; (add-hook 'c-mode-hook 'my-activate-ctypes)
;; (add-hook 'c++-mode-hook 'my-activate-ctypes)
;;
;; Of course, you must also activate font-lock.  I also recomend using
;; lazy-lock since adding types requires refontification of all
;; buffers.  (Should you use many small buffers, consider lowering
;; `lazy-lock-minimum-size' aswell.)

;; Defining types:
;;
;; The following commands are available to define and remove types:
;;
;; `ctypes-define-type'            Add a type.
;; `ctypes-define-type-in-mode'    Add a type to another major mode.
;; `ctypes-buffer'                 Scan a buffer for types.
;; `ctypes-all-buffer'             Scan all buffer for types.
;; `ctypes-tags'                   Search through all files in a TAGS table.
;; `ctypes-dir'                    Search a directory hierarchy for files.
;; `ctypes-file'                   Search in a file for types.
;; `ctypes-remove-type'            Remove one type.
;; `ctypes-remove-type-in-mode'    Remove one type in another mode.
;; `ctypes-clear-types'            Forget all types.
;; `ctypes-clear-types-all-modes'  Forget all types in all major modes.

;; Edit types:
;;
;; If you would like to view or change the types found you can use the
;; function `ctypes-edit'.  When done press C-c C-c.  Should you like
;; do discard your changes just kill the buffer with C-x k.
;;
;; To edit the types for another major mode use the command
;; `ctypes-edit-types-for-mode'.

;; Saving types:
;;
;; The commands `ctypes-write-file' and `ctypes-read-file' can be used
;; to save your hard-earned collection of types to a file and to
;; retrieve it later.
;;
;; The default file name is stored in the variable `ctypes-file-name'.
;;
;; Note that only one collection of types are managed.  Should you
;; prefer to keep one type file per project, remember to clear the set
;; of known types (using the command `ctypes-clear-types-all-modes')
;; before each new set is generated.

;; At Load:
;;
;; It is possible to automatically add new types, or read specific
;; type files, when Emacs opens a file.
;;
;; By adding a "Local Variables" section to the end of the file
;; containing the variables `ctypes-add-types-at-load' and/or
;; `ctypes-read-files-at-load' this can be accomplished.
;;
;; For example:
;;
;; /*
;;  * Local Variables:
;;  * ctypes-add-types-at-load: ("MyType" "YourType")
;;  * ctypes-read-files-at-load: (".ctypes")
;;  * End:
;;  */

;; The `Auto Parse' mode:
;;
;; This package can automatically search for new types in all visited
;; files.  Activate the minor mode `ctypes-auto-parse-mode' to enable
;; this feature.
;;
;; Add the following line to your startup file to automatically
;; scan all visited files:
;;  (ctypes-auto-parse-mode 1)

;; Example 1:
;;
;; The following setup is for the really lazy person.  The keywords
;; collected during one session will be kept for the next, and all
;; visited files will be parsed in the boldly search for new types.
;; I would recomend using this approach only when you are keeping all
;; your types in one file.
;;
;; (require 'ctypes)
;; (setq ctypes-write-types-at-exit t)
;; (ctypes-read-file nil nil t t)
;; (ctypes-auto-parse-mode 1)

;; Example 2:
;;
;; In this example, ctypes will not be not loaded until either c-mode
;; or c++-mode is activated.  When loaded, ctypes will read the type
;; file "~/.ctypes_std_c" (containing, for example, all types defined
;; in the standard C header files).
;;
;; (defun my-c-mode-hook ()
;;   (require 'ctypes)
;;   (turn-on-font-lock))
;; (add-hook 'c-mode-hook 'my-c-mode-hook)
;; (add-hook 'c++-mode-hook 'my-c-mode-hook)
;;
;; (defun my-ctypes-load-hook ()
;;   (ctypes-read-file "~/.ctypes_std_c" nil t t))
;; (add-hook 'ctypes-load-hook 'my-ctypes-load-hook)

;; Home Page:
;;
;; You can always find the latest version of this package on my Emacs
;; page:
;;
;;     http://www.andersl.com/emacs

;; Reporting bugs:
;;
;;     Out of the last ten bugs you found, how many did you report?
;;
;; When reporting a bug, please:
;;
;; * Send a mail the maintainer of the package, or to the author
;;   if no maintainer exists.
;; * Include the name of the package in the title of the mail, to
;;   simplify for the recipient.
;; * State exactly what you did, what happened, and what you expected
;;   to see when you found the bug.
;; * If possible, include an example that activates the bug.
;; * Should you speculate about the cause of the problem, please
;;   state explicitly that you are guessing.

;; CTypes, the true story:
;;
;; Well, brave reader, are you willing to learn what this package
;; really is capable of?
;;
;; Basically, it is a general purpose parsing package.  The default
;; settings just happened to specify a parser that looks for C
;; typedefs, and that the default action is to add the types found to
;; font-lock.
;;
;; Be redefining the variable `ctypes-mode-descriptor' you can change
;; the behavior totally.  For example, you can use it to search for
;; all occurrences of XX (replace XX with whatever you like) in all
;; files edited in major mode YY (ditto for YY) and to perform ZZ-top
;; whenever a new XX is found.  (However, it might be difficult for
;; Emacs to grow a beard).
;;
;; I will, however, in the document string, write "search for types"
;; when I really mean "Call the parser routine as specified by
;; `ctypes-mode-descriptor'".  Also, I write "Informing font-lock"
;; whenever I mean "Performing the default action as specified in
;; `ctypes-mode-descriptor'".

;; The future:
;;
;; Should this package be included in future versions of Emacs almost
;; all of the font-lock code could be removed.  Also there will be no
;; need to load font-lock to determine which version of
;; ctypes-mode-descriptor to use.

;;}}}

;;; History:
;;
;; 1.3.1 is from http://www.juliocastillo.com/emacs/site-lisp/ctypes.el
;;
;; 1.4  Peter S Galbraith <psg@debian.org>
;;  I can't find the author, so did a few changes myself.
;;  - minor checkdoc changes (it still lists 43 documentation errors).
;;  - custom support.
;;  - add defcustom `ctypes-install' for easier setup in Debian package
;;    emacs-goodies-el.

;;; Code:

;;{{{ Dependencies

;; The only reason to load font-lock is to determine the font-lock
;; version we are using.

(require 'font-lock)
(require 'cc-mode)

(eval-when-compile
  (require 'cl))

;;}}}
;;{{{ Variables

(defgroup ctypes nil
  "Enhanced Font lock support for custom defined types."
  :group 'programming)

(defcustom ctypes-install nil
  "*Whether to load this file at macs startup.
Setting this variable will load the file to install the 'find-file-hooks
and 'kill-emacs-hook hooks.  The effect is the same as adding
 (require 'ctypes)
in your Emacs initilization file.
The file ctypes.el must be in the Emacs load-path when the customization
code is run in .emacs otherwise Emacs will not find it and will yield an
error."
  :type 'boolean
  :require 'ctypes
  :group 'ctypes)

(defcustom ctypes-file-name "~/.ctypes"
  "*Default name of file to read types from.
When `ctypes-read-file' and `ctypes-write-file' are called interactively
the directory part of the file name is ignored."
  :type 'file
  :group 'ctypes)

(defcustom ctypes-write-types-at-exit nil
  "*When non-nil types are saved to file when Emacs exits.
When this variable be 'ask, the user is prompted before the types are saved."
  :type '(choice
          (const :tag "t; save to file when Emacs exits" t)
          (const :tag "nil; do not save to file when Emacs exits" nil)
          (const :tag "ask; prompt before saving" ask))
  :group 'ctypes)

(defvar ctypes-mode-descriptor
  (if (boundp 'c-font-lock-extra-types)
      ;; A new version of font-lock is used.  (As of this writing,
      ;; it has not yet been released.)
      '((c-mode
         (parser ctypes-parse-buffer-c)
         (action ctypes-font-lock-set-extra-types
                 c-font-lock-extra-types))
        (c++-mode
         (inherit c-mode)
         (parser ctypes-parse-buffer-c++)
         (action ctypes-font-lock-set-extra-types
                 c++-font-lock-extra-types)))
    ;; The following can be used together with good old font-lock from
    ;; XEmacs and GNU Emacs up to, and including, 19.34.
    '((c-mode
       (parser ctypes-parse-buffer-c)
       (action ctypes-font-lock-add-keywords
               ((1 c-font-lock-keywords-2)
                (1 c-font-lock-keywords-3)
                (2 c-font-lock-keywords-3 t))))
      (c++-mode
       (inherit c-mode)
       (parser ctypes-parse-buffer-c++)
       (action ctypes-font-lock-add-keywords
               ((1 c++-font-lock-keywords-2)
                (1 c++-font-lock-keywords-3)
                (2 c++-font-lock-keywords-3 t))))))
  "*Describe parser, action, and inheritance structure of major mode.

This structure should be a list where each element should be on
the following form:
    (<major-mode>
     (inherit <other-major-mode>)
     (parser <parser function>)
     (action function [Optional extra arguments]))

The function specified in the `action' field is called with at least
one arguments, the major mode.  Should the function in the action
field be followed by anything it will be used as additional arguments
when the function is called.")


(defcustom ctypes-dir-read-file nil
  "*Variable determining which files `ctypes-dir' should read.

When searching for types in a large number of files it is difficult to
determine which files to parse.  Some types can be missed should too few
file be opened, and the parse process could take much longer than needed
with too many files.

The default behavior, when `ctypes-dir-read-file' is nil, is to look
at the extension of the files found.  Should it match a major mode in
`auto-mode-alist', and the major mode is in `ctypes-mode-descriptor'
we read the file.  Obviously, this approach is fast but it is possible
to miss files.

After the file has been read the real major mode is determined from
the content of the file.  This allows you to specify the real mode
using the -*- mode -*- construction.

Should this variable be t, all non-backup files are read.

Please see the variable `ctypes-dir-backup-files' for a description on
how backup files are treated.

To open only a few extra files, bind this variable to a regexp.

For example, when using the following setting `ctypes-dir' will
open all files ending in `.cplusplus'.

    (setq ctypes-dir-read-file \"\\\\.cplusplus\\\\'\")

However, the files would still need a -*- C++ -*- header line
to be parsed as C++ files."
  :type '(choice (const :tag "nil; fast approach." nil)
                 (const :tag "t; read all non-backup files" t)
                 (regexp :tag "regexp to match files"))
  :group 'ctypes)

(defcustom ctypes-dir-backup-files nil
  "*Non-nil means that `ctypes-dir' should parse backup files."
  :type 'boolean
  :group 'ctypes)

(defcustom ctypes-auto-parse-mode-hook nil
  "*List of functions to run when `ctypes-auto-parse-mode' is activated."
  :type 'hook
  :group 'ctypes)

(defcustom ctypes-load-hook nil
  "*List of functions to run when `ctypes' is loaded."
  :type 'hook
  :group 'ctypes)

(defvar ctypes-saved-p t
  "Nil when types not saved to file.")

(defvar ctypes-auto-parse-mode nil
  "Non-nil when the minor mode `ctypes-auto-parse-mode' is enabled.

When this mode is active the `ctypes' package will search for
types in all new buffers loaded.

To start the mode call the function `ctypes-auto-parse-mode', do not
set this variable explicitly.")

(defvar ctypes-repetitive-type-regexp
  (concat "\\<\\(short\\|int\\|long\\|float\\|"
          "double\\|char\\|\\(un\\)?signed\\|const\\)\\>")
  "Regexp matching C types and modifiers that can be combined.

Example: `unsigned char'")


;; In some environments the $-sign can be part of C identifiers.
(defvar ctypes-identifier-regexp "[a-zA-Z_][a-zA-Z0-9_$]*"
  "Regexp matching C identifiers.")
;; I removed the :-sign, why was it added?  (Maybe the regexp should
;; match stuff not ending in colon.)


;; Useful during debug and development.
(defvar ctypes-parse-error nil
  "(File pos) of latest error, or nil.")

;;}}}
;;{{{ Commands

;;;###autoload
(defun ctypes-define-type (type &optional delay-action mode)
  "Add a new TYPE to current major mode and inform font-lock.

When preceded by C-u the display is not updated.

Return non-nil if the type was not known before."
  (interactive
   (list
    (let* ((default (ctypes-get-type-under-point))
           (prompt (if default
                       (format "Type: (default %s) " default)
                     "Type: "))
           (spec (read-string prompt)))
      (if (equal spec "") default spec))
    prefix-arg))
  (if (equal type "")
      (error "Can't define \"\" as a type"))
  (or mode
      (setq mode major-mode))
  (and type
       (> (length type) 0)
       (let ((added (ctypes-add-types mode (list type))))
         (ctypes-perform-action mode added delay-action)
         added)))


;; Designed for interactive use only.
;;;###autoload
(defun ctypes-define-type-in-mode (type &optional delay-action mode)
  "Add TYPE to major mode MODE and inform font-lock.

When preceded by C-u the display is not updated.

\(This function is designed for interactive use, please call
`ctypes-define-type' from Lisp programs.)"
  (interactive "sType: \nP\nsIn mode: ")
  (ctypes-define-type type delay-action (ctypes-string-to-mode mode)))


;;;###autoload
(defun ctypes-buffer (&optional buf delay-action mode)
  "Search for types in buffer, inform font-lock if any is found.

When preceded by C-u the action is not performed.

Return non-nil if new types are found."
  (interactive "bSearch for types in buffer: \nP")
  (save-excursion
    (if buf
        (set-buffer buf)
      (setq buf (current-buffer)))
    (or mode
        (setq mode major-mode)))
  (let ((added (ctypes-add-types mode (ctypes-parse-buffer buf mode))))
    (ctypes-perform-action mode added delay-action)
    added))


;;;###autoload
(defun ctypes-all-buffers (&optional delay-action)
  "Search for types in all buffers, inform font-lock about all discoveries.

When preceded by C-u the display is not updated.

Return non-nil if new types are found."
  (interactive "P")
  (save-excursion
    (let ((modes '())
          (added nil))
      (dolist (buf (buffer-list))
        (set-buffer buf)
        (if (assq major-mode ctypes-mode-descriptor)
            (if (not (ctypes-buffer nil t))
                ()
              (setq added t)
              (if (not (memq major-mode modes))
                  (setq modes (cons major-mode modes))))))
      (ctypes-perform-action modes added delay-action)
      added)))


;;;###autoload
(defun ctypes-tags (&optional delay-action)
  "Search for types in files in the visited TAGS table.
Should no tags table be visited, the user will be prompted for a new.

When preceded by C-u the display is not updated.

Return non-nil if new types are found."
  (interactive "P")
  (let ((modes (ctypes-tags-parse)))
    (ctypes-perform-action modes t delay-action)
    (not (null modes))))


;;;###autoload
(defun ctypes-dir (&optional dir delay-action)
  "Search for types in files in a directory hierarchy.

See variable `ctypes-dir-read-file' for a description of which files
are opened during scanning, and how you can change the behavior.

When preceded by C-u the display is not updated.

Return non-nil if new types are found."
  (interactive "DSearch in directory: \nP")
  (if (null dir)
      (setq dir default-directory))
  (let ((dirs (list dir))
        (modes '()))
    (while dirs
      (setq dir (car dirs))
      (setq dirs (cdr dirs))
      (dolist (file (directory-files dir t)) ; Files and dirs
        (cond
         ((file-accessible-directory-p file)
          (if (and (not (string= (file-name-nondirectory file) "."))
                   (not (string= (file-name-nondirectory file) "..")))
              (setq dirs (cons file dirs))))
         ((file-readable-p file)
          (if (or ctypes-dir-backup-files
                  (not (backup-file-name-p file)))
              (if (or (eq ctypes-dir-read-file t)
                      (and (stringp ctypes-dir-read-file)
                           (string-match ctypes-dir-read-file file))
                      (assq (ctypes-get-mode-from-file-name file)
                            ctypes-mode-descriptor))
                  (let ((mode (ctypes-file file t)))
                    (if mode
                        (setq modes (cons mode modes))))))))))
    (and modes
         (ctypes-perform-action modes t delay-action))))


;;;###autoload
(defun ctypes-file (file &optional delay-action)
  "Search for types in file FILE.
Should FILE not be loaded it is read into a temporary buffer.

Return mode of file, if new types was found."
  (interactive "fSearch in file: \nP")
  ;; (message "Scanning %s..." file)    ; Debug
  (let ((added nil)
        mode)
    (save-excursion
      (cond ((get-file-buffer file)
             (set-buffer (find-file-noselect file t))
             (setq mode major-mode)
             (setq added (ctypes-buffer nil t mode)))
            (t
             (set-buffer (get-buffer-create " *ctypes-file*"))
             (kill-all-local-variables)
             (erase-buffer)
             (insert-file-contents file nil)
             (let ((buffer-file-name file))
               (setq mode (ctypes-get-mode))
               (if mode
                   (setq added (ctypes-buffer nil delay-action mode))))
             (kill-buffer (current-buffer)))))
    ;; (message "Scanning %s...done" file)      ; Debug
    (if mode
        (ctypes-perform-action mode added delay-action))
    (and added mode)))


(defun ctypes-remove-type (type &optional delay-action mode)
  "Remove TYPE from the set of known types for major mode of current buffer.

When preceded by C-u the display is not updated.

Return non-nil if type is removed."
  (interactive
   (list
    (let* ((default (ctypes-get-type-under-point))
           (prompt (if default
                       (format "Type: (default %s) " default)
                     "Type: "))
           (spec (read-string prompt)))
      (if (equal spec "") default spec))
    prefix-arg))
  (or mode
      (setq mode major-mode))
  (let ((removed (ctypes-delete-types mode (list type))))
    (ctypes-perform-action mode removed delay-action)
    removed))


;; Designed for interactive use only.
(defun ctypes-remove-type-in-mode (type &optional delay-action mode)
  "Remove TYPE from the set of known types for major mode MODE.

MODE can either be a symbol (e.g. c++-mode), or a string (e.g. \"C++\").

When preceded by C-u the display is not updated.

Return non-nil if type is removed."
  (interactive "sType: \nP\nsIn mode: ")
  (ctypes-remove-type type delay-action (ctypes-string-to-mode mode)))


(defun ctypes-clear-types (&optional delay-action)
  "Clear all known types for major mode of current buffer.

When preceded by C-u the display is not updated.

Return non-nil if any types actually were removed."
  (interactive "P")
  (setq ctypes-parse-error nil)         ; Debug
  (let ((removed (ctypes-set-types major-mode '())))
    (ctypes-perform-action major-mode removed delay-action)
    removed))


(defun ctypes-clear-types-all-modes (&optional delay-action)
  "Clear all types for all modes.

When preceded by C-u the display is not updated.

Return non-nil if any types actually were removed."
  (interactive "P")
  (setq ctypes-parse-error nil)         ; Debug
  (let ((modes '()))
    (dolist (desc ctypes-mode-descriptor)
      (if (ctypes-set-types (car desc) '())
          (setq modes (cons (car desc) modes))))
    (if modes
        (ctypes-perform-action modes t t))
    (or delay-action
        (ctypes-perform-delayed-action))
    (not (null modes))))


(defun ctypes-update ()
  "Make sure no delayed action is pending for types of major mode.

Since it can take some time to re-fontify all buffers after every
command it is possible to inhibit redisplay by preceding the command
by C-u.  This command can be used to refontify all buffers after a
number of such commands."
  (ctypes-perform-action major-mode nil t))


(defun ctypes-update-all-modes ()
  "Make sure no delayed action is pending for any major mode.

Since it can take some time to re-fontify all buffers after every
command it is possible to inhibit redisplay by preceding the command
by C-u.  This command can be used to refontify all buffers after a
number of such commands."
  (ctypes-perform-delayed-action))

;;}}}
;;{{{ Minor mode: ctypes-auto-parse-mode

;;;###autoload
(defun ctypes-auto-parse-mode (&optional arg)
  "Toggle CTypes auto parse mode; search all new buffers for types.
With arg, turn types Auto Mode on if and only if arg is positive.

This a global minor mode, it does not have a private keymap, nor does
it add itself to the mode line.

Place the following in your startup file to enable this feature in
future sessions:

    (require 'ctypes)
    (ctypes-auto-parse-mode 1)

When activated, the functions in the hook `ctypes-auto-parse-mode-hook'
is called with no args."
  (interactive "P")
  (setq ctypes-auto-parse-mode
        (if (null arg)
            (not ctypes-auto-parse-mode)
          (> (prefix-numeric-value arg) 0)))
  (if ctypes-auto-parse-mode
      (run-hooks 'ctypes-auto-parse-mode-hook)))

;;}}}
;;{{{ Find-file hook

(defvar ctypes-add-types-at-load '()
  "List of types to be added when file is opened.

This variable is designed to be used in a \"Local Variables\" section
at the end of source files.")


(defvar ctypes-read-files-at-load '()
  "CTypes files to be read when file is opened.

This variable could either be the name of a type file, or a list of
type files.

This variable is designed to be used in a \"Local Variables\" section
at the end of source files.  Should this variable not be defined in a
Local Variables section, the global value is used.  By setting this
varible to, for examle, \".ctypes\" Emacs will try to read a type file
named \".ctypes\" in every directory it opens files from.")


(defun ctypes-find-file-hook ()
  "Add types specified in file local variables.

This function is called every time a file is opened.  It looks at two
variables `ctypes-add-types-at-load' and `ctypes-read-files-at-load'.
They are designed to be added to the \"Local Variables:\" section at
the end of source files.  The idea is to automatically set or load
the types needed when a file is opened.

When `ctypes-auto-parse-mode' is active this function will parse
the content of the buffer looking for types."
  (let ((added nil))
    (if (and ctypes-add-types-at-load
             (ctypes-add-types major-mode ctypes-add-types-at-load))
        (setq added t))
    (dolist (file (or (and (stringp ctypes-read-files-at-load)
                           (list ctypes-read-files-at-load))
                      ctypes-read-files-at-load))
      (if (and (stringp file)
               (ctypes-read-file file nil t))
            (setq added t)))
    (if ctypes-auto-parse-mode
        (ctypes-buffer nil t))
    (ctypes-perform-action major-mode added nil)))

;;}}}
;;{{{ Read and write

;;;###autoload
(defun ctypes-read-file (&optional file delay-action no-error quietly)
  "Load types previously saved with `ctypes-write-file'.
The name of the file is given by the optional argument FILE.
Should no file name be given the value of the variable `ctypes-file-name'
is used.

Please note that the types read will be added to the current types.

When preceded by C-u the display is not updated.

The third argument, NO-ERROR, determines whether or not we should
raise an error if there should be any problem loading the file.

Should the fourth argument, QUIETLY, be non-nil no messages are
generated when the file is loaded.

Return non-nil if new types are found."
  (interactive
   (list
    (ctypes-interactive-read-file-name "Read types from file: ")
    current-prefix-arg))
  (setq file (ctypes-gen-file-name file))
  (let ((current-types-alist '()))
    (dolist (desc ctypes-mode-descriptor)
      (let ((mode (car desc)))
        (setq current-types-alist
              (cons (cons mode (ctypes-get-types mode))
                    current-types-alist))))
    (load file no-error quietly)
    (setq ctypes-saved-p t)
    ;; Add the original types, and update wherever needed.
    (let ((modes '()))          ; Updated modes
      (dolist (pair current-types-alist)
        (if (not (ctypes-subset
                  (ctypes-get-types (car pair))
                  (cdr pair)))
            ;; New types was defined for this mode.
            (setq modes (cons (car pair) modes)))
        (ctypes-add-types (car pair) (cdr pair)))
      (if modes
          (ctypes-perform-action modes t delay-action))
      modes)))


(defun ctypes-write-file (&optional file)
  "Write all types to a file.
The file is readable by the function `ctypes-read-file'.

Should no file name be given, the value of the variable `ctypes-file-name'
is used."
  (interactive
   (list
    (ctypes-interactive-read-file-name "Write types file: ")))
  (setq file (ctypes-gen-file-name file))
  (save-excursion
    (set-buffer (get-buffer-create " *ctypes-write-file*"))
    (erase-buffer)
    (insert ";; This file has been automatically generated by the ")
    (insert "Emacs package `ctypes'.\n")
    (insert ";; Please use the `ctypes-read-file' to load it.\n\n")
    (dolist (desc ctypes-mode-descriptor)
      (insert "(ctypes-set-types '")
      (insert (prin1-to-string (car desc)))
      (insert " '")
      (insert (prin1-to-string (ctypes-get-types (car desc))))
      (insert ")\n\n"))
    (write-region 1 (point-max) file)
    (erase-buffer))
  (setq ctypes-saved-p t))


(defun ctypes-kill-emacs-hook (&optional file)
  "Save the types to FILE, when needed.

Should the variable `ctypes-write-types-at-exit' be nil this function
does nothing.  Should it be the atom `ask' the user is prompted before
the types are saved.

When FILE is nil, the variable `ctypes-file-name' is used."
  (interactive)
  (setq file (ctypes-gen-file-name file))
  (and (not ctypes-saved-p)
       ctypes-write-types-at-exit
       (or (not (eq ctypes-write-types-at-exit 'ask))
           (y-or-n-p (format "Save types in `%s'? " file)))
       (ctypes-write-file file)))


(defun ctypes-interactive-read-file-name (prompt)
  "Command argument reader, suitable for `interactive'."
  (read-file-name prompt
                  default-directory
                  (file-name-nondirectory ctypes-file-name)))


(defun ctypes-gen-file-name (file)
  "Generate the file name to used to read and write the types.

Should FILE be nil or an empty string, the content of the
variable `ctypes-file-name' is used.  Should FILE be a directory
name, the file part of `ctypes-file-name' is added to FILE."
  (cond ((or (null file) (string= file ""))
         ctypes-file-name)
        ((file-directory-p file)
         ;; I really would like a system-independent
         ;; add-file-to-directory function...
         (let* ((base (file-name-nondirectory ctypes-file-name))
                (first-try (concat file base)))
           (if (string= base (file-name-nondirectory first-try))
               first-try
             (concat file "/" base))))
        (t file)))

;;}}}
;;{{{ Edit

(defvar ctypes-edit-map nil
  "Keymap used in `ctypes-edit' mode.")
(if ctypes-edit-map
    nil
  (setq ctypes-edit-map (make-sparse-keymap))
  (define-key ctypes-edit-map "\C-c\C-c" 'ctypes-edit-update-and-exit)
  (define-key ctypes-edit-map "\C-c\C-x" 'ctypes-edit-update)
  (define-key ctypes-edit-map "\C-c\C-w" 'ctypes-edit-write-file))


(defvar ctypes-edit-types-for-mode nil
  "Major mode that the edited types belong to.

This is a buffer-local variable used by `ctypes-edit-mode'.")


(defun ctypes-edit (&optional mode)
  "Create buffer for editing types in current major mode.

The buffer can be edited using normal Emacs editing commands.  When
done, press C-c C-c to use the edited version of the types.

See also the function `ctypes-edit-types-in-mode'."
  (interactive)
  (or mode
      (setq mode major-mode))
  (let ((buf (get-buffer-create "*ctypes-edit*"))
        (lst (ctypes-get-types mode)))
    (if (not (assq mode ctypes-mode-descriptor))
        (error "Can't edit types for %s %s"
               mode "(see variable `ctypes-mode-descriptor')."))
    (switch-to-buffer buf)
    (set (make-local-variable 'ctypes-edit-types-for-mode) mode)
    (erase-buffer)
    (insert (format ";; Types for %s.\n" mode))
    (insert ";;\n")
    (insert ";; Press `C-c C-c' to install types.\n")
    (insert ";;       `C-x k' to discard changes.\n\n")
    (save-excursion
      (dolist (type lst)
        (insert type)
        (insert "\n")))
    (set-buffer-modified-p nil)
    (ctypes-edit-mode)))


;; This function is designed for interactive use only.
(defun ctypes-edit-types-in-mode (mode)
  "Create buffer for editing types in major mode MODE.

The buffer can be edited using normal Emacs editing commands.  When
done, press C-c C-c to install the edited version of the types."
  (interactive "sMode: ")
  (ctypes-edit (ctypes-string-to-mode mode)))


(defun ctypes-edit-mode ()
  "Major mode for editing types.
\\{ctypes-edit-map}"
  (interactive)
  (setq major-mode 'ctypes-edit-mode)
  (setq mode-name "CTypes-Edit")
  (use-local-map ctypes-edit-map))


(defun ctypes-edit-update (&optional delay-action)
  "Install the types currently found in the *ctypes-edit* buffer.

When preceded by C-u the display is not updated.

Return non-nil if the set of types has been changed."
  (interactive "P")
  (if (not (eq major-mode 'ctypes-edit-mode))
      (error "Command only meaningful in the *ctypes-edit* buffer"))
  (let* ((lst (ctypes-edit-get-types))
         (added (ctypes-set-types ctypes-edit-types-for-mode lst)))
    (ctypes-perform-action ctypes-edit-types-for-mode added delay-action)
    added))


(defun ctypes-edit-update-and-exit (&optional inhibit-redraw)
  "Install the types and close the edit buffer.

When preceded by C-u the display is not updated.

Return non-nil if the set of types has been changed."
  (interactive "P")
  (prog1
      (ctypes-edit-update inhibit-redraw)
    (set-buffer-modified-p nil)
    (kill-buffer (current-buffer))))


(defun ctypes-edit-write-file (file &optional inhibit-redraw)
  (interactive
   (list
    (ctypes-interactive-read-file-name "Write types file: ")
    current-prefix-arg))
  (ctypes-edit-update inhibit-redraw)
  (ctypes-write-file file)
  (set-buffer-modified-p nil))


(defun ctypes-edit-get-types ()
  "Return, as a list of strings, the types in an `ctypes-edit' buffer.
The types could even be regexps."
  (save-excursion
    (let ((lst '()))
      (goto-char (point-min))
      (while (< (point) (point-max))
        (skip-chars-forward " \t")
        (if (not (eq (following-char) ?\;))
            (let ((p (point)))
              (end-of-line)
              (skip-chars-backward " \t")
              (if (not (equal p (point)))
                  (setq lst (cons (buffer-substring-no-properties
                                   p (point))
                                  lst)))))
        (forward-line))
      (reverse lst))))

;;}}}
;;{{{ Types alist primitives

;; This section contains functions that handle the actual set of types
;; found in each mode.

(defvar ctypes-types-alist '()
  "AList containing types for various modes.

The car of each element is the major mode (a symbol) and the cdr is a
list containing the types (strings).")


(defun ctypes-get-types (mode)
  "Return types for major mode MODE."
  (let ((pair (assq mode ctypes-types-alist)))
    (if pair
        (cdr pair)
      '())))


(defun ctypes-set-types (mode type-list)
  "Replace current set of types for major mode MODE.

Return non-nil if the new set of types is different from the original set."
  (let ((tmp '())
        (done nil)
        added)
    (while (not done)
      (cond ((null ctypes-types-alist)
             (setq added (not (null type-list)))
             (setq done t))
            ((eq mode (car (car ctypes-types-alist)))
             (setq added (not (ctypes-equal type-list
                                            (cdr (car ctypes-types-alist)))))
             (setq ctypes-types-alist (cdr ctypes-types-alist))
             (setq done t))
            (t
             (setq tmp (cons (car ctypes-types-alist) tmp))
             (setq ctypes-types-alist (cdr ctypes-types-alist)))))
    (if type-list
        (setq ctypes-types-alist (cons (cons mode type-list)
                                       ctypes-types-alist)))
    (setq ctypes-types-alist (append (reverse tmp) ctypes-types-alist))
    (if added
        (setq ctypes-saved-p nil))
    added))


(defun ctypes-add-types (mode type-list)
  "Add types in TYPE-LIST to major mode MODE.
Return non-nil if at least one new type was added."
  (let ((current-types (ctypes-get-types mode))
        (added nil))
    (dolist (type (reverse type-list))  ; Try to keep original order.
      (if (member type current-types)
          ()
        (setq current-types (cons type current-types))
        (setq added t)))
    (if added
        (ctypes-set-types mode current-types))
    added))


(defun ctypes-collect-types (mode)
  "Return types for MODE, including inherited types."
  (let ((modes (ctypes-collect-super-modes mode))
        (types '()))
    (while modes
      (setq types (ctypes-union-types types (ctypes-get-types (car modes))))
      (setq modes (cdr modes)))
    types))


(defun ctypes-collect-super-modes (mode)
  "Return a list of all super modes to MODE.

Note that we have not superimposed any type of structure on the
inheritance graph.  For example,  it can contain cycles!

MODE is trivially a super mode to itself."
  (let ((super-modes '())
        (must-check (list mode)))
    (while must-check
      (setq mode (car must-check))
      (setq must-check (cdr must-check))
      (let ((desc (assq mode ctypes-mode-descriptor)))
        (cond (desc
               (setq desc (cdr desc))  ;; Remove the mode name.
               (while desc
                 (if (eq (nth 0 (car desc)) 'inherit)
                     (let ((other-mode (nth 1 (car desc))))
                       (if (and (not (eq other-mode mode))
                                (not (memq other-mode super-modes))
                                (not (memq other-mode must-check)))
                           (setq must-check (cons other-mode must-check)))))
                 (setq desc (cdr desc)))))
        (setq super-modes (cons mode super-modes))))
    super-modes))


(defun ctypes-collect-sub-modes (mode)
  "Return a list of all modes that inherits MODE."
  (let ((sub-modes '())
        (alist ctypes-mode-descriptor))
    (while alist
      (if (memq mode (ctypes-collect-super-modes (car (car alist))))
          (setq sub-modes (cons (car (car alist)) sub-modes)))
      (setq alist (cdr alist)))
    sub-modes))
    

(defun ctypes-delete-types (mode type-list)
  "Removes types in TYPE-LIST.
Return non-nil if any type was removed."
  (let ((current-types (ctypes-get-types mode))
        (removed nil)
        (new-list '()))
    (while current-types
      (if (member (car current-types) type-list)
          (setq removed t)
        (setq new-list (cons (car current-types) new-list)))
      (setq current-types (cdr current-types)))
    (if removed
        (ctypes-set-types mode (reverse new-list)))
    removed))


;; Type-list primitives.

(defun ctypes-equal (type-list1 type-list2)
  "Non-nil if the lists contain the same types.
Note that the elements need not come in the same order in the two lists."
  (and (ctypes-subset type-list1 type-list2)
       (ctypes-subset type-list2 type-list1)))


(defun ctypes-subset (type-list1 type-list2)
  "Non-nil if TYPE-LIST1 is included in TYPE-LIST2."
  (let ((included t))
    (while (and included type-list1)
      (if (not (member (car type-list1) type-list2))
          (setq included nil))
      (setq type-list1 (cdr type-list1)))
    included))


(defun ctypes-union-types (type-list1 type-list2)
  "Return the union of the two type lists."
  (setq type-list1 (reverse type-list1)) ; Try to maintain original order
  (while type-list1
    (if (not (member (car type-list1) type-list2))
        (setq type-list2 (cons (car type-list1) type-list2)))
    (setq type-list1 (cdr type-list1)))
  type-list2)

;;}}}
;;{{{ Perform Action

(defvar ctypes-delayed-action-list '()
  "List of major modes whose action has been delayed.

Normally, this means that the user are executing a number of `ctypes'
and wants to wait to perform the display update until after the last
command.

The actions are performed the next time the function
`ctypes-perform-action' is called with nil as it's DELAY-ACTION
argument, or when `ctypes-perform-delayed-action' is called.")


(defun ctypes-perform-action (modes changed-p delay-action)
  "Perform action for all modes in MODES.

MODES can a mode or a list of modes.

The action is performed immediately for major modes in MODES, and for
major modes that inherits types from modes in MODES, when
`delay-action' is nil, and either CHANGED-P is non-nil or the modes
previously have been marked for delayed action.

Should DELAY-ACTION be non-nil, the actions are not performed
and the modes are marked for delayed action."
  (if (not (listp modes))
      (setq modes (list modes)))
  (cond (delay-action
         ;; Mark all modes for delayed action.
         (if changed-p
             (while modes
               (if (not (memq (car modes) ctypes-delayed-action-list))
                   (setq ctypes-delayed-action-list
                         (cons (car modes) ctypes-delayed-action-list)))
               (setq modes (cdr modes)))))
        (t
         ;; Unless a mode has been changed or has been aschedules for
         ;; delayed action no action should be performed.
         (if (not changed-p)
             (let ((new-modes '()))
               (while modes
                 (if (memq (car modes) ctypes-delayed-action-list)
                     (setq new-modes (cons (car modes) new-modes)))
                 (setq modes (cdr modes)))
               (setq modes new-modes)))
         ;; Update all modes that inherits types.
         (let ((sub-modes '()))
           (while modes
             (let ((tmp (ctypes-collect-sub-modes (car modes))))
               (while tmp
                 (if (not (memq (car tmp) sub-modes))
                     (setq sub-modes (cons (car tmp) sub-modes)))
                 (setq tmp (cdr tmp))))
             (setq modes (cdr modes)))
           (setq modes sub-modes))
         ;; Remove all modes from the delayed action list:
         (let ((new-modes modes)
               (dlist (copy-sequence ctypes-delayed-action-list)))
           ;; We make a copy of `ctypes-delayed-action-list' since we
           ;; don't want to destructively a list that someone else
           ;; might be using.  A concrete example is when
           ;; `ctypes-perform-delayed-action' is used; the variable
           ;; `modes' is also bound to `ctypes-delayed-action-list'!
           (while new-modes
             (setq dlist (delq (car new-modes) dlist))
             (setq new-modes (cdr new-modes)))
           (setq ctypes-delayed-action-list dlist))
         ;; Finally, perform the action.
         (while modes
           (let ((desc (assq (car modes) ctypes-mode-descriptor)))
             (cond (desc
                    (setq desc (cdr desc))      ; Skip mode name
                    (while desc
                      (if (eq (nth 0 (car desc)) 'action)
                          (apply (nth 1 (car desc))
                                 (car modes)
                                 (nthcdr 2 (car desc))))
                      (setq desc (cdr desc))))))
           (setq modes (cdr modes))))))


(defun ctypes-perform-delayed-action ()
  "Perform the action (normally update the display)."
  (ctypes-perform-action ctypes-delayed-action-list nil nil))

;;}}}
;;{{{ The parser

(defun ctypes-parse-buffer (&optional buffer mode filename)
  "Parse BUFFER for types assuming the major mode MODE.

Note: You can not assume the the buffer actually is in mode MODE.

Note 2: The file name is only used for debugging."
  (save-excursion
    (if buffer
        (set-buffer buffer))
    (or mode
        (setq mode major-mode))
    (save-restriction
      (widen)
      (goto-char (point-min))
      (let ((desc (assq mode ctypes-mode-descriptor)))
        (if desc
            (let ((parser (assq 'parser desc)))
              (if (null parser)
                  (error "No parser specified"))
              (funcall (nth 1 parser) filename)))))))


(defun ctypes-parse-buffer-c (&optional filename)
  "Return list of types found in current buffer."
  (let ((orig-syntax-table (syntax-table)))
    (require 'cc-mode)
    (set-syntax-table c-mode-syntax-table)
    (set (make-local-variable 'parse-sexp-ignore-comments) t)
    (unwind-protect
        (let ((lst '()))
          (while (re-search-forward "^typedef\\>" nil t)
            (condition-case ()
                (setq lst (append (ctypes-parse-typedef) lst))
              (error
               (setq ctypes-parse-error
                     (list (or filename (buffer-file-name)) (point))))))
            lst)
      (set-syntax-table orig-syntax-table))))


(defun ctypes-parse-buffer-c++ (&optional filename)
  "Return list of C++ types found in current buffer."
  (let ((orig-syntax-table (syntax-table)))
    (require 'cc-mode)
    (set-syntax-table c-mode-syntax-table)
    (set (make-local-variable 'parse-sexp-ignore-comments) t)
    (unwind-protect
        (let ((lst '()))
          (while (re-search-forward
                  "^\\(\\(typedef\\)\\|class\\|struct\\|enum\\)\\>" nil t)
            (condition-case ()
                (if (match-beginning 2)
                    (setq lst (append (ctypes-parse-typedef) lst))
                  (setq lst (cons (ctypes-parse-class) lst)))
              (error
               (setq ctypes-parse-error
                     (list (or filename (buffer-file-name)) (point))))))
          lst)
      (set-syntax-table orig-syntax-table))))


;; I'm not 100% convinced that I haven't oversimplified anything.
(defun ctypes-parse-typedef ()
  "Return the newly defined type in a typedef declaration.
Assume that the point is positioned directly after the `typedef'."
  (ctypes-skip-blank)
  ;; `const' can precede everything, including a `struct'.
  (cond ((looking-at "\\<const\\>")
         (goto-char (match-end 0))
         (ctypes-skip-blank)))
  ;; Skip past the basic type.
  (cond ((looking-at ctypes-repetitive-type-regexp)
         (goto-char (match-end 0))
         (ctypes-skip-blank)
         (while (looking-at ctypes-repetitive-type-regexp)
           (goto-char (match-end 0))
           (ctypes-skip-blank)))
        ((looking-at "\\<\\(struct\\|union\\|enum\\)\\>")
         (goto-char (match-end 0))
         (ctypes-skip-blank)
         (if (looking-at ctypes-identifier-regexp)
             (goto-char (match-end 0)))
         (ctypes-skip-blank)
         (if (eq (following-char) ?{)
             (forward-sexp 1)))
        ((eq (following-char) ?\()
         ;; The basic type is complex, skip it.
         (forward-sexp 1))
        ((looking-at ctypes-identifier-regexp)
         ;; Another typedefed type?
         (goto-char (match-end 0)))
        (t
         (error "Can't parse typedef statement")))
  (ctypes-skip-blank)
  (while (memq (following-char) '(?& ?<))
    (cond ((eq (following-char) ?<)
           ;; C++ template
           (skip-chars-forward "^>")
           (forward-char))
          ((eq (following-char) ?&)
           ;; C++ Reference type
           (forward-char)))
    (ctypes-skip-blank))
  ;; Step into the type to find the name.  Save the start position
  ;; so we can pass over pairs of parentheses to find the next name.
  (let ((types '()))
    (while
        (let (start)
          (ctypes-skip-blank)
          (setq start (point))
          (while (memq (following-char) '(?* ?\())
            (forward-char 1)
            (ctypes-skip-blank))
          (cond ((looking-at ctypes-identifier-regexp)
                 (setq types (cons
                              (regexp-quote
                               (buffer-substring-no-properties
                                (match-beginning 0) (match-end 0)))
                              types)))
                (t
                 (error "Parse error")))
          (goto-char start)
          (while (looking-at
                  (concat "\\([*(&[]\\|\\(" ctypes-identifier-regexp
                          "\\)\\)"))
            (cond ((match-beginning 2)
                   (goto-char (match-end 0)))
                  ((memq (following-char) '(?\( ?\[))
                   (forward-sexp 1))
                  (t
                   (forward-char)))
            (ctypes-skip-blank))
          ;; Comment out this for a more liberal parser.
          (if (not (memq (following-char) '(?, ?\;)))
              (error "Parse Error"))
          (eq (following-char) ?,))
      ;; I know it isn't much, but this is the body of the while-expression.
      (forward-char))
    types))


;; Probably wrong, since I don't speak C++.
(defun ctypes-parse-class ()
  (ctypes-skip-blank)
  (if (looking-at ctypes-identifier-regexp)
      (regexp-quote
       (buffer-substring-no-properties (match-beginning 0) (match-end 0)))
    (error "Not a valid class (I think)")))


(defun ctypes-skip-blank (&optional lim)
  (or lim (setq lim (point-max)))
  (let ((stop nil))
    (while (and (not stop) (< (point) lim))
      (cond ((looking-at "//")
             (skip-chars-forward "^\n" lim))
            ((looking-at "/\\*")
             ;; A comment; there must be a better way to skip this.
             (if (search-forward "*/" nil t)
                 (goto-char (match-end 0))
               (setq stop t)))
            ((= (following-char) ?\n)
             (skip-chars-forward "\n" lim))
            ((looking-at "^#")
             (while (progn
                      (end-of-line)
                      (eq (preceding-char) ?\\))
               (forward-line))
             (forward-line))
            ((looking-at "\\s ")
             (if (re-search-forward "\\S " lim 'move)
                 (forward-char -1)))
            (t
             (setq stop t))))
    stop))

;;}}}
;;{{{ TAGS

(defun ctypes-tags-parse ()
  "Parse files in current TAGS table.  Does not perform redraw.

Return list of updated modes.

See the function `ctypes-tags'."
  (save-excursion
    (let ((first-time t)
          (modes '())
          new)
      (while (condition-case ()
                 (progn
                   (setq new (next-file first-time t))
                   t)
               (error nil))
        (setq first-time nil)
        (let* ((buffer-file-name new)
               (mode (or (and new (ctypes-get-mode)) major-mode)))
          (if (assq mode ctypes-mode-descriptor)
              (if (ctypes-buffer nil t mode)
                  (if (not (memq mode modes))
                      (setq modes (cons mode modes)))))))
      modes)))

;;}}}
;;{{{ Major mode functions

;; Sigh, all this code already exists in Emacs!  However, In addition
;; to finding the mode that code also _activates_ the modes.  Clearly,
;; this is not a Good Thing since we only would like to parse the
;; content and get on with it.
;;
;; Also, I had to chop up the original function `set-auto-mode' into
;; three parts since I needed to get access to the `auto-mode-alist'
;; code in isolation.

(defun ctypes-get-mode (&optional buf)
  "Return mode the buffer ought to have."
  (or buf
      (setq buf (current-buffer)))
  (save-excursion
    (set-buffer buf)
    (or (let ((modes (ctypes-get-auto-mode buf)))
          (cond ((eq modes '())
                 nil)
                ((= (length modes) 1)
                 (car modes))
                (t
                 ;; Several modes was specified using the -*- mode:
                 ;; foo; mode: bar; -*- construction.  We have no idea
                 ;; which are major and which are minor modes so we
                 ;; pick the last one that is a member of
                 ;; `ctypes-mode-descriptor'.
                 (let ((done nil))
                   (setq modes (reverse modes))
                   (while (and (not done) (> (length modes) 1))
                     (if (assq (car modes) ctypes-mode-descriptor)
                         (setq done t)
                       (setq modes (cdr modes))))
                   (car modes)))))
        (ctypes-get-mode-from-file-name)
        (ctypes-get-mode-interpreter))))


(defun ctypes-get-auto-mode (buf)
  "Return list of modes specified in a -*- ... -*- header line."
  (let (beg end modes)
    (save-excursion
      (goto-char (point-min))
      (skip-chars-forward " \t\n")
      (and enable-local-variables
           ;; Don't look for -*- if this file name matches any
           ;; of the regexps in inhibit-first-line-modes-regexps.
           (let ((temp inhibit-first-line-modes-regexps)
                 (name (if buffer-file-name
                           (file-name-sans-versions buffer-file-name)
                         (buffer-name))))
             (while (let ((sufs inhibit-first-line-modes-suffixes))
                      (while (and sufs (not (string-match (car sufs) name)))
                        (setq sufs (cdr sufs)))
                      sufs)
               (setq name (substring name 0 (match-beginning 0))))
             (while (and temp
                         (not (string-match (car temp) name)))
               (setq temp (cdr temp)))
             (not temp))
           (search-forward "-*-" (save-excursion
                                   ;; If the file begins with "#!"
                                   ;; (exec interpreter magic), look
                                   ;; for mode frobs in the first two
                                   ;; lines.  You cannot necessarily
                                   ;; put them in the first line of
                                   ;; such a file without screwing up
                                   ;; the interpreter invocation.
                                   (end-of-line (and (looking-at "^#!") 2))
                                   (point)) t)
           (progn
             (skip-chars-forward " \t")
             (setq beg (point))
             (search-forward "-*-"
                             (save-excursion (end-of-line) (point))
                             t))
           (progn
             (forward-char -3)
             (skip-chars-backward " \t")
             (setq end (point))
             (goto-char beg)
             (if (save-excursion (search-forward ":" end t))
                 ;; Find all specifications for the `mode:' variable
                 ;; and execute them left to right.
                 (while (let ((case-fold-search t))
                          (or (and (looking-at "mode:")
                                   (goto-char (match-end 0)))
                              (re-search-forward "[ \t;]mode:" end t)))
                   (skip-chars-forward " \t")
                   (setq beg (point))
                   (if (search-forward ";" end t)
                       (forward-char -1)
                     (goto-char end))
                   (skip-chars-backward " \t")
                   (setq modes
                         (cons (intern
                                (concat
                                 (downcase
                                  (buffer-substring beg (point))) "-mode"))
                               modes)))
               ;; Simple -*-MODE-*- case.
               (setq modes
                     (cons (intern
                            (concat (downcase (buffer-substring beg end))
                                                 "-mode"))
                                 modes))))))
    (reverse modes)))


(defun ctypes-get-mode-from-file-name (&optional name)
  "Suggest major mode for file named NAME, no nil."
  (or name
      (setq name buffer-file-name))
  ;; Code taken from `set-auto-mode'.
  (let ((keep-going t)
        (mode nil))
    (setq name (file-name-sans-versions name))
    (while keep-going
      (setq keep-going nil)
      (let ((alist auto-mode-alist))
        ;; Find first matching alist entry.
        (let ((case-fold-search (memq system-type '(vax-vms windows-nt))))
          (while (and (not mode) alist)
            (if (string-match (car (car alist)) name)
                (if (and (consp (cdr (car alist)))
                         (nth 2 (car alist)))
                    (setq mode (car (cdr (car alist)))
                          name (substring name 0 (match-beginning 0))
                          keep-going t)
                  (setq mode (cdr (car alist))
                        keep-going nil)))
            (setq alist (cdr alist))))))
    mode))


(defun ctypes-get-mode-interpreter ()
  "Get major mode based on #! sequence at head of buffer."
  (save-excursion
    (goto-char (point-min))
    (and (looking-at "#![ \t]?\\([^ \t\n]*/bin/env[ \t]\\)?\\([^ \t\n]+\\)")
         (cdr-safe (assoc (file-name-nondirectory
                           (buffer-substring (match-beginning 2)
                                             (match-end 2)))
                          interpreter-mode-alist)))))

;;}}}
;;{{{ Misc

(or (fboundp 'regexp-opt-depth)
    (defun regexp-opt-depth (keyword)
      "Return the depth of KEYWORD regexp.
This means the number of parenthesized expressions."
      (let ((count 0) start)
        (while (string-match "\\\\(" keyword start)
          (setq start (match-end 0) count (1+ count)))
        count)))


(defun ctypes-string-to-mode (mode)
  "Convert a MODE name, entered by the user, to a mode symbol.

Example:
    (ctypes-string-to-mode \"C++\")  =>  c++-mode"
  (if (stringp mode)
      (if (string-match "-mode$" mode)
          (setq mode (intern mode))
        (setq mode (intern (concat mode "-mode")))))
  ;; Make sure "C++" works.
  (if (not (assq mode ctypes-mode-descriptor))
      (let ((lowercase-mode (intern (downcase (symbol-name mode)))))
        (if (assq lowercase-mode ctypes-mode-descriptor)
            (setq mode lowercase-mode))))
  mode)


(defun ctypes-get-type-under-point ()
  (save-excursion
    (if (eq (char-syntax (following-char)) ? )
        (skip-chars-backward " \t"))
    (skip-chars-backward "a-zA-Z0-9:_$")
    (and (looking-at ctypes-identifier-regexp)
         (regexp-quote
          (buffer-substring-no-properties
           (match-beginning 0)
           (match-end 0))))))

;;}}}
;;{{{ Font-lock stuff

;; This section contains some font-lock support functions.
;;
;; Even though the main purpose of the `ctypes' package is to enhance
;; the fontification of C-like languages, the design of the package
;; does not limit itself to such narrow goal.  Should you prefer to
;; use ctypes to anything else just redefine `ctypes-mode-descriptor'.


(defun ctypes-font-lock-set-extra-types (mode extra-types-var)
  "Add the new keywords to font-lock.
This function is used for font-lock versions that have native
support for extra types.  As of this writing, no official releases
with this feature has been made."
  (set extra-types-var (ctypes-get-types mode))
  (ctypes-font-lock-refontify mode))


(defun ctypes-font-lock-refontify (mode)
  "Refontify all buffers in major mode MODE."
  (save-excursion
    (let ((bufs (buffer-list)))
      (while bufs
        (set-buffer (car bufs))
        (if (and (eq major-mode mode) font-lock-mode)
            (progn
              (font-lock-mode -1)
              (font-lock-mode 1)))
        (setq bufs (cdr bufs))))))


;; Code used by font-lock versions without native type support.

(defvar ctypes-font-lock-keywords '()
  "AList of all keywords installed by ctypes in font-lock keywords.

This is needed when old keywords are replaced with newer.")


(defun ctypes-font-lock-add-keywords (mode rules)
  "Add font-lock keywords for major mode MODE."
  (let ((types (ctypes-get-types mode)))
    (if (null types)
        (ctypes-font-lock-delete-keywords mode rules)
      (ctypes-font-lock-install-keywords
       mode (mapconcat 'identity types "\\|") rules))
    (ctypes-font-lock-refontify mode)))


(defun ctypes-font-lock-install-keywords (mode regexp rules)
  "Add REGEXP as new C-style types in major mode MODE.

The rules is a list containing elements on the following form:
  (number var [append])

Where `number' can be 1 or 2 and represents a simple and one complex
keyword, respectively.  Normally, the simpler is defined at a lower
fontification but both are needed to get full fontification.

`var' is the font-lock keyword variable to use and `append' is an
optional argument, when true the new keyword is appended to the end
of the keyword list."
  (ctypes-font-lock-delete-keywords mode rules)
  (let ((keyword-1
         (cons (concat "\\<\\(" regexp "\\)\\>") 'font-lock-type-face))
        (keyword-2
         (list
          (concat "\\<\\(" regexp "\\)\\>\\([ \t*&]+\\sw+\\>\\)*")
          ;; Fontify each declaration item.
          (list 'font-lock-match-c++-style-declaration-item-and-skip-to-next
            ;; Start with point after all type specifiers.
            (list 'goto-char
                  (list 'or (list 'match-beginning
                                  (+ 2 (regexp-opt-depth regexp)))
                        '(match-end 1)))
            ;; Finish with point after first type specifier.
            '(goto-char (match-end 1))
            ;; Fontify as a variable or function name.
            '(1 (if (match-beginning 4)
                    font-lock-function-name-face
                  font-lock-variable-name-face))))))
    (setq ctypes-font-lock-keywords
          (cons (list mode keyword-1 keyword-2)
                ctypes-font-lock-keywords))
    (while rules
      (let ((number (nth 0 (car rules)))
            (var (nth 1 (car rules)))
            (append-p (nth 2 (car rules)))
            keywords)
        (cond ((= number 1)
               (setq keywords keyword-1))
              ((= number 2)
               (setq keywords keyword-2))
              (t
               (error "Incorrect entry in rule.  Found `%s', expected 1 or 2"
                      number)))
        (if append-p
            (set var (append (symbol-value var) (list keywords)))
          (set var (cons keywords (symbol-value var)))))
      (setq rules (cdr rules)))))


(defun ctypes-font-lock-delete-keywords (mode rules)
  "Delete keywords form major mode MODE, described by RULES.

See the function `ctypes-font-lock-install-keywords' for a description
of RULES."
  (let ((keywords (assq mode ctypes-font-lock-keywords)))
    (if (null keywords)
        ()
      (setq ctypes-font-lock-keywords
            (delq keywords ctypes-font-lock-keywords))
      (setq keywords (cdr keywords))    ; Skip the mode name
      (while rules
        (let ((keywords keywords)       ; Iteration-local alias
              (var (nth 1 (car rules))))
          (while keywords
            (set var (delq (car keywords) (symbol-value var)))
            (setq keywords (cdr keywords))))
        (setq rules (cdr rules))))))

;;}}}

;;{{{ Debug

(defun ctypes-debug ()
  (interactive)
  (with-output-to-temp-buffer "*CTypes-Debug*"
    (princ "ctypes-types-alist:")
    (print ctypes-types-alist)
    (terpri)
    
    (princ "ctypes-font-lock-keywords:")
    (print ctypes-font-lock-keywords)
    (terpri)

    (princ "ctypes-delayed-action-list:")
    (print ctypes-delayed-action-list)
    (terpri)))

;;}}}

;; Install ourself
(add-hook 'find-file-hooks 'ctypes-find-file-hook)
(add-hook 'kill-emacs-hook 'ctypes-kill-emacs-hook)

(run-hooks 'ctypes-load-hook)
(provide 'ctypes)

;;; ctypes.el ends here