Skip to content

Instantly share code, notes, and snippets.

View AArnott's full-sized avatar

Andrew Arnott AArnott

View GitHub Profile
@AArnott
AArnott / HangThis.cs
Last active August 29, 2015 14:01
An example of trivial code that would hang any GUI app.
public void DoSomething()
{
DoSomethingAsync().Wait(); // WARNING: this will deadlock. Don’t do this.
}
public async Task DoSomethingAsync()
{
await Task.Yield(); // could be any async work
}
@AArnott
AArnott / ReentranceVulnerabilityDemo.cs
Created May 7, 2014 16:20
An example of a method that is vulnerable to RPC reentrancy.
private int m_filesOpened;
private const int MaxOpenFilesAllowed = 2;
private FileStream[] m_openFiles = new FileStream[MaxOpenFilesAllowed];
public int SomeMethod(string path)
{
ThreadHelper.ThrowIfNotOnUIThread();
if (m_filesOpened < MaxOpenFilesAllowed)
{
m_openFiles[m_filesOpened] = File.Open(path, FileMode.Open);
m_filesOpened++;
@AArnott
AArnott / SwitchToAndFromUIThreadInVS.cs
Created May 7, 2014 16:21
A sample method of how to switch to and from the UI thread in Visual Studio in an async method.
private async Task PerformDataAnalysisAsync()
{
// At this point, we’re on whatever thread the caller was on (UI thread or background).
// The first thing we do is call a VS service, so ensure we’re on the UI thread.
await ThreadHelper.JoinableTaskFactory.SwitchToMainThreadAsync();
this.solution.EnumProjects(…);
await DoSomethingAsync();
// We’re still on the UI thread at this point.
// Let’s get off to do some expensive work without disturbing the user.
await TaskScheduler.Default;
@AArnott
AArnott / SyncMethodCallsAsyncInVS.cs
Created May 7, 2014 16:23
Sample for how to call an async method in a synchronously blocking way in Visual Studio without deadlocking.
ThreadHelper.JoinableTaskFactory.Run(async delegate
{
await SomeOperationAsync();
});
@AArnott
AArnott / SyncMethodCallsAsyncWithResultInVS.cs
Created May 7, 2014 16:24
A sample of how to call an async method in a synchronously blocking way and return a result from the async method.
int result = ThreadHelper.JoinableTaskFactory.Run(async delegate
{
int value = await SomeOperationAsync();
return value;
});
return result;
@AArnott
AArnott / CreateProjectAsyncWithComments.cs
Last active August 29, 2015 14:01
A commented sample method that executes C# 5 async code and returns an IVsTask.
public IVsTask CreateProjectAsync(string projectName)
{
return ThreadHelper.JoinableTaskFactory.RunAsyncAsVsTask(
VsTaskRunContext.UIThreadBackgroundPriority,
async cancellationToken =>
{
// Code here executes on the caller's thread (UI thread or otherwise)
// before CreateProjectAsync returns an IVsTask.
// [ your synchronous portion here ]
@AArnott
AArnott / AsyncTaskToIVsTaskSample.cs
Last active April 19, 2024 10:14
A sample of how to return an IVsTask from an async method.
public IVsTask CreateProjectAsync(string projectName)
{
return ThreadHelper.JoinableTaskFactory.RunAsyncAsVsTask(
VsTaskRunContext.UIThreadBackgroundPriority,
async cancellationToken =>
{
IVsAsyncService someService;
IVsTask someOtherAsyncOperation = someService.SomethingAsync();
await someOtherAsyncOperation;
@AArnott
AArnott / ReturnIVsTaskFromAsyncTask.cs
Last active August 29, 2015 14:01
A sample for returning IVsTask from an async method.
public IVsTask CreateProjectAsync(string projectName)
{
return ThreadHelper.JoinableTaskFactory.RunAsyncAsVsTask(
VsTaskRunContext.UIThreadBackgroundPriority,
async cancellationToken =>
{
await Task.Yield();
return VSConstants.S_OK;
});
@AArnott
AArnott / SwitchToMainThread.cs
Created May 7, 2014 17:29
A single-line sample of how to switch to the main thread.
await joinableTaskFactoryInstance.SwitchToMainThreadAsync();
@AArnott
AArnott / JTFRunSample.cs
Last active August 29, 2015 14:01
JoinableTaskFactory.Run sample
JoinableTaskFactory.Run(async delegate {
await SomeOperationAsync(...);
});