-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainWindow.java
More file actions
298 lines (249 loc) · 9.42 KB
/
MainWindow.java
File metadata and controls
298 lines (249 loc) · 9.42 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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
import java.awt.EventQueue;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JList;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.border.EmptyBorder;
/**
* This class is the main class of the application where everything is initialized
* and launched.
*
* @author Yasser Ghamlouch
*
*/
public class MainWindow extends JFrame {
/**
*
*/
private static final long serialVersionUID = 1L;
/**
*
*/
// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// GUI components
// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
private JPanel contentPane;
private JPanel leftPanel;
private JButton btnOnline;
private JButton btnOffline;
private JPanel rightPanel;
private JList<String> leftList;
private JList<String> rightList;
private JLabel lblSessions;
private JButton btnSourceConfiguration;
// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Member fields
// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
private String[] mOnlineUsers = null;
private String[] mOfflineUsers = null;
private String[] sessions;
// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Custom listeners
// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
private ActionListener btnOnlineListener = new ActionListener() {
public void actionPerformed(ActionEvent e) {
updateList(true);
}
};
private ActionListener btnOfflineListener = new ActionListener() {
public void actionPerformed(ActionEvent e) {
updateList(false);
}
};
private MouseListener listMouseListener = new MouseAdapter() {
public void mouseClicked(MouseEvent e) {
if (e.getClickCount() == 2 && e.getComponent() == leftList) {
updateSessionList();
} else if (e.getClickCount() == 2 && e.getComponent() == rightList) {
openGraphWindow();
}
}
};
private MouseListener configMouseListener = new MouseAdapter() {
public void mouseClicked(MouseEvent e) {
if (!leftList.isSelectionEmpty()) {
openConfigWindow();
} else {
JOptionPane
.showMessageDialog(
null,
"Please select the user for who you would like to da a configuration",
"Error", JOptionPane.ERROR_MESSAGE);
}
}
};
// /
// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Launch the application.
// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
MainWindow frame = new MainWindow();
frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Create the frame.
// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
public MainWindow() {
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setBounds(100, 100, 1018, 480);
contentPane = new JPanel();
contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
setContentPane(contentPane);
contentPane.setLayout(null);
leftPanel = new JPanel();
leftPanel.setBounds(10, 11, 331, 415);
getContentPane().add(leftPanel);
leftPanel.setLayout(null);
btnOnline = new JButton("Online");
btnOnline.setBounds(10, 11, 89, 23);
leftPanel.add(btnOnline);
btnOffline = new JButton("Offline");
btnOffline.setBounds(109, 11, 89, 23);
leftPanel.add(btnOffline);
// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Populating lists
// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
mOnlineUsers = updateOnlineUserList();
mOfflineUsers = updateOfflineUserList();
sessions = updateUserSessions();
// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Creating lists
// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
leftList = new JList<String>();
leftList.setListData(mOnlineUsers);
leftList.setBounds(10, 36, 311, 368);
leftList.setVisible(true);
leftPanel.add(leftList);
rightPanel = new JPanel();
rightPanel.setBounds(351, 11, 643, 415);
getContentPane().add(rightPanel);
rightPanel.setLayout(null);
lblSessions = new JLabel("Sessions");
lblSessions.setBounds(279, 11, 65, 14);
rightPanel.add(lblSessions);
btnSourceConfiguration = new JButton("Source Configuration");
btnSourceConfiguration.setBounds(10, 386, 185, 23);
rightPanel.add(btnSourceConfiguration);
rightList = new JList<String>();
rightList.setBounds(10, 36, 623, 339);
rightList.setVisible(true);
rightPanel.add(rightList);
// Listeners
btnOnline.addActionListener(btnOnlineListener);
btnOffline.addActionListener(btnOfflineListener);
leftList.addMouseListener(listMouseListener);
rightList.addMouseListener(listMouseListener);
btnSourceConfiguration.addMouseListener(configMouseListener);
}
// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Utils methods
// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
private void updateList(Boolean Online) {
if (Online) {
mOnlineUsers = updateOnlineUserList();
leftList.setListData(mOnlineUsers);
leftList.updateUI();
} else {
mOfflineUsers = updateOfflineUserList();
leftList.setListData(mOfflineUsers);
leftList.updateUI();
}
}
private void updateSessionList() {
sessions = updateUserSessions();
rightList.setListData(sessions);
rightList.updateUI();
}
private void openGraphWindow() {
GraphWindow graphWin = new GraphWindow();
graphWin.setVisible(true);
}
private void openConfigWindow() {
ConfigurationWindow configWin = new ConfigurationWindow();
configWin.setVisible(true);
}
private String[] updateOnlineUserList() {
DatabaseInterface db = new DatabaseInterface();
db.connect();
ResultSet res = null;
try {
res = db.runQuery("SELECT * FROM subject WHERE Online = TRUE");
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
ArrayList<String> ar = new ArrayList<String>();
try {
while (res.next()) {
String name = res.getString("Name");
ar.add(name);
}
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return ar.toArray(new String[ar.size()]);
}
private String[] updateOfflineUserList() {
DatabaseInterface db = new DatabaseInterface();
db.connect();
ResultSet res = null;
try {
res = db.runQuery("SELECT * FROM subject WHERE Online = FALSE");
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
ArrayList<String> ar = new ArrayList<String>();
try {
while (res.next()) {
String name = res.getString("Name");
ar.add(name);
}
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return ar.toArray(new String[ar.size()]);
}
private String[] updateUserSessions() {
DatabaseInterface db = new DatabaseInterface();
db.connect();
ResultSet res = null;
try {
res = db.runQuery("SELECT * FROM session");
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
ArrayList<String> ar = new ArrayList<String>();
try {
while (res.next()) {
String sessionID = "Session " + res.getString("SessionID");
ar.add(sessionID);
}
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return ar.toArray(new String[ar.size()]);
}
}