blob: 2519089e539a8fe0fc0d6c09871b7b89a63903da [file] [log] [blame]
Zhenkai Zhu6d589aa2012-05-29 17:34:35 -07001#include <QtGui>
2#include "chatdialog.h"
Zhenkai Zhu85845d22012-06-01 23:10:43 -07003#include "settingdialog.h"
Zhenkai Zhu5a8d5aa2012-05-30 21:25:23 -07004#include <ctime>
Zhenkai Zhub6338822012-05-31 13:27:24 -07005#include <iostream>
Zhenkai Zhu7e9b06d2012-06-02 00:44:42 -07006#include <QTimer>
Zhenkai Zhu10ccb5a2012-06-04 21:55:14 -07007#include <QMetaType>
Zhenkai Zhu3a008fc2012-06-08 17:36:39 -07008#include <QMessageBox>
Zhenkai Zhu59245aa2012-09-26 16:07:04 -07009#include <boost/random/random_device.hpp>
10#include <boost/random/uniform_int_distribution.hpp>
Zhenkai Zhu6d589aa2012-05-29 17:34:35 -070011
Zhenkai Zhu0b3fa332012-09-27 21:58:43 -070012#define BROADCAST_PREFIX_FOR_SYNC_DEMO "/ndn/broadcast/chronos"
Zhenkai Zhu82a62752012-06-04 17:11:04 -070013
Zhenkai Zhuee5c90f2012-09-27 14:05:41 -070014static const int HELLO_INTERVAL = 90; // seconds
Zhenkai Zhu3e26bb42012-09-27 11:04:09 -070015
Zhenkai Zhu6d589aa2012-05-29 17:34:35 -070016ChatDialog::ChatDialog(QWidget *parent)
Zhenkai Zhu25e33e52012-09-28 13:00:07 -070017 : QDialog(parent), m_sock(NULL), m_lastMsgTime(0)
Zhenkai Zhu6d589aa2012-05-29 17:34:35 -070018{
Zhenkai Zhu10ccb5a2012-06-04 21:55:14 -070019 // have to register this, otherwise
20 // the signal-slot system won't recognize this type
Zhenkai Zhu64f9ede2012-06-05 11:32:00 -070021 qRegisterMetaType<std::vector<Sync::MissingDataInfo> >("std::vector<Sync::MissingDataInfo>");
22 qRegisterMetaType<size_t>("size_t");
Zhenkai Zhu6d589aa2012-05-29 17:34:35 -070023 setupUi(this);
Zhenkai Zhu82a62752012-06-04 17:11:04 -070024 m_session = time(NULL);
Zhenkai Zhuee5c90f2012-09-27 14:05:41 -070025 boost::random::random_device rng;
26 boost::random::uniform_int_distribution<> uniform(1, 29000);
27 m_randomizedInterval = HELLO_INTERVAL * 1000 + uniform(rng);
Zhenkai Zhu7e9b06d2012-06-02 00:44:42 -070028
29 readSettings();
Zhenkai Zhu82a62752012-06-04 17:11:04 -070030
Zhenkai Zhu7e9b06d2012-06-02 00:44:42 -070031 updateLabels();
32
Zhenkai Zhu6d589aa2012-05-29 17:34:35 -070033 lineEdit->setFocusPolicy(Qt::StrongFocus);
Zhenkai Zhu82a62752012-06-04 17:11:04 -070034 m_scene = new DigestTreeScene(this);
Zhenkai Zhub45e38a2012-06-01 15:44:36 -070035
Zhenkai Zhu82a62752012-06-04 17:11:04 -070036 treeViewer->setScene(m_scene);
37 m_scene->plot("Empty");
38 QRectF rect = m_scene->itemsBoundingRect();
39 m_scene->setSceneRect(rect);
40
Zhenkai Zhu9036e032012-09-27 20:59:33 -070041 listView->setStyleSheet("QListView { alternate-background-color: white; background: #F0F0F0; color: darkGreen; font: bold large; }");
Zhenkai Zhuf55f4382012-09-28 10:58:54 -070042 listView->setEditTriggers(QAbstractItemView::NoEditTriggers);
43 listView->setDragDropMode(QAbstractItemView::NoDragDrop);
44 listView->setSelectionMode(QAbstractItemView::NoSelection);
Zhenkai Zhu6082ede2012-09-27 17:28:46 -070045 m_rosterModel = new QStringListModel(this);
46 listView->setModel(m_rosterModel);
47
Zhenkai Zhu86df7412012-09-27 16:30:20 -070048 createActions();
49 createTrayIcon();
50 m_timer = new QTimer(this);
51 connect(lineEdit, SIGNAL(returnPressed()), this, SLOT(returnPressed()));
52 connect(setButton, SIGNAL(pressed()), this, SLOT(buttonPressed()));
Zhenkai Zhub60b7e12012-09-28 11:34:21 -070053 connect(treeButton, SIGNAL(pressed()), this, SLOT(treeButtonPressed()));
Zhenkai Zhu86df7412012-09-27 16:30:20 -070054 connect(this, SIGNAL(dataReceived(QString, const char *, size_t, bool)), this, SLOT(processData(QString, const char *, size_t, bool)));
55 connect(this, SIGNAL(treeUpdated(const std::vector<Sync::MissingDataInfo>)), this, SLOT(processTreeUpdate(const std::vector<Sync::MissingDataInfo>)));
Zhenkai Zhu86df7412012-09-27 16:30:20 -070056 connect(m_timer, SIGNAL(timeout()), this, SLOT(replot()));
57 connect(m_scene, SIGNAL(replot()), this, SLOT(replot()));
58 connect(trayIcon, SIGNAL(messageClicked()), this, SLOT(showNormal()));
59 connect(trayIcon, SIGNAL(activated(QSystemTrayIcon::ActivationReason)), this, SLOT(iconActivated(QSystemTrayIcon::ActivationReason)));
Zhenkai Zhu25e33e52012-09-28 13:00:07 -070060 connect(m_scene, SIGNAL(rosterChanged(QStringList)), this, SLOT(updateRosterList(QStringList)));
Zhenkai Zhu86df7412012-09-27 16:30:20 -070061
Zhenkai Zhu82a62752012-06-04 17:11:04 -070062 // create sync socket
63 if(!m_user.getChatroom().isEmpty()) {
64 std::string syncPrefix = BROADCAST_PREFIX_FOR_SYNC_DEMO;
65 syncPrefix += "/";
66 syncPrefix += m_user.getChatroom().toStdString();
Zhenkai Zhua4fb1242012-06-05 20:26:05 -070067 try
68 {
Zhenkai Zhu2425b6a2012-09-26 17:11:44 -070069 m_sock = new Sync::SyncAppSocket(syncPrefix, bind(&ChatDialog::processTreeUpdateWrapper, this, _1, _2), bind(&ChatDialog::processRemoveWrapper, this, _1));
Zhenkai Zhu25e33e52012-09-28 13:00:07 -070070 sendJoin();
Zhenkai Zhu86df7412012-09-27 16:30:20 -070071 m_timer->start(FRESHNESS * 2000);
Zhenkai Zhua4fb1242012-06-05 20:26:05 -070072 }
73 catch (Sync::CcnxOperationException ex)
74 {
Zhenkai Zhu0b3fa332012-09-27 21:58:43 -070075 QMessageBox::critical(this, tr("Chronos"), tr("Canno connect to ccnd.\n Have you started your ccnd?"), QMessageBox::Ok);
Zhenkai Zhua4fb1242012-06-05 20:26:05 -070076 std::exit(1);
77 }
Zhenkai Zhu82a62752012-06-04 17:11:04 -070078 }
Zhenkai Zhu3a008fc2012-06-08 17:36:39 -070079
Zhenkai Zhu5a8d5aa2012-05-30 21:25:23 -070080}
81
Zhenkai Zhu82a62752012-06-04 17:11:04 -070082ChatDialog::~ChatDialog()
83{
84 if (m_sock != NULL)
85 {
Zhenkai Zhu25e33e52012-09-28 13:00:07 -070086 SyncDemo::ChatMessage msg;
Zhenkai Zhub5b78462012-09-28 14:10:37 -070087 formControlMessage(msg, SyncDemo::ChatMessage::LEAVE);
Zhenkai Zhu25e33e52012-09-28 13:00:07 -070088 sendMsg(msg);
Zhenkai Zhu3859e192012-09-28 14:04:26 -070089 sleep(1);
Zhenkai Zhu591e8c32012-09-26 11:57:50 -070090 m_sock->remove(m_user.getPrefix().toStdString());
Zhenkai Zhu3859e192012-09-28 14:04:26 -070091 sleep(1);
Zhenkai Zhu25e33e52012-09-28 13:00:07 -070092#ifdef __DEBUG
93 std::cout << "Sync REMOVE signal sent" << std::endl;
94#endif
Zhenkai Zhu82a62752012-06-04 17:11:04 -070095 delete m_sock;
96 m_sock = NULL;
97 }
98}
99
Zhenkai Zhu86df7412012-09-27 16:30:20 -0700100void
101ChatDialog::replot()
102{
Zhenkai Zhu9036e032012-09-27 20:59:33 -0700103 boost::recursive_mutex::scoped_lock lock(m_sceneMutex);
Zhenkai Zhu86df7412012-09-27 16:30:20 -0700104 m_scene->plot(m_sock->getRootDigest().c_str());
105}
106
Zhenkai Zhu6082ede2012-09-27 17:28:46 -0700107void
Zhenkai Zhu25e33e52012-09-28 13:00:07 -0700108ChatDialog::updateRosterList(QStringList staleUserList)
Zhenkai Zhu6082ede2012-09-27 17:28:46 -0700109{
Zhenkai Zhu9036e032012-09-27 20:59:33 -0700110 boost::recursive_mutex::scoped_lock lock(m_sceneMutex);
Zhenkai Zhu6082ede2012-09-27 17:28:46 -0700111 QStringList rosterList = m_scene->getRosterList();
112 m_rosterModel->setStringList(rosterList);
Zhenkai Zhu25e33e52012-09-28 13:00:07 -0700113 QString user;
114 QStringListIterator it(staleUserList);
115 while(it.hasNext())
116 {
117 SyncDemo::ChatMessage msg;
Zhenkai Zhub5b78462012-09-28 14:10:37 -0700118 formControlMessage(msg, SyncDemo::ChatMessage::LEAVE);
Zhenkai Zhu25e33e52012-09-28 13:00:07 -0700119 msg.set_from(it.next().toStdString());
120 appendMessage(msg);
121 }
Zhenkai Zhu6082ede2012-09-27 17:28:46 -0700122}
123
Zhenkai Zhu3a008fc2012-06-08 17:36:39 -0700124void
125ChatDialog::setVisible(bool visible)
126{
127 minimizeAction->setEnabled(visible);
128 maximizeAction->setEnabled(!isMaximized());
129 restoreAction->setEnabled(isMaximized() || !visible);
130 QDialog::setVisible(visible);
131}
132
133void
134ChatDialog::closeEvent(QCloseEvent *e)
135{
136 if (trayIcon->isVisible())
137 {
Zhenkai Zhu0b3fa332012-09-27 21:58:43 -0700138 QMessageBox::information(this, tr("Chronos"),
Zhenkai Zhu3a008fc2012-06-08 17:36:39 -0700139 tr("The program will keep running in the "
140 "system tray. To terminate the program"
141 "choose <b>Quit</b> in the context memu"
142 "of the system tray entry."));
143 hide();
144 e->ignore();
145 }
146}
147
148void
149ChatDialog::changeEvent(QEvent *e)
150{
151 switch(e->type())
152 {
153 case QEvent::ActivationChange:
154 if (isActiveWindow())
155 {
156 trayIcon->setIcon(QIcon(":/images/icon_small.png"));
157 }
158 break;
159 default:
160 break;
161 }
162}
163
Zhenkai Zhu5a8d5aa2012-05-30 21:25:23 -0700164void
Zhenkai Zhu10ccb5a2012-06-04 21:55:14 -0700165ChatDialog::appendMessage(const SyncDemo::ChatMessage msg)
Zhenkai Zhu5a8d5aa2012-05-30 21:25:23 -0700166{
Zhenkai Zhu9036e032012-09-27 20:59:33 -0700167 boost::recursive_mutex::scoped_lock lock(m_msgMutex);
Zhenkai Zhub6338822012-05-31 13:27:24 -0700168
Zhenkai Zhu25e33e52012-09-28 13:00:07 -0700169 if (msg.type() == SyncDemo::ChatMessage::CHAT)
Zhenkai Zhub98e6022012-09-27 13:48:23 -0700170 {
Zhenkai Zhub98e6022012-09-27 13:48:23 -0700171
Zhenkai Zhu25e33e52012-09-28 13:00:07 -0700172 if (!msg.has_data())
Zhenkai Zhub98e6022012-09-27 13:48:23 -0700173 {
Zhenkai Zhu25e33e52012-09-28 13:00:07 -0700174 return;
Zhenkai Zhub98e6022012-09-27 13:48:23 -0700175 }
Zhenkai Zhu25e33e52012-09-28 13:00:07 -0700176
177 if (msg.from().empty() || msg.data().empty())
178 {
179 return;
180 }
181
182 if (!msg.has_timestamp())
183 {
184 return;
185 }
186
187 QTextCharFormat nickFormat;
188 nickFormat.setForeground(Qt::darkGreen);
189 nickFormat.setFontWeight(QFont::Bold);
190 nickFormat.setFontUnderline(true);
191 nickFormat.setUnderlineColor(Qt::gray);
Zhenkai Zhu25e33e52012-09-28 13:00:07 -0700192
193 QTextCursor cursor(textEdit->textCursor());
194 cursor.movePosition(QTextCursor::End);
195 QTextTableFormat tableFormat;
196 tableFormat.setBorder(0);
197 QTextTable *table = cursor.insertTable(1, 2, tableFormat);
198 QString from = QString("%1 ").arg(msg.from().c_str());
199 QTextTableCell fromCell = table->cellAt(0, 0);
200 fromCell.setFormat(nickFormat);
201 fromCell.firstCursorPosition().insertText(from);
Zhenkai Zhu560ef1b2012-09-28 14:23:33 -0700202
Zhenkai Zhu25e33e52012-09-28 13:00:07 -0700203 time_t timestamp = msg.timestamp();
Zhenkai Zhu560ef1b2012-09-28 14:23:33 -0700204 printTimeInCell(table, timestamp);
Zhenkai Zhu25e33e52012-09-28 13:00:07 -0700205
206 QTextCursor nextCursor(textEdit->textCursor());
207 nextCursor.movePosition(QTextCursor::End);
208 table = nextCursor.insertTable(1, 1, tableFormat);
209 table->cellAt(0, 0).firstCursorPosition().insertText(msg.data().c_str());
210 showMessage(from, msg.data().c_str());
Zhenkai Zhub98e6022012-09-27 13:48:23 -0700211 }
212
Zhenkai Zhu25e33e52012-09-28 13:00:07 -0700213 if (msg.type() == SyncDemo::ChatMessage::JOIN || msg.type() == SyncDemo::ChatMessage::LEAVE)
214 {
215 QTextCharFormat nickFormat;
216 nickFormat.setForeground(Qt::gray);
217 nickFormat.setFontWeight(QFont::Bold);
218 nickFormat.setFontUnderline(true);
219 nickFormat.setUnderlineColor(Qt::gray);
Zhenkai Zhub98e6022012-09-27 13:48:23 -0700220
Zhenkai Zhu25e33e52012-09-28 13:00:07 -0700221 QTextCursor cursor(textEdit->textCursor());
222 cursor.movePosition(QTextCursor::End);
223 QTextTableFormat tableFormat;
224 tableFormat.setBorder(0);
225 QTextTable *table = cursor.insertTable(1, 2, tableFormat);
226 QString action;
227 if (msg.type() == SyncDemo::ChatMessage::JOIN)
228 {
229 action = "enters room";
230 }
231 else
232 {
233 action = "leaves room";
234 }
235
236 QString from = QString("%1 %2 ").arg(msg.from().c_str()).arg(action);
237 QTextTableCell fromCell = table->cellAt(0, 0);
238 fromCell.setFormat(nickFormat);
239 fromCell.firstCursorPosition().insertText(from);
Zhenkai Zhu25e33e52012-09-28 13:00:07 -0700240
Zhenkai Zhu560ef1b2012-09-28 14:23:33 -0700241 time_t timestamp = msg.timestamp();
242 printTimeInCell(table, timestamp);
Zhenkai Zhu25e33e52012-09-28 13:00:07 -0700243 }
244
Zhenkai Zhu5a8d5aa2012-05-30 21:25:23 -0700245 QScrollBar *bar = textEdit->verticalScrollBar();
246 bar->setValue(bar->maximum());
247}
248
Zhenkai Zhu560ef1b2012-09-28 14:23:33 -0700249void
250ChatDialog::printTimeInCell(QTextTable *table, time_t timestamp)
251{
252 QTextCharFormat timeFormat;
253 timeFormat.setForeground(Qt::gray);
254 timeFormat.setFontUnderline(true);
255 timeFormat.setUnderlineColor(Qt::gray);
256 QTextTableCell timeCell = table->cellAt(0, 1);
257 timeCell.setFormat(timeFormat);
258 timeCell.firstCursorPosition().insertText(formatTime(timestamp));
259}
260
261QString
262ChatDialog::formatTime(time_t timestamp)
263{
264 struct tm *tm_time = localtime(&timestamp);
265 int hour = tm_time->tm_hour;
266 QString amOrPM;
267 if (hour > 12)
268 {
269 hour -= 12;
270 amOrPM = "PM";
271 }
272 else
273 {
274 amOrPM = "AM";
275 if (hour == 0)
276 {
277 hour = 12;
278 }
279 }
280
281 char textTime[12];
282 sprintf(textTime, "%d:%02d:%02d %s", hour, tm_time->tm_min, tm_time->tm_sec, amOrPM.toStdString().c_str());
283 return QString(textTime);
284}
285
Zhenkai Zhu85845d22012-06-01 23:10:43 -0700286void
Zhenkai Zhu64f9ede2012-06-05 11:32:00 -0700287ChatDialog::processTreeUpdateWrapper(const std::vector<Sync::MissingDataInfo> v, Sync::SyncAppSocket *sock)
288{
289 emit treeUpdated(v);
Zhenkai Zhud1c5a972012-06-05 14:07:41 -0700290#ifdef __DEBUG
291 std::cout << "<<< Tree update signal emitted" << std::endl;
292#endif
Zhenkai Zhu64f9ede2012-06-05 11:32:00 -0700293}
294
295void
296ChatDialog::processTreeUpdate(const std::vector<Sync::MissingDataInfo> v)
Zhenkai Zhu82a62752012-06-04 17:11:04 -0700297{
Zhenkai Zhud1c5a972012-06-05 14:07:41 -0700298#ifdef __DEBUG
299 std::cout << "<<< processing Tree Update" << std::endl;
300#endif
Zhenkai Zhu82a62752012-06-04 17:11:04 -0700301 if (v.empty())
302 {
303 return;
304 }
305
306 // reflect the changes on digest tree
Zhenkai Zhu44b43752012-06-05 21:18:37 -0700307 {
Zhenkai Zhu9036e032012-09-27 20:59:33 -0700308 boost::recursive_mutex::scoped_lock lock(m_sceneMutex);
Zhenkai Zhu44b43752012-06-05 21:18:37 -0700309 m_scene->processUpdate(v, m_sock->getRootDigest().c_str());
310 }
Zhenkai Zhu82a62752012-06-04 17:11:04 -0700311
312 int n = v.size();
313 int totalMissingPackets = 0;
314 for (int i = 0; i < n; i++)
315 {
316 totalMissingPackets += v[i].high.getSeq() - v[i].low.getSeq() + 1;
317 }
318
Zhenkai Zhubb198112012-09-27 11:31:42 -0700319 for (int i = 0; i < n; i++)
320 {
321 if (totalMissingPackets < 4)
Zhenkai Zhu82a62752012-06-04 17:11:04 -0700322 {
323 for (Sync::SeqNo seq = v[i].low; seq <= v[i].high; ++seq)
324 {
Zhenkai Zhu64f9ede2012-06-05 11:32:00 -0700325 m_sock->fetchRaw(v[i].prefix, seq, bind(&ChatDialog::processDataWrapper, this, _1, _2, _3), 2);
Zhenkai Zhud1c5a972012-06-05 14:07:41 -0700326#ifdef __DEBUG
327 std::cout << "<<< Fetching " << v[i].prefix << "/" <<seq.getSession() <<"/" << seq.getSeq() << std::endl;
328#endif
Zhenkai Zhu82a62752012-06-04 17:11:04 -0700329 }
330 }
Zhenkai Zhubb198112012-09-27 11:31:42 -0700331 else
332 {
333 m_sock->fetchRaw(v[i].prefix, v[i].high, bind(&ChatDialog::processDataNoShowWrapper, this, _1, _2, _3), 2);
334 }
Zhenkai Zhu82a62752012-06-04 17:11:04 -0700335 }
336
337 // adjust the view
338 fitView();
339
340}
341
342void
Zhenkai Zhu64f9ede2012-06-05 11:32:00 -0700343ChatDialog::processDataWrapper(std::string name, const char *buf, size_t len)
344{
Zhenkai Zhubb198112012-09-27 11:31:42 -0700345 emit dataReceived(name.c_str(), buf, len, true);
Zhenkai Zhud1c5a972012-06-05 14:07:41 -0700346#ifdef __DEBUG
347 std::cout <<"<<< " << name << " fetched" << std::endl;
348#endif
Zhenkai Zhu64f9ede2012-06-05 11:32:00 -0700349}
350
351void
Zhenkai Zhubb198112012-09-27 11:31:42 -0700352ChatDialog::processDataNoShowWrapper(std::string name, const char *buf, size_t len)
353{
354 emit dataReceived(name.c_str(), buf, len, false);
355}
356
357void
358ChatDialog::processData(QString name, const char *buf, size_t len, bool show)
Zhenkai Zhu82a62752012-06-04 17:11:04 -0700359{
360 SyncDemo::ChatMessage msg;
361 if (!msg.ParseFromArray(buf, len))
362 {
Zhenkai Zhubb198112012-09-27 11:31:42 -0700363 std::cerr << "Errrrr.. Can not parse msg with name: " << name.toStdString() << ". what is happening?" << std::endl;
Zhenkai Zhu82a62752012-06-04 17:11:04 -0700364 }
365
Zhenkai Zhu10ccb5a2012-06-04 21:55:14 -0700366 // display msg received from network
367 // we have to do so; this function is called by ccnd thread
368 // so if we call appendMsg directly
369 // Qt crash as "QObject: Cannot create children for a parent that is in a different thread"
370 // the "cannonical" way to is use signal-slot
Zhenkai Zhubb198112012-09-27 11:31:42 -0700371 if (show)
372 {
373 appendMessage(msg);
374 }
Zhenkai Zhu82a62752012-06-04 17:11:04 -0700375
376 // update the tree view
Zhenkai Zhu097bfe72012-06-05 14:30:17 -0700377 std::string stdStrName = name.toStdString();
378 std::string stdStrNameWithoutSeq = stdStrName.substr(0, stdStrName.find_last_of('/'));
379 std::string prefix = stdStrNameWithoutSeq.substr(0, stdStrNameWithoutSeq.find_last_of('/'));
380#ifdef __DEBUG
381 std::cout <<"<<< updating scene for" << prefix << ": " << msg.from() << std::endl;
382#endif
Zhenkai Zhu25e33e52012-09-28 13:00:07 -0700383 if (msg.type() == SyncDemo::ChatMessage::LEAVE)
384 {
385 processRemove(prefix.c_str());
386 }
387 else
Zhenkai Zhu44b43752012-06-05 21:18:37 -0700388 {
Zhenkai Zhu9036e032012-09-27 20:59:33 -0700389 boost::recursive_mutex::scoped_lock lock(m_sceneMutex);
Zhenkai Zhu44b43752012-06-05 21:18:37 -0700390 m_scene->msgReceived(prefix.c_str(), msg.from().c_str());
391 }
Zhenkai Zhuc5470612012-06-05 12:28:59 -0700392 fitView();
Zhenkai Zhu82a62752012-06-04 17:11:04 -0700393}
394
395void
Zhenkai Zhu2425b6a2012-09-26 17:11:44 -0700396ChatDialog::processRemoveWrapper(std::string prefix)
397{
Zhenkai Zhu25e33e52012-09-28 13:00:07 -0700398#ifdef __DEBUG
399 std::cout << "Sync REMOVE signal received for prefix: " << prefix << std::endl;
400#endif
401 //emit removeReceived(prefix.c_str());
Zhenkai Zhu2425b6a2012-09-26 17:11:44 -0700402}
403
404void
405ChatDialog::processRemove(QString prefix)
Zhenkai Zhu82a62752012-06-04 17:11:04 -0700406{
Zhenkai Zhu591e8c32012-09-26 11:57:50 -0700407#ifdef __DEBUG
Zhenkai Zhu2425b6a2012-09-26 17:11:44 -0700408 std::cout << "<<< remove node for prefix" << prefix.toStdString() << std::endl;
Zhenkai Zhu591e8c32012-09-26 11:57:50 -0700409#endif
Zhenkai Zhu2425b6a2012-09-26 17:11:44 -0700410 bool removed = m_scene->removeNode(prefix);
Zhenkai Zhu591e8c32012-09-26 11:57:50 -0700411 if (removed)
412 {
Zhenkai Zhu9036e032012-09-27 20:59:33 -0700413 boost::recursive_mutex::scoped_lock lock(m_sceneMutex);
Zhenkai Zhu591e8c32012-09-26 11:57:50 -0700414 m_scene->plot(m_sock->getRootDigest().c_str());
415 }
Zhenkai Zhu82a62752012-06-04 17:11:04 -0700416}
417
418void
Zhenkai Zhu85845d22012-06-01 23:10:43 -0700419ChatDialog::formChatMessage(const QString &text, SyncDemo::ChatMessage &msg) {
Zhenkai Zhu71b42cb2012-06-04 09:42:53 -0700420 msg.set_from(m_user.getNick().toStdString());
421 msg.set_to(m_user.getChatroom().toStdString());
Zhenkai Zhu85845d22012-06-01 23:10:43 -0700422 msg.set_data(text.toStdString());
423 time_t seconds = time(NULL);
424 msg.set_timestamp(seconds);
Zhenkai Zhu82a62752012-06-04 17:11:04 -0700425 msg.set_type(SyncDemo::ChatMessage::CHAT);
Zhenkai Zhu5a8d5aa2012-05-30 21:25:23 -0700426}
427
Zhenkai Zhu2425b6a2012-09-26 17:11:44 -0700428void
Zhenkai Zhub5b78462012-09-28 14:10:37 -0700429ChatDialog::formControlMessage(SyncDemo::ChatMessage &msg, SyncDemo::ChatMessage::ChatMessageType type)
Zhenkai Zhu2425b6a2012-09-26 17:11:44 -0700430{
431 msg.set_from(m_user.getNick().toStdString());
432 msg.set_to(m_user.getChatroom().toStdString());
433 time_t seconds = time(NULL);
434 msg.set_timestamp(seconds);
Zhenkai Zhub5b78462012-09-28 14:10:37 -0700435 msg.set_type(type);
Zhenkai Zhu2425b6a2012-09-26 17:11:44 -0700436}
437
Zhenkai Zhu59245aa2012-09-26 16:07:04 -0700438static std::string chars("qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM0123456789");
439
440QString
441ChatDialog::getRandomString()
442{
443 std::string randStr;
444 boost::random::random_device rng;
445 boost::random::uniform_int_distribution<> index_dist(0, chars.size() - 1);
446 for (int i = 0; i < 10; i ++)
447 {
448 randStr += chars[index_dist(rng)];
449 }
450 return randStr.c_str();
451}
452
Zhenkai Zhu82a62752012-06-04 17:11:04 -0700453bool
Zhenkai Zhu7e9b06d2012-06-02 00:44:42 -0700454ChatDialog::readSettings()
455{
Zhenkai Zhu64f9ede2012-06-05 11:32:00 -0700456#ifndef __DEBUG
Zhenkai Zhu7e9b06d2012-06-02 00:44:42 -0700457 QSettings s(ORGANIZATION, APPLICATION);
Zhenkai Zhu71b42cb2012-06-04 09:42:53 -0700458 QString nick = s.value("nick", "").toString();
459 QString chatroom = s.value("chatroom", "").toString();
Zhenkai Zhue95c64a2012-09-27 21:46:44 -0700460 QString originPrefix = s.value("originPrefix", "").toString();
Zhenkai Zhu71b42cb2012-06-04 09:42:53 -0700461 if (nick == "" || chatroom == "" || prefix == "") {
Zhenkai Zhu7e9b06d2012-06-02 00:44:42 -0700462 QTimer::singleShot(500, this, SLOT(buttonPressed()));
Zhenkai Zhu82a62752012-06-04 17:11:04 -0700463 return false;
Zhenkai Zhu7e9b06d2012-06-02 00:44:42 -0700464 }
Zhenkai Zhu71b42cb2012-06-04 09:42:53 -0700465 else {
466 m_user.setNick(nick);
467 m_user.setChatroom(chatroom);
Zhenkai Zhue95c64a2012-09-27 21:46:44 -0700468 m_user.setOriginPrefix(originPrefix);
469 m_user.setPrefix(origin_prefix + "/" + chatroom + "/" + getRandomString());
Zhenkai Zhu82a62752012-06-04 17:11:04 -0700470 return true;
Zhenkai Zhu71b42cb2012-06-04 09:42:53 -0700471 }
Zhenkai Zhu64f9ede2012-06-05 11:32:00 -0700472#else
473 QTimer::singleShot(500, this, SLOT(buttonPressed()));
474 return false;
475#endif
Zhenkai Zhu7e9b06d2012-06-02 00:44:42 -0700476}
477
478void
479ChatDialog::writeSettings()
480{
Zhenkai Zhu64f9ede2012-06-05 11:32:00 -0700481#ifndef __DEBUG
Zhenkai Zhu7e9b06d2012-06-02 00:44:42 -0700482 QSettings s(ORGANIZATION, APPLICATION);
Zhenkai Zhu71b42cb2012-06-04 09:42:53 -0700483 s.setValue("nick", m_user.getNick());
484 s.setValue("chatroom", m_user.getChatroom());
Zhenkai Zhue95c64a2012-09-27 21:46:44 -0700485 s.setValue("originPrefix", m_user.getOriginPrefix());
Zhenkai Zhu64f9ede2012-06-05 11:32:00 -0700486#endif
Zhenkai Zhu7e9b06d2012-06-02 00:44:42 -0700487}
488
489void
490ChatDialog::updateLabels()
491{
Zhenkai Zhu76ff02b2012-09-27 21:11:03 -0700492 QString settingDisp = QString("Chatroom: %1").arg(m_user.getChatroom());
493 infoLabel->setStyleSheet("QLabel {color: #630; font-size: 16px; font: bold \"Verdana\";}");
Zhenkai Zhu7e9b06d2012-06-02 00:44:42 -0700494 infoLabel->setText(settingDisp);
Zhenkai Zhub60b7e12012-09-28 11:34:21 -0700495 //QString prefixDisp = QString("<Prefix: %1>").arg(m_user.getPrefix());
496 //prefixLabel->setText(prefixDisp);
Zhenkai Zhu7e9b06d2012-06-02 00:44:42 -0700497}
498
Zhenkai Zhu5a8d5aa2012-05-30 21:25:23 -0700499void
500ChatDialog::returnPressed()
501{
502 QString text = lineEdit->text();
503 if (text.isEmpty())
504 return;
505
Zhenkai Zhub6338822012-05-31 13:27:24 -0700506 lineEdit->clear();
507
Zhenkai Zhu5a8d5aa2012-05-30 21:25:23 -0700508 SyncDemo::ChatMessage msg;
509 formChatMessage(text, msg);
510
Zhenkai Zhu5a8d5aa2012-05-30 21:25:23 -0700511 appendMessage(msg);
Zhenkai Zhu82a62752012-06-04 17:11:04 -0700512
Zhenkai Zhu2425b6a2012-09-26 17:11:44 -0700513 sendMsg(msg);
514
515 fitView();
516}
517
518void
519ChatDialog::sendMsg(SyncDemo::ChatMessage &msg)
520{
Zhenkai Zhu82a62752012-06-04 17:11:04 -0700521 // send msg
522 size_t size = msg.ByteSize();
523 char *buf = new char[size];
524 msg.SerializeToArray(buf, size);
525 if (!msg.IsInitialized())
526 {
527 std::cerr << "Errrrr.. msg was not probally initialized "<<__FILE__ <<":"<<__LINE__<<". what is happening?" << std::endl;
528 abort();
529 }
Zhenkai Zhu3e26bb42012-09-27 11:04:09 -0700530 m_sock->publishRaw(m_user.getPrefix().toStdString(), m_session, buf, size, FRESHNESS);
Zhenkai Zhuc5470612012-06-05 12:28:59 -0700531
Zhenkai Zhu2425b6a2012-09-26 17:11:44 -0700532 delete buf;
533
Zhenkai Zhu3e26bb42012-09-27 11:04:09 -0700534 m_lastMsgTime = time(NULL);
535
Zhenkai Zhuc5470612012-06-05 12:28:59 -0700536 int nextSequence = m_sock->getNextSeq(m_user.getPrefix().toStdString(), m_session);
Zhenkai Zhud1c5a972012-06-05 14:07:41 -0700537 Sync::MissingDataInfo mdi = {m_user.getPrefix().toStdString(), Sync::SeqNo(0), Sync::SeqNo(nextSequence - 1)};
Zhenkai Zhuc5470612012-06-05 12:28:59 -0700538 std::vector<Sync::MissingDataInfo> v;
539 v.push_back(mdi);
Zhenkai Zhu44b43752012-06-05 21:18:37 -0700540 {
Zhenkai Zhu9036e032012-09-27 20:59:33 -0700541 boost::recursive_mutex::scoped_lock lock(m_sceneMutex);
Zhenkai Zhu44b43752012-06-05 21:18:37 -0700542 m_scene->processUpdate(v, m_sock->getRootDigest().c_str());
543 m_scene->msgReceived(m_user.getPrefix(), m_user.getNick());
544 }
Zhenkai Zhu2425b6a2012-09-26 17:11:44 -0700545}
546
547void
Zhenkai Zhu25e33e52012-09-28 13:00:07 -0700548ChatDialog::sendJoin()
549{
550 SyncDemo::ChatMessage msg;
Zhenkai Zhub5b78462012-09-28 14:10:37 -0700551 formControlMessage(msg, SyncDemo::ChatMessage::JOIN);
Zhenkai Zhu25e33e52012-09-28 13:00:07 -0700552 sendMsg(msg);
553 QTimer::singleShot(m_randomizedInterval, this, SLOT(sendHello()));
554}
555
556void
Zhenkai Zhu2425b6a2012-09-26 17:11:44 -0700557ChatDialog::sendHello()
558{
Zhenkai Zhu3e26bb42012-09-27 11:04:09 -0700559 time_t now = time(NULL);
560 int elapsed = now - m_lastMsgTime;
Zhenkai Zhu25e33e52012-09-28 13:00:07 -0700561 if (elapsed >= m_randomizedInterval / 1000)
Zhenkai Zhu3e26bb42012-09-27 11:04:09 -0700562 {
563 SyncDemo::ChatMessage msg;
Zhenkai Zhub5b78462012-09-28 14:10:37 -0700564 formControlMessage(msg, SyncDemo::ChatMessage::HELLO);
Zhenkai Zhu3e26bb42012-09-27 11:04:09 -0700565 sendMsg(msg);
Zhenkai Zhuee5c90f2012-09-27 14:05:41 -0700566 QTimer::singleShot(m_randomizedInterval, this, SLOT(sendHello()));
Zhenkai Zhu3e26bb42012-09-27 11:04:09 -0700567 }
568 else
569 {
Zhenkai Zhuee5c90f2012-09-27 14:05:41 -0700570 QTimer::singleShot((m_randomizedInterval - elapsed * 1000), this, SLOT(sendHello()));
Zhenkai Zhu3e26bb42012-09-27 11:04:09 -0700571 }
Zhenkai Zhu5a8d5aa2012-05-30 21:25:23 -0700572}
573
574void
Zhenkai Zhu85845d22012-06-01 23:10:43 -0700575ChatDialog::buttonPressed()
576{
Zhenkai Zhue95c64a2012-09-27 21:46:44 -0700577 SettingDialog dialog(this, m_user.getNick(), m_user.getChatroom(), m_user.getOriginPrefix());
Zhenkai Zhu7e9b06d2012-06-02 00:44:42 -0700578 connect(&dialog, SIGNAL(updated(QString, QString, QString)), this, SLOT(settingUpdated(QString, QString, QString)));
Zhenkai Zhu85845d22012-06-01 23:10:43 -0700579 dialog.exec();
Zhenkai Zhue837f792012-06-05 20:47:54 -0700580 QTimer::singleShot(100, this, SLOT(checkSetting()));
581}
582
Zhenkai Zhub60b7e12012-09-28 11:34:21 -0700583void ChatDialog::treeButtonPressed()
584{
585 if (treeViewer->isVisible())
586 {
587 treeViewer->hide();
588 treeButton->setText("Show Sync Tree");
589 }
590 else
591 {
592 treeViewer->show();
593 treeButton->setText("Hide Sync Tree");
594 }
Zhenkai Zhu25e33e52012-09-28 13:00:07 -0700595
596 fitView();
Zhenkai Zhub60b7e12012-09-28 11:34:21 -0700597}
598
Zhenkai Zhue837f792012-06-05 20:47:54 -0700599void
600ChatDialog::checkSetting()
601{
Zhenkai Zhue95c64a2012-09-27 21:46:44 -0700602 if (m_user.getOriginPrefix().isEmpty() || m_user.getNick().isEmpty() || m_user.getChatroom().isEmpty())
Zhenkai Zhue837f792012-06-05 20:47:54 -0700603 {
604 buttonPressed();
605 }
Zhenkai Zhu6d589aa2012-05-29 17:34:35 -0700606}
Zhenkai Zhue08afe02012-05-31 15:49:07 -0700607
Zhenkai Zhu7e9b06d2012-06-02 00:44:42 -0700608void
Zhenkai Zhue95c64a2012-09-27 21:46:44 -0700609ChatDialog::settingUpdated(QString nick, QString chatroom, QString originPrefix)
Zhenkai Zhu7e9b06d2012-06-02 00:44:42 -0700610{
Zhenkai Zhue95c64a2012-09-27 21:46:44 -0700611 QString randString = getRandomString();
Zhenkai Zhu7e9b06d2012-06-02 00:44:42 -0700612 bool needWrite = false;
Zhenkai Zhue95c64a2012-09-27 21:46:44 -0700613 bool needFresh = false;
Zhenkai Zhu71b42cb2012-06-04 09:42:53 -0700614 if (!nick.isEmpty() && nick != m_user.getNick()) {
615 m_user.setNick(nick);
Zhenkai Zhu7e9b06d2012-06-02 00:44:42 -0700616 needWrite = true;
617 }
Zhenkai Zhue95c64a2012-09-27 21:46:44 -0700618 if (!originPrefix.isEmpty() && originPrefix != m_user.getOriginPrefix()) {
619 m_user.setOriginPrefix(originPrefix);
620 m_user.setPrefix(originPrefix + "/" + m_user.getChatroom() + "/" + randString);
Zhenkai Zhu7e9b06d2012-06-02 00:44:42 -0700621 needWrite = true;
Zhenkai Zhue95c64a2012-09-27 21:46:44 -0700622 needFresh = true;
Zhenkai Zhu7e9b06d2012-06-02 00:44:42 -0700623 }
Zhenkai Zhu71b42cb2012-06-04 09:42:53 -0700624 if (!chatroom.isEmpty() && chatroom != m_user.getChatroom()) {
625 m_user.setChatroom(chatroom);
Zhenkai Zhue95c64a2012-09-27 21:46:44 -0700626 m_user.setPrefix(m_user.getOriginPrefix() + "/" + chatroom + "/" + randString);
Zhenkai Zhu7e9b06d2012-06-02 00:44:42 -0700627 needWrite = true;
Zhenkai Zhue95c64a2012-09-27 21:46:44 -0700628 needFresh = true;
629 }
630
631 if (needFresh)
632 {
Zhenkai Zhu82a62752012-06-04 17:11:04 -0700633
Zhenkai Zhu44b43752012-06-05 21:18:37 -0700634 {
Zhenkai Zhu9036e032012-09-27 20:59:33 -0700635 boost::recursive_mutex::scoped_lock lock(m_sceneMutex);
Zhenkai Zhu44b43752012-06-05 21:18:37 -0700636 m_scene->clearAll();
637 m_scene->plot("Empty");
638 }
Zhenkai Zhucc4c2c02012-09-27 21:24:37 -0700639
640 textEdit->clear();
641
Zhenkai Zhu7e9b06d2012-06-02 00:44:42 -0700642 // TODO: perhaps need to do a lot. e.g. use a new SyncAppSokcet
Zhenkai Zhu82a62752012-06-04 17:11:04 -0700643 if (m_sock != NULL)
644 {
645 delete m_sock;
646 m_sock = NULL;
647 }
648 std::string syncPrefix = BROADCAST_PREFIX_FOR_SYNC_DEMO;
649 syncPrefix += "/";
650 syncPrefix += m_user.getChatroom().toStdString();
Zhenkai Zhua4fb1242012-06-05 20:26:05 -0700651 try
652 {
Zhenkai Zhu2425b6a2012-09-26 17:11:44 -0700653 m_sock = new Sync::SyncAppSocket(syncPrefix, bind(&ChatDialog::processTreeUpdateWrapper, this, _1, _2), bind(&ChatDialog::processRemoveWrapper, this, _1));
Zhenkai Zhu25e33e52012-09-28 13:00:07 -0700654 sendJoin();
Zhenkai Zhu86df7412012-09-27 16:30:20 -0700655 m_timer->start(FRESHNESS * 2000);
Zhenkai Zhua4fb1242012-06-05 20:26:05 -0700656 }
657 catch (Sync::CcnxOperationException ex)
658 {
Zhenkai Zhu0b3fa332012-09-27 21:58:43 -0700659 QMessageBox::critical(this, tr("Chronos"), tr("Canno connect to ccnd.\n Have you started your ccnd?"), QMessageBox::Ok);
Zhenkai Zhua4fb1242012-06-05 20:26:05 -0700660 std::exit(1);
661 }
Zhenkai Zhu82a62752012-06-04 17:11:04 -0700662
663 fitView();
664
Zhenkai Zhu7e9b06d2012-06-02 00:44:42 -0700665 }
Zhenkai Zhue95c64a2012-09-27 21:46:44 -0700666
Zhenkai Zhu7e9b06d2012-06-02 00:44:42 -0700667 if (needWrite) {
668 writeSettings();
669 updateLabels();
670 }
671}
Zhenkai Zhud13acd02012-06-04 15:25:20 -0700672
Zhenkai Zhu3a008fc2012-06-08 17:36:39 -0700673void
674ChatDialog::iconActivated(QSystemTrayIcon::ActivationReason reason)
675{
676 switch (reason)
677 {
678 case QSystemTrayIcon::Trigger:
679 case QSystemTrayIcon::DoubleClick:
680 break;
681 case QSystemTrayIcon::MiddleClick:
682 // showMessage();
683 break;
684 default:;
685 }
686}
687
688void
689ChatDialog::showMessage(QString from, QString data)
690{
691 // std::cout <<"Showing Message: " << from.toStdString() << ": " << data.toStdString() << std::endl;
692 if (!isActiveWindow())
693 {
694 trayIcon->showMessage(QString("Chatroom %1 has a new message").arg(m_user.getChatroom()), QString("<%1>: %2").arg(from).arg(data), QSystemTrayIcon::Information, 20000);
695 trayIcon->setIcon(QIcon(":/images/note.png"));
696 }
697}
698
699void
700ChatDialog::messageClicked()
701{
702 this->showMaximized();
703}
704
705void
706ChatDialog::createActions()
707{
708 minimizeAction = new QAction(tr("Mi&nimize"), this);
709 connect(minimizeAction, SIGNAL(triggered()), this, SLOT(hide()));
710
711 maximizeAction = new QAction(tr("Ma&ximize"), this);
712 connect(maximizeAction, SIGNAL(triggered()), this, SLOT(showMaximized()));
713
714 restoreAction = new QAction(tr("&Restore"), this);
715 connect(restoreAction, SIGNAL(triggered()), this, SLOT(showNormal()));
716
717 quitAction = new QAction(tr("Quit"), this);
718 connect(quitAction, SIGNAL(triggered()), qApp, SLOT(quit()));
719}
720
721void
722ChatDialog::createTrayIcon()
723{
724 trayIconMenu = new QMenu(this);
725 trayIconMenu->addAction(minimizeAction);
726 trayIconMenu->addAction(maximizeAction);
727 trayIconMenu->addAction(restoreAction);
728 trayIconMenu->addSeparator();
729 trayIconMenu->addAction(quitAction);
730
731 trayIcon = new QSystemTrayIcon(this);
732 trayIcon->setContextMenu(trayIconMenu);
733
734 QIcon icon(":/images/icon_small.png");
735 trayIcon->setIcon(icon);
736 setWindowIcon(icon);
Zhenkai Zhu0b3fa332012-09-27 21:58:43 -0700737 trayIcon->setToolTip("Chronos System Tray Icon");
Zhenkai Zhu3a008fc2012-06-08 17:36:39 -0700738 trayIcon->setVisible(true);
739}
740
Zhenkai Zhud13acd02012-06-04 15:25:20 -0700741void
742ChatDialog::resizeEvent(QResizeEvent *e)
743{
744 fitView();
745}
746
747void
748ChatDialog::showEvent(QShowEvent *e)
749{
750 fitView();
751}
752
753void
754ChatDialog::fitView()
755{
Zhenkai Zhu9036e032012-09-27 20:59:33 -0700756 boost::recursive_mutex::scoped_lock lock(m_sceneMutex);
Zhenkai Zhu21d75f92012-06-04 21:23:34 -0700757 QRectF rect = m_scene->itemsBoundingRect();
758 m_scene->setSceneRect(rect);
Zhenkai Zhu82a62752012-06-04 17:11:04 -0700759 treeViewer->fitInView(m_scene->itemsBoundingRect(), Qt::KeepAspectRatio);
Zhenkai Zhud13acd02012-06-04 15:25:20 -0700760}