forked from dotnet/interactive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
JupyterKernelHelper.cs
50 lines (38 loc) · 1.6 KB
/
JupyterKernelHelper.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
// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
using Microsoft.DotNet.Interactive.Events;
namespace Microsoft.DotNet.Interactive.Jupyter
{
public static class TopLevelMethods
{
public static string input(string prompt = "")
{
var context = KernelInvocationContext.Current;
if (!StandardInputIsAllowed(context))
{
throw new NotSupportedException(
"Input request is not supported. The stdin channel is not allowed by the frontend.");
}
var inputReqEvent = new InputRequested(prompt, context.Command);
context.Publish(inputReqEvent);
return inputReqEvent.Content;
}
public static PasswordString password(string prompt = "")
{
var context = KernelInvocationContext.Current;
if (!StandardInputIsAllowed(context))
{
throw new NotSupportedException(
"Password request is not supported. The stdin channel is not allowed by the frontend.");
}
var passwordReqEvent = new PasswordRequested(prompt, context.Command);
context.Publish(passwordReqEvent);
return passwordReqEvent.Content;
}
private static bool StandardInputIsAllowed(KernelInvocationContext context)
{
return context?.HandlingKernel is { } kernel && kernel.FrontendEnvironment.AllowStandardInput;
}
}
}