17
17
namespace CodeiumVS ;
18
18
19
19
//[ProvideAutoLoad(VSConstants.UICONTEXT.NoSolution_string, PackageAutoLoadFlags.BackgroundLoad)]
20
- //[ProvideAutoLoad(UIContextGuids80.SolutionExists, PackageAutoLoadFlags.BackgroundLoad)] // VisibilityConstraints example
20
+ //[ProvideAutoLoad(UIContextGuids80.SolutionExists, PackageAutoLoadFlags.BackgroundLoad)] //
21
+ // VisibilityConstraints example
21
22
22
23
[ Guid ( PackageGuids . CodeiumVSString ) ]
23
24
[ InstalledProductRegistration ( Vsix . Name , Vsix . Description , Vsix . Version ) ]
24
25
[ PackageRegistration ( UseManagedResourcesOnly = true , AllowsBackgroundLoading = true ) ]
25
26
[ ProvideMenuResource ( "Menus.ctmenu" , 1 ) ]
26
27
[ ProvideOptionPage ( typeof ( SettingsPage ) , "Codeium" , "Codeium" , 0 , 0 , true ) ]
27
- [ ProvideToolWindow ( typeof ( ChatToolWindow ) ,
28
- MultiInstances = false ,
29
- Style = VsDockStyle . Tabbed ,
28
+ [ ProvideToolWindow (
29
+ typeof ( ChatToolWindow ) , MultiInstances = false , Style = VsDockStyle . Tabbed ,
30
30
Orientation = ToolWindowOrientation . Right ,
31
- Window = "{3AE79031-E1BC-11D0-8F78-00A0C9110057}" ) ] // default docking window, magic string for the guid of VSConstants.StandardToolWindows.SolutionExplorer
31
+ Window =
32
+ "{3AE79031-E1BC-11D0-8F78-00A0C9110057}" ) ] // default docking window, magic string for the
33
+ // guid of
34
+ // VSConstants.StandardToolWindows.SolutionExplorer
32
35
public sealed class CodeiumVSPackage : ToolkitPackage
33
36
{
34
37
internal static CodeiumVSPackage ? Instance { get ; private set ; }
@@ -39,36 +42,43 @@ public sealed class CodeiumVSPackage : ToolkitPackage
39
42
public SettingsPage SettingsPage ;
40
43
public LanguageServer LanguageServer ;
41
44
42
- protected override async Task InitializeAsync ( CancellationToken cancellationToken , IProgress < ServiceProgressData > progress )
45
+ protected override async Task InitializeAsync ( CancellationToken cancellationToken ,
46
+ IProgress < ServiceProgressData > progress )
43
47
{
44
48
Instance = this ;
45
49
46
50
await JoinableTaskFactory . SwitchToMainThreadAsync ( cancellationToken ) ;
47
51
48
- LanguageServer = new LanguageServer ( ) ;
49
- OutputWindow = new OutputWindow ( ) ;
52
+ LanguageServer = new LanguageServer ( ) ;
53
+ OutputWindow = new OutputWindow ( ) ;
50
54
NotificationAuth = new NotificationInfoBar ( ) ;
51
55
52
- try
56
+ try
57
+ {
58
+ SettingsPage = GetDialogPage ( typeof ( SettingsPage ) ) as SettingsPage ;
59
+ }
60
+ catch ( Exception )
53
61
{
54
- SettingsPage = GetDialogPage ( typeof ( SettingsPage ) ) as SettingsPage ;
55
62
}
56
- catch ( Exception ) { }
57
63
58
64
if ( SettingsPage == null )
59
65
{
60
- await LogAsync ( $ "CodeiumVSPackage.InitializeAsync: Failed to get settings page, using the default settings") ;
66
+ await LogAsync (
67
+ $ "CodeiumVSPackage.InitializeAsync: Failed to get settings page, using the default settings") ;
61
68
SettingsPage = new SettingsPage ( ) ;
62
69
}
63
70
64
- try
71
+ try
65
72
{
66
73
await this . RegisterCommandsAsync ( ) ;
67
74
}
68
75
catch ( Exception ex )
69
76
{
70
- await LogAsync ( $ "CodeiumVSPackage.InitializeAsync: Failed to register commands; Exception { ex } ") ;
71
- await VS . MessageBox . ShowErrorAsync ( "Codeium: Failed to register commands." , "Codeium might not work correctly. Please check the output window for more details." ) ;
77
+ await LogAsync (
78
+ $ "CodeiumVSPackage.InitializeAsync: Failed to register commands; Exception { ex } ") ;
79
+ await VS . MessageBox . ShowErrorAsync (
80
+ "Codeium: Failed to register commands." ,
81
+ "Codeium might not work correctly. Please check the output window for more details." ) ;
72
82
}
73
83
74
84
await LanguageServer . InitializeAsync ( ) ;
@@ -93,7 +103,8 @@ public static async Task EnsurePackageLoadedAsync()
93
103
if ( Instance != null ) return ;
94
104
95
105
await ThreadHelper . JoinableTaskFactory . SwitchToMainThreadAsync ( ) ;
96
- IVsShell vsShell = ( IVsShell ) ServiceProvider . GlobalProvider . GetService ( typeof ( IVsShell ) ) ?? throw new NullReferenceException ( ) ;
106
+ IVsShell vsShell = ( IVsShell ) ServiceProvider . GlobalProvider . GetService ( typeof ( IVsShell ) ) ??
107
+ throw new NullReferenceException ( ) ;
97
108
98
109
Guid guidPackage = new ( PackageGuids . CodeiumVSString ) ;
99
110
if ( vsShell . IsPackageLoaded ( ref guidPackage , out var _ ) == VSConstants . S_OK ) return ;
@@ -106,12 +117,14 @@ public async Task UpdateSignedInStateAsync()
106
117
{
107
118
await JoinableTaskFactory . SwitchToMainThreadAsync ( ) ;
108
119
109
-
110
- if ( ( await GetServiceAsync ( typeof ( IMenuCommandService ) ) ) is OleMenuCommandService cmdService )
120
+ if ( ( await GetServiceAsync ( typeof ( IMenuCommandService ) ) ) is OleMenuCommandService cmdService )
111
121
{
112
- MenuCommand ? commandSignIn = cmdService . FindCommand ( new CommandID ( PackageGuids . CodeiumVS , PackageIds . SignIn ) ) ;
113
- MenuCommand ? commandSignOut = cmdService . FindCommand ( new CommandID ( PackageGuids . CodeiumVS , PackageIds . SignOut ) ) ;
114
- MenuCommand ? commandEnterToken = cmdService . FindCommand ( new CommandID ( PackageGuids . CodeiumVS , PackageIds . EnterAuthToken ) ) ;
122
+ MenuCommand ? commandSignIn =
123
+ cmdService . FindCommand ( new CommandID ( PackageGuids . CodeiumVS , PackageIds . SignIn ) ) ;
124
+ MenuCommand ? commandSignOut =
125
+ cmdService . FindCommand ( new CommandID ( PackageGuids . CodeiumVS , PackageIds . SignOut ) ) ;
126
+ MenuCommand ? commandEnterToken = cmdService . FindCommand (
127
+ new CommandID ( PackageGuids . CodeiumVS , PackageIds . EnterAuthToken ) ) ;
115
128
116
129
if ( commandSignIn != null ) commandSignIn . Visible = ! IsSignedIn ( ) ;
117
130
if ( commandSignOut != null ) commandSignOut . Visible = IsSignedIn ( ) ;
@@ -122,19 +135,24 @@ public async Task UpdateSignedInStateAsync()
122
135
if ( ! IsSignedIn ( ) )
123
136
{
124
137
KeyValuePair < string , Action > [ ] actions = [
125
- new KeyValuePair < string , Action > ( "Sign in" , delegate
126
- {
127
- ThreadHelper . JoinableTaskFactory . RunAsync ( LanguageServer . SignInAsync ) . FireAndForget ( true ) ;
128
- } ) ,
129
- new KeyValuePair < string , Action > ( "Use authentication token" , delegate { new EnterTokenDialogWindow ( ) . ShowDialog ( ) ; } ) ,
138
+ new KeyValuePair < string , Action > ( "Sign in" ,
139
+ delegate {
140
+ ThreadHelper . JoinableTaskFactory
141
+ . RunAsync ( LanguageServer . SignInAsync )
142
+ . FireAndForget ( true ) ;
143
+ } ) ,
144
+ new KeyValuePair < string , Action > (
145
+ "Use authentication token" ,
146
+ delegate { new EnterTokenDialogWindow ( ) . ShowDialog ( ) ; } ) ,
130
147
] ;
131
148
132
- NotificationAuth . Show ( "[Codeium] To enable Codeium, please sign in to your account" , KnownMonikers . AddUser , true , null , actions ) ;
133
- }
134
- else
135
- {
136
- await NotificationAuth . CloseAsync ( ) ;
149
+ NotificationAuth . Show ( "[Codeium] To enable Codeium, please sign in to your account" ,
150
+ KnownMonikers . AddUser ,
151
+ true ,
152
+ null ,
153
+ actions ) ;
137
154
}
155
+ else { await NotificationAuth . CloseAsync ( ) ; }
138
156
139
157
ChatToolWindow . Instance ? . Reload ( ) ;
140
158
}
@@ -150,23 +168,23 @@ static string CleanifyBrowserPath(string p)
150
168
return clean ;
151
169
}
152
170
153
- string urlAssociation = @"Software\Microsoft\Windows\Shell\Associations\UrlAssociations\http" ;
171
+ string urlAssociation =
172
+ @"Software\Microsoft\Windows\Shell\Associations\UrlAssociations\http" ;
154
173
string browserPathKey = @"$BROWSER$\shell\open\command" ;
155
174
try
156
175
{
157
- //Read default browser path from userChoiceLKey
158
- RegistryKey userChoiceKey = Registry . CurrentUser . OpenSubKey ( urlAssociation + @"\UserChoice" , false ) ;
176
+ // Read default browser path from userChoiceLKey
177
+ RegistryKey userChoiceKey =
178
+ Registry . CurrentUser . OpenSubKey ( urlAssociation + @"\UserChoice" , false ) ;
159
179
160
- //If user choice was not found, try machine default
180
+ // If user choice was not found, try machine default
161
181
if ( userChoiceKey == null )
162
182
{
163
- //Read default browser path from Win XP registry key
183
+ // Read default browser path from Win XP registry key
164
184
var browserKey = Registry . ClassesRoot . OpenSubKey ( @"HTTP\shell\open\command" , false ) ;
165
185
166
- //If browser path wasn’t found, try Win Vista (and newer) registry key
167
- browserKey ??=
168
- Registry . CurrentUser . OpenSubKey (
169
- urlAssociation , false ) ;
186
+ // If browser path wasn’t found, try Win Vista (and newer) registry key
187
+ browserKey ??= Registry . CurrentUser . OpenSubKey ( urlAssociation , false ) ;
170
188
var path = CleanifyBrowserPath ( browserKey . GetValue ( null ) as string ) ;
171
189
browserKey . Close ( ) ;
172
190
return path ;
@@ -195,15 +213,14 @@ static string CleanifyBrowserPath(string p)
195
213
public void OpenInBrowser ( string url )
196
214
{
197
215
Action < string > [ ] methods = [
198
- ( _url ) => {
216
+ ( _url ) =>
217
+ {
199
218
Process . Start ( new ProcessStartInfo { FileName = _url , UseShellExecute = true } ) ;
200
219
} ,
201
- ( _url ) => {
202
- Process . Start ( "explorer.exe" , _url ) ;
203
- } ,
204
- ( _url ) => {
205
- Process . Start ( GetDefaultBrowserPath ( ) , _url ) ;
206
- }
220
+ ( _url ) =>
221
+ { Process . Start ( "explorer.exe" , _url ) ; } ,
222
+ ( _url ) =>
223
+ { Process . Start ( GetDefaultBrowserPath ( ) , _url ) ; }
207
224
] ;
208
225
209
226
foreach ( var method in methods )
@@ -220,7 +237,9 @@ public void OpenInBrowser(string url)
220
237
}
221
238
222
239
Log ( $ "Codeium failed to open the browser, please use this URL instead: { url } ") ;
223
- VS . MessageBox . Show ( "Codeium: Failed to open browser" , $ "Please use this URL instead (you can copy from the output window):\n { url } ") ;
240
+ VS . MessageBox . Show (
241
+ "Codeium: Failed to open browser" ,
242
+ $ "Please use this URL instead (you can copy from the output window):\n { url } ") ;
224
243
}
225
244
226
245
public string GetAppDataPath ( )
@@ -254,15 +273,19 @@ public string GetAPIKeyPath()
254
273
return Path . Combine ( GetAppDataPath ( ) , "codeium_api_key" ) ;
255
274
}
256
275
257
- public bool IsSignedIn ( ) { return LanguageServer . GetKey ( ) . Length > 0 ; }
258
- public bool HasEnterprise ( ) { return SettingsPage . EnterpriseMode ; }
276
+ public bool IsSignedIn ( )
277
+ {
278
+ return LanguageServer . GetKey ( ) . Length > 0 ;
279
+ }
280
+ public bool HasEnterprise ( )
281
+ {
282
+ return SettingsPage . EnterpriseMode ;
283
+ }
259
284
260
285
internal void Log ( string v )
261
286
{
262
- ThreadHelper . JoinableTaskFactory . RunAsync ( async delegate
263
- {
264
- await LogAsync ( v ) ;
265
- } ) . FireAndForget ( true ) ;
287
+ ThreadHelper . JoinableTaskFactory . RunAsync ( async delegate { await LogAsync ( v ) ; } )
288
+ . FireAndForget ( true ) ;
266
289
}
267
290
268
291
internal async Task LogAsync ( string v )
@@ -272,17 +295,16 @@ internal async Task LogAsync(string v)
272
295
}
273
296
}
274
297
275
-
276
298
// https://gist.github.com/madskristensen/4d205244dd92c37c82e7
277
299
// this increase load time idk why, not needed now
278
- //public static class MefExtensions
300
+ // public static class MefExtensions
279
301
//{
280
302
// private static IComponentModel _compositionService;
281
303
282
304
// public static async Task SatisfyImportsOnceAsync(this object o)
283
305
// {
284
306
// await ThreadHelper.JoinableTaskFactory.SwitchToMainThreadAsync();
285
- // _compositionService ??= ServiceProvider.GlobalProvider.GetService(typeof(SComponentModel)) as IComponentModel;
286
- // _compositionService?.DefaultCompositionService.SatisfyImportsOnce(o);
307
+ // _compositionService ??= ServiceProvider.GlobalProvider.GetService(typeof(SComponentModel))
308
+ // as IComponentModel; _compositionService?.DefaultCompositionService.SatisfyImportsOnce(o);
287
309
// }
288
310
//}
0 commit comments