-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathMainForm.cs
More file actions
217 lines (182 loc) · 6.14 KB
/
Copy pathMainForm.cs
File metadata and controls
217 lines (182 loc) · 6.14 KB
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
/**
* Copyright (c) 2007-2015, Kaazing Corporation. All rights reserved.
*/
using Kaazing.HTML5;
using Kaazing.Security;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace EchoDemo
{
public partial class MainForm : Form
{
private WebSocket webSocket = null;
private WebSocketFactory factory = new WebSocketFactory();
public delegate void InvokeDelegate();
/// <summary>
/// .Net HTML5 Demo Form
/// </summary>
public MainForm()
{
InitializeComponent();
string defaultLocation = "wss://demos.kaazing.com/echo";
LocationText.Text = defaultLocation;
}
private void HTML5DemoForm_Load(object sender, EventArgs e)
{
}
private void HandleLog(string message)
{
this.BeginInvoke((InvokeDelegate)(() =>
{
Log("LOG: " + message);
}));
}
///
/// Button click handlers
///
private void ConnectButton_Click(object sender, EventArgs e)
{
// Immediately disable the connect button
ConnectButton.Enabled = false;
LocationText.Enabled = false;
//setup ChallengeHandler to handler Basic/Application Basic authentications
BasicChallengeHandler basicHandler = BasicChallengeHandler.Create();
basicHandler.LoginHandler = new LoginHandlerDemo(this);
factory.ChallengeHandler = basicHandler;
webSocket = factory.CreateWebSocket();
Log("CONNECT:" + LocationText.Text);
webSocket.OpenEvent += new OpenEventHandler(OpenHandler);
webSocket.CloseEvent += new CloseEventHandler(CloseHandler);
webSocket.MessageEvent += new MessageEventHandler(MessageHandler);
webSocket.Connect(LocationText.Text);
}
private void DisconnectButton_Click(object sender, EventArgs e)
{
Log("DISCONNECT");
webSocket.Close();
}
private void SendButton_Click(object sender, EventArgs e)
{
if (checkBox_Binary.Checked)
{
ByteBuffer buf = new ByteBuffer();
buf.PutString(MessageText.Text, Encoding.UTF8);
buf.Flip();
Log("SEND BINARY:" + buf.GetHexDump());
webSocket.Send(buf);
}
else
{
Log("SEND TEXT:" + MessageText.Text);
webSocket.Send(MessageText.Text);
}
}
///
/// Console output
///
private const int LOG_LIMIT = 50;
private Queue<string> logLines = new Queue<string>();
private void Log(string arg)
{
logLines.Enqueue(arg);
if (logLines.Count > LOG_LIMIT)
{
logLines.Dequeue();
}
string[] o = logLines.ToArray<string>();
o = o.Reverse<string>().ToArray<string>();
Output.Text = string.Join("\r\n", o);
}
private void ClearLogButton_Click(object sender, EventArgs e)
{
logLines.Clear();
Output.Text = "";
}
/*
* HTML5 Event Handlers
*/
///
/// Handle server authentication challenge request,
/// Popup a login window for username/password
///
public PasswordAuthentication AuthenticationHandler()
{
PasswordAuthentication credentials = null;
AutoResetEvent userInputCompleted = new AutoResetEvent(false);
this.BeginInvoke((InvokeDelegate)(() =>
{
LoginDemoForm loginForm = new LoginDemoForm();
if (loginForm.ShowDialog() == System.Windows.Forms.DialogResult.OK)
{
credentials = new PasswordAuthentication(loginForm.Username, loginForm.Password.ToCharArray());
}
userInputCompleted.Set();
}));
// wait user click 'OK' or 'Cancel' on login window
userInputCompleted.WaitOne();
return credentials;
}
///
/// HTML5 Event Handlers
///
private void OpenHandler(object sender, OpenEventArgs args)
{
this.BeginInvoke((InvokeDelegate)(() =>
{
Log("CONNECTED");
DisconnectButton.Enabled = true;
SendButton.Enabled = true;
}));
}
private void CloseHandler(object sender, CloseEventArgs args)
{
this.BeginInvoke((InvokeDelegate)(() =>
{
Log("DISCONNECTED");
LocationText.Enabled = true;
ConnectButton.Enabled = true;
DisconnectButton.Enabled = false;
SendButton.Enabled = false;
}));
}
private void MessageHandler(object sender, MessageEventArgs args)
{
this.BeginInvoke((InvokeDelegate)(() =>
{
switch(args.MessageType) {
case EventType.BINARY:
Log("BINARY MESSAGE: "+ BitConverter.ToString(args.Data.Array));
break;
case EventType.TEXT:
Log("TEXT MESSAGE: " + Encoding.UTF8.GetString(args.Data.Array));
break;
case EventType.CLOSE:
Log("CLOSED");
break;
}
}));
}
private void LocationText_TextChanged(object sender, EventArgs e)
{
if (LocationText.Text.Length == 0)
{
ConnectButton.Enabled = false;
}
else
{
ConnectButton.Enabled = true;
}
}
private void MainForm_Load(object sender, EventArgs e)
{
}
}
}