Skip to content

Commit 9ecc068

Browse files
Copybara Botfortenforge
Copybara Bot
authored andcommitted
Project import generated by Copybara.
GitOrigin-RevId: b523ccfefabf6864602d38dccf9ba763d5409464
1 parent 1b846dc commit 9ecc068

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+2626
-1814
lines changed

.gitattributes

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#
1818
# Merging from the command prompt will add diff markers to the files if there
1919
# are conflicts (Merging from VS is not affected by the settings below, in VS
20-
# the diff markers are never inserted). Diff markers may cause the following
20+
# the diff markers are never inserted). Diff markers may cause the following
2121
# file extensions to fail to load in VS. An alternative would be to treat
2222
# these files as binary and thus will always conflict and require user
2323
# intervention with every merge. To do so, just uncomment the entries below
@@ -46,9 +46,9 @@
4646

4747
###############################################################################
4848
# diff behavior for common document formats
49-
#
49+
#
5050
# Convert binary document formats to text before diffing them. This feature
51-
# is only available from the command line. Turn it on by uncommenting the
51+
# is only available from the command line. Turn it on by uncommenting the
5252
# entries below.
5353
###############################################################################
5454
#*.doc diff=astextplain

.github/workflows/build-extension.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ jobs:
2121

2222
- name: Setup NuGet
2323
uses: NuGet/[email protected]
24-
24+
2525
- name: Restore Packages
2626
run: nuget restore CodeiumVS.sln
27-
27+
2828
- name: Build Solution
29-
run: msbuild CodeiumVS.sln /p:Configuration=Release /p:Platform="Any CPU" /p:TargetFrameworkVersion="v4.8" /restore
29+
run: msbuild CodeiumVS.sln /p:Configuration=Release /p:Platform="Any CPU" /p:TargetFrameworkVersion="v4.8" /restore

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -363,4 +363,4 @@ MigrationBackup/
363363
.ionide/
364364

365365
# Fody - auto-generated XML schema
366-
FodyWeavers.xsd
366+
FodyWeavers.xsd

CodeiumVS/CodeiumVS.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -178,11 +178,11 @@
178178
</ItemGroup>
179179
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
180180
<Import Project="$(VSToolsPath)\VSSDK\Microsoft.VsSDK.targets" Condition="'$(VSToolsPath)' != ''" />
181-
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
181+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
182182
Other similar extension points exist, see Microsoft.Common.targets.
183183
<Target Name="BeforeBuild">
184184
</Target>
185185
<Target Name="AfterBuild">
186186
</Target>
187187
-->
188-
</Project>
188+
</Project>

CodeiumVS/CodeiumVSPackage.cs

+80-58
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,21 @@
1717
namespace CodeiumVS;
1818

1919
//[ProvideAutoLoad(VSConstants.UICONTEXT.NoSolution_string, PackageAutoLoadFlags.BackgroundLoad)]
20-
//[ProvideAutoLoad(UIContextGuids80.SolutionExists, PackageAutoLoadFlags.BackgroundLoad)] // VisibilityConstraints example
20+
//[ProvideAutoLoad(UIContextGuids80.SolutionExists, PackageAutoLoadFlags.BackgroundLoad)] //
21+
// VisibilityConstraints example
2122

