1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
|
" C Call-Tree Explorer (CCTree) <CCTree.vim>
"
"
" Script Info and Documentation
"=============================================================================
" Copyright: Copyright (C) August 2008 - 2011, Hari Rangarajan
" Permission is hereby granted to use and distribute this code,
" with or without modifications, provided that this copyright
" notice is copied with it. Like anything else that's free,
" cctree.vim is provided *as is* and comes with no
" warranty of any kind, either expressed or implied. In no
" event will the copyright holder be liable for any damamges
" resulting from the use of this software.
"
" Name Of File: CCTree.vim
" Description: C Call-Tree Explorer Vim Plugin
" Maintainer: Hari Rangarajan <hari.rangarajan@gmail.com>
" URL: http://vim.sourceforge.net/scripts/script.php?script_id=2368
" Last Change: May 18, 2011
" Version: 1.51
"
"=============================================================================
"
" {{{ Description:
" Plugin generates dependency-trees for symbols using a cscope database
" in Vim.
" }}}
" {{{ Requirements: 1) Vim 7.xx , 2) Cscope
"
" Tested on Unix and the following Win32 versions:
" + Cscope, mlcscope (WIN32)
" http://code.google.com/p/cscope-win32/
" http://www.bell-labs.com/project/wwexptools/packages.html
" }}}
" {{{ Installation:
" Copy this file to ~/.vim/plugins/
" or to /vimfiles/plugins/ (on Win32 platforms)
"
" It might also be possible to load it as a filetype plugin
" ~/.vim/ftplugin/c/
"
" Need to set :filetype plugin on
"
" }}}
" {{{ Usage:
" Build cscope database, for example:
" > cscope -b -i cscope.files
" [Tip: add -c option to build uncompressed databases for faster
" load speeds]
"
" Load database with command ":CCTreeLoadDB"
" (Please note that it might take a while depending on the
" database size)
"
" Append database with command ":CCTreeAppendDB"
" Allows multiple cscope files to be loaded and cross-referenced
" Illustration:
" :CCTreeAppendDB ./cscope.out
" :CCTreeAppendDB ./dir1/cscope.out
" :CCTreeAppendDB ./dir2/cscope.out
"
" A database name, i.e., my_cscope.out, can be specified with
" the command. If not provided, a prompt will ask for the
" filename; default is cscope.out.
"
" To show loaded databases, use command ":CCTreeShowLoadedDBs"
"
" To unload all databases, use command ":CCTreeUnLoadDB"
" Note: There is no provision to unload databases individually
"
" To save the current set of databases loaded in to memory onto disk
" in native CCTree XRef format, use command ":CCTreeSaveXRefDB"
"
" To load a saved native CCTree XRef format file, use
" command ":CCTreeLoadXRefDB"
"
" To load a saved native CCTree XRef format file, use
" command ":CCTreeLoadXRefDBFromDisk"
"
" Notes: No merging database support for CCTree native DB's [at present].
"
"
" To have multiple CCTree preview windows, use ":CCTreeWindowSaveCopy"
" Note: Once saved, only the depth of the preview window can be changed
"
" Default Mappings:
" Get reverse call tree for symbol <C-\><
" Get forward call tree for symbol <C-\>>
" Increase depth of tree and update <C-\>=
" Decrease depth of tree and update <C-\>-
"
" Open symbol in other window <CR>
" Preview symbol in other window <Ctrl-P>
"
" Save copy of preview window <C-\>y
" Highlight current call-tree flow <C-l>
" Compress(Fold) call tree view zs
" (This is useful for viewing long
" call trees which span across
" multiple pages)
"
" Custom user-mappings:
" Users can custom-map the short-cut keys by
" overriding the following variables in their
" Vim start-up configuration
"
" g:CCTreeKeyTraceForwardTree = '<C-\>>'
" g:CCTreeKeyTraceReverseTree = '<C-\><'
" g:CCTreeKeyHilightTree = '<C-l>' " Static highlighting
" g:CCTreeKeySaveWindow = '<C-\>y'
" g:CCTreeKeyToggleWindow = '<C-\>w'
" g:CCTreeKeyCompressTree = 'zs' " Compress call-tree
" g:CCTreeKeyDepthPlus = '<C-\>='
" g:CCTreeKeyDepthMinus = '<C-\>-'
"
" Command List:
" CCTreeLoadDB <dbname>
" CCTreeAppendDB <dbname>
" CCTreeLoadXRefDB <dbname>
" CCTreeSaveXRefDB <dbname>
" CCTreeLoadXRefDBFromDisk <dbname>
"
" CCTreeUnLoadDB
" CCTreeShowLoadedDBs
"
" CCTreeTraceForward <symbolname>
" CCTreeTraceReverse <symbolname>
" CCTreeRecurseDepthPlus
" CCTreeRecurseDepthMinus
" CCTreeWindowSaveCopy
"
" Only in preview window:
" CCTreeWindowHiCallTree (same as <C-l> shorcut)
" Highlight calling tree for keyword at cursor
"
" Dynamic configuration:
" CCTreeOptsEnable <option> (<tab> for auto-complete)
" CCTreeOptsDisable <option> (<tab> for auto-complete)
" CCTreeOptsToggle <option> (<tab> for auto-complete)
" Options:
" DynamicTreeHiLights: Control dynamic tree highlighting
" UseUnicodeSymbols: Use of UTF-8 special characters for
" tree
" UseConceal: Use (+Conceal) feature instead of 'ignore'
" syntax highlighting. Allows CCTree window
" to be exported in HTML without syntax markup
" characters. (Vim 7.3+ only)
" EnhancedSymbolProcessing: Cross-reference enums, macros,
" global variables, typedefs (Warning: Database
" processing speeds will be slow).
"
"
"
" Settings:
" Customize behavior by changing the variable settings
"
" UTF-8 usage:
" UTF-8 symbols should work fine on the majority of
" X11 systems; however, some terminals might cause problems.
"
" To use symbols for drawing the tree, this option can be enabled.
" g:CCTreeUseUTF8Symbols = 1
" The options interface (CCTreeOptsxxx) can be used to
" modify options on-the-fly.
"
" Cscope database file, g:CCTreeCscopeDb = "cscope.out"
" Maximum call levels, g:CCTreeRecursiveDepth = 3
" Maximum visible(unfolded) level, g:CCTreeMinVisibleDepth = 3
" Orientation of window, g:CCTreeOrientation = "topleft"
" (standard vim options for split: [right|left][above|below])
"
" Use Vertical window, g:CCTreeWindowVertical = 1
" Min width for window, g:CCTreeWindowMinWidth = 40
" g:CCTreeWindowWidth = -1, auto-select best width to fit
"
" Horizontal window, g:CCTreeWindowHeight, default is -1
"
"
" Display format, g:CCTreeDisplayMode, default 1
"
" Values: 1 -- Ultra-compact (takes minimum screen width)
" 2 -- Compact (Takes little more space)
" 3 -- Wide (Takes copious amounts of space)
"
" For vertical splits, 1 and 2 are good, while 3 is good for
" horizontal displays
"
" NOTE: To get older behavior, add the following to your vimrc
" let g:CCTreeDisplayMode = 3
" let g:CCTreeWindowVertical = 0
"
" Syntax Coloring:
" CCTreeSymbol is the symbol name
" CCTreeMarkers include "|","+--->"
"
" CCTreeHiSymbol is the highlighted call tree functions
" CCTreeHiMarkers is the same as CCTreeMarkers except
" these denote the highlighted call-tree
"
"
" CCTreeHiXXXX allows dynamic highlighting of the call-tree.
" To observe the effect, move the cursor to the function to
" highlight the current call-tree. This option can be
" turned off using the setting, g:CCTreeHilightCallTree.
" For faster highlighting, the value of 'updatetime' can be
" changed.
"
" Support for large database files:
" Vimscript does not have an API for reading files line-by-line. This
" becomes a problem when parsing large databases. CCTree can overcome
" the limitation using an external utility (i.e., GNU coreutils: split)
" or VimScript's perl interpreter interface (:version must indicate +perl)
"
" The following settings are tailored to suit GNU coreutils split; the default
" settings should work with no changes on typical linux/unix distros
" (Monopoly OSes will require installation of unixutils or equivalent)
"
" External command is setup with the following parameters:
" g:CCTreeSplitProgCmd = 'PROG_SPLIT SPLIT_OPT SPLIT_SIZE IN_FILE OUT_FILE_PREFIX'
"
" Break-down of individual parameters:
" The split utility is assumed to be on the path; otherwise, specify full path
" g:CCTreeSplitProg = 'split'
"
" Option for splitting files (-C or -l)
" g:CCTreeSplitProgOption = '-C'
" If split program does not support -C, then this parameter must be set to
" the number of lines in the split files
" g:CCTreeDbFileSplitLines = -1
" Largest filesize Vimscript can handle; file sizes greater than this will
" be temporarily split
" g:CCTreeDbFileMaxSize = 40000000 (40 Mbytes)
"
" Sample system command:
" Typical:
" split -C 40000000 inputFile outputFilePrefix
"
" When g:CCTreeDbFileSplitLines is set to 10000 (-C options will be ignored)
" split -l 10000 inputFile outputFilePrefix
"
"
" Using perl interface:
" By default, perl usage is disabled. Set
" g:CCTreeUsePerl = 1 to enable the perl interface.
"
" Perl interface is typically faster than native Vimscript.
" This option can be used independent of the file size
"
" For more info on setting up perl interface
" :help perl-using or :help perl-dynamic
"
" Writing large Xref Databases:
" CCTree can use external utilities to write extremely large files beyond
" VimScripts capabilities. It requires the use of an external tool that can
" join text files (i.e., 'cat' in unix). This utility is triggered if the size
" of the file being written exceeds g:CCTreeDbFileMaxSize (40 Mb or as configured)
"
" The join utility command is configured by default as follows:
" let CCTreeJoinProgCmd = 'PROG_JOIN JOIN_OPT IN_FILES > OUT_FILE'
"
" let g:CCTreeJoinProg = 'cat' " PROG_JOIN
" let g:CCTreeJoinProgOpts = "" " JOIN_OPT
"
"
" }}}
" {{{ Limitations:
" Basic Symbol Processing:
" The accuracy of the call-tree will only be as good as the cscope
" database generation.
" NOTE: Different flavors of Cscope have some known
" limitations due to the lexical analysis engine. This results
" in incorrectly identified function blocks, etc.
" Enhanced Symbol Processing:
" (1) Cscope does not mark-up nameless enums correctly; hence,
" CCTree cannot recognize nameless enum symbols.
" }}}
" {{{ History:
" Version 1.51: May 18, 2011
" 1. Robust error reporting when external (split/cat) utils fail
" Version 1.50: May 6, 2011
" 1. Support cross-referencing of global variables, macros,
" enums, and typedefs.
" Version 1.40: April 22, 2011
" 1. Maintain order of functions called during forward tracing
" Version 1.39: April 18, 2011
" 1. Use +Conceal feature for highlighting (only Vim 7.3)
" Version 1.33: April 5, 2011
" 1. Load and trace CCTree native XRefDb directly from disk
" 2. Fix AppendDB command when 'ignorecase' is set
" Version 1.26: March 28, 2011
" 1. Fix macro cross-referencing limitation
" 2. Correct native xref file format
" Version 1.21: March 21, 2011
" 1. Support serialization of loaded
" cscope databases (for faster loading)
" Version 1.07: March 09, 2011
" 1. Fix new keymaps incorrectly applied to buffer
" 2. CCTreeOptsToggle command for toggling options
"
" Version 1.04: March 06, 2011
" 1. Customization for key mappings
" 2. Dynamic configuration of UI variables
" 3. Folding long call-trees to show current path dynamically
"
" Version 1.01: March 04, 2011
" 1. Make UTF-8 symbols for tree optional
"
" Version 1.00: March 02, 2011
" 1. Staging release for upcoming features
" - Complete refactoring of code to take
" advantage of VimScript's OO features
" 2. Faster decompression of symbols
" 3. Display related changes
" - Use of unicode symbols for tree
" 4. Bugfixes related to multi-database loading
"
" Version 0.90: February 18, 2011
" 1. Support for large databases using external split utility or perl
" interface
"
" Version 0.85: February 9, 2011
" 1. Significant increase in database loading and decompression speeds
"
" Version 0.80: February 4, 2011
" 1. Reduce memory usage by removing unused xref symbols
"
" Version 0.75: June 23, 2010
" 1. Support for saving CCTree preview window; multiple
" CCTree windows can now be open
"
" Version 0.71: May 11, 2010
" 1. Fix script bug
" Version 0.70: May 8, 2010
" 1. Functionality to load multiple cscope databases
"
" Version 0.65: July 12, 2009
" 1. Toggle preview window
"
" Version 0.61: December 24, 2008
" 1. Fixed bug when processing include files
" 2. Remove 'set ruler' option
"
" Version 0.60: November 26, 2008
" 1. Added support for source-file dependency tree
"
" Version 0.50: October 17, 2008
" 1. Optimizations for compact memory foot-print and
" improved compressed-database load speeds
"
" Version 0.41: October 6, 2008
" 1. Minor fix: Compressed cscope databases will load
" incorrectly if encoding is not 8-bit
"
" Version 0.4: September 28, 2008
" 1. Rewrite of "tree-display" code
" 2. New syntax hightlighting
" 3. Dynamic highlighting for call-trees
" 4. Support for new window modes (vertical, horizontal)
" 5. New display format option for compact or wide call-trees
" NOTE: defaults for tree-orientation set to vertical
"
" Version 0.3:
" September 21, 2008
" 1. Support compressed cscope databases
" 2. Display window related bugs fixed
" 3. More intuitive display and folding capabilities
"
" Version 0.2:
" September 12, 2008
" (Patches from Yegappan Lakshmanan, thanks!)
" 1. Support for using the plugin in Vi-compatible mode.
" 2. Filtering out unwanted lines before processing the db.
" 3. Command-line completion for the commands.
" 4. Using the cscope db from any directory.
"
" Version 0.1:
" August 31,2008
" 1. Cross-referencing support for only functions and macros
" Functions inside macro definitions will be incorrectly
" attributed to the top level calling function
"
" }}}
" {{{ Thanks:
"
" Qaiser Durrani (ver 1.51 -- Reporting issues with SunOS)
" Ben Fritz (ver 1.39 -- Suggestion/Testing for conceal feature)
" Ben Fritz (ver 1.26 -- Bug report)
" Frank Chang (ver 1.0x -- testing/UI enhancement ideas/bug fixes)
" Arun Chaganty/Timo Tiefel (Ver 0.60 -- bug report)
" Michael Wookey (Ver 0.4 -- Testing/bug report/patches)
" Yegappan Lakshmanan (Ver 0.2 -- Patches)
"
" The Vim Community, ofcourse :)
"=============================================================================
" }}}
" {{{ Init
if !exists('loaded_cctree') && v:version >= 700
" First time loading the cctree plugin
let loaded_cctree = 1
else
"finish
endif
" Line continuation used here
let s:cpo_save = &cpoptions
set cpoptions&vim
" Trick to get the current script ID
map <SID>xx <SID>xx
let s:sid = substitute(maparg('<SID>xx'), '<SNR>\(\d\+_\)xx$', '\1', '')
unmap <SID>xx
"}}}
" {{{ Global variables; Modify in .vimrc to modify default behavior
" {{{General
if !exists('CCTreeCscopeDb')
let CCTreeCscopeDb = "cscope.out"
endif
" revisit
if !exists('CCTreeDb')
let CCTreeDb = "cctree.out"
endif
if !exists('CCTreeRecursiveDepth')
let CCTreeRecursiveDepth = 3
endif
if !exists('CCTreeMinVisibleDepth')
let CCTreeMinVisibleDepth = 3
endif
if !exists('CCTreeEnhancedSymbolProcessing')
let CCTreeEnhancedSymbolProcessing = 0
endif
" }}}
" {{{ Custom user-key mappings
if !exists('CCTreeKeyTraceForwardTree')
let g:CCTreeKeyTraceForwardTree = '<C-\>>'
endif
if !exists('CCTreeKeyTraceReverseTree')
let g:CCTreeKeyTraceReverseTree = '<C-\><'
endif
if !exists('CCTreeKeyHilightTree')
let g:CCTreeKeyHilightTree = '<C-l>' " Static highlighting
endif
if !exists('CCTreeKeySaveWindow ')
let g:CCTreeKeySaveWindow = '<C-\>y'
endif
if !exists('CCTreeKeyToggleWindow ')
let g:CCTreeKeyToggleWindow = '<C-\>w'
endif
if !exists('CCTreeKeyCompressTree ')
let g:CCTreeKeyCompressTree = 'zs' " Compress call-tree
endif
if !exists('CCTreeKeyDepthPlus')
let g:CCTreeKeyDepthPlus = '<C-\>='
endif
if !exists('CCTreeKeyDepthMinus')
let g:CCTreeKeyDepthMinus = '<C-\>-'
endif
" }}}
" {{{ CCTree UI settings
if !exists('CCTreeOrientation')
let CCTreeOrientation = "topleft"
endif
if !exists('CCTreeWindowVertical')
let CCTreeWindowVertical = 1
endif
if !exists('CCTreeWindowWidth')
" -1 is auto select best width
let CCTreeWindowWidth = -1
endif
if !exists('CCTreeWindowMinWidth')
let CCTreeWindowMinWidth = 25
endif
if !exists('CCTreeWindowHeight')
let CCTreeWindowHeight = -1
endif
if !exists('CCTreeDisplayMode')
let CCTreeDisplayMode = 1
endif
if !exists('CCTreeHilightCallTree')
let CCTreeHilightCallTree = 1
endif
" }}}
" {{{ Split prog
if !exists('CCTreeSplitProgCmd')
let CCTreeSplitProgCmd = 'PROG_SPLIT SPLIT_OPT SPLIT_SIZE IN_FILE OUT_FILE_PREFIX'
endif
if !exists('CCTreeSplitProg')
"PROG_SPLIT
let CCTreeSplitProg = 'split'
endif
if !exists('CCTreeSplitProgOption')
"SPLIT_OPT
let CCTreeSplitProgOption = '-C'
endif
if !exists('CCTreeDbFileSplitLines')
" if SPLIT_OPT is -l
" If split program does not support -C, then this parameter must be set to
" the number of lines in the split files
let CCTreeDbFileSplitLines = -1
endif
if !exists('CCTreeSplitProgCmd')
let CCTreeSplitProgCmd = 'PROG_SPLIT SPLIT_OPT SPLIT_SIZE IN_FILE OUT_FILE_PREFIX'
endif
if !exists('CCTreeDbFileMaxSize')
" if SPLIT_OPT is -C
let CCTreeDbFileMaxSize = 40000000 "40 Mbytes
endif
" }}}
" {{{ Join/Cat prog
if !exists('CCTreeJoinProgCmd')
let CCTreeJoinProgCmd = 'PROG_JOIN JOIN_OPT IN_FILES > OUT_FILE'
endif
if !exists('CCTreeJoinProg')
"PROG_JOIN
let CCTreeJoinProg = 'cat'
endif
if !exists('CCTreeJoinProgOpts')
let CCTreeJoinProgOpts = ""
endif
" }}}
" {{{ Misc (perl)
if !exists('CCTreeUsePerl')
" Disabled by default
let CCTreeUsePerl = 0
if 0 " Auto-detect perl interface (Experimental code)
if has('perl)
perl << PERL_EOF
VIM::DoCommand("let CCTreeUsePerl = 1");
PERL_EOF
endif
endif
endif
if has('conceal')
let s:CCTreeUseConceal = 1
else
let s:CCTreeUseConceal = 0
endif
if !exists('CCTreeUseUTF8Symbols')
let CCTreeUseUTF8Symbols = 0
endif
" }}}
" }}}
" {{{ Plugin related local variables
let s:pluginname = 'CCTree'
let s:windowtitle = 'CCTree-View'
let s:windowsavetitle = 'CCTree-View-Copy'
let s:DBClasses = { 'cscopeid': 'Cscope', 'cctreexref' : 'CCTree XRef'}
let s:DBStorage = { 'memory': 'Memory', 'disk' : 'Disk'}
" }}}
" {{{ Turn on/off debugs
let s:tag_debug=0
" Use the Decho plugin for debugging
function! DBGecho(...)
if s:tag_debug
Decho(a:000)
endif
endfunction
function! DBGredir(...)
if s:tag_debug
Decho(a:000)
endif
endfunction
function! Pause()
call input("sasasD", "asdads")
endfunction
" }}}
" {{{ Progress bar (generic, numeric, rolling)
let s:GenericProgressBar= {
\ 'depth': 0,
\ 'depthChar': '',
\ 'currentChar': 0,
\ 'updateTime': 0,
\ 'rangeChars': [],
\ 'formatStr' : '',
\ 'units' : ''
\ }
function! s:GenericProgressBar.mCreate(rangechars, depthchar, fmtStr)
let pbr = deepcopy(s:GenericProgressBar)
unlet pbr.mCreate
let pbr.rangeChars = a:rangechars
let pbr.depthChar = a:depthchar
let pbr.formatStr = a:fmtStr
return pbr
endfunction
function! s:GenericProgressBar.mSetDepth(val) dict
let self.depth = a:val
endfunction
function! s:GenericProgressBar.mUpdate() dict
let staticchars = repeat(self.depthChar, self.depth)
let displayStr = substitute(self.formatStr, "\@PROGRESS\@",
\ staticchars . self.rangeChars[self.currentChar], "")
call s:StatusLine.mSetExtraInfo(displayStr)
endfunction
function! s:GenericProgressBar.mDone()
call s:StatusLine.mSetExtraInfo("")
endfunction
let s:ProgressBarRoll = {
\ 'updateTime' : 0,
\ 'curTime' : 0
\}
function! s:ProgressBarRoll.mCreate(rollchars, depthChar) dict
let gpbr = s:GenericProgressBar.mCreate(a:rollchars, a:depthChar, "\@PROGRESS\@")
let pbr = extend(gpbr, deepcopy(s:ProgressBarRoll))
unlet pbr.mCreate
let pbr.curTime = localtime()
return pbr
endfunction
function! s:ProgressBarRoll.mTick(count) dict
if (localtime() - self.curTime) > self.updateTime
let self.currentChar += 1
if self.currentChar == len(self.rangeChars)
let self.currentChar = 0
endif
let self.curTime = localtime()
call self.mUpdate()
endif
endfunction
let s:ProgressBarNumeric = {
\ 'progress1current' : 0,
\ 'progressmax' : 0,
\ 'progress1percent' : 0,
\ 'progresspercent' : 0,
\}
function! s:ProgressBarNumeric.mCreate(maxcount, unit) dict
let gpbr = s:GenericProgressBar.mCreate(range(0,200), '',
\ "Processing \@PROGRESS\@\%, total ". a:maxcount . " " . a:unit)
let progressbar = extend(gpbr, deepcopy(s:ProgressBarNumeric))
unlet progressbar.mCreate
let progressbar.progressmax = a:maxcount
let progressbar.progress1percent = a:maxcount/100
let progressbar.units = a:unit
return progressbar
endfunction
function! s:ProgressBarNumeric.mTick(count) dict
let self.progress1current += a:count
if self.progress1percent <= self.progress1current
let tmp = (self.progress1current/self.progress1percent)
let self.progresspercent += tmp
let self.progress1current -= tmp * self.progress1percent
let self.currentChar += 1
call self.mUpdate()
endif
endfunction
" }}}
" {{{ Status line
let s:StatusLine = {
\ 'symlastprogress' : 0,
\ 'symprogress' : 0,
\ 'cursym' : 0,
\ 'savedStatusLine' : '',
\ 'statusextra' : '',
\ 'local':0
\}
function! s:StatusLine.mInit() dict
let self.savedStatusLine = &l:statusline
setlocal statusline=%{CCTreeStatusLine()}
endfunction
function! s:StatusLine.mRestore() dict
let self.currentstatus = ''
let self.statusextra = ''
let &l:statusline = s:StatusLine.savedStatusLine
redrawstatus
endfunction
function! s:StatusLine.mSetInfo(msg) dict
let s:StatusLine.currentstatus = a:msg
redrawstatus
endfunction
function! s:StatusLine.mSetExtraInfo(msg) dict
let s:StatusLine.statusextra = a:msg
redrawstatus
endfunction
function! CCTreeStatusLine()
return s:pluginname. " ".
\ s:StatusLine.currentstatus . " -- ".
\ s:StatusLine.statusextra
endfunction
"}}}
" {{{ Shell command interface
let s:ShellCmds = {'shellOutput': ''}
function! s:ShellCmds.mSplit(inFile, outFile)
let cmdEx = substitute(g:CCTreeSplitProgCmd, "PROG_SPLIT", g:CCTreeSplitProg,"")
let cmdEx = substitute(cmdEx, "SPLIT_OPT", g:CCTreeSplitProgOption,"")
if g:CCTreeDbFileSplitLines != -1
let cmdEx = substitute(cmdEx, "SPLIT_SIZE", g:CCTreeDbFileSplitLines,"")
else
let cmdEx = substitute(cmdEx, "SPLIT_SIZE", g:CCTreeDbFileMaxSize,"")
endif
let cmdEx = substitute(cmdEx, "IN_FILE", a:inFile,"")
let cmdEx = substitute(cmdEx, "OUT_FILE_PREFIX", a:outFile,"")
return cmdEx
endfunction
function! s:ShellCmds.mJoin(inFileList, outFile)
let cmdEx = substitute(g:CCTreeJoinProgCmd, "PROG_JOIN", g:CCTreeJoinProg,"")
let cmdEx = substitute(cmdEx, "JOIN_OPT", g:CCTreeJoinProgOpts,"")
let cmdEx = substitute(cmdEx, "IN_FILES", a:inFileList,"")
let cmdEx = substitute(cmdEx, "OUT_FILE", a:outFile,"")
return cmdEx
endfunction
function! s:ShellCmds.mExec(cmd)
let s:shellOutput= system(a:cmd)
if s:shellOutput != ''
" Failed
return s:CCTreeRC.Error
endif
return s:CCTreeRC.Success
endfunction
" }}}
" {{{ Virtual file interface
let s:vFile = {}
function! s:vFile.mCreate(fname, mode)
if a:mode == 'r'
return s:vFileR.mCreate(a:fname)
elseif a:mode == 'w'
return s:vFileW.mCreate(a:fname)
endif
return -1
endfunction
let s:vFileW = {
\ 'splitfiles' : [],
\ 'totSplits' : 0,
\ 'lines' : [],
\ 'fileSize' : 0
\}
function! s:vFileW.mCreate(fname) dict
let vfile = deepcopy(s:vFileW)
unlet vfile.mCreate
let vfile.link = a:fname
return vfile
endfunction
function! s:vFileW.mCreateSplit() dict
" first split, create name
if self.totSplits == 0
let self.tlink = tempname()
endif
let fname = self.tlink .'_'. self.totSplits
call writefile(self.lines, fname)
call add(self.splitfiles, fname)
let self.lines = []
let self.totSplits += 1
endfunction
function! s:vFileW.mTestForSplit() dict
if self.fileSize > g:CCTreeDbFileMaxSize
call self.mCreateSplit()
endif
endfunction
function! s:vFileW.mAddFileSize(size) dict
let self.fileSize += a:size
endfunction
function! s:vFileW.mWriteList(linelist) dict
call extend(self.lines, a:linelist)
call self.mTestForSplit()
endfunction
function! s:vFileW.mWriteLine(line) dict
call add(self.lines, a:line)
call self.mAddFileSize(len(a:line))
call self.mTestForSplit()
endfunction
function! s:vFileW.mClose() dict
if self.totSplits == 0
call writefile(self.lines, self.link)
else
" force remaining lines into a new split
call self.mCreateSplit()
" now join all of them
let filelist = join(self.splitfiles, " ")
let cmdEx = s:ShellCmds.mJoin(filelist, self.link)
if s:ShellCmds.mExec(cmdEx) != s:CCTreeRC.Success
let msg = s:shellOutput ."Shell command: ".cmdEx. " failed!".
\ " Refer help to setup split/join utils."
call s:CCTreeUtils.mWarningPrompt(msg)
endif
endif
for afile in self.splitfiles
call delete(afile)
endfor
return 0
endfunction
let s:vFileR = {
\ 'splitfiles' : [],
\ 'currentSplitIdx' : 0,
\ 'totSplits' : 0,
\ 'lines' : [],
\ 'valid' : 0,
\ 'mode' : ""
\}
function! s:vFileR.mIsLargeFile() dict
if (getfsize(self.link) > g:CCTreeDbFileMaxSize)
return 1
endif
return 0
endfunction
function! s:vFileR.mCreate(fname) dict
let vfile = deepcopy(s:vFileR)
unlet vfile.mCreate
let vfile.link = a:fname
let vfile.valid = filereadable(a:fname)
let vfile.size = getfsize(a:fname)
return vfile
endfunction
function! s:vFileR.mOpen() dict
if self.mode == 'w'
" no need to do anything
return 0
endif
if self.mIsLargeFile() == 0
"little trick to keep interface uniform when we don't split
call add(self.splitfiles, self.link)
let self.totSplits = 1
else
let tmpDb = tempname()
let cmdEx = s:ShellCmds.mSplit(self.link, tmpDb)
if s:ShellCmds.mExec(cmdEx) != s:CCTreeRC.Success
let msg = s:shellOutput ."Shell command: ".cmdEx. " failed!".
\ " Refer help to setup split/join utils."
call s:CCTreeUtils.mWarningPrompt(msg)
return -1
else
let self.splitfiles = split(expand(tmpDb."*"), "\n")
endif
if empty(self.splitfiles)
return -1
endif
endif
let self.totSplits = len(self.splitfiles)
return 0
endfunction
function! s:vFileR.mRead() dict
if (self.currentSplitIdx >= len(self.splitfiles))
" out of bounds
return -1
endif
let self.lines = readfile(self.splitfiles[self.currentSplitIdx])
let self.currentSplitIdx += 1
return 0
endfunction
function! s:vFileR.mRewind() dict
let self.currentSplitIdx = 0
let self.lines = []
endfunction
function! s:vFileR.mClose() dict
if self.totSplits == 1
return
endif
for afile in self.splitfiles
call delete(afile)
endfor
endfunction
"}}}
" {{{Stop watch
let s:StopWatch = {
\ 'text' : "(no reltime feature)",
\}
function! s:StopWatch.mCreate() dict
let stopWatch = deepcopy(s:StopWatch)
unlet stopWatch.mCreate
call stopWatch.mReset()
return stopWatch
endfunction
function! s:StopWatch.mReset() dict
if has('reltime')
let self.startRTime = reltime()
else
let self.startRTime = localtime()
endif
endfunction
function! s:StopWatch.mSnapElapsed() dict
if has('reltime')
let self.text = reltimestr(reltime(self.startRTime))
else
let self.text = localtime() - self.startRTime
endif
endfunction
function! s:StopWatch.mGetText() dict
return self.text
endfunction
"}}}
" {{{ Digraph character compression/decompression routines
let s:CharMaps = {
\'savedEncoding' : '',
\'mapkind' : ''
\}
" The encoding needs to be changed to 8-bit, otherwise we can't swap special
" 8-bit characters; restore after done
function! s:CharMaps.mInitTranslator() dict
if self.mapkind == 'Alpha'
let self.savedEncoding = &encoding
let &encoding="latin1"
endif
endfunction
function! s:CharMaps.mDoneTranslator() dict
if self.mapkind == 'Alpha'
let &encoding=self.savedEncoding
endif
endfunction
function! s:CharMaps.CrossProduct(seq1, seq2) dict
let cpSeq = []
for dc1 in range(strlen(a:seq1))
for dc2 in range(strlen(a:seq2))
call add(cpSeq, a:seq1[dc1].a:seq2[dc2])
endfor
endfor
return cpSeq
endfunction
let s:TranslateMap = {}
function! s:TranslateMap.mCreate (srcsym, destsym, mapkind, regex) dict
let dicttable = extend(deepcopy(s:CharMaps), deepcopy(s:TranslateMap))
unlet dicttable.CrossProduct
let dicttable.mappings = {}
" map lower
let maxsym = min([len(a:srcsym),len (a:destsym)])
let index = 0
while (index < maxsym)
let dicttable.mappings[a:srcsym[index]] = a:destsym[index]
let index += 1
endwhile
" Need mapping lens, we assume it's constant across the board
let dicttable.mapsrclen = len(a:srcsym[0])
let dicttable.regex = a:regex
if a:mapkind == 'Alpha'
let dicttable.mTranslate = dicttable.mTranslateAlpha
elseif a:mapkind == 'Numeric'
let dicttable.mTranslate = dicttable.mTranslateNumeric
endif
let dicttable.mapkind = a:mapkind
unlet dicttable.mTranslateNumeric
unlet dicttable.mTranslateAlpha
return dicttable
endfunction
function! s:TranslateMap.mTranslateNumeric(value) dict
let index = 0
let retval = ""
" remember to deal with multi-byte characters
while index < len(a:value)
let char1 = char2nr(a:value[index])
if has_key(self.mappings, char1)
let newmap = self.mappings[char1]
else
" take only the first character
let newmap = a:value[index]
endif
let retval .= newmap
let index += 1
endwhile
return retval
endfunction
function! s:TranslateMap.mTranslateAlpha(value) dict
let retval = substitute(a:value, self.regex, '\=self.mappings[submatch(1)]', "g")
return retval
endfunction
function! s:CCTreeGetXRefDbMaps(maptype, mapkind)
let dichar1 = ",0123456789"
let dichar2 = ",0123456789"
return s:CCTreeCreateGenericMaps(a:maptype, a:mapkind, dichar1, dichar2)
endfunction
function! s:CCTreeGetCscopeMaps(maptype, mapkind)
let dichar1 = " teisaprnl(of)=c"
let dichar2 = " tnerpla"
return s:CCTreeCreateGenericMaps(a:maptype, a:mapkind, dichar1, dichar2)
endfunction
function! s:CCTreeCreateGenericMaps(maptype, mapkind, dichar1, dichar2)
let s:CharMaps.mapkind = a:mapkind
call s:CharMaps.mInitTranslator()
if a:mapkind == 'Numeric'
let ab = map(range(128,255), 'v:val')
elseif a:mapkind == 'Alpha'
let ab = map(range(128,255), 'nr2char(v:val)')
else
return {}
endif
let ac = s:CharMaps.CrossProduct(a:dichar1, a:dichar2)
if a:maptype == 'Compress'
let maps = s:TranslateMap.mCreate(ac, ab, a:mapkind,
\'\(['.a:dichar1.']['.a:dichar2.']\)\C')
elseif a:maptype == 'Uncompress'
let maps = s:TranslateMap.mCreate(ab, ac, a:mapkind,
\'\([\d128-\d255]\)')
endif
call s:CharMaps.mDoneTranslator()
return maps
endfunction
" }}}
" {{{ Unique list filter object
let s:UniqList = {}
function! s:UniqList.mFilterEntries(lstval) dict
let valdict = {}
let reslist = ''
for aval in a:lstval
if !has_key(valdict, aval)
let valdict[aval] = ''
let reslist .= (aval . ",")
endif
endfor
return reslist
endfunction
let s:CCTreeUniqListFilter = deepcopy(s:UniqList)
function! s:CCTreeMakeCommaListUnique(clist)
let entries = split(a:clist, ",")
if len(entries) > 0
return s:CCTreeUniqListFilter.mFilterEntries(entries)
endif
return ""
endfunction
" }}}
" {{{ Buffer/Window
func! s:FindOpenBuffer(filename)
let bnrHigh = bufnr("$")
"tabpagebuflist(tabpagenr())
for bufnrs in range(1, bnrHigh)
if (bufexists(bufnrs) == 1 && bufname(bufnrs) == a:filename && bufloaded(bufnrs) != 0 )
return bufnrs
endif
endfor
" Could not find the buffer
return 0
endfunction
func! s:FindOpenWindow(filename)
let bufnr = s:FindOpenBuffer(a:filename)
if (bufnr > 0)
let newWinnr = bufwinnr(bufnr)
if newWinnr != -1
exec newWinnr.'wincmd w'
return 1
endif
endif
" Could not find the buffer
return 0
endfunction
" }}}
" {{{ Utils library
let s:Utils = {}
" Use this function to determine the correct "g" flag
" for substitution
function! s:Utils.mGetSearchFlag(gvalue)
let ret = (!a:gvalue)* (&gdefault) + (!&gdefault)*(a:gvalue)
if ret == 1
return 'g'
endif
return ''
endfunc
" Strlen works for multibyte characters
function! s:Utils.mStrlenEx(val)
return strlen(substitute(a:val, ".", "x", "g"))
endfunc
" }}}
" {{{ Generic db loader interface
let s:GenericDbLdr = {
\ 'fDBName' : '',
\ 'class' : 'Generic',
\ }
function! s:GenericDbLdr.mCreate(fname) dict
let gdb = deepcopy(s:GenericDbLdr)
unlet gdb.mCreate
let gdb.fDBName = a:fname
if !filereadable(a:fname)
return s:CCTreeRC.Error
endif
return gdb
endfunction
function! s:GenericDbLdr.mParseDbHeader(gRdr)
let header = readfile(self.fDBName, "", a:gRdr.headerLines)
return a:gRdr.mParseDbHeader(header)
endfunction
let s:XRefMemDbLdr = {
\ 'class' : s:DBStorage.memory
\}
function! s:XRefMemDbLdr.mCreate(fname) dict
let gdb = s:GenericDbLdr.mCreate(a:fname)
if type(gdb) != type({})
return gdb
endif
let mdb = extend(gdb, deepcopy(s:XRefMemDbLdr))
unlet mdb.mCreate
return mdb
endfunction
if has('perl') && g:CCTreeUsePerl == 1
" Perl function
function! s:XRefMemDbLdr.mLoadFileIntoXRefDb(xRefDb, gRdr) dict
let stage = 1
for afltr in a:gRdr.opts
let stageidxstr = 'Stage ('.stage.'/'.len(a:gRdr.opts).') '
call s:StatusLine.mSetInfo(stageidxstr. ': (PERL) Loading database ')
call a:gRdr.mProcessingStateInit()
let pBar = s:ProgressBarNumeric.mCreate(getfsize(self.fDBName), "bytes")
echomsg 'filtering '. afltr
perl << PERL_EOF
#use strict;
#use warnings FATAL => 'all';
#use warnings NONFATAL => 'redefine';
my $filebytes = 0;
my $filterpat = VIM::Eval("afltr");
open (CSCOPEDB, VIM::Eval("self.fDBName")) or die "File trouble!";
#VIM::DoCommand("echomsg '".$filterpat."'");
while (<CSCOPEDB>) {
$filebytes += length($_);
chomp($_);
if ($_ !~ $filterpat) {
next;
}
VIM::DoCommand("call pBar.mTick(".$filebytes.")");
$filebytes = 0;
VIM::DoCommand("call a:gRdr.mProcessSymbol(a:xRefDb, '".$_."')");
}
VIM::DoCommand("call pBar.mDone()");
close(CSCOPEDB);
PERL_EOF
call a:gRdr.mProcessingStateDone()
let stage += 1
endfor
endfunction
else
" Native Vim function
function! s:XRefMemDbLdr.mLoadFileIntoXRefDb(xRefDb, gRdr) dict
let vDbFile = s:vFile.mCreate(self.fDBName, "r")
if vDbFile.valid == 0
return -1
endif
if vDbFile.mIsLargeFile() == 1
call s:StatusLine.mSetExtraInfo('Database '
\.' >'.g:CCTreeDbFileMaxSize .' bytes. Splitting '.
\'into smaller chunks... (this may take some time)')
endif
try
if vDbFile.mOpen() == 0
call self.mReadFileIntoXRefDb(vDbFile,
\ a:xRefDb,
\ a:gRdr)
endif
finally
call vDbFile.mClose()
endtry
endfunction
endif
function! s:XRefMemDbLdr.mReadFileIntoXRefDb(vDbFile, xrefdb, gRdr)
let stage = 0
for afltr in a:gRdr.opts
call a:vDbFile.mRewind()
let stage += 1
call a:gRdr.mProcessingStateInit()
while 1 == 1
if a:vDbFile.mRead() == -1
break
endif
let stageidxstr = 'Stage ('.stage.'/'.len(a:gRdr.opts).') '
let fileidxstr = '('.a:vDbFile.currentSplitIdx.'/'.a:vDbFile.totSplits.') '
call s:StatusLine.mSetInfo(stageidxstr. ': Reading database chunk '.fileidxstr)
" Filter-out lines that doesn't have relevant information
let plist = a:gRdr.mReadLinesFromFile(a:vDbFile, afltr)
let pBar = s:ProgressBarNumeric.mCreate(len(plist), "items")
call s:StatusLine.mSetInfo(stageidxstr.': Analyzing database chunk '.fileidxstr)
call self.mProcessListIntoXrefDb(plist, a:gRdr, a:xrefdb, pBar)
call pBar.mDone()
" clean-up memory
call garbagecollect()
endwhile
call a:gRdr.mProcessingStateDone()
endfor
endfunction
function! s:XRefMemDbLdr.mProcessListIntoXrefDb(symbols, rdr, xrefdb, pbar)
for a in a:symbols
call a:pbar.mTick(1)
call a:rdr.mProcessSymbol(a:xrefdb, a)
endfor
endfunction
function! s:GenericDbLdr.mParseDbHeader(gRdr)
let header = readfile(self.fDBName, "", a:gRdr.headerLines)
return a:gRdr.mParseDbHeader(header)
endfunction
" }}}
" {{{ Generic Disk DB Ldr
let s:XRefDiskDbLdr = {
\ 'class' : s:DBStorage.disk
\ }
function! s:XRefDiskDbLdr.mCreate(fname) dict
let gdb = s:GenericDbLdr.mCreate(a:fname)
if type(gdb) != type({})
return gdb
endif
let mdb = extend(gdb, deepcopy(s:XRefDiskDbLdr))
unlet mdb.mCreate
return mdb
endfunction
function! s:XRefDiskDbLdr.mLoadFileIntoXRefDb(xRefDb, gRdr) dict
call a:xRefDb.mSetLink(self.fDBName)
endfunction
"}}}
" {{{ Xref disk DB
let s:XRefDiskDb = {
\ 'link':'',
\ 'savedTags': '',
\ 'class' : s:DBStorage.disk
\ }
function! s:XRefDiskDb.mCreate() dict
let fdb = deepcopy(s:XRefDiskDb)
unlet fdb.mCreate
let fdb.maps = s:CCTreeGetXRefDbMaps('Uncompress', 'Numeric')
return fdb
endfunction
function! s:XRefDiskDb.mSetLink(filedb) dict
let self.link = a:filedb
" revisit, do parse header here
endfunction
function! s:XRefDiskDb.mClear() dict
" do nothing
endfunction
function! s:XRefDiskDb.mInitState() dict
let self.savedTags = &tags
let &tags = self.link
endfunction
function! s:XRefDiskDb.mRestoreState() dict
let &tags = self.savedTags
endfunction
function! s:XRefDiskDb.mDecodeTagEntry(tagentry) dict
let itms = split(a:tagentry.name, "#")
let a:tagentry.n = itms[1]
let a:tagentry.idx = itms[0]
" Vim taglist() drops empty fields, so need to protect
if has_key(a:tagentry, 'c')
let a:tagentry.c = self.maps.mTranslate(a:tagentry.c)
else
let a:tagentry.c = ''
endif
if has_key(a:tagentry, 'p')
let a:tagentry.p = self.maps.mTranslate(a:tagentry.p)
else
let a:tagentry.p = ''
endif
return a:tagentry
endfunction
function! s:XRefDiskDb.mGetSymbolIdFromName(symname) dict
let symtagline = taglist('\#'.a:symname.'$')
let g:xyz = symtagline
let asym = self.mDecodeTagEntry(symtagline[0])
return asym.idx
endfunction
function! s:XRefDiskDb.mGetSymbolFromId(symid) dict
let symtagline = taglist('^'.a:symid.'\#')
if empty(symtagline)
echomsg "Failed to locate ".a:symid
else
return self.mDecodeTagEntry(symtagline[0])
endif
return {}
endfunction
function! s:XRefDiskDb.mGetSymbolIds() dict
" illegal
let symtaglines = taglist('^.')
return keys(self.symidhash)
endfunction
function! s:XRefDiskDb.mGetSymbolNames(lead) dict
if empty(a:lead)
let symtaglines = taglist('^.')
else
let symtaglines = taglist('#'.a:lead)
endif
let alist = []
for atag in symtaglines
let acctreesym = self.mDecodeTagEntry(atag)
call add(alist, acctreesym.n)
endfor
return alist
endfunction
" }}}
" {{{ TagFile utils
let s:CCTreeTagDbRdr = {'class': 'CCTreeXrefDb',
\ 'headerLines' : 4,
\ 'compressed' : 0,
\ 'opts': ['v:val !~ "^[\!]"'],
\ 'perl_opts': "^[^\!]",
\ 'mapPreKeys': {'c':'','p':''},
\ 'mapPostKeys': {'c':'','p':''}
\ }
function! s:CCTreeTagDbRdr.mCreate(fname) dict
let cctxdbrdr = deepcopy(s:CCTreeTagDbRdr)
unlet cctxdbrdr.mCreate
return cctxdbrdr
endfunction
function! s:CCTreeTagDbRdr.mRequirePreProcessing() dict
return s:CCTreeRC.False
endfunction
function! s:CCTreeTagDbRdr.mRequirePostProcessing() dict
return s:CCTreeRC.True
endfunction
function! s:CCTreeTagDbRdr.mRequireCleanup() dict
" Clean-up all symbols [never]
return s:CCTreeRC.False
endfunction
function! s:CCTreeTagDbRdr.mGetPreProcessingMaps() dict
return s:CCTreeGetXRefDbMaps('Compress', 'Alpha')
endfunction
function! s:CCTreeTagDbRdr.mGetPostProcessingMaps() dict
return s:CCTreeGetXRefDbMaps('Uncompress', 'Alpha')
endfunction
function! s:CCTreeTagDbRdr.mParseDbHeader(hdr) dict
" just check line 3 for sanity
if a:hdr[2] =~ "CCTree"
return s:CCTreeRC.Success
endif
return s:CCTreeRC.Error
endfunction
function! s:CCTreeTagDbRdr.mProcessingStateInit() dict
endfunction
function! s:CCTreeTagDbRdr.mProcessingStateDone() dict
endfunction
function! s:CCTreeTagDbRdr.mReadLinesFromFile(vdbFile, filtercmds) dict
" Hard-coded assumptions here about format for performance
if empty(get(a:vdbFile.lines, 0)) != 1 && a:vdbFile.lines[0][0] == "!"
" filter out the first few lines starting with "!"
call remove(a:vdbFile.lines, 0, self.headerLines-1)
endif
return a:vdbFile.lines
endfunction
function! s:CCTreeTagDbRdr.mProcessSymbol(xrefdb, aline) dict
let cctreesym = self.mDecodeTagLine(a:aline)
call a:xrefdb.mInsertSym(cctreesym.idx, cctreesym)
" we really don't need idx any longer
unlet cctreesym.idx
endfunction
function! s:CCTreeTagDbRdr.mDecodeTagLine(tagline) dict
let items = split(a:tagline, "\t")
let newsym = s:CCTreeSym.mCreate("")
try
let [newsym.idx, newsym.n] = split(items[0], '#')
catch
echomsg "problem decoding ". a:tagline
endtry
"let newsym.idx = strpart(items[0], 0, idxBr)
"let newsym.n = items[0][ idxBr+1 : -2] "strpart(items[0], idxBr+1, strlen(items[0])-1)
if empty(get(items, 3)) != 1
let newsym.c = items[3][2:]
endif
if empty(get(items, 4)) != 1
let newsym.p = items[4][2:]
endif
return newsym
endfunction
" }}}
" {{{ Generic Db Serializer
let s:GenericDbSerializer = {}
function! s:GenericDbSerializer.mCreate(xrefdb) dict
let gDbSerializer = deepcopy(s:GenericDbSerializer)
let gDbSerializer.xrefdb = a:xrefdb
return gDbSerializer
endfunction
function! s:GenericDbSerializer.mWriteXRefDbToFile(fname,
\ gWriter) dict
call s:StatusLine.mInit()
try
call s:StatusLine.mSetInfo('Writing XRefDb')
let vDbFile = s:vFile.mCreate(a:fname, "w")
call vDbFile.mWriteList(a:gWriter.mBuildHeader())
call self.mWriteSymsToFile(vDbFile, a:gWriter)
finally
call vDbFile.mClose()
call s:StatusLine.mRestore()
endtry
endfunction
function! s:GenericDbSerializer.mWriteSymsToFile(dstVFile,
\ gWriter) dict
let pBar = s:ProgressBarNumeric.mCreate(self.xrefdb.mGetSymbolCount(),
\ "items")
call a:gWriter.mInitWriting()
" write syms
for asymid in sort(self.xrefdb.mGetSymbolIds())
let acctreesym = self.xrefdb.mGetSymbolFromId(asymid)
call a:dstVFile.mWriteLine(a:gWriter.mBuildTagLine(acctreesym,
\ asymid))
call pBar.mTick(1)
endfor
call pBar.mDone()
call a:gWriter.mDoneWriting()
endfunction
" }}}
" {{{ CCTreeTagDb Writer
let s:CCTreeTagDbWriter = {}
function! s:CCTreeTagDbWriter.mCreate(tmaps) dict
let dbwriter = deepcopy(s:CCTreeTagDbWriter)
unlet dbwriter.mCreate
let dbwriter.tmaps = a:tmaps
return dbwriter
endfunction
function! s:CCTreeTagDbWriter.mInitWriting() dict
call self.tmaps.mInitTranslator()
endfunction
function! s:CCTreeTagDbWriter.mDoneWriting() dict
call self.tmaps.mDoneTranslator()
endfunction
function! s:CCTreeTagDbWriter.mBuildHeader() dict
let hdr = []
call add(hdr, "!_TAG_FILE_FORMAT\t2\t/extended format; --format=1 will not append ;\" to lines/")
call add(hdr, "!_TAG_FILE_SORTED\t1\t/0=unsorted, 1=sorted, 2=foldcase/")
call add(hdr, "!_TAG_PROGRAM_NAME\t\tCCTree (Vim plugin)//")
call add(hdr, "!_TAG_PROGRAM_URL\thttp://vim.sourceforge.net/scripts/script.php?script_id=2368\t/site/")
return hdr
endfunction
function! s:CCTreeTagDbWriter.mBuildTagLine(sym, symid) dict
let basetag = a:symid .'#'. a:sym.n."\t"."\t"."/^\$/".";\""
let cm = self.tmaps.mTranslate(a:sym.c)
let pm = self.tmaps.mTranslate(a:sym.p)
let basetag .= "\tc:". self.tmaps.mTranslate(a:sym.c)
let basetag .= "\tp:". self.tmaps.mTranslate(a:sym.p)
return basetag
endfunction
" }}}
" {{{ CCTree constants
let s:CCTreeRC = {
\ 'Error' : -1,
\ 'True' : 1,
\ 'False' : 0,
\ 'Success' : 2
\ }
"}}}
" {{{ CCTree DB Obj
" Symbol definition
let s:CCTreeSym = {
\'k': "",
\'n': "",
\'c': "",
\'p': ""
\}
function! s:CCTreeSym.mCreate(name, kind)
let sym = deepcopy(s:CCTreeSym)
unlet sym.mCreate
let sym.n = a:name
let sym.k = a:kind
return sym
endfunction
" }}}
" {{{ GenericXref, XrefDb
let s:GenericXRef = {}
function! s:GenericXRef.mCreate(filedb) dict
let gxref = deepcopy(s:GenericXRef)
return gxref
endfunction
function! s:GenericXRef.mInitState() dict
endfunction
function! s:GenericXRef.mRestoreState() dict
endfunction
" {{{ XRef Database object
let s:xRefMemDb = {
\ 'symuniqid': 0,
\ 'symidhash' : {},
\ 'symnamehash' : {},
\ 'class' : s:DBStorage.memory
\}
function s:xRefMemDb.mCreate() dict
let dbObj = deepcopy(s:xRefMemDb)
unlet dbObj.mCreate
return dbObj
endfunction
function s:xRefMemDb.mInitState() dict
endfunction
function s:xRefMemDb.mRestoreState() dict
endfunction
function s:xRefMemDb.mClear() dict
let self.symidhash = {}
let self.symnamehash = {}
let self.symuniqid = 0
endfunction
function! s:xRefMemDb.mInsertSym(idx, cctreesym) dict
let self.symuniqid = max([self.symuniqid, a:idx])
let self.symidhash[a:idx] = a:cctreesym
let self.symnamehash[a:cctreesym.n] = a:idx
endfunction
function! s:xRefMemDb.mRemoveSymById(symidx) dict
call self.mRemoveSymByName(acctreesym.n)
call remove(self.symidhash, a:symidx)
endfunction
function! s:xRefMemDb.mRemoveSymByName(symname) dict
call remove(self.symnamehash, a:symname)
endfunction
function! s:xRefMemDb.mAddSym(name, kind) dict
if !has_key(self.symnamehash, a:name)
let self.symnamehash[a:name] = self.symuniqid
let self.symidhash[self.symuniqid] =
\s:CCTreeSym.mCreate(a:name, a:kind)
let self.symuniqid += 1
endif
let asymid = self.symnamehash[a:name]
if a:kind != ""
let asym = self.symidhash[asymid]
let asym.k = a:kind
endif
return asymid
endfunction
function! s:xRefMemDb.mMarkXRefSyms(funcentryidx, newfuncidx) dict
let self.symidhash[a:funcentryidx]['c'] .= (",". a:newfuncidx)
let self.symidhash[a:newfuncidx]['p'] .= (",". a:funcentryidx)
endfunction
function! s:xRefMemDb.mGetSymbolFromName(symname) dict
return self.symidhash[self.symnamehash[a:symname]]
endfunction
function! s:xRefMemDb.mGetSymbolIdFromName(symname) dict
if has_key(self.symnamehash, a:symname)
return self.symnamehash[a:symname]
else
return s:CCTreeRC.Error
endif
endfunction
function! s:xRefMemDb.mGetSymbolFromId(symid) dict
return self.symidhash[a:symid]
endfunction
function! s:xRefMemDb.mGetSymbolIds() dict
return keys(self.symidhash)
endfunction
function! s:xRefMemDb.mGetSymbolNames(lead) dict
let syms = keys(self.symnamehash)
if empty(a:lead) != 1
return filter(syms, 'v:val =~? a:lead')
endif
return syms
endfunction
function! s:xRefMemDb.mGetSymbolCount() dict
return len(self.symnamehash)
endfunction
function! s:xRefMemDb.mTranslateSymbols(map, tkeys) dict
call a:map.mInitTranslator()
let pBar = s:ProgressBarNumeric.mCreate(len(self.symnamehash), "items")
for asym in keys(self.symnamehash)
let idx = self.symnamehash[asym]
let val = self.symidhash[idx]
if has_key(a:tkeys, 'n')
let uncmpname = a:map.mTranslate(asym)
if (asym != uncmpname)
"Set up new entry
let self.symnamehash[uncmpname] = idx
" free the old entry
call remove(self.symnamehash, asym)
" Set uncompressed name
let val.n = uncmpname
endif
endif
if has_key(a:tkeys, 'p')
let val.p = a:map.mTranslate(val.p)
endif
if has_key(a:tkeys, 'c')
let val.c = a:map.mTranslate(val.c)
endif
call pBar.mTick(1)
endfor
call pBar.mDone()
call a:map.mDoneTranslator()
endfunction
function! s:xRefMemDb.mCleanSymbols () dict
let pBar = s:ProgressBarNumeric.mCreate(len(self.symnamehash), "items")
for asym in keys(self.symnamehash)
let idx = self.symnamehash[asym]
let val = self.symidhash[idx]
if empty(val.p) && empty(val.c)
call remove(self.symnamehash, asym)
call remove(self.symidhash, idx)
else
let val.p = s:CCTreeMakeCommaListUnique(val.p)
let val.c = s:CCTreeMakeCommaListUnique(val.c)
endif
call pBar.mTick(1)
endfor
call pBar.mDone()
endfunction
"}}}
"}}} End of Xref
" {{{ Tracer
let s:CallTree = {
\ 'symbol' : ""
\ }
function! s:CallTree.mCreate(name) dict
let ct = deepcopy(s:CallTree)
unlet ct.mCreate
let ct.symbol = a:name
return ct
endfunction
function! s:CallTree.mAddChildLink(childTree) dict
if !has_key(self, 'childlinks')
let self.childlinks = []
endif
call add(self.childlinks, a:childTree)
endfunction
let s:XRefTracer = {
\}
function! s:XRefTracer.mCreate(xrefdb) dict
let xreftracer = deepcopy(s:XRefTracer)
let xreftracer.xrefdb = a:xrefdb
return xreftracer
endfunction
function! s:XRefTracer.mInitTracing() dict
call self.xrefdb.mInitState()
endfunction
function! s:XRefTracer.mDoneTracing() dict
call self.xrefdb.mRestoreState()
endfunction
function! s:XRefTracer.mGetSymbolIdXRef(symid, direction) dict
let acctreesym = self.xrefdb.mGetSymbolFromId(a:symid)
let symidslist = split(
\s:CCTreeMakeCommaListUnique(acctreesym[a:direction]), ",")
return symidslist
endfunction
function! s:XRefTracer.mBuildForSymbol(symid, curdepth, maxdepth,
\ direction, pbar) dict
if (a:curdepth > a:maxdepth)
return {}
endif
call a:pbar.mSetDepth(a:curdepth)
let asym = self.xrefdb.mGetSymbolFromId(a:symid)
" revisit
if empty(asym)
return {}
endif
let rtree = s:CallTree.mCreate(asym['n'])
for entry in self.mGetSymbolIdXRef(a:symid, a:direction)
call a:pbar.mTick(1)
let ctree =
\self.mBuildForSymbol(entry, a:curdepth+1, a:maxdepth,
\a:direction, a:pbar)
call rtree.mAddChildLink(ctree)
endfor
return rtree
endfunction
" }}}
" {{{ Cscope Reader
let s:CscopeDbRdrState = {
\'curfuncidx': -1,
\'curfileidx': -1,
\'curmacroidx': -1,
\'curenumidx': -1,
\ }
function! s:CscopeDbRdrState.mCreate() dict
return deepcopy(s:CscopeDbRdrState)
endfunction
let s:CscopeDbRdrSymTags = {
\'func' : '$}',
\'macro' : '#\)',
\'file' : '@\~',
\'enum' : 'em',
\'global' : 'g',
\'typedef' : 't',
\}
let s:CscopeDbSymFilter = ['v:val =~ "^\t[#`$}@\~\)]"']
let s:CscopeDbSymEnhFilter = ['v:val =~ "^\t[emgt#`$}@~)]"',
\ 'v:val =~ "^\\a\\|^\t[)$}#]"']
let s:CscopeDbSymFilterPerl = ['^\t[\`\#\$\}\@\~\)]']
let s:CscopeDbSymEnhFilterPerl = ['^\t[\`\#\$\}\@\~\)emgt]',
\ '^[A-Za-z]|^\t[\#\$\}\)]']
let s:CscopeDbRdr = {
\ 'class': 'Cscope',
\ 'headerLines' : 1,
\ 'compressed' : 0,
\ 'opts': [],
\ 'perl_opts': '',
\ 'mapPreKeys': {'n':''},
\ 'mapPostKeys': {'n':''}
\}
function! s:CscopeDbRdr.mCreate(fname, enhanced) dict
let csdbrdr = deepcopy(s:CscopeDbRdr)
unlet csdbrdr.mCreate
if a:enhanced == 1
if g:CCTreeUsePerl == 1
let csdbrdr.opts = s:CscopeDbSymEnhFilterPerl
else
let csdbrdr.opts = s:CscopeDbSymEnhFilter
endif
else
if g:CCTreeUsePerl == 1
let csdbrdr.opts = s:CscopeDbSymFilterPerl
else
let csdbrdr.opts = s:CscopeDbSymFilter
endif
endif
return csdbrdr
endfunction
function! s:CscopeDbRdr.mProcessingStateInit() dict
let self.iState = s:CscopeDbRdrState.mCreate()
endfunction
function! s:CscopeDbRdr.mProcessingStateDone() dict
" discard state
unlet self.iState
endfunction
function! s:CscopeDbRdr.mReadLinesFromFile(vDbFile, filtercmds) dict
return s:CCTreeUtils.mFilter(a:vDbFile.lines, a:filtercmds)
endfunction
function! s:CscopeDbRdr.mParseDbHeader(dbHeader) dict
if a:dbHeader[0] =~ "cscope"
if (a:dbHeader[0] !~ "cscope.*\-c")
let self.compressed = s:CCTreeRC.True
else
let self.compressed = s:CCTreeRC.False
endif
return s:CCTreeRC.Success
endif
return s:CCTreeRC.Error
endfunction
function! s:CscopeDbRdr.mRequirePreProcessing() dict
return (self.compressed == 1)? s:CCTreeRC.True : s:CCTreeRC.False
endfunction
function! s:CscopeDbRdr.mRequirePostProcessing() dict
return (self.compressed == 1)? s:CCTreeRC.True : s:CCTreeRC.False
endfunction
function! s:CscopeDbRdr.mRequireCleanup() dict
" Clean-up all symbols [always]
return s:CCTreeRC.True
endfunction
function! s:CscopeDbRdr.mGetPreProcessingMaps() dict
return s:CCTreeGetCscopeMaps('Compress', 'Alpha')
endfunction
function! s:CscopeDbRdr.mGetPostProcessingMaps() dict
return s:CCTreeGetCscopeMaps('Uncompress', 'Alpha')
endfunction
function! s:CscopeDbRdr.mProcessSymbol(xrefdb, symbol) dict
try
if a:symbol[0] == "\t"
return self.mProcessTaggedSymbol(a:xrefdb, a:symbol)
else
return self.mProcessUnTaggedSymbol(a:xrefdb, a:symbol)
endif
catch
echomsg 'Problem with '. a:symbol
endtry
endfunction
function! s:CscopeDbRdr.mProcessUnTaggedSymbol(xrefdb, symbol) dict
let cursymidx = a:xrefdb.mGetSymbolIdFromName(a:symbol)
if cursymidx != s:CCTreeRC.Error
if self.iState.curfuncidx != -1
call a:xrefdb.mMarkXRefSyms(self.iState.curfuncidx, cursymidx)
elseif self.iState.curmacroidx != -1
call a:xrefdb.mMarkXRefSyms(self.iState.curmacroidx, cursymidx)
endif
endif
endfunction
function! s:CscopeDbRdr.mProcessTaggedSymbol(xrefdb, symbol) dict
if self.iState.curmacroidx != -1
if a:symbol[1] == "`"
call a:xrefdb.mMarkXRefSyms(self.iState.curmacroidx,
\ a:xrefdb.mAddSym(a:symbol[2:], ""))
elseif a:symbol[1] == ')'
let self.iState.curmacroidx = -1
endif
elseif self.iState.curfuncidx != -1
" inside function
if a:symbol[1] == "`"
call a:xrefdb.mMarkXRefSyms(self.iState.curfuncidx,
\ a:xrefdb.mAddSym(a:symbol[2:], ""))
elseif a:symbol[1] == "}"
let self.iState.curfuncidx = -1
elseif a:symbol[1] == "#"
let self.iState.curmacroidx = a:xrefdb.mAddSym(a:symbol[2:], 'm')
endif
elseif self.iState.curenumidx != -1
if a:symbol[1] == "m"
call a:xrefdb.mMarkXRefSyms(self.iState.curenumidx,
\ a:xrefdb.mAddSym(a:symbol[2:], "em"))
else
" just reprocess the symbol after changing state
let self.iState.curenumidx = -1
call self.mProcessTaggedSymbol(a:xrefdb, a:symbol)
endif
elseif a:symbol[1] == "$"
let self.iState.curfuncidx = a:xrefdb.mAddSym(a:symbol[2:], "f")
elseif a:symbol[1] == "#"
let self.iState.curmacroidx = a:xrefdb.mAddSym(a:symbol[2:], "d")
elseif a:symbol[1] == "~"
call a:xrefdb.mMarkXRefSyms(self.iState.curfileidx,
\a:xrefdb.mAddSym(a:symbol[3:], "i"))
elseif a:symbol[1] == "e"
let self.iState.curenumidx = a:xrefdb.mAddSym(a:symbol[2:], "e")
elseif a:symbol[1] == "g"
call a:xrefdb.mAddSym(a:symbol[2:], "g")
elseif a:symbol[1] == "@"
if a:symbol[2] != ""
let self.iState.curfileidx =
\a:xrefdb.mAddSym(a:symbol[2:], "F")
endif
endif
endfunction
" }}}
" {{{ CCTree helper library
let s:CCTreeUtils = {}
function! s:CCTreeUtils.mDetectDB(class)
if a:class == s:DBClasses.cctreexref
if filereadable(g:CCTreeDb)
return g:CCTreeDb
endif
elseif a:class == s:DBClasses.cscopeid
if filereadable(g:CCTreeCscopeDb)
return g:CCTreeCscopeDb
endif
endif
return ''
endfunction
function! s:CCTreeUtils.mFilter(lines, filtercmd) dict
let retlst = []
let progr = len(a:lines)/100
let pBar = s:ProgressBarNumeric.mCreate(len(a:lines), "items")
while len(a:lines) > 0
if progr <= len(a:lines)
let tmplist = remove(a:lines, 0, progr)
else
let tmplist = remove(a:lines, 0, len(a:lines)-1)
endif
call filter(tmplist, a:filtercmd)
call pBar.mTick(progr)
call extend(retlst, tmplist)
endwhile
call pBar.mDone()
return retlst
endfunction
function! s:CCTreeUtils.mWarningPrompt(msg) dict
echohl WarningMsg
let a = input(s:pluginname. ": ". a:msg)
echohl None
endfunction
function! s:CCTreeUtils.mWarningMsg(msg) dict
echohl WarningMsg
echomsg s:pluginname. ": ". a:msg
echohl None
endfunction
function! s:CCTreeUtils.mInfoMsg(msg) dict
echohl Title
echomsg s:pluginname. ": ". a:msg
echohl None
endfunction
function! s:CCTreeUtils.mWrite(msg) dict
echo s:pluginname. ": ". a:msg
endfunction
" }}}
" {{{ CCTree DB management
let s:CCTreeXrefDbEntry = {
\ 'type': '',
\ 'fname' : '',
\ 'fsize' : 0,
\ 'fdate' : 0
\}
function! s:CCTreeXrefDbEntry.mCreate(fname, type) dict
let xrefdbent = deepcopy(s:CCTreeXrefDbEntry)
unlet xrefdbent.mCreate
let xrefdbent.type = a:type
let xrefdbent.fname = simplify(getcwd().'/'.a:fname)
let xrefdbent.fsize = getfsize(a:fname)
let xrefdbent.fdate = strftime("%c", getftime(a:fname))
return xrefdbent
endfunction
let s:CCTreeDBList = {
\'loadedDBs' : []
\ }
function! s:CCTreeDBList.mCreate() dict
let dbList = deepcopy(s:CCTreeDBList)
unlet dbList.mCreate
return dbList
endfunction
function! s:CCTreeDBList.mShowLoaded() dict
let i = 1
call s:CCTreeUtils.mWrite(s:pluginname.": List of loaded cscope databases")
call s:CCTreeUtils.mWrite("---------------------------------------")
for aDBEnt in self.loadedDBs
call s:CCTreeUtils.mWrite(i." ".aDBEnt.fname. " ".
\ " (".aDBEnt.type.") ".
\ aDBEnt.fsize. " bytes ".
\ aDBEnt.fdate)
let i = i + 1
endfor
endfunction
function! s:CCTreeDBList.mClearAll() dict
let self.loadedDBs = []
endfunction
function! s:CCTreeDBList.mIsEmpty() dict
if empty(self.loadedDBs)
return s:CCTreeRC.True
endif
return s:CCTreeRC.False
endfunction
" Load the cscope db into the global cctree xref db
function! s:CCTreeDBList.mCreateDbLoaderAndReader(dbName, dbclass, storageclass) dict
let dbUser = s:CCTreeCmdLine.mInputDBName('Load', a:dbName, a:dbclass)
if dbUser == ''
call s:CCTreeUtils.mWarningMsg('Filename required')
"User cancel, do nothing
return
endif
" Create generic Db loader object
if a:storageclass == s:DBStorage.disk
let gDbLdr = s:XRefDiskDbLdr.mCreate(dbUser)
elseif a:storageclass == s:DBStorage.memory
let gDbLdr = s:XRefMemDbLdr.mCreate(dbUser)
endif
if type(gDbLdr) != type({})
call s:CCTreeUtils.mWarningMsg(a:dbclass.' database ' . a:dbName .
\ ' not found.')
return s:CCTreeRC.Error
endif
" Create new DB reader object
if a:storageclass == s:DBStorage.memory
if a:dbclass == s:DBClasses.cscopeid
let gDbRdr = s:CscopeDbRdr.mCreate(dbUser, g:CCTreeEnhancedSymbolProcessing)
elseif a:dbclass == s:DBClasses.cctreexref
let gDbRdr = s:CCTreeTagDbRdr.mCreate(dbUser)
else
return s:CCTreeRC.Error
endif
if gDbLdr.mParseDbHeader(gDbRdr) == s:CCTreeRC.Error
call s:CCTreeUtils.mWarningMsg(gDbRdr.class.' database ' . a:dbName .
\ ' format is not parseable.')
return s:CCTreeRC.Error
endif
else
let gDbRdr = {}
endif
return {'loader': gDbLdr, 'reader': gDbRdr}
endfunction
function! s:CCTreeDBList.mAddDbToList(dbName, type)
let aDBEnt = s:CCTreeXrefDbEntry.mCreate(a:dbName, a:type)
call add(self.loadedDBs, aDBEnt)
endfunction
" Merge the cscope db into the global cctree xref db
function! s:CCTreeDBList.mMerge(dbName, xRefDb, class)
" Check if merge can be supported
if self.loadedDBs[0].type == s:DBStorage.disk
call s:CCTreeUtils.mInfoMsg("Cannot merge with DBs traced from disk")
return
endif
" Create db loader, reader
let gObjs = self.mCreateDbLoaderAndReader(a:dbName, a:class, s:DBStorage.memory)
if type(gObjs) == type({})
" if Db is compressed, then we need to compress our symbols first
let swatch = s:StopWatch.mCreate()
if self.mLoadDB(gObjs.loader, a:xRefDb,
\ gObjs.reader) != s:CCTreeRC.Error
call self.mAddDbToList(gObjs.loader.fDBName, gObjs.loader.class)
let msg = "Done merging databases. xRef Symbol Count: "
\.a:xRefDb.mGetSymbolCount()
\.". Time taken: ".swatch.mGetText()." secs"
call s:CCTreeUtils.mInfoMsg(msg)
endif
" Load will auto decompress the symbols
endif
endfunction
" Load the cscope db into the global cctree xref db
function! s:CCTreeDBList.mAddNew(dbName, xRefDb, dbclass, storageclass)
" Create db loader, reader
let gObjs = self.mCreateDbLoaderAndReader(a:dbName, a:dbclass, a:storageclass)
if type(gObjs) == type({})
let swatch = s:StopWatch.mCreate()
if self.mLoadDB(gObjs.loader, a:xRefDb,
\ gObjs.reader) != s:CCTreeRC.Error
call self.mAddDbToList(gObjs.loader.fDBName, gObjs.loader.class)
call swatch.mSnapElapsed()
if a:storageclass == s:DBStorage.memory
let msg = "Done loading database. xRef Symbol Count: "
\.a:xRefDb.mGetSymbolCount()
\.". Time taken: ".swatch.mGetText()." secs"
else
let msg = "Disk Xref database loaded for tracing"
endif
call s:CCTreeUtils.mInfoMsg(msg)
endif
endif
endfunction
function! s:CCTreeDBList.mLoadDB(gDbLdr, xRefDb, gRdr)
let rc = s:CCTreeRC.Success
try
let swatch = s:StopWatch.mCreate()
call s:StatusLine.mInit()
" if compression, then we need to compress our symbols first
if !empty(a:gRdr) && a:gRdr.mRequirePreProcessing() == s:CCTreeRC.True
call s:StatusLine.mSetInfo('Pre-processing existing symbols')
call a:xRefDb.mTranslateSymbols(a:gRdr.mGetPreProcessingMaps(),
\ a:gRdr.mapPreKeys)
endif
call garbagecollect()
call s:StatusLine.mSetInfo('Loading database')
call a:gDbLdr.mLoadFileIntoXRefDb(a:xRefDb, a:gRdr)
if !empty(a:gRdr) && a:gRdr.mRequireCleanup() == s:CCTreeRC.True
call s:StatusLine.mSetInfo('Symbol clean-up')
call a:xRefDb.mCleanSymbols()
endif
call garbagecollect()
if !empty(a:gRdr) && a:gRdr.mRequirePostProcessing() == s:CCTreeRC.True
call s:StatusLine.mSetInfo('Post-processing loaded symbols')
call a:xRefDb.mTranslateSymbols(a:gRdr.mGetPostProcessingMaps(),
\ a:gRdr.mapPostKeys)
endif
call swatch.mSnapElapsed()
" restore normalcy
call garbagecollect()
redraw
catch /^Vim:Interrupt$/ " catch interrupts (CTRL-C)
call s:CCTreeUtils.mWarningMsg('Loading aborted.')
let rc = s:CCTreeRC.Error
finally
call s:StatusLine.mRestore()
endtry
return rc
endfunction
"}}}
" {{{ UI Input related
let s:CCTreeUI = {}
function! s:CCTreeUI.mInputDBName(dbName, class, action)
let dbUser = a:dbName
let dbUser = input(a:action. ' database ('. a:class. '): ', a:dbName, 'file')
return dbUser
endfunction
" }}}
" {{{ CCTree Markers
let s:TreeMarkers_UTF8 = {
\ 'splitT' : nr2char(0x251c),
\ 'arrowR' : nr2char(0x25c0),
\ 'arrowF' : nr2char(0x25B6),
\ 'extV' : nr2char(0x2502),
\ 'extH': nr2char(0x2500),
\ 'depth': nr2char(0x25BC)
\}
let s:TreeMarkers_Text = {
\ 'splitT' : '+',
\ 'arrowF' : '>',
\ 'arrowR' : '<',
\ 'extV' : '|',
\ 'extH': '-',
\ 'depth': 'depth:'
\}
let s:CCTreeMarkers = {
\ 'icons':{}
\ }
function! s:CCTreeMarkers.mCreate() dict
let treeMarkers = deepcopy(s:CCTreeMarkers)
if &encoding == 'utf-8' && g:CCTreeUseUTF8Symbols == 1
let treeMarkers.icons = deepcopy(s:TreeMarkers_UTF8)
else
" default choice
let treeMarkers.icons = deepcopy(s:TreeMarkers_Text)
endif
let treeMarkers.icons.arrowSyms = treeMarkers.icons.arrowF . treeMarkers.icons.arrowR
let treeMarkers.icons.vertSyms = treeMarkers.icons.splitT . treeMarkers.icons.extV
return treeMarkers
endfunction
function! s:CCTreeMarkers.mGetArrow(direction) dict
if a:direction == 'p'
return self.icons.arrowR
elseif a:direction == 'c'
return self.icons.arrowF
endif
return '?'
endfunction
" }}}
" {{{ User key mappings
let s:CCTreeKeyMappings = {
\ 'CTreeF': g:CCTreeKeyTraceForwardTree,
\ 'CTreeR': g:CCTreeKeyTraceReverseTree,
\ 'CTreeHilight': g:CCTreeKeyHilightTree,
\ 'CTreeWSave': g:CCTreeKeySaveWindow,
\ 'CTreeWToggle': g:CCTreeKeyToggleWindow,
\ 'CTreeCompress': g:CCTreeKeyCompressTree,
\ 'CTreeDepthMinus': g:CCTreeKeyDepthMinus,
\ 'CTreeDepthPlus': g:CCTreeKeyDepthPlus
\}
" }}}
" {{{ CCTreeWindow
let s:CCTreeWindow = {
\ 'hiKeyword': '',
\ 'hiKeywordLine':'',
\ 'lastbufname':'',
\ 'treeMarkers': s:CCTreeMarkers.mCreate()}
function! s:CCTreeWindow.mCreate() dict
let win = deepcopy(s:CCTreeWindow)
unlet win.mCreate
return win
endfunction
function! s:CCTreeWindow.mLeave()
call s:FindOpenWindow(self.lastbufname)
endfunction
" Definition of a keyword...
let s:CCTreeKeywordRegEx = '[A-Za-z0-9_\\\.\/]\+'
function! s:CCTreeWindow.mGetKeywordAtCursor() dict
let curline = line(".")
let self.hiKeyword = ''
if foldclosed(curline) == -1
let curkeyword = matchstr(getline("."), s:CCTreeKeywordRegEx)
if curkeyword != ''
if curkeyword != self.hiKeyword || curline != self.hiKeywordLine
let self.hiKeyword = curkeyword
let self.hiKeywordLine = line(".")
return s:CCTreeRC.Success
endif
else
return s:CCTreeRC.Error
endif
endif
if self.hiKeyword == ''
return s:CCTreeRC.Error
endif
return s:CCTreeRC.Success
endfunction
function! s:CCTreeWindow.mBuildStatusLine(pState, title, items)
let needcomma = 0
let rtitle = a:title. ' ('. a:pState.keyword
let rtitle .= '['
if has_key(a:items, "depth")
let rtitle .= self.treeMarkers.icons.depth
let rtitle .= a:pState.depth
let needcomma = 1
endif
if has_key(a:items, "direction")
if needcomma == 1
let rtitle .= ','
endif
let rtitle .= self.treeMarkers.mGetArrow(a:pState.direction)
endif
let rtitle .= '])'
return rtitle
endfunction
function! CCTreeWindowPreviewStatusLine()
" get global
" this is a hack
let pState = s:CCTreeGlobals.PreviewState
let tMarkers = s:CCTreeGlobals.Window.treeMarkers
return s:CCTreeGlobals.Window.mBuildStatusLine(
\ s:CCTreeGlobals.PreviewState,
\ s:windowtitle,
\ {'depth':''}
\)
endfunction
function! s:CCTreeWindow.mPreviewSave(savetitle) dict
if s:FindOpenWindow(s:windowtitle) == 1
setlocal modifiable
call self.mClearMarks(b:displayTree)
setlocal nomodifiable
setlocal statusline=%-F
silent! exec ":f ". a:savetitle
return s:CCTreeRC.Success
endif
return s:CCTreeRC.Error
endfunction
function! s:CCTreeWindow.mIsOpen() dict
if s:FindOpenBuffer(s:windowtitle) > 0
return s:CCTreeRC.True
endif
return s:CCTreeRC.False
endfunction
function! s:CCTreeWindow.mClose() dict
if s:FindOpenWindow(s:windowtitle) == 1
silent! q!
endif
endfunction
function! s:CCTreeWindow.mDisplayToggle() dict
if s:FindOpenWindow(s:windowtitle) == 1
silent! hide
else
let winbufnr = s:FindOpenBuffer(s:windowtitle)
if winbufnr > 0
call self.mEnter()
silent! exec "buf ".winbufnr
call self.mResize()
silent! wincmd p
else
call s:CCTreeUtils.mWarningMsg(" No active window found.")
endif
endif
endfunction
function! s:CCTreeWindow.mResize() dict
if g:CCTreeWindowVertical == 1
if g:CCTreeWindowWidth == -1
exec "vertical resize ". b:maxwindowlen
else
exec "vertical resize ". g:CCTreeWindowWidth
endif
else
if g:CCTreeWindowHeight != -1
let &winminheight = g:CCTreeWindowHeight
exec "resize".g:CCTreeWindowHeight
endif
endif
endfunction
function! s:CCTreeWindow.mDisplayTree(atree, direction) dict
let incctreewin = 1
if (bufname('%') != s:windowtitle)
let incctreewin = self.mEnter()
endif
setlocal modifiable
silent 1,$d
let b:maxwindowlen = g:CCTreeWindowMinWidth
let b:displayTree = s:DisplayTree.mCreate(a:atree,
\ a:direction, self.treeMarkers)
call s:CCTreeDisplay.mPopulateTreeInCurrentBuffer(b:displayTree)
exec "normal gg"
" Need to force this again
let &l:foldlevel=g:CCTreeMinVisibleDepth
setlocal nomodifiable
call self.mResize()
if (incctreewin == 0)
call s:CCTreeWindow.mLeave()
endif
endfunction
function! s:CCTreeWindow.mExtractTreeSymbols(dtree)
let symlist = {}
for aentry in a:dtree.entries
let symlist[aentry.symbol] = 0
endfor
return symlist
endfunction
function! s:CCTreeWindow.mEnter() dict
let self.lastbufname = bufname("%")
let foundWindow = s:FindOpenWindow(s:windowtitle)
if foundWindow == 0
if g:CCTreeWindowVertical == 1
exec g:CCTreeOrientation." vsplit ". s:windowtitle
set winfixwidth
else
exec g:CCTreeOrientation." split ". s:windowtitle
set winfixheight
endif
setlocal buftype=nofile
setlocal bufhidden=hide
setlocal noswapfile
setlocal nonumber
setlocal nowrap
setlocal nobuflisted
if s:CCTreeUseConceal == 1
setlocal cole=3
setlocal cocu=nv
endif
setlocal statusline=%=%{CCTreeWindowPreviewStatusLine()}
call self.mInitSyntax(self.treeMarkers.icons)
let cpo_save = &cpoptions
set cpoptions&vim
call s:CCTreeBufferKeyMappingsCreate(s:CCTreeKeyMappings)
command! -buffer -nargs=0 CCTreeWindowHiCallTree
\ call s:CCTreeGlobals.mCursorHoldHandleEvent()
exec 'nnoremap <buffer> <silent> '.s:CCTreeKeyMappings.CTreeHilight.
\' :CCTreeWindowHiCallTree<CR>'
exec 'nnoremap <buffer> <silent> '.s:CCTreeKeyMappings.CTreeCompress.
\ ' :2,.foldclose!<CR>zv'
nnoremap <buffer> <silent> <C-p> :CCTreePreviewBufferUsingTag<CR>
nnoremap <buffer> <silent> <CR> :CCTreeLoadBufferUsingTag<CR>
nnoremap <buffer> <silent> <2-LeftMouse> :CCTreeLoadBufferUsingTag<CR>
let &cpoptions = cpo_save
endif
setlocal foldmethod=expr
setlocal foldexpr=CCTreeFoldExpr(getline(v:lnum))
setlocal foldtext=CCTreeFoldText()
let &l:foldlevel=g:CCTreeMinVisibleDepth
return foundWindow
endfunction
" }}}
" {{{ Dynamic call-tree highlighting using
" syntax highlight tricks
"
" There are 3 types of lines, marked with the start character [\s, !, #]
" Also @ is used to mark the path that is going up
function! s:CCTreeWindow.mMarkCallTree(dtree, keyword) dict
let declevel = -1
let treelst = a:dtree.entries
let curLine = line(".")
let declevel = treelst[curLine-1].level
let targetlevel = declevel
for idx in range(curLine, 1, -1)
let aentry = treelst[idx-1]
" Find our keyword
let linemarker = 0
" Skip folds
if declevel != -1 && foldclosed(idx) == -1
if targetlevel == aentry.level
let linemarker = 1
let targetlevel -= 1
endif
let aline = a:dtree.mGetNotationalTxt(aentry.level, targetlevel+1, linemarker, 1)
\ . aentry.symbol
call setline(idx, aline)
endif
endfor
endfunction
function! s:CCTreeWindow.mClearMarks(dtree) dict
for idx in range(line(".")+1, line("$"))
let breakout = (getline(idx)[0] !~ "[!#]")
if breakout == 1
break
endif
let aentry = a:dtree.entries[idx-1]
let aline = a:dtree.mGetNotationalTxt(aentry.level, -1, 0, 0)
\ . aentry.symbol
call setline(idx, aline)
endfor
endfunction
function! s:CCTreeWindow.mInitSyntax(markers) dict
"syntax match CCTreePathMark /\s[|+]/ contained
exec 'syntax match CCTreePathMark /\s['. a:markers.vertSyms . ']/ contained'
"syntax match CCTreeArrow /-*[<>]/ contained
exec 'syntax match CCTreeArrow /'.a:markers.extH.'*['. a:markers.arrowSyms .']/ contained'
syntax match CCTreeSymbol / [A-Za-z0-9_\.\\\/]\+/ contained
syntax region CCTreeSymbolLine start="^\s" end="$" contains=CCTreeArrow,CCTreePathMark,CCTreeSymbol oneline
"syntax match CCTreeHiArrow /-*[<>]/ contained
exec 'syntax match CCTreeHiArrow /'. a:markers.extH .'*['. a:markers.arrowSyms .']/ contained'
syntax match CCTreeHiSymbol / [A-Za-z0-9_\.\\\/]\+/ contained
"syntax match CCTreeHiPathMark /\s[|+]/ contained
exec 'syntax match CCTreeHiPathMark /\s[' . a:markers.vertSyms . ']/ contained'
if s:CCTreeUseConceal == 1
syntax match CCTreeMarkExcl /^[!#]/ contained conceal
syntax match CCTreeMarkTilde /@/ contained conceal
else
syntax match CCTreeMarkExcl /^[!#]/ contained
syntax match CCTreeMarkTilde /@/ contained
endif
"syntax region CCTreeUpArrowBlock start="@" end=/[|+]/ contains=CCTreeMarkTilde contained oneline
exec 'syntax region CCTreeUpArrowBlock start="@" end=/['. a:markers.vertSyms .']/ contains=CCTreeMarkTilde contained oneline'
syntax region CCTreeHiSymbolLine start="!" end="$" contains=CCTreeMarkExcl,
\ CCTreeUpArrowBlock,
\ CCTreeHiSymbol,CCTreeHiArrow,CCTreeHiPathMark oneline
syntax region CCTreeMarkedSymbolLine start="#" end="$" contains=CCTreeMarkExcl,
\ CCTreeMarkTilde,CCTreePathMark,
\ CCTreeArrow,CCTreeSymbol,CCTreeUpArrowBlock oneline
endfunction
" }}}
" {{{ CCTreeDisplay
let s:CCTreeDisplay = {}
function! s:CCTreeDisplay.mPopulateTreeInCurrentBuffer(dtree)
let linelist = []
for aentry in a:dtree.entries
let aline = a:dtree.mGetNotationalTxt(aentry.level, -1, 0, 0)
\ . aentry.symbol
let len = s:Utils.mStrlenEx(aline)
let b:maxwindowlen = max([len+1, b:maxwindowlen])
call add(linelist, aline)
endfor
call setline(".", linelist)
endfunction
" }}}
" {{{ CCTree command line interface
let s:CCTreeCmdLine = {}
function! s:CCTreeCmdLine.mLoadDBFromDisk(dbName) dict
call s:CCTreeGlobals.mUnLoadDBs()
let s:CCTreeGlobals.XRefDb = s:XRefDiskDb.mCreate()
call s:CCTreeGlobals.DbList.mAddNew(a:dbName,
\ s:CCTreeGlobals.XRefDb, s:DBClasses.cctreexref, "Disk")
endfunction
" Unload current db's and load new one
" There is no selective unloading
function! s:CCTreeCmdLine.mLoadDB(db_name, class) dict
call s:CCTreeGlobals.mSetupEncodingChangeAutoCmd(0)
call s:CCTreeGlobals.mUnLoadDBs()
let s:CCTreeGlobals.XRefDb = s:xRefMemDb.mCreate()
call s:CCTreeGlobals.DbList.mAddNew(a:db_name,
\ s:CCTreeGlobals.XRefDb, a:class, s:DBStorage.memory)
call s:CCTreeGlobals.mSetupAutoCmds()
endfunction
function! s:CCTreeCmdLine.mInputDBName(action, dbName, class) dict
if a:dbName == ''
let dbUser = s:CCTreeUI.mInputDBName(
\ s:CCTreeUtils.mDetectDB(a:class),
\ a:class, a:action)
else
let dbUser = a:dbName
endif
return dbUser
endfunction
function! s:CCTreeCmdLine.mSaveDB(dbName, class) dict
let dbUser = self.mInputDBName('Save', a:dbName, a:class)
if dbUser == ''
call s:CCTreeUtils.mWarningMsg('Filename required')
return
endif
call s:CCTreeGlobals.Window.mClose()
call s:CCTreeGlobals.mSetupEncodingChangeAutoCmd(0)
call s:CCTreeGlobals.mWriteXRefDbToFile(dbUser)
call s:CCTreeGlobals.mSetupAutoCmds()
call s:CCTreeGlobals.mUpdateForCurrentSymbol()
endfunction
" Merge current db with new one
function! s:CCTreeCmdLine.mMergeDB(db_name, class) dict
"call s:CCTreeGlobals.Window.mClose()
call s:CCTreeGlobals.DbList.mMerge(a:db_name, s:CCTreeGlobals.XRefDb, a:class)
endfunction
" }}}
" {{{ CCTree Buffer mappings
function! s:CCTreeWindowGetHiKeyword()
let keyw = expand("<cword>")
let keyf = expand("<cfile>")
let syms = s:CCTreeGlobals.mGetPreviewTreeSymbols()
if keyw != keyf
if has_key(syms, keyf)
return keyf
elseif has_key(syms, keyw)
return keyw
endif
else
return keyw
endif
return ''
endfunction
" Keymappings used common to source files and CCTree window
function! s:CCTreeBufferKeyMappingsCreate(kmaps)
let func_expr = '<SNR>'.s:sid.'CCTreeWindowGetHiKeyword()'
exec 'nnoremap <buffer> <silent> '.a:kmaps.CTreeR.' :CCTreeTraceReverse <C-R>='.
\ func_expr.'<CR><CR>'
exec 'nnoremap <buffer> <silent> '.a:kmaps.CTreeF.' :CCTreeTraceForward <C-R>='
\ .func_expr.'<CR><CR>'
exec 'nnoremap <silent> '.a:kmaps.CTreeWSave. ' :CCTreeWindowSaveCopy<CR>'
exec 'nnoremap <silent> '.a:kmaps.CTreeWToggle. ' :CCTreeWindowToggle<CR>'
exec 'nnoremap <buffer> <silent> '.a:kmaps.CTreeDepthPlus.
\ ' :CCTreeRecurseDepthPlus<CR>'
exec 'nnoremap <buffer> <silent> '.a:kmaps.CTreeDepthMinus.
\ ' :CCTreeRecurseDepthMinus<CR>'
endfunction
augroup CCTreeMaps
au!
" Header files get detected as cpp?
" This is a bug in Vim 7.2, a patch needs to be applied to the runtime c
" syntax files
" For now, use this hack to make *.h files work
autocmd FileType * if &ft == 'c'|| &ft == 'cpp' |
\ call s:CCTreeBufferKeyMappingsCreate(s:CCTreeKeyMappings)|
\ endif
augroup END
" }}}
" {{{ Tree building
let s:DisplayTreeEntry = {
\ 'symbol': "",
\ 'level': -1
\ }
function! s:DisplayTreeEntry.mCreate(sym, level) dict
let te = deepcopy(s:DisplayTreeEntry)
let te.symbol = a:sym
let te.level = a:level
unlet te.mCreate
return te
endfunction
let s:calltreemaxdepth = 10
let s:DisplayTree = {
\ 'entries': [],
\ 'levelMaxLen': repeat([255], s:calltreemaxdepth),
\ 'notTxt': {}
\ }
function! s:DisplayTree.mCreate(calltree, direction, markers) dict
let dt = deepcopy(s:DisplayTree)
call dt.mBuildTreeForLevel(a:calltree, 0)
call dt.mBuildNotationalTxtMarkers(a:direction, a:markers.icons)
unlet dt.mBuildTreeForLevel
unlet dt.mCreate
return dt
endfunction
function! s:DisplayTree.mBuildTreeForLevel(ctree, level)
if !has_key(a:ctree, 'symbol')
return
endif
if g:CCTreeDisplayMode == 3
let curlevellen = strlen(a:ctree.symbol) + a:level + 2
let self.levelMaxLen[a:level] = min([self.levelMaxLen[a:level],
\ curlevellen])
endif
let aentry = s:DisplayTreeEntry.mCreate(a:ctree.symbol, a:level)
call add(self.entries, aentry)
if has_key(a:ctree, 'childlinks')
for alink in a:ctree['childlinks']
call self.mBuildTreeForLevel(alink, a:level+1)
endfor
endif
endfunction
function! s:DisplayTree.mBuildNotationalTxtMarkers(direction, markerSyms) dict
" REVISIT
if a:direction == 'p'
let directiontxt = a:markerSyms.arrowR . " "
elseif a:direction == 'c'
let directiontxt = a:markerSyms.arrowF . " "
endif
let self.notTxt.arrowHead = a:markerSyms.splitT
let self.notTxt.arrow = directiontxt
let self.notTxt.arrowLead = a:markerSyms.extH
let self.notTxt.sep = a:markerSyms.extV
if s:CCTreeUseConceal == 1
let concealspace = " "
else
let concealspace = ""
endif
let self.notTxt.symHighlighter= concealspace . "@"
let self.notTxt.hiSymbolMarker = "!".concealspace
let self.notTxt.hiBranchMarker = "#".concealspace
let self.notTxt.cache = {}
endfunction
function! s:DisplayTree.mGetNotationalTxt(depth, hiDepth, hiSym, hiPath) dict
let notkey = join(a:000, ":")
if has_key(self.notTxt.cache,notkey) == 1
return self.notTxt.cache[notkey]
else
return self.mBuildNotationalTxt(a:depth, a:hiDepth, a:hiSym, a:hiPath)
endif
endfunction
function! s:DisplayTree.mBuildNotationalTxt(depth, hiDepth, hiSym, hiPath) dict
let hiBranch = 0
let curDepth = a:depth
if 0
let Aspace = "A"
let Bspace = "B"
let Cspace = "C"
let Sspace = "S"
let Xspace = "X"
let Zspace = "Z"
let Fspace = "1"
else
let Aspace = " "
let Bspace = " "
let Cspace = " "
let Sspace = " "
let Xspace = " "
let Zspace = " "
let Fspace = " "
endif
if g:CCTreeDisplayMode == 1
let arrowLeads = self.notTxt.arrowLead
elseif g:CCTreeDisplayMode >= 2
let arrowLeads = repeat(self.notTxt.arrowLead, a:depth)
endif
let indentSpace = ""
if g:CCTreeDisplayMode == 2
if curDepth > 0
let indentSpace = repeat(Aspace, curDepth)
endif
elseif g:CCTreeDisplayMode == 3
if curDepth > 0
let indentSpace = repeat(Aspace, self.levelMaxLen[curDepth-1])
endif
endif
let notTxt = self.notTxt.arrowHead. arrowLeads . self.notTxt.arrow
if a:hiDepth == a:depth
let notTxt = indentSpace . self.notTxt.symHighlighter . notTxt
let hiBranch = 1
else
let notTxt = indentSpace. Cspace. notTxt
endif
let curDepth -= 1
let indentSpace = ""
while (curDepth > 0)
if g:CCTreeDisplayMode == 2
let indentSpace = repeat(Bspace, curDepth)
elseif g:CCTreeDisplayMode == 3
let indentSpace = repeat(Bspace, self.levelMaxLen[curDepth-1])
endif
let notTxt = self.notTxt.sep . notTxt
if a:hiDepth == curDepth && a:hiPath == 1
let notTxt = indentSpace . self.notTxt.symHighlighter . notTxt
let hiBranch = 1
else
let notTxt = indentSpace. Cspace. notTxt
endif
let curDepth -= 1
endwhile
if curDepth == 0
" curdepth is 0
if a:hiDepth == curDepth && a:hiPath == 1
let notTxt = self.notTxt.symHighlighter . notTxt
let hiBranch = 1
else
let notTxt = Fspace . notTxt
endif
let curDepth -= 1
endif
" adjust space
if a:depth > 0
let notTxt = Xspace . notTxt
endif
if hiBranch == 1
if a:hiSym == 1
let notTxt = self.notTxt.hiSymbolMarker . notTxt
else
let notTxt = self.notTxt.hiBranchMarker . notTxt
endif
else
let notTxt = Sspace . notTxt
endif
return notTxt
endfunction
"}}}
" {{{ Preview window Folding
function! CCTreeFoldExpr(line)
if !exists('b:displayTree') || v:lnum > len(b:displayTree.entries)
return 0
endif
let lvl = b:displayTree.entries[v:lnum-1].level
if lvl == 0
let lvl = 1
endif
return '>'.lvl
endfunction
function! CCTreeFoldText()
if s:CCTreeUseConceal == 1
let line = substitute(getline(v:foldstart), '[!@#]', '' , 'g')
else
let line = substitute(getline(v:foldstart), '[!@#]', ' ' , 'g')
endif
return line. " (+". (v:foldend - v:foldstart).
\ ')'. repeat(" ", winwidth(0))
endfunction
" }}}
" {{{ Syntax coloring definitions
"Standard display
highlight default link CCTreeSymbol Function
highlight default link CCTreeMarkers LineNr
highlight default link CCTreeArrow CCTreeMarkers
highlight default link CCTreePathMark CCTreeArrow
highlight default link CCTreeHiPathMark CCTreePathMark
" highlighted display
highlight default link CCTreeHiKeyword Macro
highlight default link CCTreeHiSymbol TODO
highlight default link CCTreeHiMarkers NonText
highlight default link CCTreeHiArrow CCTreeHiMarkers
highlight default link CCTreeUpArrowBlock CCTreeHiArrow
highlight default link CCTreeMarkExcl Ignore
highlight default link CCTreeMarkTilde Ignore
"}}}
" {{{ CCTree global state
let s:CCTreePreviewState = {
\ 'keyword':'',
\ 'direction': '',
\ 'depth' : ''
\}
function! s:CCTreePreviewState.mCreate()
let state = deepcopy(s:CCTreePreviewState)
unlet state.mCreate
return state
endfunction
function! s:CCTreePreviewState.mStore(symbol, direction)
let self.keyword = a:symbol
let self.direction = a:direction
endfunction
" }}}
" {{{ CCTree global objects
let s:CCTreeGlobals = {
\ 'XRefDb': {},
\ 'DbList': s:CCTreeDBList.mCreate(),
\ 'PreviewState': s:CCTreePreviewState.mCreate(),
\ 'Window': s:CCTreeWindow.mCreate()
\}
let g:CCTreeGlobals = s:CCTreeGlobals
function! s:CCTreeGlobals.mEnable(opt) dict
if (has_key(s:CCTreeOptions, a:opt))
call s:CCTreeOptions[a:opt](1)
else
call s:CCTreeUtils.mWarningMsg('Invalid option')
endif
endfunction
function! s:CCTreeGlobals.mDisable(opt) dict
if (has_key(s:CCTreeOptions, a:opt))
call s:CCTreeOptions[a:opt](0)
else
call s:CCTreeUtils.mWarningMsg('Invalid option')
endif
endfunction
function! s:CCTreeGlobals.mToggle(opt) dict
if (has_key(s:CCTreeOptions, a:opt))
call s:CCTreeOptions[a:opt](-1)
else
call s:CCTreeUtils.mWarningMsg('Invalid option')
endif
endfunction
function! s:CCTreeGlobals.mGetSymNames(lead) dict
call self.XRefDb.mInitState()
let syms = self.XRefDb.mGetSymbolNames(a:lead)
call self.XRefDb.mRestoreState()
return syms
endfunction
function! s:CCTreeGlobals.mGetCallsForSymbol(name, depth, direction) dict
let pbar = s:ProgressBarRoll.mCreate(['-','\','|','/'], '*')
call s:StatusLine.mSetInfo('Building ')
redrawstatus!
" Create tracer
let xtracer = s:XRefTracer.mCreate(self.XRefDb)
call xtracer.mInitTracing()
let symid = self.XRefDb.mGetSymbolIdFromName(a:name)
let xrefs = xtracer.mBuildForSymbol(symid,
\ a:depth, self.PreviewState.depth, a:direction, pbar)
call xtracer.mDoneTracing()
return xrefs
endfunction
function! s:CCTreeGlobals.mShowLoadedDBs() dict
call self.DbList.mShowLoaded()
endfunction
function! s:CCTreeGlobals.mUnLoadDBs() dict
call s:CCTreeGlobals.Window.mClose()
if !empty(s:CCTreeGlobals.XRefDb)
call s:CCTreeGlobals.XRefDb.mClear()
endif
call s:CCTreeGlobals.DbList.mClearAll()
endfunction
function! s:CCTreeGlobals.mSetPreviewState(name, depth, direction) dict
let self.PreviewState.keyword = a:name
let self.PreviewState.direction = a:direction
let self.PreviewState.depth = a:depth
endfunction
function! s:CCTreeGlobals.mUpdateForCurrentSymbol() dict
if self.DbList.mIsEmpty() == s:CCTreeRC.True
return s:CCTreeRC.Error
endif
if self.PreviewState.keyword != ''
let swatch = s:StopWatch.mCreate()
" Move this function to globals?
call s:StatusLine.mInit()
let atree = self.mGetCallsForSymbol(self.PreviewState.keyword,
\ 0,
\ self.PreviewState.direction)
call s:StatusLine.mRestore()
call self.Window.mDisplayTree(atree, self.PreviewState.direction)
call swatch.mSnapElapsed()
endif
endfunction
function! s:CCTreeGlobals.mGetPreviewTreeSymbols()
" REVIST
if exists('b:displayTree')
return self.Window.mExtractTreeSymbols(b:displayTree)
end
return {}
endfunction
function! s:CCTreeGlobals.mSanitizeCallDepth() dict
let error = 0
if self.PreviewState.depth >= s:calltreemaxdepth
self.PreviewState.depth = s:calltreemaxdepth
let error = 1
elseif self.PreviewState.depth < 1
let self.PreviewState.depth = 1
let error = 1
endif
if error == 1
call s:CCTreeUtils.mWarningMsg('Depth out of bounds')
endif
return error
endfunction
function! s:CCTreeGlobals.mRecursiveDepthIncrease() dict
let self.PreviewState.depth += 1
if self.mSanitizeCallDepth() == 0
call self.mUpdateForCurrentSymbol()
endif
endfunction
function! s:CCTreeGlobals.mRecursiveDepthDecrease() dict
let self.PreviewState.depth -= 1
if self.mSanitizeCallDepth() == 0
call self.mUpdateForCurrentSymbol()
endif
endfunction
function! s:CCTreeGlobals.mDisplayToggle() dict
call self.Window.mDisplayToggle()
endfunction
function! s:CCTreeGlobals.mSetupAutoCmds() dict
augroup CCTreeGeneral
au!
augroup END
call s:CCTreeGlobals.mSetupCursorMoveAutoCmd(g:CCTreeHilightCallTree)
call s:CCTreeGlobals.mSetupEncodingChangeAutoCmd(g:CCTreeUseUTF8Symbols)
endfunction
function! s:CCTreeGlobals.mSetupCursorMoveAutoCmd(enable) dict
if a:enable == 1
exec 'autocmd CCTreeGeneral CursorMoved '.s:windowtitle.' call s:CCTreeGlobals.mCursorHoldHandleEvent()'
else
exec 'autocmd! CCTreeGeneral CursorMoved '.s:windowtitle
endif
endfunction
function! s:CCTreeGlobals.mSetupEncodingChangeAutoCmd(enable) dict
return
if a:enable == 1
autocmd CCTreeGeneral EncodingChanged * call s:CCTreeGlobals.mEncodingChangedHandleEvent()
else
autocmd! CCTreeGeneral EncodingChanged *
endif
endfunction
function! s:CCTreeGlobals.mPreviewSave() dict
let rtitle = s:CCTreeGlobals.Window.mBuildStatusLine(
\ s:CCTreeGlobals.PreviewState,
\ s:windowsavetitle,
\ {'depth':'', 'direction':''}
\)
if self.Window.mPreviewSave(rtitle) == s:CCTreeRC.Success
call s:CCTreeUtils.mInfoMsg('Window saved as '. rtitle .
\ '. New window will be opened on next usage.')
else
call s:CCTreeUtils.mWarningMsg('No active window found to be saved.')
endif
endfunction
function! s:CCTreeGlobals.mWriteXRefDbToFile(fname) dict
" create db serializer and writer
let gDbSz = s:GenericDbSerializer.mCreate(self.XRefDb)
let gDbWriter = s:CCTreeTagDbWriter.mCreate(
\ s:CCTreeGetXRefDbMaps('Compress', 'Alpha'))
call gDbSz.mWriteXRefDbToFile(a:fname, gDbWriter)
endfunction
function! s:CCTreeGlobals.mReadToXRefDb(fname) dict
call s:StatusLine.mInit()
call s:StatusLine.mSetInfo('Reading XRefDb')
let vDbFile = s:vFile.mCreate(a:fname, "r")
if vDbFile.mIsLargeFile() == 1
call s:StatusLine.mSetExtraInfo('Xref DB '
\.' >'.g:CCTreeDbFileMaxSize .' bytes. Splitting '.
\'into smaller chunks... (this may take some time)')
endif
try
if vDbFile.mOpen() == 0
call s:TagFile.mReadToXRefDb(self.XRefDb, vDbFile)
endif
finally
call vDbFile.mClose()
call s:StatusLine.mRestore()
call self.DbList.mAddDbToList(a:fname, s:DBStorage.memory)
endtry
endfunction
function! s:CCTreeGlobals.mCursorHoldHandleEvent() dict
if self.Window.mGetKeywordAtCursor() != s:CCTreeRC.Error
setlocal modifiable
call self.Window.mClearMarks(b:displayTree)
call self.Window.mMarkCallTree(b:displayTree,
\ self.Window.hiKeyword)
setlocal nomodifiable
endif
endfunction
function! s:CCTreeGlobals.mEncodingChangedHandleEvent() dict
let self.Window.treeMarkers = s:CCTreeMarkers.mCreate()
if self.Window.mIsOpen() == s:CCTreeRC.True
call self.Window.mClose()
call self.mUpdateForCurrentSymbol()
endif
endfunction
function! s:CCTreeGlobals.mInit() dict
call self.mSetupAutoCmds()
endfunction
" }}}
" {{{ CCTree options
function! s:CCTreeSetUseCallTreeHiLights(val)
if a:val == -1
let g:CCTreeHilightCallTree = !g:CCTreeHilightCallTree
else
let g:CCTreeHilightCallTree = a:val
endif
call s:CCTreeGlobals.mSetupAutoCmds()
endfunction
function! s:CCTreeSetUseUtf8Symbols(val)
if a:val == -1
let g:CCTreeUseUTF8Symbols = !g:CCTreeUseUTF8Symbols
else
let g:CCTreeUseUTF8Symbols = a:val
endif
call s:CCTreeGlobals.mEncodingChangedHandleEvent()
endfunction
function! s:CCTreeSetUseConceal(val)
if a:val == -1
let s:CCTreeUseConceal = !s:CCTreeUseConceal
else
let s:CCTreeUseConceal = a:val
endif
if !has('conceal')
call s:CCTreeUtils.mWarningMsg('+conceal feature not available')
let s:CCTreeUseConceal = 0
endif
endfunction
function! s:CCTreeSetEnhancedSymbolProcessing(val)
if a:val == -1
let g:CCTreeEnhancedSymbolProcessing = !g:CCTreeEnhancedSymbolProcessing
else
let g:CCTreeEnhancedSymbolProcessing = a:val
endif
endfunction
function! s:CCTreeOptionsList(arglead, cmdline, cursorpos)
let opts = keys(s:CCTreeOptions)
if a:arglead == ''
return opts
else
return filter(opts, 'v:val =~? a:arglead')
endif
endfunction
let s:CCTreeOptions = {'UseUnicodeSymbols': function('s:CCTreeSetUseUtf8Symbols'),
\ 'DynamicTreeHiLights': function('s:CCTreeSetUseCallTreeHiLights'),
\ 'UseConceal': function('s:CCTreeSetUseConceal'),
\ 'EnhancedSymbolProcessing': function('s:CCTreeSetEnhancedSymbolProcessing')
\}
" }}}
" {{{ Vim tags interface
" CCTreeCompleteKwd
" Command line completion function to return names from the db
function! s:CCTreeCompleteKwd(arglead, cmdline, cursorpos)
let syms = s:CCTreeGlobals.mGetSymNames(a:arglead)
if a:arglead == ''
return syms
else
return filter(syms, 'v:val =~? a:arglead')
endif
endfunction
function! s:CCTreeTraceTreeForSymbol(sym_arg, direction)
if s:CCTreeGlobals.DbList.mIsEmpty() == s:CCTreeRC.True
call s:CCTreeUtils.mWarningMsg('No database loaded')
return
endif
let symbol = a:sym_arg
if symbol == ''
let symbol = input('Trace symbol: ', expand('<cword>'),
\ 'customlist,<SNR>' . s:sid . 'CCTreeCompleteKwd')
if symbol == ''
return
endif
endif
let symmatch = s:CCTreeGlobals.mGetSymNames(symbol)
if len(symmatch) > 0 && index(symmatch, symbol) >= 0
call s:CCTreeGlobals.mSetPreviewState(symbol,
\ g:CCTreeRecursiveDepth,
\ a:direction)
call s:CCTreeGlobals.mUpdateForCurrentSymbol()
else
call s:CCTreeUtils.mWarningMsg('Symbol not found')
endif
endfunction
function! s:CCTreeGlobals.mLoadBufferFromKeyword()
" REVISIT
if s:CCTreeGlobals.Window.mGetKeywordAtCursor() == s:CCTreeRC.Error
call s:CCTreeUtils.mWarningMsg('No keyword at cursor')
return
endif
let hiKeyword = s:CCTreeGlobals.Window.hiKeyword
try
wincmd p
catch
call s:CCTreeUtils.mWarningMsg('No buffer to load file')
finally
if (cscope_connection() > 0)
try
exec "cs find g ". hiKeyword
catch
" cheap hack
exec "cs find f ". hiKeyword
endtry
else
try
" Ctags is smart enough to figure the path
exec "tag ".fnamemodify(hiKeyword, ":t")
catch /^Vim\%((\a\+)\)\=:E433/
call s:CCTreeUtils.mWarningMsg('Tag file not found')
catch /^Vim\%((\a\+)\)\=:E426/
call s:CCTreeUtils.mWarningMsg('Tag '. hiKeyword .' not found')
wincmd p
endtry
endif
endtry
endfunction
function! s:CCTreeGlobals.mPreviewBufferFromKeyword()
if self.Window.mGetKeywordAtCursor() == s:CCTreeRC.Error
call s:CCTreeUtils.mWarningMsg('No keyword found')
return
endif
let hiKeyword = s:CCTreeGlobals.Window.hiKeyword
silent! wincmd P
if !&previewwindow
wincmd p
endif
try
exec "ptag ". hiKeyword
catch
call s:CCTreeUtils.mWarningMsg('Tag '.hiKeyword. ' not found')
endtry
endfunction
" }}}
" {{{ Define commands
command! -nargs=? -complete=file CCTreeLoadXRefDBFromDisk
\ call s:CCTreeCmdLine.mLoadDBFromDisk(<q-args>)
command! -nargs=? -complete=file CCTreeLoadDB call s:CCTreeCmdLine.mLoadDB(<q-args>, s:DBClasses.cscopeid)
command! -nargs=? -complete=file CCTreeLoadXRefDB call s:CCTreeCmdLine.mLoadDB(<q-args>, s:DBClasses.cctreexref)
command! -nargs=? -complete=file CCTreeSaveXRefDB call s:CCTreeCmdLine.mSaveDB(<q-args>, s:DBClasses.cctreexref)
command! -nargs=? -complete=file CCTreeAppendDB call s:CCTreeCmdLine.mMergeDB(<q-args>, s:DBClasses.cscopeid)
command! -nargs=0 CCTreeUnLoadDB call s:CCTreeGlobals.mUnLoadDBs()
command! -nargs=0 CCTreeShowLoadedDBs call s:CCTreeGlobals.mShowLoadedDBs()
command! -nargs=? -complete=customlist,s:CCTreeCompleteKwd
\ CCTreeTraceForward call s:CCTreeTraceTreeForSymbol(<q-args>, 'c')
command! -nargs=? -complete=customlist,s:CCTreeCompleteKwd CCTreeTraceReverse
\ call s:CCTreeTraceTreeForSymbol(<q-args>, 'p')
command! -nargs=0 CCTreeLoadBufferUsingTag call s:CCTreeGlobals.mLoadBufferFromKeyword()
command! -nargs=0 CCTreePreviewBufferUsingTag call s:CCTreeGlobals.mPreviewBufferFromKeyword()
command! -nargs=0 CCTreeRecurseDepthPlus call s:CCTreeGlobals.mRecursiveDepthIncrease()
command! -nargs=0 CCTreeRecurseDepthMinus call s:CCTreeGlobals.mRecursiveDepthDecrease()
" Preview Window
command! -nargs=0 CCTreeWindowToggle call s:CCTreeGlobals.mDisplayToggle()
command! -nargs=0 CCTreeWindowSaveCopy call s:CCTreeGlobals.mPreviewSave()
" Run-time dynamic options
command! -nargs=1 -complete=customlist,s:CCTreeOptionsList CCTreeOptsEnable call s:CCTreeGlobals.mEnable(<q-args>)
command! -nargs=1 -complete=customlist,s:CCTreeOptionsList CCTreeOptsDisable call s:CCTreeGlobals.mDisable(<q-args>)
command! -nargs=1 -complete=customlist,s:CCTreeOptionsList CCTreeOptsToggle call s:CCTreeGlobals.mToggle(<q-args>)
"}}}
" {{{ finish (and init)
call s:CCTreeGlobals.mInit()
" restore 'cpo'
let &cpoptions = s:cpo_save
unlet s:cpo_save
" vim: ts=8 sw=4 sts=4 et foldenable foldmethod=marker foldcolumn=1
" }}}
|