@@ -1038,14 +1038,18 @@ namespace ts {
1038
1038
return name . replace ( "SolutionBuilder::" , "" ) ;
1039
1039
}
1040
1040
1041
- function reportBuildInfoReadOrWriteStatistic ( s : CountAndSize , type : "read" | "write" ) {
1042
- if ( s . count ) {
1041
+ function reportBuildInfoReadOrWriteStatistic ( s : CountAndSize | undefined , type : "read" | "write" ) {
1042
+ if ( s ? .count ) {
1043
1043
const countStatisticName = `BuildInfo ${ type } ` ;
1044
1044
if ( s . count !== 1 ) statistics . push ( { name : countStatisticName , value : s . count , type : StatisticType . count } ) ;
1045
- statistics . push ( { name : `BuildInfo ${ type } size` , value : s . size , type : StatisticType . size } ) ;
1045
+ if ( s . size ) statistics . push ( { name : `BuildInfo ${ type } size` , value : s . size , type : StatisticType . size } ) ;
1046
+ if ( s . textTime ) statistics . push ( { name : `BuildInfo ${ type } time` , value : s . textTime , type : StatisticType . time } ) ;
1047
+ if ( s . parseTime ) statistics . push ( { name : `BuildInfo ${ type } parsing time` , value : s . parseTime , type : StatisticType . time } ) ;
1046
1048
if ( solutionPerformance ! . hasStatistics ( countStatisticName ) ) {
1047
1049
solutionPerformance ! . addAggregateStatistic ( { name : countStatisticName , value : s . count , type : StatisticType . count } ) ;
1048
- solutionPerformance ! . addAggregateStatistic ( { name : `BuildInfo ${ type } size` , value : s . size , type : StatisticType . size } ) ;
1050
+ if ( s . size ) solutionPerformance ! . addAggregateStatistic ( { name : `BuildInfo ${ type } size` , value : s . size , type : StatisticType . size } ) ;
1051
+ if ( s . textTime ) solutionPerformance ! . addAggregateStatistic ( { name : `BuildInfo ${ type } time` , value : s . textTime , type : StatisticType . time } ) ;
1052
+ if ( s . parseTime ) solutionPerformance ! . addAggregateStatistic ( { name : `BuildInfo ${ type } parsing time` , value : s . parseTime , type : StatisticType . time } ) ;
1049
1053
}
1050
1054
}
1051
1055
}
@@ -1080,14 +1084,19 @@ namespace ts {
1080
1084
interface CountAndSize {
1081
1085
count : number ;
1082
1086
size : number ;
1087
+ textTime : number ;
1088
+ parseTime : number ;
1083
1089
}
1084
1090
interface LastRead {
1085
1091
size : number ;
1086
- compilerOptions : CompilerOptions ;
1092
+ compilerOptions : CompilerOptions | undefined ;
1093
+ start : number ;
1094
+ textTime : number ;
1095
+ end : number ;
1087
1096
}
1088
1097
export interface BuildInfoCallbacks {
1089
- getRead ( ) : CountAndSize ;
1090
- getWrite ( ) : CountAndSize ;
1098
+ getRead ( ) : CountAndSize | undefined ;
1099
+ getWrite ( ) : CountAndSize | undefined ;
1091
1100
getLastRead ( ) : LastRead | undefined ;
1092
1101
onTransferLastRead ( ) : void ;
1093
1102
clearLastRead ( ) : void ;
@@ -1098,16 +1107,16 @@ namespace ts {
1098
1107
buildInfoCallbacks ?: BuildInfoCallbacks ;
1099
1108
}
1100
1109
1101
- const zeroCount : CountAndSize = { count : 0 , size : 0 } ;
1102
-
1103
1110
function createNoOpBuildInfoCallbacks ( host : CompilerHost ) {
1104
1111
const oldCallbacks = host . buildInfoCallbacks ;
1105
1112
oldCallbacks ?. clearLastRead ( ) ;
1106
1113
return host . buildInfoCallbacks = {
1107
- onRead : noop ,
1114
+ onReadStart : noop ,
1115
+ onReadText : noop ,
1116
+ onReadEnd : noop ,
1108
1117
onWrite : noop ,
1109
- getRead : ( ) => zeroCount ,
1110
- getWrite : ( ) => zeroCount ,
1118
+ getRead : returnUndefined ,
1119
+ getWrite : returnUndefined ,
1111
1120
getLastRead :returnUndefined ,
1112
1121
onTransferLastRead : noop ,
1113
1122
clearLastRead : noop ,
@@ -1132,15 +1141,17 @@ namespace ts {
1132
1141
// This is needed to ensure that we report buildinfo read of program since its done before program is created
1133
1142
const oldLastRead = oldCallbacks . getLastRead ( ) ;
1134
1143
if ( oldLastRead && oldLastRead . compilerOptions === options ) {
1135
- onReadOrWrite ( read , oldLastRead . size ) ;
1144
+ recordRead ( oldLastRead ) ;
1136
1145
oldCallbacks . onTransferLastRead ( ) ;
1137
1146
}
1138
1147
else {
1139
1148
oldCallbacks . clearLastRead ( ) ;
1140
1149
}
1141
1150
}
1142
1151
return host . buildInfoCallbacks = {
1143
- onRead,
1152
+ onReadStart,
1153
+ onReadText,
1154
+ onReadEnd,
1144
1155
onWrite,
1145
1156
getRead : ( ) => read ,
1146
1157
getWrite : ( ) => write ,
@@ -1155,19 +1166,17 @@ namespace ts {
1155
1166
1156
1167
function clear ( ) {
1157
1168
Debug . assert ( ! oldCallbacks ) ;
1158
- clearReadOrWrite ( read ) ;
1159
- clearReadOrWrite ( write ) ;
1169
+ read . count = read . size = read . textTime = read . parseTime = 0 ;
1170
+ write . count = write . size = 0 ;
1160
1171
lastRead = undefined ;
1161
1172
lastWrite = undefined ;
1162
1173
}
1163
1174
1164
- function clearReadOrWrite ( countAndSize : CountAndSize ) {
1165
- countAndSize . count = 0 ;
1166
- countAndSize . size = 0 ;
1167
- }
1168
-
1169
1175
function onTransferLastRead ( ) {
1170
- revertReadOrWrite ( read , lastRead ! . size ) ;
1176
+ read . count -- ;
1177
+ read . size -= lastRead ! . size ;
1178
+ read . textTime -= lastReadTextTime ( lastRead ! ) ;
1179
+ read . parseTime -= lastReadParseTime ( lastRead ! ) ;
1171
1180
lastRead = undefined ;
1172
1181
}
1173
1182
@@ -1183,10 +1192,33 @@ namespace ts {
1183
1192
countAndSize . size -= size ;
1184
1193
}
1185
1194
1186
- function onRead ( size : number , compilerOptions : CompilerOptions | undefined ) {
1187
- onReadOrWrite ( read , size ) ;
1188
- if ( compilerOptions ) lastRead = { size, compilerOptions } ;
1189
- else lastRead = undefined ;
1195
+ function onReadStart ( compilerOptions : CompilerOptions | undefined ) {
1196
+ lastRead = { start : timestamp ( ) , compilerOptions, textTime : 0 , end : 0 , size : 0 } ;
1197
+ }
1198
+
1199
+ function onReadText ( content : string | undefined ) {
1200
+ lastRead ! . textTime = timestamp ( ) ;
1201
+ lastRead ! . size = content ?. length ?? 0 ;
1202
+ }
1203
+
1204
+ function onReadEnd ( ) {
1205
+ lastRead ! . end = timestamp ( ) ;
1206
+ recordRead ( lastRead ! ) ;
1207
+ if ( ! lastRead ! . compilerOptions ) lastRead = undefined ;
1208
+ }
1209
+
1210
+ function recordRead ( lastRead : LastRead ) {
1211
+ onReadOrWrite ( read , lastRead . size ) ;
1212
+ read . textTime += lastReadTextTime ( lastRead ) ;
1213
+ read . parseTime += lastReadParseTime ( lastRead ) ;
1214
+ }
1215
+
1216
+ function lastReadTextTime ( lastRead : LastRead ) {
1217
+ return lastRead . textTime - lastRead . start ;
1218
+ }
1219
+
1220
+ function lastReadParseTime ( lastRead : LastRead ) {
1221
+ return lastRead . end - lastRead . textTime ;
1190
1222
}
1191
1223
1192
1224
function onWrite ( size : number ) {
@@ -1201,7 +1233,7 @@ namespace ts {
1201
1233
}
1202
1234
1203
1235
function initializedCountAndSize ( ) : CountAndSize {
1204
- return { count : 0 , size : 0 } ;
1236
+ return { count : 0 , size : 0 , textTime : 0 , parseTime : 0 } ;
1205
1237
}
1206
1238
1207
1239
function isSolutionMarkOrMeasure ( name : string ) {
@@ -1319,15 +1351,17 @@ namespace ts {
1319
1351
reportStatisticalValue ( { name, value : time , type : StatisticType . time } , aggregate ) ;
1320
1352
}
1321
1353
1322
- function reportBuildInfoReadOrWriteStatistic ( s : CountAndSize , type : "read" | "write" ) {
1323
- if ( s . count ) {
1354
+ function reportBuildInfoReadOrWriteStatistic ( s : CountAndSize | undefined , type : "read" | "write" ) {
1355
+ if ( s ? .count ) {
1324
1356
if ( s . count === 1 ) {
1325
1357
solutionPerformance ?. addAggregateStatistic ( { name : `BuildInfo ${ type } ` , value : s . count , type : StatisticType . count } ) ;
1326
1358
}
1327
1359
else {
1328
1360
reportCountStatistic ( `BuildInfo ${ type } ` , s . count ) ;
1329
1361
}
1330
- reportStatisticalValue ( { name : `BuildInfo ${ type } size` , value : s . size , type : StatisticType . size } , /*aggregate*/ true ) ;
1362
+ if ( s . size ) reportStatisticalValue ( { name : `BuildInfo ${ type } size` , value : s . size , type : StatisticType . size } , /*aggregate*/ true ) ;
1363
+ if ( s . textTime ) reportTimeStatistic ( `BuildInfo ${ type } time` , s . textTime , /*aggregate*/ true ) ;
1364
+ if ( s . parseTime ) reportTimeStatistic ( `BuildInfo ${ type } parsing time` , s . parseTime , /*aggregate*/ true ) ;
1331
1365
}
1332
1366
}
1333
1367
}
0 commit comments