2223
[Guid(PackageGuids.CodeiumVSString)]
2324
[InstalledProductRegistration(Vsix.Name, Vsix.Description, Vsix.Version)]
2425
[PackageRegistration(UseManagedResourcesOnly = true, AllowsBackgroundLoading = true)]
2526
[ProvideMenuResource("Menus.ctmenu", 1)]
2627
[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,
3030
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
3235
public sealed class CodeiumVSPackage : ToolkitPackage
3336
{
3437
internal static CodeiumVSPackage? Instance { get; private set; }
@@ -39,36 +42,43 @@ public sealed class CodeiumVSPackage : ToolkitPackage
3942
public SettingsPage SettingsPage;
4043
public LanguageServer LanguageServer;
4144

42-
protected override async Task InitializeAsync(CancellationToken cancellationToken, IProgress<ServiceProgressData> progress)
45+
protected override async Task InitializeAsync(CancellationToken cancellationToken,
46+
IProgress<ServiceProgressData> progress)
4347
{
4448
Instance = this;
4549

4650
await JoinableTaskFactory.SwitchToMainThreadAsync(cancellationToken);
4751

48-
LanguageServer = new LanguageServer();
49-
OutputWindow = new OutputWindow();
52+
LanguageServer = new LanguageServer();
53+
OutputWindow = new OutputWindow();
5054
NotificationAuth = new NotificationInfoBar();
5155

52-
try
56+
try
57+
{
58+
SettingsPage = GetDialogPage(typeof(SettingsPage)) as SettingsPage;
59+
}
60+
catch (Exception)
5361
{
54-
SettingsPage = GetDialogPage(typeof(SettingsPage)) as SettingsPage;
5562
}
56-
catch (Exception) { }
5763

5864
if (SettingsPage == null)
5965
{
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");
6168
SettingsPage = new SettingsPage();
6269
}
6370

64-
try
71+
try
6572
{
6673
await this.RegisterCommandsAsync();
6774
}
6875
catch (Exception ex)
6976
{
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.");
7282
}
7383

7484
await LanguageServer.InitializeAsync();
@@ -93,7 +103,8 @@ public static async Task EnsurePackageLoadedAsync()
93103
if (Instance != null) return;
94104

95105
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();
97108

98109
Guid guidPackage = new(PackageGuids.CodeiumVSString);
99110
if (vsShell.IsPackageLoaded(ref guidPackage, out var _) == VSConstants.S_OK) return;
@@ -106,12 +117,14 @@ public async Task UpdateSignedInStateAsync()
106117
{
107118
await JoinableTaskFactory.SwitchToMainThreadAsync();
108119

109-
110-
if ((await GetServiceAsync(typeof(IMenuCommandService))) is OleMenuCommandService cmdService)
120+
if ((await GetServiceAsync(typeof(IMenuCommandService)))is OleMenuCommandService cmdService)
111121
{
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));
115128

116129
if (commandSignIn != null) commandSignIn.Visible = !IsSignedIn();
117130
if (commandSignOut != null) commandSignOut.Visible = IsSignedIn();
@@ -122,19 +135,24 @@ public async Task UpdateSignedInStateAsync()
122135
if (!IsSignedIn())
123136
{
124137
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(); }),
130147
];
131148

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);
137154
}
155+
else { await NotificationAuth.CloseAsync(); }
138156

139157
ChatToolWindow.Instance?.Reload();
140158
}
@@ -150,23 +168,23 @@ static string CleanifyBrowserPath(string p)
150168
return clean;
151169
}
152170

153-
string urlAssociation = @"Software\Microsoft\Windows\Shell\Associations\UrlAssociations\http";
171+
string urlAssociation =
172+
@"Software\Microsoft\Windows\Shell\Associations\UrlAssociations\http";
154173
string browserPathKey = @"$BROWSER$\shell\open\command";
155174
try
156175
{
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);
159179

160-
//If user choice was not found, try machine default
180+
// If user choice was not found, try machine default
161181
if (userChoiceKey == null)
162182
{
163-
//Read default browser path from Win XP registry key
183+
// Read default browser path from Win XP registry key
164184
var browserKey = Registry.ClassesRoot.OpenSubKey(@"HTTP\shell\open\command", false);
165185

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);
170188
var path = CleanifyBrowserPath(browserKey.GetValue(null) as string);
171189
browserKey.Close();
172190
return path;
@@ -195,15 +213,14 @@ static string CleanifyBrowserPath(string p)
195213
public void OpenInBrowser(string url)
196214
{
197215
Action<string>[] methods = [
198-
(_url) => {
216+
(_url) =>
217+
{
199218
Process.Start(new ProcessStartInfo { FileName = _url, UseShellExecute = true });
200219
},
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); }
207224
];
208225

209226
foreach (var method in methods)
@@ -220,7 +237,9 @@ public void OpenInBrowser(string url)
220237
}
221238

222239
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}");
224243
}
225244

226245
public string GetAppDataPath()
@@ -254,15 +273,19 @@ public string GetAPIKeyPath()
254273
return Path.Combine(GetAppDataPath(), "codeium_api_key");
255274
}
256275

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+
}
259284

260285
internal void Log(string v)
261286
{
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);
266289
}
267290

268291
internal async Task LogAsync(string v)
@@ -272,17 +295,16 @@ internal async Task LogAsync(string v)
272295
}
273296
}
274297

275-
276298
// https://gist.github.com/madskristensen/4d205244dd92c37c82e7
277299
// this increase load time idk why, not needed now
278-
//public static class MefExtensions
300+
// public static class MefExtensions
279301
//{
280302
// private static IComponentModel _compositionService;
281303

282304
// public static async Task SatisfyImportsOnceAsync(this object o)
283305
// {
284306
// 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);
287309
// }
288310
//}

0 commit comments

Comments
 (0)