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
|
// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
// Qt-Security score:significant reason:default
#include <qqmlsemantictokens_p.h>
#include <qqmldiffer_p.h>
#include <QtQmlLS/private/qqmllsutils_p.h>
#include <QtQmlDom/private/qqmldomscriptelements_p.h>
#include <QtQmlDom/private/qqmldomfieldfilter_p.h>
#include <QtLanguageServer/private/qlanguageserverprotocol_p.h>
QT_BEGIN_NAMESPACE
Q_LOGGING_CATEGORY(semanticTokens, "qt.languageserver.semanticTokens")
using namespace QQmlJS::AST;
using namespace QQmlJS::Dom;
using namespace QLspSpecification;
namespace QmlHighlighting {
static int mapToProtocolForQtCreator(QmlHighlightKind highlightKind)
{
switch (highlightKind) {
case QmlHighlightKind::Comment:
return int(SemanticTokenProtocolTypes::Comment);
case QmlHighlightKind::QmlKeyword:
return int(SemanticTokenProtocolTypes::Keyword);
case QmlHighlightKind::QmlType:
return int(SemanticTokenProtocolTypes::Type);
case QmlHighlightKind::QmlImportId:
case QmlHighlightKind::QmlNamespace:
return int(SemanticTokenProtocolTypes::Namespace);
case QmlHighlightKind::QmlLocalId:
return int(SemanticTokenProtocolTypes::QmlLocalId);
case QmlHighlightKind::QmlExternalId:
return int(SemanticTokenProtocolTypes::QmlExternalId);
case QmlHighlightKind::QmlProperty:
return int(SemanticTokenProtocolTypes::Property);
case QmlHighlightKind::QmlScopeObjectProperty:
return int(SemanticTokenProtocolTypes::QmlScopeObjectProperty);
case QmlHighlightKind::QmlRootObjectProperty:
return int(SemanticTokenProtocolTypes::QmlRootObjectProperty);
case QmlHighlightKind::QmlExternalObjectProperty:
return int(SemanticTokenProtocolTypes::QmlExternalObjectProperty);
case QmlHighlightKind::QmlMethod:
return int(SemanticTokenProtocolTypes::Method);
case QmlHighlightKind::QmlMethodParameter:
return int(SemanticTokenProtocolTypes::Parameter);
case QmlHighlightKind::QmlSignal:
return int(SemanticTokenProtocolTypes::Method);
case QmlHighlightKind::QmlSignalHandler:
return int(SemanticTokenProtocolTypes::Property);
case QmlHighlightKind::QmlEnumName:
return int(SemanticTokenProtocolTypes::Enum);
case QmlHighlightKind::QmlEnumMember:
return int(SemanticTokenProtocolTypes::EnumMember);
case QmlHighlightKind::QmlPragmaName:
case QmlHighlightKind::QmlPragmaValue:
return int(SemanticTokenProtocolTypes::Variable);
case QmlHighlightKind::JsImport:
return int(SemanticTokenProtocolTypes::Namespace);
case QmlHighlightKind::JsGlobalVar:
return int(SemanticTokenProtocolTypes::JsGlobalVar);
case QmlHighlightKind::JsGlobalMethod:
return int(SemanticTokenProtocolTypes::Method);
case QmlHighlightKind::JsScopeVar:
return int(SemanticTokenProtocolTypes::JsScopeVar);
case QmlHighlightKind::JsLabel:
return int(SemanticTokenProtocolTypes::Variable);
case QmlHighlightKind::Number:
return int(SemanticTokenProtocolTypes::Number);
case QmlHighlightKind::String:
return int(SemanticTokenProtocolTypes::String);
case QmlHighlightKind::Operator:
return int(SemanticTokenProtocolTypes::Operator);
case QmlHighlightKind::QmlTypeModifier:
return int(SemanticTokenProtocolTypes::Decorator);
case QmlHighlightKind::Field:
return int(SemanticTokenProtocolTypes::Field);
case QmlHighlightKind::Unknown:
default:
return int(SemanticTokenProtocolTypes::Unknown);
}
}
static int mapToProtocolDefault(QmlHighlightKind highlightKind)
{
switch (highlightKind) {
case QmlHighlightKind::Comment:
return int(SemanticTokenProtocolTypes::Comment);
case QmlHighlightKind::QmlKeyword:
return int(SemanticTokenProtocolTypes::Keyword);
case QmlHighlightKind::QmlType:
return int(SemanticTokenProtocolTypes::Type);
case QmlHighlightKind::QmlImportId:
case QmlHighlightKind::QmlNamespace:
return int(SemanticTokenProtocolTypes::Namespace);
case QmlHighlightKind::QmlLocalId:
case QmlHighlightKind::QmlExternalId:
return int(SemanticTokenProtocolTypes::Variable);
case QmlHighlightKind::QmlProperty:
case QmlHighlightKind::QmlScopeObjectProperty:
case QmlHighlightKind::QmlRootObjectProperty:
case QmlHighlightKind::QmlExternalObjectProperty:
return int(SemanticTokenProtocolTypes::Property);
case QmlHighlightKind::QmlMethod:
return int(SemanticTokenProtocolTypes::Method);
case QmlHighlightKind::QmlMethodParameter:
return int(SemanticTokenProtocolTypes::Parameter);
case QmlHighlightKind::QmlSignal:
return int(SemanticTokenProtocolTypes::Method);
case QmlHighlightKind::QmlSignalHandler:
return int(SemanticTokenProtocolTypes::Method);
case QmlHighlightKind::QmlEnumName:
return int(SemanticTokenProtocolTypes::Enum);
case QmlHighlightKind::QmlEnumMember:
return int(SemanticTokenProtocolTypes::EnumMember);
case QmlHighlightKind::QmlPragmaName:
case QmlHighlightKind::QmlPragmaValue:
return int(SemanticTokenProtocolTypes::Variable);
case QmlHighlightKind::JsImport:
return int(SemanticTokenProtocolTypes::Namespace);
case QmlHighlightKind::JsGlobalVar:
return int(SemanticTokenProtocolTypes::Variable);
case QmlHighlightKind::JsGlobalMethod:
return int(SemanticTokenProtocolTypes::Method);
case QmlHighlightKind::JsScopeVar:
return int(SemanticTokenProtocolTypes::Variable);
case QmlHighlightKind::JsLabel:
return int(SemanticTokenProtocolTypes::Variable);
case QmlHighlightKind::Number:
return int(SemanticTokenProtocolTypes::Number);
case QmlHighlightKind::String:
return int(SemanticTokenProtocolTypes::String);
case QmlHighlightKind::Operator:
return int(SemanticTokenProtocolTypes::Operator);
case QmlHighlightKind::QmlTypeModifier:
return int(SemanticTokenProtocolTypes::Decorator);
case QmlHighlightKind::Field:
return int(SemanticTokenProtocolTypes::Property);
case QmlHighlightKind::Unknown:
default:
return int(SemanticTokenProtocolTypes::Unknown);
}
}
/*!
\internal
\brief Further resolves the type of a JavaScriptIdentifier
A global object can be in the object form or in the function form.
For example, Date can be used as a constructor function (like new Date())
or as a object (like Date.now()).
*/
static std::optional<QmlHighlightKind> resolveJsGlobalObjectKind(const DomItem &item,
const QString &name)
{
// Some objects are not constructable, they are always objects.
static QSet<QString> noConstructorObjects = { u"Math"_s, u"JSON"_s, u"Atomics"_s, u"Reflect"_s,
u"console"_s };
// if the method name is in the list of noConstructorObjects, then it is a global object. Do not
// perform further checks.
if (noConstructorObjects.contains(name))
return QmlHighlightKind::JsGlobalVar;
// Check if the method is called with new, then it is a constructor function
if (item.directParent().internalKind() == DomType::ScriptNewMemberExpression) {
return QmlHighlightKind::JsGlobalMethod;
}
if (DomItem containingCallExpression = item.filterUp(
[](DomType k, const DomItem &) { return k == DomType::ScriptCallExpression; },
FilterUpOptions::ReturnOuter)) {
// Call expression
// if callee is binary expression, then the rightest part is the method name
const auto callee = containingCallExpression.field(Fields::callee);
if (callee.internalKind() == DomType::ScriptBinaryExpression) {
const auto right = callee.field(Fields::right);
if (right.internalKind() == DomType::ScriptIdentifierExpression
&& right.field(Fields::identifier).value().toString() == name) {
return QmlHighlightKind::JsGlobalMethod;
} else {
return QmlHighlightKind::JsGlobalVar;
}
} else {
return QmlHighlightKind::JsGlobalVar;
}
}
return std::nullopt;
}
static int fromQmlModifierKindToLspTokenType(QmlHighlightModifiers highlightModifier)
{
using namespace QLspSpecification;
using namespace Utils;
int modifier = 0;
if (highlightModifier.testFlag(QmlHighlightModifier::QmlPropertyDefinition))
addModifier(SemanticTokenModifiers::Definition, &modifier);
if (highlightModifier.testFlag(QmlHighlightModifier::QmlDefaultProperty))
addModifier(SemanticTokenModifiers::DefaultLibrary, &modifier);
if (highlightModifier.testFlag(QmlHighlightModifier::QmlVirtualProperty))
addModifier(SemanticTokenModifiers::Static, &modifier);
if (highlightModifier.testFlag(QmlHighlightModifier::QmlOverrideProperty))
addModifier(SemanticTokenModifiers::Static, &modifier);
if (highlightModifier.testFlag(QmlHighlightModifier::QmlFinalProperty))
addModifier(SemanticTokenModifiers::Static, &modifier);
if (highlightModifier.testFlag(QmlHighlightModifier::QmlRequiredProperty))
addModifier(SemanticTokenModifiers::Abstract, &modifier);
if (highlightModifier.testFlag(QmlHighlightModifier::QmlReadonlyProperty))
addModifier(SemanticTokenModifiers::Readonly, &modifier);
return modifier;
}
static FieldFilter highlightingFilter()
{
QMultiMap<QString, QString> fieldFilterAdd{};
QMultiMap<QString, QString> fieldFilterRemove{
{ QString(), Fields::propertyInfos.toString() },
{ QString(), Fields::fileLocationsTree.toString() },
{ QString(), Fields::importScope.toString() },
{ QString(), Fields::defaultPropertyName.toString() },
{ QString(), Fields::get.toString() },
};
return FieldFilter{ fieldFilterAdd, fieldFilterRemove };
}
HighlightToken::HighlightToken(const QQmlJS::SourceLocation &loc,
QmlHighlightKind kind,
QmlHighlightModifiers modifiers)
: loc(loc), kind(kind), modifiers(modifiers)
{
}
HighlightingVisitor::HighlightingVisitor(const QQmlJS::Dom::DomItem &item,
const std::optional<HighlightsRange> &range)
: m_range(range)
{
item.visitTree(
Path(),
[this](const Path &path, const DomItem &item, bool b) {
return this->visitor(path, item, b);
},
VisitOption::Default | VisitOption::NoPath, emptyChildrenVisitor, emptyChildrenVisitor,
highlightingFilter());
}
bool HighlightingVisitor::visitor(Path, const DomItem &item, bool)
{
if (m_range.has_value()) {
const auto fLocs = FileLocations::treeOf(item);
if (!fLocs)
return true;
const auto regions = fLocs->info().regions;
if (!Utils::rangeOverlapsWithSourceLocation(regions[MainRegion],
m_range.value()))
return true;
}
switch (item.internalKind()) {
case DomType::Comment: {
highlightComment(item);
return true;
}
case DomType::Import: {
highlightImport(item);
return true;
}
case DomType::Binding: {
highlightBinding(item);
return true;
}
case DomType::Pragma: {
highlightPragma(item);
return true;
}
case DomType::EnumDecl: {
highlightEnumDecl(item);
return true;
}
case DomType::EnumItem: {
highlightEnumItem(item);
return true;
}
case DomType::QmlObject: {
highlightQmlObject(item);
return true;
}
case DomType::QmlComponent: {
highlightComponent(item);
return true;
}
case DomType::PropertyDefinition: {
highlightPropertyDefinition(item);
return true;
}
case DomType::MethodInfo: {
highlightMethod(item);
return true;
}
case DomType::ScriptLiteral: {
highlightScriptLiteral(item);
return true;
}
case DomType::ScriptCallExpression: {
highlightCallExpression(item);
return true;
}
case DomType::ScriptIdentifierExpression: {
highlightIdentifier(item);
return true;
}
default:
if (item.ownerAs<ScriptExpression>())
highlightScriptExpressions(item);
return true;
}
Q_UNREACHABLE_RETURN(false);
}
void HighlightingVisitor::highlightComment(const DomItem &item)
{
const auto comment = item.as<Comment>();
Q_ASSERT(comment);
const auto locs = Utils::sourceLocationsFromMultiLineToken(
comment->info().comment(), comment->info().sourceLocation());
for (const auto &loc : locs)
addHighlight(loc, QmlHighlightKind::Comment);
}
void HighlightingVisitor::highlightImport(const DomItem &item)
{
const auto fLocs = FileLocations::treeOf(item);
if (!fLocs)
return;
const auto regions = fLocs->info().regions;
const auto import = item.as<Import>();
Q_ASSERT(import);
addHighlight(regions[ImportTokenRegion], QmlHighlightKind::QmlKeyword);
if (import->uri.isModule())
addHighlight(regions[ImportUriRegion], QmlHighlightKind::QmlImportId);
else
addHighlight(regions[ImportUriRegion], QmlHighlightKind::String);
if (regions.contains(VersionRegion))
addHighlight(regions[VersionRegion], QmlHighlightKind::Number);
if (regions.contains(AsTokenRegion)) {
addHighlight(regions[AsTokenRegion], QmlHighlightKind::QmlKeyword);
addHighlight(regions[IdNameRegion], QmlHighlightKind::QmlNamespace);
}
}
void HighlightingVisitor::highlightBinding(const DomItem &item)
{
const auto binding = item.as<Binding>();
Q_ASSERT(binding);
const auto fLocs = FileLocations::treeOf(item);
if (!fLocs) {
qCDebug(semanticTokens) << "Can't find the locations for" << item.internalKind();
return;
}
const auto regions = fLocs->info().regions;
// If dotted name, then defer it to be handled in ScriptIdentifierExpression
if (binding->name().contains("."_L1))
return;
if (binding->bindingType() != BindingType::Normal) {
addHighlight(regions[OnTokenRegion], QmlHighlightKind::QmlKeyword);
addHighlight(regions[IdentifierRegion], QmlHighlightKind::QmlProperty);
return;
}
return addHighlight(regions[IdentifierRegion], QmlHighlightKind::QmlProperty);
}
void HighlightingVisitor::highlightPragma(const DomItem &item)
{
const auto fLocs = FileLocations::treeOf(item);
if (!fLocs)
return;
const auto regions = fLocs->info().regions;
addHighlight(regions[PragmaKeywordRegion], QmlHighlightKind::QmlKeyword);
addHighlight(regions[IdentifierRegion], QmlHighlightKind::QmlPragmaName );
const auto pragma = item.as<Pragma>();
for (auto i = 0; i < pragma->values.size(); ++i) {
DomItem value = item.field(Fields::values).index(i);
const auto valueRegions = FileLocations::treeOf(value)->info().regions;
addHighlight(valueRegions[PragmaValuesRegion], QmlHighlightKind::QmlPragmaValue);
}
return;
}
void HighlightingVisitor::highlightEnumDecl(const DomItem &item)
{
const auto fLocs = FileLocations::treeOf(item);
if (!fLocs)
return;
const auto regions = fLocs->info().regions;
addHighlight(regions[EnumKeywordRegion], QmlHighlightKind::QmlKeyword);
addHighlight(regions[IdentifierRegion], QmlHighlightKind::QmlEnumName);
}
void HighlightingVisitor::highlightEnumItem(const DomItem &item)
{
const auto fLocs = FileLocations::treeOf(item);
if (!fLocs)
return;
const auto regions = fLocs->info().regions;
addHighlight(regions[IdentifierRegion], QmlHighlightKind::QmlEnumMember);
if (regions.contains(EnumValueRegion))
addHighlight(regions[EnumValueRegion], QmlHighlightKind::Number);
}
void HighlightingVisitor::highlightQmlObject(const DomItem &item)
{
const auto qmlObject = item.as<QmlObject>();
Q_ASSERT(qmlObject);
const auto fLocs = FileLocations::treeOf(item);
if (!fLocs)
return;
const auto regions = fLocs->info().regions;
// Handle ids here
if (!qmlObject->idStr().isEmpty()) {
addHighlight(regions[IdTokenRegion], QmlHighlightKind::QmlProperty);
addHighlight(regions[IdNameRegion], QmlHighlightKind::QmlLocalId);
}
// If dotted name, then defer it to be handled in ScriptIdentifierExpression
if (qmlObject->name().contains("."_L1))
return;
addHighlight(regions[IdentifierRegion], QmlHighlightKind::QmlType);
}
void HighlightingVisitor::highlightComponent(const DomItem &item)
{
const auto fLocs = FileLocations::treeOf(item);
if (!fLocs)
return;
const auto regions = fLocs->info().regions;
const auto componentKeywordIt = regions.constFind(ComponentKeywordRegion);
if (componentKeywordIt == regions.constEnd())
return; // not an inline component, no need for highlighting
addHighlight(*componentKeywordIt, QmlHighlightKind::QmlKeyword);
addHighlight(regions[IdentifierRegion], QmlHighlightKind::QmlType);
}
void HighlightingVisitor::highlightPropertyDefinition(const DomItem &item)
{
const auto propertyDef = item.as<PropertyDefinition>();
Q_ASSERT(propertyDef);
const auto fLocs = FileLocations::treeOf(item);
if (!fLocs)
return;
const auto regions = fLocs->info().regions;
QmlHighlightModifiers modifier = QmlHighlightModifier::QmlPropertyDefinition;
if (propertyDef->isDefaultMember) {
modifier |= QmlHighlightModifier::QmlDefaultProperty;
addHighlight(regions[DefaultKeywordRegion], QmlHighlightKind::QmlKeyword);
}
if (propertyDef->isVirtual) {
modifier |= QmlHighlightModifier::QmlVirtualProperty;
addHighlight(regions[VirtualKeywordRegion], QmlHighlightKind::QmlKeyword);
}
if (propertyDef->isOverride) {
modifier |= QmlHighlightModifier::QmlOverrideProperty;
addHighlight(regions[OverrideKeywordRegion], QmlHighlightKind::QmlKeyword);
}
if (propertyDef->isFinal) {
modifier |= QmlHighlightModifier::QmlFinalProperty;
addHighlight(regions[FinalKeywordRegion], QmlHighlightKind::QmlKeyword);
}
if (propertyDef->isRequired) {
modifier |= QmlHighlightModifier::QmlRequiredProperty;
addHighlight(regions[RequiredKeywordRegion], QmlHighlightKind::QmlKeyword);
}
if (propertyDef->isReadonly) {
modifier |= QmlHighlightModifier::QmlReadonlyProperty;
addHighlight(regions[ReadonlyKeywordRegion], QmlHighlightKind::QmlKeyword);
}
addHighlight(regions[PropertyKeywordRegion], QmlHighlightKind::QmlKeyword);
if (propertyDef->isAlias())
addHighlight(regions[TypeIdentifierRegion], QmlHighlightKind::QmlKeyword);
else
addHighlight(regions[TypeIdentifierRegion], QmlHighlightKind::QmlType);
addHighlight(regions[TypeModifierRegion], QmlHighlightKind::QmlTypeModifier);
addHighlight(regions[IdentifierRegion], QmlHighlightKind::QmlProperty,
modifier);
}
void HighlightingVisitor::highlightMethod(const DomItem &item)
{
const auto method = item.as<MethodInfo>();
Q_ASSERT(method);
const auto fLocs = FileLocations::treeOf(item);
if (!fLocs)
return;
const auto regions = fLocs->info().regions;
switch (method->methodType) {
case MethodInfo::Signal: {
addHighlight(regions[SignalKeywordRegion], QmlHighlightKind::QmlKeyword);
addHighlight(regions[IdentifierRegion], QmlHighlightKind::QmlMethod);
break;
}
case MethodInfo::Method: {
addHighlight(regions[FunctionKeywordRegion], QmlHighlightKind::QmlKeyword);
addHighlight(regions[IdentifierRegion], QmlHighlightKind::QmlMethod);
addHighlight(regions[TypeIdentifierRegion], QmlHighlightKind::QmlType);
break;
}
default:
Q_UNREACHABLE();
}
for (auto i = 0; i < method->parameters.size(); ++i) {
DomItem parameter = item.field(Fields::parameters).index(i);
const auto paramRegions = FileLocations::treeOf(parameter)->info().regions;
addHighlight(paramRegions[IdentifierRegion],
QmlHighlightKind::QmlMethodParameter);
addHighlight(paramRegions[TypeIdentifierRegion], QmlHighlightKind::QmlType);
}
return;
}
void HighlightingVisitor::highlightScriptLiteral(const DomItem &item)
{
const auto literal = item.as<ScriptElements::Literal>();
Q_ASSERT(literal);
const auto fLocs = FileLocations::treeOf(item);
if (!fLocs)
return;
const auto regions = fLocs->info().regions;
if (std::holds_alternative<QString>(literal->literalValue())) {
const auto file = item.containingFile().as<QmlFile>();
if (!file)
return;
const auto &code = file->engine()->code();
const auto offset = regions[MainRegion].offset;
const auto length = regions[MainRegion].length;
const QStringView literalCode = QStringView{code}.mid(offset, length);
const auto &locs = Utils::sourceLocationsFromMultiLineToken(
literalCode, regions[MainRegion]);
for (const auto &loc : locs)
addHighlight(loc, QmlHighlightKind::String);
} else if (std::holds_alternative<double>(literal->literalValue()))
addHighlight(regions[MainRegion], QmlHighlightKind::Number);
else if (std::holds_alternative<bool>(literal->literalValue()))
addHighlight(regions[MainRegion], QmlHighlightKind::QmlKeyword);
else if (std::holds_alternative<std::nullptr_t>(literal->literalValue()))
addHighlight(regions[MainRegion], QmlHighlightKind::QmlKeyword);
else
qCWarning(semanticTokens) << "Invalid literal variant";
}
void HighlightingVisitor::highlightIdentifier(const DomItem &item)
{
using namespace QLspSpecification;
const auto id = item.as<ScriptElements::IdentifierExpression>();
Q_ASSERT(id);
const auto loc = id->mainRegionLocation();
// Many of the scriptIdentifiers expressions are already handled by
// other cases. In those cases, if the location offset is already in the list
// we don't need to perform expensive resolveExpressionType operation.
if (m_highlights.contains(loc.offset))
return;
// If the item is a field member base, we need to resolve the expression type
// If the item is a field member access, we don't need to resolve the expression type
// because it is already resolved in the first element.
if (QQmlLSUtils::isFieldMemberAccess(item))
highlightFieldMemberAccess(item, loc);
else
highlightBySemanticAnalysis(item, loc);
}
void HighlightingVisitor::highlightCallExpression(const DomItem &item)
{
const auto highlight = [this](const DomItem &item) {
if (item.internalKind() == DomType::ScriptIdentifierExpression) {
const auto id = item.as<ScriptElements::IdentifierExpression>();
Q_ASSERT(id);
const auto loc = id->mainRegionLocation();
addHighlight(loc, QmlHighlightKind::QmlMethod);
}
};
if (item.internalKind() == DomType::ScriptCallExpression) {
// If the item is a call expression, we need to highlight the callee.
const auto callee = item.field(Fields::callee);
if (callee.internalKind() == DomType::ScriptIdentifierExpression) {
highlight(callee);
return;
} else if (callee.internalKind() == DomType::ScriptBinaryExpression) {
// If the callee is a binary expression, we need to highlight the right part.
const auto right = callee.field(Fields::right);
if (right.internalKind() == DomType::ScriptIdentifierExpression)
highlight(right);
return;
}
}
}
void HighlightingVisitor::highlightFieldMemberAccess(const DomItem &item,
QQmlJS::SourceLocation loc)
{
// enum fields and qualified module identifiers are not just fields. Do semantic analysis if
// the identifier name is an uppercase string.
const auto name = item.field(Fields::identifier).value().toString();
if (!name.isEmpty() && name.at(0).category() == QChar::Letter_Uppercase) {
// maybe the identifier is an attached type or enum members, use semantic analysis to figure
// out.
return highlightBySemanticAnalysis(item, loc);
}
// Check if the name is a method
const auto expression =
QQmlLSUtils::resolveExpressionType(item, QQmlLSUtils::ResolveOptions::ResolveOwnerType);
if (!expression) {
addHighlight(loc, QmlHighlightKind::Field);
return;
}
if (expression->type == QQmlLSUtils::MethodIdentifier
|| expression->type == QQmlLSUtils::LambdaMethodIdentifier) {
addHighlight(loc, QmlHighlightKind::QmlMethod);
return;
} else {
return addHighlight(loc, QmlHighlightKind::Field);
}
}
void HighlightingVisitor::highlightBySemanticAnalysis(const DomItem &item, QQmlJS::SourceLocation loc)
{
const auto expression = QQmlLSUtils::resolveExpressionType(
item, QQmlLSUtils::ResolveOptions::ResolveOwnerType);
if (!expression) {
addHighlight(loc, QmlHighlightKind::Unknown);
return;
}
switch (expression->type) {
case QQmlLSUtils::QmlComponentIdentifier:
addHighlight(loc, QmlHighlightKind::QmlType);
return;
case QQmlLSUtils::JavaScriptIdentifier: {
QmlHighlightKind tokenType = QmlHighlightKind::JsScopeVar;
QmlHighlightModifiers modifier = QmlHighlightModifier::None;
if (const auto scope = expression->semanticScope) {
if (const auto jsIdentifier = scope->jsIdentifier(*expression->name)) {
if (jsIdentifier->kind == QQmlJSScope::JavaScriptIdentifier::Parameter)
tokenType = QmlHighlightKind::QmlMethodParameter;
if (jsIdentifier->isConst) {
modifier |= QmlHighlightModifier::QmlReadonlyProperty;
}
addHighlight(loc, tokenType, modifier);
return;
}
}
if (const auto name = expression->name) {
if (const auto highlightKind = resolveJsGlobalObjectKind(item, *name))
return addHighlight(loc, *highlightKind);
}
return;
}
case QQmlLSUtils::PropertyIdentifier: {
if (const auto scope = expression->semanticScope) {
QmlHighlightKind tokenType = QmlHighlightKind::QmlProperty;
if (scope == item.qmlObject().semanticScope()) {
tokenType = QmlHighlightKind::QmlScopeObjectProperty;
} else if (scope == item.rootQmlObject(GoTo::MostLikely).semanticScope()) {
tokenType = QmlHighlightKind::QmlRootObjectProperty;
} else {
tokenType = QmlHighlightKind::QmlExternalObjectProperty;
}
const auto property = scope->property(expression->name.value());
QmlHighlightModifiers modifier = QmlHighlightModifier::None;
if (!property.isWritable())
modifier |= QmlHighlightModifier::QmlReadonlyProperty;
addHighlight(loc, tokenType, modifier);
}
return;
}
case QQmlLSUtils::PropertyChangedSignalIdentifier:
addHighlight(loc, QmlHighlightKind::QmlSignal);
return;
case QQmlLSUtils::PropertyChangedHandlerIdentifier:
addHighlight(loc, QmlHighlightKind::QmlSignalHandler);
return;
case QQmlLSUtils::SignalIdentifier:
addHighlight(loc, QmlHighlightKind::QmlSignal);
return;
case QQmlLSUtils::SignalHandlerIdentifier:
addHighlight(loc, QmlHighlightKind::QmlSignalHandler);
return;
case QQmlLSUtils::MethodIdentifier:
addHighlight(loc, QmlHighlightKind::QmlMethod);
return;
case QQmlLSUtils::QmlObjectIdIdentifier: {
if (!expression->semanticScope) {
// In PropertyChanges and friends, this id looks like a generalized grouped property but
// is actually custom parsed, so don't highlight it.
addHighlight(loc, QmlHighlightKind::Unknown);
return;
}
const auto qmlfile = item.fileObject().as<QmlFile>();
if (!qmlfile) {
addHighlight(loc, QmlHighlightKind::Unknown);
return;
}
const auto resolver = qmlfile->typeResolver();
if (!resolver) {
addHighlight(loc, QmlHighlightKind::Unknown);
return;
}
const auto &objects = resolver->objectsById();
if (expression->name.has_value()) {
const auto &name = expression->name.value();
const auto boundName =
objects.id(expression->semanticScope, item.qmlObject().semanticScope());
if (!boundName.isEmpty() && name == boundName) {
// If the name is the same as the bound name, then it is a local id.
addHighlight(loc, QmlHighlightKind::QmlLocalId);
return;
} else {
addHighlight(loc, QmlHighlightKind::QmlExternalId);
return;
}
} else {
addHighlight(loc, QmlHighlightKind::QmlExternalId);
return;
}
}
case QQmlLSUtils::SingletonIdentifier:
addHighlight(loc, QmlHighlightKind::QmlType);
return;
case QQmlLSUtils::EnumeratorIdentifier:
addHighlight(loc, QmlHighlightKind::QmlEnumName);
return;
case QQmlLSUtils::EnumeratorValueIdentifier:
addHighlight(loc, QmlHighlightKind::QmlEnumMember);
return;
case QQmlLSUtils::AttachedTypeIdentifier:
case QQmlLSUtils::AttachedTypeIdentifierInBindingTarget:
addHighlight(loc, QmlHighlightKind::QmlType);
return;
case QQmlLSUtils::GroupedPropertyIdentifier:
addHighlight(loc, QmlHighlightKind::QmlProperty);
return;
case QQmlLSUtils::QualifiedModuleIdentifier:
addHighlight(loc, QmlHighlightKind::QmlNamespace);
return;
default:
qCWarning(semanticTokens)
<< QString::fromLatin1("Semantic token for %1 has not been implemented yet")
.arg(int(expression->type));
}
}
void HighlightingVisitor::highlightScriptExpressions(const DomItem &item)
{
const auto fLocs = FileLocations::treeOf(item);
if (!fLocs)
return;
const auto regions = fLocs->info().regions;
switch (item.internalKind()) {
case DomType::ScriptLiteral:
highlightScriptLiteral(item);
return;
case DomType::ScriptForStatement:
addHighlight(regions[ForKeywordRegion], QmlHighlightKind::QmlKeyword);
addHighlight(regions[TypeIdentifierRegion],
QmlHighlightKind::QmlKeyword);
return;
case DomType::ScriptVariableDeclaration: {
addHighlight(regions[TypeIdentifierRegion],
QmlHighlightKind::QmlKeyword);
return;
}
case DomType::ScriptReturnStatement:
addHighlight(regions[ReturnKeywordRegion], QmlHighlightKind::QmlKeyword);
return;
case DomType::ScriptCaseClause:
addHighlight(regions[CaseKeywordRegion], QmlHighlightKind::QmlKeyword);
return;
case DomType::ScriptDefaultClause:
addHighlight(regions[DefaultKeywordRegion], QmlHighlightKind::QmlKeyword);
return;
case DomType::ScriptSwitchStatement:
addHighlight(regions[SwitchKeywordRegion], QmlHighlightKind::QmlKeyword);
return;
case DomType::ScriptWhileStatement:
addHighlight(regions[WhileKeywordRegion], QmlHighlightKind::QmlKeyword);
return;
case DomType::ScriptDoWhileStatement:
addHighlight(regions[DoKeywordRegion], QmlHighlightKind::QmlKeyword);
addHighlight(regions[WhileKeywordRegion], QmlHighlightKind::QmlKeyword);
return;
case DomType::ScriptTryCatchStatement:
addHighlight(regions[TryKeywordRegion], QmlHighlightKind::QmlKeyword);
addHighlight(regions[CatchKeywordRegion], QmlHighlightKind::QmlKeyword);
addHighlight(regions[FinallyKeywordRegion], QmlHighlightKind::QmlKeyword);
return;
case DomType::ScriptForEachStatement:
addHighlight(regions[TypeIdentifierRegion], QmlHighlightKind::QmlKeyword);
addHighlight(regions[ForKeywordRegion], QmlHighlightKind::QmlKeyword);
addHighlight(regions[InOfTokenRegion], QmlHighlightKind::QmlKeyword);
return;
case DomType::ScriptThrowStatement:
addHighlight(regions[ThrowKeywordRegion], QmlHighlightKind::QmlKeyword);
return;
case DomType::ScriptBreakStatement:
addHighlight(regions[BreakKeywordRegion], QmlHighlightKind::QmlKeyword);
return;
case DomType::ScriptContinueStatement:
addHighlight(regions[ContinueKeywordRegion], QmlHighlightKind::QmlKeyword);
return;
case DomType::ScriptIfStatement:
addHighlight(regions[IfKeywordRegion], QmlHighlightKind::QmlKeyword);
addHighlight(regions[ElseKeywordRegion], QmlHighlightKind::QmlKeyword);
return;
case DomType::ScriptLabelledStatement:
addHighlight(regions[IdentifierRegion], QmlHighlightKind::JsLabel);
return;
case DomType::ScriptConditionalExpression:
addHighlight(regions[QuestionMarkTokenRegion], QmlHighlightKind::Operator);
addHighlight(regions[ColonTokenRegion], QmlHighlightKind::Operator);
return;
case DomType::ScriptUnaryExpression:
case DomType::ScriptPostExpression:
addHighlight(regions[OperatorTokenRegion], QmlHighlightKind::Operator);
return;
case DomType::ScriptType:
addHighlight(regions[IdentifierRegion], QmlHighlightKind::QmlType);
addHighlight(regions[TypeIdentifierRegion], QmlHighlightKind::QmlType);
return;
case DomType::ScriptFunctionExpression: {
addHighlight(regions[FunctionKeywordRegion], QmlHighlightKind::QmlKeyword);
addHighlight(regions[IdentifierRegion], QmlHighlightKind::QmlMethod);
return;
}
case DomType::ScriptYieldExpression:
addHighlight(regions[YieldKeywordRegion], QmlHighlightKind::QmlKeyword);
return;
case DomType::ScriptThisExpression:
addHighlight(regions[ThisKeywordRegion], QmlHighlightKind::QmlKeyword);
return;
case DomType::ScriptSuperLiteral:
addHighlight(regions[SuperKeywordRegion], QmlHighlightKind::QmlKeyword);
return;
case DomType::ScriptNewMemberExpression:
case DomType::ScriptNewExpression:
addHighlight(regions[NewKeywordRegion], QmlHighlightKind::QmlKeyword);
return;
case DomType::ScriptTemplateExpressionPart:
addHighlight(regions[DollarLeftBraceTokenRegion], QmlHighlightKind::Operator);
visitor(Path(), item.field(Fields::expression), false);
addHighlight(regions[RightBraceRegion], QmlHighlightKind::Operator);
return;
case DomType::ScriptTemplateLiteral:
addHighlight(regions[LeftBacktickTokenRegion], QmlHighlightKind::String);
addHighlight(regions[RightBacktickTokenRegion], QmlHighlightKind::String);
return;
case DomType::ScriptTemplateStringPart: {
// handle multiline case
QString code = item.field(Fields::value).value().toString();
const auto &locs = Utils::sourceLocationsFromMultiLineToken(
code, regions[MainRegion]);
for (const auto &loc : locs)
addHighlight(loc, QmlHighlightKind::String);
return;
}
default:
qCDebug(semanticTokens) << "Script Expressions with kind" << item.internalKind()
<< "not implemented";
}
}
void HighlightingVisitor::addHighlight(const QQmlJS::SourceLocation &loc, QmlHighlightKind highlightKind,
QmlHighlightModifiers modifierKind)
{
return Utils::addHighlight(m_highlights, loc, highlightKind, modifierKind);
}
/*!
\internal
\brief Returns multiple source locations for a given raw comment
Needed by semantic highlighting of comments. LSP clients usually don't support multiline
tokens. In QML, we can have multiline tokens like string literals and comments.
This method generates multiple source locations of sub-elements of token split by a newline
delimiter.
*/
QList<QQmlJS::SourceLocation>
Utils::sourceLocationsFromMultiLineToken(QStringView stringLiteral,
const QQmlJS::SourceLocation &locationInDocument)
{
auto lineBreakLength = qsizetype(std::char_traits<char>::length("\n"));
const auto lineLengths = [&lineBreakLength](QStringView literal) {
std::vector<qsizetype> lineLengths;
qsizetype startIndex = 0;
qsizetype pos = literal.indexOf(u'\n');
while (pos != -1) {
// TODO: QTBUG-106813
// Since a document could be opened in normalized form
// we can't use platform dependent newline handling here.
// Thus, we check manually if the literal contains \r so that we split
// the literal at the correct offset.
if (pos - 1 > 0 && literal[pos - 1] == u'\r') {
// Handle Windows line endings
lineBreakLength = qsizetype(std::char_traits<char>::length("\r\n"));
// Move pos to the index of '\r'
pos = pos - 1;
}
lineLengths.push_back(pos - startIndex);
// Advance the lookup index, so it won't find the same index.
startIndex = pos + lineBreakLength;
pos = literal.indexOf('\n'_L1, startIndex);
}
// Push the last line
if (startIndex < literal.length()) {
lineLengths.push_back(literal.length() - startIndex);
}
return lineLengths;
};
QList<QQmlJS::SourceLocation> result;
// First token location should start from the "stringLiteral"'s
// location in the qml document.
QQmlJS::SourceLocation lineLoc = locationInDocument;
for (const auto lineLength : lineLengths(stringLiteral)) {
lineLoc.length = lineLength;
result.push_back(lineLoc);
// update for the next line
lineLoc.offset += lineLoc.length + lineBreakLength;
++lineLoc.startLine;
lineLoc.startColumn = 1;
}
return result;
}
QList<int> Utils::encodeSemanticTokens(const HighlightsContainer &highlights, HighlightingMode mode)
{
QList<int> result;
constexpr auto tokenEncodingLength = 5;
result.reserve(tokenEncodingLength * highlights.size());
int prevLine = 0;
int prevColumn = 0;
const auto m_mapToProtocol = mode == HighlightingMode::Default
? mapToProtocolDefault
: mapToProtocolForQtCreator;
std::for_each(highlights.constBegin(), highlights.constEnd(), [&](const auto &token) {
int length = token.loc.length;
int line = token.loc.startLine - 1; // protocol is 0-based
int col = token.loc.startColumn - 1; // protocol is 0-based
Q_ASSERT(line >= prevLine);
if (line != prevLine)
prevColumn = 0;
result.emplace_back(line - prevLine);
result.emplace_back(col - prevColumn);
result.emplace_back(length);
result.emplace_back(m_mapToProtocol(token.kind));
result.emplace_back(fromQmlModifierKindToLspTokenType(token.modifiers));
prevLine = line;
prevColumn = col;
});
return result;
}
/*!
\internal
Computes the modifier value. Modifier is read as binary value in the protocol. The location
of the bits set are interpreted as the indices of the tokenModifiers list registered by the
server. Then, the client modifies the highlighting of the token.
tokenModifiersList: ["declaration", definition, readonly, static ,,,]
To set "definition" and "readonly", we need to send 0b00000110
*/
void Utils::addModifier(SemanticTokenModifiers modifier, int *baseModifier)
{
if (!baseModifier)
return;
*baseModifier |= (1 << int(modifier));
}
/*!
\internal
Check if the ranges overlap by ensuring that one range starts before the other ends
*/
bool Utils::rangeOverlapsWithSourceLocation(const QQmlJS::SourceLocation &loc,
const HighlightsRange &r)
{
int startOffsetItem = int(loc.offset);
int endOffsetItem = startOffsetItem + int(loc.length);
return (startOffsetItem <= r.endOffset) && (r.startOffset <= endOffsetItem);
}
/*
\internal
Increments the resultID by one.
*/
void Utils::updateResultID(QByteArray &resultID)
{
int length = resultID.length();
for (int i = length - 1; i >= 0; --i) {
if (resultID[i] == '9') {
resultID[i] = '0';
} else {
resultID[i] = resultID[i] + 1;
return;
}
}
resultID.prepend('1');
}
/*
\internal
A utility method that computes the difference of two list. The first argument is the encoded token data
of the file before edited. The second argument is the encoded token data after the file is edited. Returns
a list of SemanticTokensEdit as expected by the protocol.
*/
QList<SemanticTokensEdit> Utils::computeDiff(const QList<int> &oldData, const QList<int> &newData)
{
// Find the iterators pointing the first mismatch, from the start
const auto [oldStart, newStart] =
std::mismatch(oldData.cbegin(), oldData.cend(), newData.cbegin(), newData.cend());
// Find the iterators pointing the first mismatch, from the end
// but the iterators shouldn't pass over the start iterators found above.
const auto [r1, r2] = std::mismatch(oldData.crbegin(), std::make_reverse_iterator(oldStart),
newData.crbegin(), std::make_reverse_iterator(newStart));
const auto oldEnd = r1.base();
const auto newEnd = r2.base();
// no change
if (oldStart == oldEnd && newStart == newEnd)
return {};
SemanticTokensEdit edit;
edit.start = int(std::distance(newData.cbegin(), newStart));
edit.deleteCount = int(std::distance(oldStart, oldEnd));
if (newStart >= newData.cbegin() && newEnd <= newData.cend() && newStart < newEnd)
edit.data.emplace(newStart, newEnd);
return { std::move(edit) };
}
void Utils::addHighlight(HighlightsContainer &out,
const QQmlJS::SourceLocation &loc,
QmlHighlightKind highlightKind,
QmlHighlightModifiers modifierKind)
{
if (!loc.isValid() || loc.length == 0) {
qCDebug(semanticTokens)
<< "Invalid locations: Cannot add highlight to token";
return;
}
if (!out.contains(loc.offset))
out.insert(loc.offset, HighlightToken(loc, highlightKind, modifierKind));
}
HighlightsContainer Utils::visitTokens(const QQmlJS::Dom::DomItem &item,
const std::optional<HighlightsRange> &range)
{
using namespace QQmlJS::Dom;
HighlightingVisitor highlightDomElements(item, range);
return highlightDomElements.highlights();
}
HighlightsContainer Utils::shiftHighlights(const HighlightsContainer &cachedHighlights,
const QString &lastValidCode, const QString ¤tCode)
{
using namespace QQmlLSUtils;
Differ differ;
const QList<Diff> diffs = differ.diff(lastValidCode, currentCode);
HighlightsContainer shifts = cachedHighlights;
applyDiffs(shifts, diffs);
return shifts;
}
static std::pair<quint32, quint32> newlineCountAndLastLineLength(const QString &text)
{
auto [row, col] = QQmlJS::SourceLocation::rowAndColumnFrom(text, text.size());
return { row - 1, col - 1 }; // rows are 1-based, so subtract 1 to get the number of newlines
}
static void updateCursorPositionByDiff(const QString &text, QQmlJS::SourceLocation &cursor)
{
auto [newLines, lastLineLength] = newlineCountAndLastLineLength(text);
if (newLines > 0) {
cursor.startLine += newLines;
cursor.startColumn = lastLineLength + 1; // +1 because columns are 1-based
} else {
cursor.startColumn += text.size();
}
cursor.offset += text.size();
};
//
// Utilities for insertion handling
//
static bool tokenBeforeOffset(const QQmlJS::SourceLocation &t, quint32 offset)
{
return t.end() < offset;
}
static bool tokenAfterOffset(const QQmlJS::SourceLocation &t, quint32 offset)
{
return t.begin() > offset;
}
static bool insertionInsideToken(const QQmlJS::SourceLocation &token,
const QQmlJS::SourceLocation &cursor)
{
return token.begin() < cursor.begin() && token.end() >= cursor.begin();
}
static bool insertionTouchesTokenLeft(const QQmlJS::SourceLocation &token,
const QQmlJS::SourceLocation &cursor)
{
return token.begin() >= cursor.begin() && token.begin() <= cursor.end();
}
static void shiftTokenAfterInsert(QQmlJS::SourceLocation &t, const QQmlJS::SourceLocation &cursor,
int newlines, int lastLen, int diffLen)
{
if (t.startLine == cursor.startLine) {
if (newlines > 0) {
t.startColumn = lastLen + t.startColumn - cursor.startColumn + 1;
} else {
t.startColumn += lastLen;
}
}
t.startLine += newlines;
t.offset += diffLen;
}
static void expandTokenForMiddleInsert(QQmlJS::SourceLocation &t, const QQmlLSUtils::Diff &diff,
const QQmlJS::SourceLocation &cursor)
{
auto begin = diff.text.cbegin();
auto end = diff.text.cend();
auto ptr = std::find_if(begin, end, [](QChar c) { return c.isSpace(); });
if (ptr != end) {
t.length = cursor.begin() - t.begin() + std::distance(begin, ptr);
} else {
t.length += diff.text.size();
}
}
static void expandTokenForLeftOverlap(QQmlJS::SourceLocation &t, const QQmlLSUtils::Diff &diff,
const QQmlJS::SourceLocation &cursor, int newlines,
int lastLen)
{
const int diffLen = diff.text.size();
t.offset = cursor.begin();
t.length += diffLen;
t.startLine = cursor.startLine;
t.startColumn = cursor.startColumn;
// find last space inside diff text
auto rbegin = diff.text.rbegin();
auto rend = diff.text.rend();
auto ptr = std::find_if(rbegin, rend, [](QChar c) { return c.isSpace(); });
if (ptr != rend) {
std::ptrdiff_t omitted = std::distance(ptr, rend);
t.offset += omitted;
t.length -= omitted;
t.startColumn += omitted;
}
// adjust if diff contains newlines
if (newlines > 0) {
t.startLine += newlines;
t.startColumn = lastLen - std::distance(ptr.base(), diff.text.end()) + 1;
}
}
static void updateHighlightsOnInsert(HighlightsContainer &highlights,
QQmlJS::SourceLocation &cursor, const QQmlLSUtils::Diff &diff)
{
const auto [newlines, lastLen] = newlineCountAndLastLineLength(diff.text);
const auto diffLen = diff.text.size();
cursor.length = quint32(diffLen); // set length for insertion range, used in overlap checks
HighlightsContainer shifted;
for (auto item : highlights) {
auto &token = item.loc;
if (tokenBeforeOffset(token, cursor.begin())) {
shifted.insert(token.offset, item);
continue;
}
if (tokenAfterOffset(token, cursor.begin())) {
shiftTokenAfterInsert(token, cursor, newlines, lastLen, diffLen);
shifted.insert(token.offset, item);
continue;
}
// Overlap cases
if (insertionInsideToken(token, cursor)) {
expandTokenForMiddleInsert(token, diff, cursor);
} else if (insertionTouchesTokenLeft(token, cursor)) {
expandTokenForLeftOverlap(token, diff, cursor, newlines, lastLen);
}
shifted.insert(token.offset, item);
}
highlights.swap(shifted);
// Advance cursor for the next Diff
updateCursorPositionByDiff(diff.text, cursor);
}
//
// Utilities for deletion handling
//
static bool spansAcrossDeletion(const QQmlJS::SourceLocation &t, quint32 delStart, quint32 delEnd)
{
return t.begin() < delStart && t.end() > delEnd;
}
static bool leftFragmentRemains(const QQmlJS::SourceLocation &t, quint32 delStart, quint32 delEnd)
{
return t.begin() < delStart && t.end() <= delEnd;
}
static bool rightFragmentRemains(const QQmlJS::SourceLocation &t, quint32 delStart, quint32 delEnd)
{
return t.begin() >= delStart && t.end() > delEnd;
}
//
// Shift token after deletion
//
static void shiftTokenAfterDelete(QQmlJS::SourceLocation &t, int newlines, int lastLen,
const QQmlJS::SourceLocation &cursor, int diffLen)
{
t.offset -= diffLen;
// Adjust column on deletion end line
if (t.startLine == cursor.startLine + newlines) {
if (newlines > 0) {
t.startColumn = cursor.startColumn + (t.startColumn - lastLen) - 1;
} else {
t.startColumn -= lastLen;
}
}
// Shift line upwards
t.startLine -= newlines;
}
//
// Apply overlap logic
//
static void applyDeletionOverlap(QQmlJS::SourceLocation &t, quint32 delStart, quint32 delEnd,
int newlines, quint32 delStartLine, quint32 delStartColumn)
{
const quint32 deletedLen = delEnd - delStart;
if (spansAcrossDeletion(t, delStart, delEnd)) {
// Middle removed
t.length -= deletedLen;
return;
}
if (leftFragmentRemains(t, delStart, delEnd)) {
// Left side remains
t.length = delStart - t.begin();
return;
}
if (rightFragmentRemains(t, delStart, delEnd)) {
// Right side remains, shifted to the deletion start
quint32 overlap = delEnd - t.begin();
t.offset = delStart;
t.length -= overlap;
t.startColumn = delStartColumn;
if (newlines > 0)
t.startLine = delStartLine;
return;
}
// Fully removed
t.length = 0;
}
static void updateHighlightsOnDelete(HighlightsContainer &highlights,
QQmlJS::SourceLocation &cursor, const QQmlLSUtils::Diff &diff)
{
const auto [newlines, lastLen] = newlineCountAndLastLineLength(diff.text);
const int diffLen = diff.text.size();
cursor.length = diffLen;
const quint32 delStart = cursor.offset;
const quint32 delEnd = cursor.offset + diffLen;
HighlightsContainer shifts;
for (auto item : highlights) {
auto &token = item.loc;
//
// Case A: token fully before deleted region
//
if (tokenBeforeOffset(token, delStart)) {
shifts.insert(token.offset, item);
continue;
}
//
// Case B: token fully after deleted region
//
if (tokenAfterOffset(token, delEnd)) {
shiftTokenAfterDelete(token, newlines, lastLen, cursor, diffLen);
shifts.insert(token.offset, item);
continue;
}
//
// Case C: deletion overlaps token
//
applyDeletionOverlap(token, delStart, delEnd, newlines, cursor.startLine,
cursor.startColumn);
if (token.length == 0)
continue; // fully removed
shifts.insert(token.offset, item);
}
highlights.swap(shifts);
}
/*
Equal:
- Just advance the running offset by length.
- No changes to the map.
Insert:
- Insert new entries at the current offset.
- case A: token before insertion offset: no highlight change
- case B: token after insertion offset: slide all offsets forward by the length of the inserted text.
sub case: if the insertion is on the same line as the token, adjust the column accordingly.
- case C: insertion overlaps token: expand the token length by the length of the inserted text
sub case 1: insertion is inside the token: expand length
sub case 2: insertion touches left of the token: adjust offset to insertion start,
expand length, adjust line/column if needed.
Delete:
- Case A: token before deletion offset: no highlight change
- case B: token after deletion offset: slide all offsets backward by the length of the deleted text.
sub case: if the deletion ends on the same line as the token, adjust the column accordingly.
- case C: deletion overlaps token:
sub case 1: spans across deletion: reduce length by deleted length
sub case 2: left fragment remains: adjust length to the left fragment length
sub case 3: right fragment remains: adjust offset to deletion start, adjust length to right fragment length,
adjust line/column if needed.
sub case 4: fully removed: remove the token from the map.
*/
void Utils::applyDiffs(HighlightsContainer &highlights, const QList<QQmlLSUtils::Diff> &diffs)
{
using namespace QQmlLSUtils;
if (highlights.isEmpty())
return;
QQmlJS::SourceLocation cursor;
cursor.offset = 0;
cursor.length = 0;
cursor.startLine = 1;
cursor.startColumn = 1;
for (const Diff &diff : diffs) {
switch (diff.command) {
case Diff::Equal:
// Just advance cursor
updateCursorPositionByDiff(diff.text, cursor);
break;
case Diff::Insert: {
updateHighlightsOnInsert(highlights, cursor, diff);
break;
}
case Diff::Delete: {
updateHighlightsOnDelete(highlights, cursor, diff);
break;
}
}
}
}
} // namespace QmlHighlighting
QT_END_NAMESPACE
|