-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainWindow.xaml.cs
240 lines (213 loc) · 8.22 KB
/
MainWindow.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
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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
using System.Collections.ObjectModel;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.ServiceModel;
using BusinessTier;
using DataTier;
using System.Runtime.CompilerServices;
using System.ServiceModel.Channels;
namespace WPFApp
{
public partial class MainWindow : Window
{
public ObservableCollection<string> Messages { get; set; }
public ObservableCollection<string> Users { get; set; }
public string Username;
private CancellationTokenSource _messagesCancellationTokenSource;
private CancellationTokenSource _usersCancellationTokenSource;
private readonly BusinessServerInterface BusinessServerService;
public MainWindow()
{
InitializeComponent();
DataContext = this;
ChannelFactory<BusinessServerInterface> businessServerFactory;
NetTcpBinding tcp = new NetTcpBinding();
string URL = "net.tcp://0.0.0.0:8200/BusinessServerService";
EndpointAddress endpointAddress = new EndpointAddress(URL);
businessServerFactory = new ChannelFactory<BusinessServerInterface>(tcp, endpointAddress);
BusinessServerService = businessServerFactory.CreateChannel();
Messages = new ObservableCollection<string>();
Users = new ObservableCollection<string>();
_messagesCancellationTokenSource = new CancellationTokenSource();
_usersCancellationTokenSource = new CancellationTokenSource();
Username = "";
}
private async void Login_OnClick(object sender, RoutedEventArgs e)
{
string username = TextInput_Username.Text;
await Task.Run(() => Login(username));
}
public async void Logout_OnClick(object sender, RoutedEventArgs e)
{
await Task.Run(() => Logout());
}
public async void Send_OnClick(object sender, RoutedEventArgs e)
{
string message = TextInput_Message.Text;
await Task.Run(() => SendMessage(message));
}
public void Login(string username)
{
Text_LoginError.Dispatcher.Invoke(new Action(() => Text_LoginError.Text = ""));
if (string.IsNullOrWhiteSpace(username))
{
Text_LoginError.Dispatcher.Invoke(new Action(() => Text_LoginError.Text = "Please enter a username before logging in."));
return;
}
else if (username.Length > 10)
{
Text_LoginError.Dispatcher.Invoke(new Action(() => Text_LoginError.Text = "Please enter a shorter username."));
return;
}
else if (!BusinessServerService.AddUser(username))
{
Text_LoginError.Dispatcher.Invoke(new Action(() => Text_LoginError.Text = "Username is already taken."));
return;
}
else
{
EnableUI();
Username = username;
StartLoadingMessages();
StartLoadingUsers();
}
}
public void Logout()
{
BusinessServerService.RemoveUser(Username);
Username = "";
StopLoadingMessages();
StopLoadingUsers();
DisableUI();
}
public void SendMessage(string message)
{
BusinessServerService.SendMessage(message);
}
// For logging out
public void DisableUI()
{
Messages.Clear();
Users.Clear();
TextInput_Message.Dispatcher.Invoke(new Action(() => TextInput_Message.Text = ""));
TextInput_Username.Dispatcher.Invoke(new Action(() => TextInput_Username.IsEnabled = true));
Button_Login.Dispatcher.Invoke(new Action(() => Button_Login.IsEnabled = true));
Button_Logout.Dispatcher.Invoke(new Action(() => Button_Logout.IsEnabled = false));
Button_Send.Dispatcher.Invoke(new Action(() => Button_Send.IsEnabled = false));
List_Users.Dispatcher.Invoke(new Action(() => List_Users.IsEnabled = false));
List_Messages.Dispatcher.Invoke(new Action(() => List_Messages.IsEnabled = false));
}
// For logging in
public void EnableUI()
{
TextInput_Username.Dispatcher.Invoke(new Action(() => TextInput_Username.IsEnabled = false));
Button_Login.Dispatcher.Invoke(new Action(() => Button_Login.IsEnabled = false));
Button_Logout.Dispatcher.Invoke(new Action(() => Button_Logout.IsEnabled = true));
Button_Send.Dispatcher.Invoke(new Action(() => Button_Send.IsEnabled = true));
List_Users.Dispatcher.Invoke(new Action(() => List_Users.IsEnabled = true));
List_Messages.Dispatcher.Invoke(new Action(() => List_Messages.IsEnabled = true));
}
public void StartLoadingMessages()
{
_messagesCancellationTokenSource = new CancellationTokenSource();
Task.Run(async () =>
{
try
{
while (!_messagesCancellationTokenSource.Token.IsCancellationRequested)
{
await LoadMessages();
await Task.Delay(1000, _messagesCancellationTokenSource.Token); // Supports cooperative cancellation
}
}
catch (TaskCanceledException) { }
catch (Exception)
{
await Dispatcher.InvokeAsync(() =>
Text_SendError.Text = "Error loading messages."
);
}
});
}
public void StartLoadingUsers()
{
_usersCancellationTokenSource = new CancellationTokenSource();
Task.Run(async () =>
{
try
{
while (!_usersCancellationTokenSource.Token.IsCancellationRequested)
{
await LoadUsers();
await Task.Delay(1000, _usersCancellationTokenSource.Token); // Supports cooperative cancellation
}
}
catch (TaskCanceledException) { }
catch (Exception)
{
await Dispatcher.InvokeAsync(() =>
Text_SendError.Text = "Error loading user list."
);
}
});
}
private async Task LoadMessages()
{
try
{
List<string> messages = await Task.Run(() => BusinessServerService.GetMessages());
await Dispatcher.InvokeAsync(() =>
{
Messages.Clear();
foreach (string message in messages)
{
Messages.Add(message);
}
});
}
catch (Exception)
{
await Dispatcher.InvokeAsync(() =>
Text_SendError.Text = "Error loading messages."
);
}
}
private async Task LoadUsers()
{
try
{
List<string> users = await Task.Run(() => BusinessServerService.GetUsers());
await Dispatcher.InvokeAsync(() =>
{
Users.Clear();
foreach (string user in users)
{
Users.Add(user);
}
});
}
catch (Exception)
{
await Dispatcher.InvokeAsync(() =>
Text_SendError.Text = "Error loading user list."
);
}
}
public void StopLoadingMessages()
{
_messagesCancellationTokenSource?.Cancel();
}
public void StopLoadingUsers()
{
_usersCancellationTokenSource?.Cancel();
}
}
}