forked from dotnet/interactive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.xaml.cs
93 lines (79 loc) · 2.87 KB
/
App.xaml.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
using Microsoft.DotNet.Interactive;
using Microsoft.DotNet.Interactive.Commands;
using Microsoft.DotNet.Interactive.CSharp;
using Microsoft.DotNet.Interactive.Server;
using System.CommandLine;
using System.CommandLine.Invocation;
using System.IO;
using System.Threading.Tasks;
using System.Windows;
namespace WpfConnect
{
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App : Application
{
private CompositeKernel _Kernel;
private const string NamedPipeName = "InteractiveWpf";
private bool RunOnDispatcher { get; set; }
protected override void OnStartup(StartupEventArgs e)
{
base.OnStartup(e);
_Kernel = new CompositeKernel();
_Kernel.UseLogMagicCommand();
AddDispatcherCommand(_Kernel);
CSharpKernel csharpKernel = RegisterCSharpKernel();
_ = Task.Run(async () =>
{
//Load WPF app assembly
await csharpKernel.SendAsync(new SubmitCode(@$"#r ""{typeof(App).Assembly.Location}""
using {nameof(WpfConnect)};"));
//Add the WPF app as a variable that can be accessed
await csharpKernel.SetVariableAsync("App", this);
//Start named pipe
_Kernel.UseNamedPipeKernelServer(NamedPipeName, new DirectoryInfo("."));
});
}
protected override void OnExit(ExitEventArgs e)
{
_Kernel?.Dispose();
base.OnExit(e);
}
private void AddDispatcherCommand(Kernel kernel)
{
var dispatcherCommand = new Command("#!dispatcher", "Enable or disable running code on the Dispatcher")
{
new Option<bool>("--enabled", getDefaultValue:() => true)
};
dispatcherCommand.Handler = CommandHandler.Create<bool>(enabled =>
{
RunOnDispatcher = enabled;
});
kernel.AddDirective(dispatcherCommand);
}
private CSharpKernel RegisterCSharpKernel()
{
var csharpKernel = new CSharpKernel()
.UseNugetDirective()
.UseKernelHelpers()
.UseWho()
.UseDotNetVariableSharing()
//This is added locally
.UseWpf();
_Kernel.Add(csharpKernel);
csharpKernel.AddMiddleware(async (KernelCommand command, KernelInvocationContext context, KernelPipelineContinuation next) =>
{
if (RunOnDispatcher)
{
await Dispatcher.InvokeAsync(async () => await next(command, context));
}
else
{
await next(command, context);
}
});
return csharpKernel;
}
}
}