@@ -53,7 +53,7 @@ import {
53
53
import { Location , TextEdit , WorkspaceEdit } from './commonTypes' ;
54
54
import * as configs from './configurations' ;
55
55
import { DataBinding } from './dataBinding' ;
56
- import { CppSourceStr , clients , configPrefix , updateLanguageConfigurations , watchForCrashes } from './extension' ;
56
+ import { CppSourceStr , clients , configPrefix , updateLanguageConfigurations , usesCrashHandler , watchForCrashes } from './extension' ;
57
57
import { LocalizeStringParams , getLocaleId , getLocalizedString } from './localization' ;
58
58
import { PersistentFolderState , PersistentWorkspaceState } from './persistentState' ;
59
59
import { createProtocolFilter } from './protocolFilter' ;
@@ -111,10 +111,6 @@ export function disposeWorkspaceData(): void {
111
111
workspaceDisposables = [ ] ;
112
112
}
113
113
114
- function logTelemetry ( notificationBody : TelemetryPayload ) : void {
115
- telemetry . logLanguageServerEvent ( notificationBody . event , notificationBody . properties , notificationBody . metrics ) ;
116
- }
117
-
118
114
/** Note: We should not await on the following functions,
119
115
* or any function that returns a promise acquired from them,
120
116
* vscode.window.showInformationMessage, vscode.window.showWarningMessage, vscode.window.showErrorMessage
@@ -548,7 +544,8 @@ interface GetIncludesResult
548
544
}
549
545
550
546
// Requests
551
- const InitializationRequest : RequestType < CppInitializationParams , string , void > = new RequestType < CppInitializationParams , string , void > ( 'cpptools/initialize' ) ;
547
+ const PreInitializationRequest : RequestType < void , string , void > = new RequestType < void , string , void > ( 'cpptools/preinitialize' ) ;
548
+ const InitializationRequest : RequestType < CppInitializationParams , void , void > = new RequestType < CppInitializationParams , void , void > ( 'cpptools/initialize' ) ;
552
549
const QueryCompilerDefaultsRequest : RequestType < QueryDefaultCompilerParams , configs . CompilerDefaults , void > = new RequestType < QueryDefaultCompilerParams , configs . CompilerDefaults , void > ( 'cpptools/queryCompilerDefaults' ) ;
553
550
const QueryTranslationUnitSourceRequest : RequestType < QueryTranslationUnitSourceParams , QueryTranslationUnitSourceResult , void > = new RequestType < QueryTranslationUnitSourceParams , QueryTranslationUnitSourceResult , void > ( 'cpptools/queryTranslationUnitSource' ) ;
554
551
const SwitchHeaderSourceRequest : RequestType < SwitchHeaderSourceParams , string , void > = new RequestType < SwitchHeaderSourceParams , string , void > ( 'cpptools/didSwitchHeaderSource' ) ;
@@ -1596,10 +1593,14 @@ export class DefaultClient implements Client {
1596
1593
languageClient . registerProposedFeatures ( ) ;
1597
1594
await languageClient . start ( ) ;
1598
1595
1596
+ if ( usesCrashHandler ( ) ) {
1597
+ watchForCrashes ( await languageClient . sendRequest ( PreInitializationRequest , null ) ) ;
1598
+ }
1599
+
1599
1600
// Move initialization to a separate message, so we can see log output from it.
1600
1601
// A request is used in order to wait for completion and ensure that no subsequent
1601
1602
// higher priority message may be processed before the Initialization request.
1602
- watchForCrashes ( await languageClient . sendRequest ( InitializationRequest , cppInitializationParams ) ) ;
1603
+ await languageClient . sendRequest ( InitializationRequest , cppInitializationParams ) ;
1603
1604
}
1604
1605
1605
1606
public async sendDidChangeSettings ( ) : Promise < void > {
@@ -2000,13 +2001,17 @@ export class DefaultClient implements Client {
2000
2001
onFinished ( ) ;
2001
2002
return ;
2002
2003
}
2003
- telemetry . logLanguageServerEvent ( 'provideCustomConfiguration' , { providerId } ) ;
2004
- void this . provideCustomConfigurationAsync ( docUri , requestFile , replaceExisting , onFinished , provider ) ;
2004
+ try {
2005
+ DefaultClient . isStarted . reset ( ) ;
2006
+ const status = await this . provideCustomConfigurationAsync ( docUri , requestFile , replaceExisting , provider ) ;
2007
+ telemetry . logLanguageServerEvent ( 'provideCustomConfiguration' , { providerId, status } ) ;
2008
+ } finally {
2009
+ onFinished ( ) ;
2010
+ DefaultClient . isStarted . resolve ( ) ;
2011
+ }
2005
2012
}
2006
2013
2007
- private async provideCustomConfigurationAsync ( docUri : vscode . Uri , requestFile : string | undefined , replaceExisting : boolean | undefined , onFinished : ( ) => void , provider : CustomConfigurationProvider1 ) {
2008
- DefaultClient . isStarted . reset ( ) ;
2009
-
2014
+ private async provideCustomConfigurationAsync ( docUri : vscode . Uri , requestFile : string | undefined , replaceExisting : boolean | undefined , provider : CustomConfigurationProvider1 ) : Promise < string > {
2010
2015
const tokenSource : vscode . CancellationTokenSource = new vscode . CancellationTokenSource ( ) ;
2011
2016
2012
2017
const params : QueryTranslationUnitSourceParams = {
@@ -2018,14 +2023,12 @@ export class DefaultClient implements Client {
2018
2023
const response : QueryTranslationUnitSourceResult = await this . languageClient . sendRequest ( QueryTranslationUnitSourceRequest , params ) ;
2019
2024
if ( ! response . candidates || response . candidates . length === 0 ) {
2020
2025
// If we didn't receive any candidates, no configuration is needed.
2021
- onFinished ( ) ;
2022
- DefaultClient . isStarted . resolve ( ) ;
2023
- return ;
2026
+ return "noCandidates" ;
2024
2027
}
2025
2028
2026
2029
// Need to loop through candidates, to see if we can get a custom configuration from any of them.
2027
2030
// Wrap all lookups in a single task, so we can apply a timeout to the entire duration.
2028
- const provideConfigurationAsync : ( ) => Thenable < SourceFileConfigurationItem [ ] | null | undefined > = async ( ) => {
2031
+ const provideConfigurationAsync : ( ) => Thenable < SourceFileConfigurationItem [ ] | undefined > = async ( ) => {
2029
2032
const uris : vscode . Uri [ ] = [ ] ;
2030
2033
for ( let i : number = 0 ; i < response . candidates . length ; ++ i ) {
2031
2034
const candidate : string = response . candidates [ i ] ;
@@ -2085,44 +2088,41 @@ export class DefaultClient implements Client {
2085
2088
}
2086
2089
return configs as SourceFileConfigurationItem [ ] ;
2087
2090
}
2088
- if ( tokenSource . token . isCancellationRequested ) {
2089
- return null ;
2090
- }
2091
+ return undefined ;
2091
2092
} ;
2093
+ let result : string = "success" ;
2092
2094
try {
2093
- const configs : SourceFileConfigurationItem [ ] | null | undefined = await this . callTaskWithTimeout ( provideConfigurationAsync , configProviderTimeout , tokenSource ) ;
2095
+ const configs : SourceFileConfigurationItem [ ] | undefined = await this . callTaskWithTimeout ( provideConfigurationAsync , configProviderTimeout , tokenSource ) ;
2094
2096
if ( configs && configs . length > 0 ) {
2095
2097
this . sendCustomConfigurations ( configs , provider . version ) ;
2098
+ } else {
2099
+ result = "noConfigurations" ;
2096
2100
}
2097
- onFinished ( ) ;
2098
2101
} catch ( err ) {
2099
- if ( requestFile ) {
2100
- onFinished ( ) ;
2101
- return ;
2102
- }
2103
- const settings : CppSettings = new CppSettings ( this . RootUri ) ;
2104
- if ( settings . configurationWarnings && ! this . isExternalHeader ( docUri ) && ! vscode . debug . activeDebugSession ) {
2105
- const dismiss : string = localize ( "dismiss.button" , "Dismiss" ) ;
2106
- const disable : string = localize ( "disable.warnings.button" , "Disable Warnings" ) ;
2107
- const configName : string | undefined = this . configuration . CurrentConfiguration ?. name ;
2108
- if ( ! configName ) {
2109
- return ;
2110
- }
2111
- let message : string = localize ( "unable.to.provide.configuration" ,
2112
- "{0} is unable to provide IntelliSense configuration information for '{1}'. Settings from the '{2}' configuration will be used instead." ,
2113
- provider . name , docUri . fsPath , configName ) ;
2114
- if ( err ) {
2115
- message += ` (${ err } )` ;
2116
- }
2102
+ result = "timeout" ;
2103
+ if ( ! requestFile ) {
2104
+ const settings : CppSettings = new CppSettings ( this . RootUri ) ;
2105
+ if ( settings . configurationWarnings && ! this . isExternalHeader ( docUri ) && ! vscode . debug . activeDebugSession ) {
2106
+ const dismiss : string = localize ( "dismiss.button" , "Dismiss" ) ;
2107
+ const disable : string = localize ( "disable.warnings.button" , "Disable Warnings" ) ;
2108
+ const configName : string | undefined = this . configuration . CurrentConfiguration ?. name ;
2109
+ if ( ! configName ) {
2110
+ return "noConfigName" ;
2111
+ }
2112
+ let message : string = localize ( "unable.to.provide.configuration" ,
2113
+ "{0} is unable to provide IntelliSense configuration information for '{1}'. Settings from the '{2}' configuration will be used instead." ,
2114
+ provider . name , docUri . fsPath , configName ) ;
2115
+ if ( err ) {
2116
+ message += ` (${ err } )` ;
2117
+ }
2117
2118
2118
- if ( await vscode . window . showInformationMessage ( message , dismiss , disable ) === disable ) {
2119
- settings . toggleSetting ( "configurationWarnings" , "enabled" , "disabled" ) ;
2119
+ if ( await vscode . window . showInformationMessage ( message , dismiss , disable ) === disable ) {
2120
+ settings . toggleSetting ( "configurationWarnings" , "enabled" , "disabled" ) ;
2121
+ }
2120
2122
}
2121
2123
}
2122
- } finally {
2123
- DefaultClient . isStarted . resolve ( ) ;
2124
2124
}
2125
-
2125
+ return result ;
2126
2126
}
2127
2127
2128
2128
private async handleRequestCustomConfig ( requestFile : string ) : Promise < void > {
@@ -2323,7 +2323,7 @@ export class DefaultClient implements Client {
2323
2323
2324
2324
this . languageClient . onNotification ( ReloadWindowNotification , ( ) => void util . promptForReloadWindowDueToSettingsChange ( ) ) ;
2325
2325
this . languageClient . onNotification ( UpdateTrustedCompilersNotification , ( e ) => void this . addTrustedCompiler ( e . compilerPath ) ) ;
2326
- this . languageClient . onNotification ( LogTelemetryNotification , logTelemetry ) ;
2326
+ this . languageClient . onNotification ( LogTelemetryNotification , ( e ) => this . logTelemetry ( e ) ) ;
2327
2327
this . languageClient . onNotification ( ReportStatusNotification , ( e ) => void this . updateStatus ( e ) ) ;
2328
2328
this . languageClient . onNotification ( ReportTagParseStatusNotification , ( e ) => this . updateTagParseStatus ( e ) ) ;
2329
2329
this . languageClient . onNotification ( CompileCommandsPathsNotification , ( e ) => void this . promptCompileCommands ( e ) ) ;
@@ -2562,6 +2562,13 @@ export class DefaultClient implements Client {
2562
2562
}
2563
2563
}
2564
2564
2565
+ private logTelemetry ( notificationBody : TelemetryPayload ) : void {
2566
+ if ( notificationBody . event === "includeSquiggles" && this . configurationProvider && notificationBody . properties ) {
2567
+ notificationBody . properties [ "providerId" ] = this . configurationProvider ;
2568
+ }
2569
+ telemetry . logLanguageServerEvent ( notificationBody . event , notificationBody . properties , notificationBody . metrics ) ;
2570
+ }
2571
+
2565
2572
private async updateStatus ( notificationBody : ReportStatusNotificationBody ) : Promise < void > {
2566
2573
const message : string = notificationBody . status ;
2567
2574
util . setProgress ( util . getProgressExecutableSuccess ( ) ) ;
0 commit comments