-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
/
Copy pathTerminalBridge.cs
134 lines (107 loc) · 3.29 KB
/
TerminalBridge.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
using Microsoft.UI.Xaml.Controls;
using System;
using System.Runtime.InteropServices.WindowsRuntime;
using System.Text;
using System.Threading.Tasks;
using Windows.Foundation.Metadata;
namespace Files.App.UserControls
{
public enum MouseButton
{
Left,
Middle,
Right
}
/// <summary>
/// Disclaimer: code from https://github.com/felixse/FluentTerminal
/// </summary>
[AllowForWeb]
public sealed class TerminalBridge
{
private IxtermEventListener _terminalEventListener;
public TerminalBridge(IxtermEventListener terminalEventListener)
{
_terminalEventListener = terminalEventListener;
_terminalEventListener.OnOutput += OnOutput;
_terminalEventListener.OnPaste += OnPaste;
_terminalEventListener.OnSessionRestart += OnSessionRestart;
}
private async void OnPaste(object sender, string e)
{
await _terminalEventListener.WebView.InvokeScriptAsync("onPaste", new[] { e })
.ConfigureAwait(false);
}
private async void OnOutput(object sender, object e)
{
var arg = Encoding.UTF8.GetString((byte[])e);
await _terminalEventListener.WebView.InvokeScriptAsync("onOutput", new[] { arg })
.ConfigureAwait(false);
}
private async void OnSessionRestart(object sender, string e)
{
await _terminalEventListener.WebView.InvokeScriptAsync("onSessionRestart", new[] { e })
.ConfigureAwait(false);
}
public void InputReceived(string message)
{
_terminalEventListener?.OnInput(Encoding.UTF8.GetBytes(message));
}
public void BinaryReceived(string binary)
{
_terminalEventListener?.OnInput(Encoding.UTF8.GetBytes(binary));
}
public void Initialized()
{
_terminalEventListener.OnInitialized();
}
public void DisposalPrepare()
{
_terminalEventListener.OnOutput -= OnOutput;
_terminalEventListener.OnPaste -= OnPaste;
_terminalEventListener = null;
}
public void NotifySizeChanged(int columns, int rows)
{
_terminalEventListener?.OnTerminalResized(columns, rows);
}
public void NotifyTitleChanged(string title)
{
_terminalEventListener?.OnTitleChanged(title);
}
public void InvokeCommand(string command)
{
_terminalEventListener?.OnKeyboardCommand(command);
}
public void NotifyRightClick(int x, int y, bool hasSelection, string hoveredUri)
{
_terminalEventListener?.OnMouseClick(MouseButton.Right, x, y, hasSelection, hoveredUri);
}
public void NotifyMiddleClick(int x, int y, bool hasSelection, string hoveredUri)
{
_terminalEventListener?.OnMouseClick(MouseButton.Middle, x, y, hasSelection, hoveredUri);
}
public void NotifySelectionChanged(string selection)
{
_terminalEventListener?.OnSelectionChanged(selection);
}
public void ReportError(string error)
{
_terminalEventListener?.OnError(error);
}
}
public interface IxtermEventListener
{
void OnTerminalResized(int columns, int rows);
void OnTitleChanged(string title);
void OnKeyboardCommand(string command);
void OnMouseClick(MouseButton mouseButton, int x, int y, bool hasSelection, string hoveredUri);
void OnSelectionChanged(string selection);
void OnError(string error);
void OnInput([ReadOnlyArray] byte[] data);
void OnInitialized();
event EventHandler<object> OnOutput;
event EventHandler<string> OnPaste;
event EventHandler<string> OnSessionRestart;
public WebView2 WebView { get; }
}
}