blob: 1b0329cd96e4d17ab3d5e65ed3899f2d50a86e8e [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 Zhu6c4fc112012-10-07 17:07:43 -070011#include <boost/lexical_cast.hpp>
Zhenkai Zhu6bda0bd2012-10-06 23:50:39 -070012#include <stdio.h>
Zhenkai Zhu6d589aa2012-05-29 17:34:35 -070013
Zhenkai Zhu0b3fa332012-09-27 21:58:43 -070014#define BROADCAST_PREFIX_FOR_SYNC_DEMO "/ndn/broadcast/chronos"
Zhenkai Zhu6bda0bd2012-10-06 23:50:39 -070015#define LOCAL_PREFIX_QUERY "/local/ndn/prefix"
16#define DEFAULT_LOCAL_PREFIX "/private/local"
Zhenkai Zhu756666a2012-10-07 00:24:35 -070017#define CCN_EXEC "/usr/local/bin/ccnpeek"
Zhenkai Zhu82a62752012-06-04 17:11:04 -070018
Zhenkai Zhuee5c90f2012-09-27 14:05:41 -070019static const int HELLO_INTERVAL = 90; // seconds
Zhenkai Zhu3e26bb42012-09-27 11:04:09 -070020
Zhenkai Zhu6d589aa2012-05-29 17:34:35 -070021ChatDialog::ChatDialog(QWidget *parent)
Zhenkai Zhu6c4fc112012-10-07 17:07:43 -070022 : QDialog(parent), m_sock(NULL), m_lastMsgTime(0), m_historyInitialized(false)
Zhenkai Zhu6d589aa2012-05-29 17:34:35 -070023{
Zhenkai Zhu10ccb5a2012-06-04 21:55:14 -070024 // have to register this, otherwise
25 // the signal-slot system won't recognize this type
Zhenkai Zhu64f9ede2012-06-05 11:32:00 -070026 qRegisterMetaType<std::vector<Sync::MissingDataInfo> >("std::vector<Sync::MissingDataInfo>");
27 qRegisterMetaType<size_t>("size_t");
Zhenkai Zhu6d589aa2012-05-29 17:34:35 -070028 setupUi(this);
Zhenkai Zhu82a62752012-06-04 17:11:04 -070029 m_session = time(NULL);
Zhenkai Zhuee5c90f2012-09-27 14:05:41 -070030 boost::random::random_device rng;
31 boost::random::uniform_int_distribution<> uniform(1, 29000);
32 m_randomizedInterval = HELLO_INTERVAL * 1000 + uniform(rng);
Zhenkai Zhu7e9b06d2012-06-02 00:44:42 -070033
34 readSettings();
Zhenkai Zhu82a62752012-06-04 17:11:04 -070035
Zhenkai Zhu7e9b06d2012-06-02 00:44:42 -070036 updateLabels();
37
Zhenkai Zhu6d589aa2012-05-29 17:34:35 -070038 lineEdit->setFocusPolicy(Qt::StrongFocus);
Zhenkai Zhu82a62752012-06-04 17:11:04 -070039 m_scene = new DigestTreeScene(this);
Zhenkai Zhub45e38a2012-06-01 15:44:36 -070040
Zhenkai Zhu82a62752012-06-04 17:11:04 -070041 treeViewer->setScene(m_scene);
42 m_scene->plot("Empty");
43 QRectF rect = m_scene->itemsBoundingRect();
44 m_scene->setSceneRect(rect);
45
Zhenkai Zhu9036e032012-09-27 20:59:33 -070046 listView->setStyleSheet("QListView { alternate-background-color: white; background: #F0F0F0; color: darkGreen; font: bold large; }");
Zhenkai Zhuf55f4382012-09-28 10:58:54 -070047 listView->setEditTriggers(QAbstractItemView::NoEditTriggers);
48 listView->setDragDropMode(QAbstractItemView::NoDragDrop);
49 listView->setSelectionMode(QAbstractItemView::NoSelection);
Zhenkai Zhu6082ede2012-09-27 17:28:46 -070050 m_rosterModel = new QStringListModel(this);
51 listView->setModel(m_rosterModel);
52
Zhenkai Zhu86df7412012-09-27 16:30:20 -070053 createActions();
54 createTrayIcon();
55 m_timer = new QTimer(this);
56 connect(lineEdit, SIGNAL(returnPressed()), this, SLOT(returnPressed()));
57 connect(setButton, SIGNAL(pressed()), this, SLOT(buttonPressed()));
Zhenkai Zhub60b7e12012-09-28 11:34:21 -070058 connect(treeButton, SIGNAL(pressed()), this, SLOT(treeButtonPressed()));
Zhenkai Zhu86df7412012-09-27 16:30:20 -070059 connect(this, SIGNAL(dataReceived(QString, const char *, size_t, bool)), this, SLOT(processData(QString, const char *, size_t, bool)));
60 connect(this, SIGNAL(treeUpdated(const std::vector<Sync::MissingDataInfo>)), this, SLOT(processTreeUpdate(const std::vector<Sync::MissingDataInfo>)));
Zhenkai Zhu86df7412012-09-27 16:30:20 -070061 connect(m_timer, SIGNAL(timeout()), this, SLOT(replot()));
62 connect(m_scene, SIGNAL(replot()), this, SLOT(replot()));
63 connect(trayIcon, SIGNAL(messageClicked()), this, SLOT(showNormal()));
64 connect(trayIcon, SIGNAL(activated(QSystemTrayIcon::ActivationReason)), this, SLOT(iconActivated(QSystemTrayIcon::ActivationReason)));
Zhenkai Zhu25e33e52012-09-28 13:00:07 -070065 connect(m_scene, SIGNAL(rosterChanged(QStringList)), this, SLOT(updateRosterList(QStringList)));
Zhenkai Zhu86df7412012-09-27 16:30:20 -070066
Zhenkai Zhu82a62752012-06-04 17:11:04 -070067 // create sync socket
68 if(!m_user.getChatroom().isEmpty()) {
69 std::string syncPrefix = BROADCAST_PREFIX_FOR_SYNC_DEMO;
70 syncPrefix += "/";
71 syncPrefix += m_user.getChatroom().toStdString();
Zhenkai Zhua4fb1242012-06-05 20:26:05 -070072 try
73 {
Alexander Afanasyev288edd82012-10-04 17:07:56 -070074 m_sock = new Sync::SyncAppSocket(syncPrefix,
75 bind(&ChatDialog::processTreeUpdateWrapper, this, _1, _2),
76 bind(&ChatDialog::processRemoveWrapper, this, _1));
Zhenkai Zhu6c4fc112012-10-07 17:07:43 -070077 Sync::CcnxWrapperPtr handle = Sync::CcnxWrapper::Create();
78 handle->setInterestFilter(m_user.getPrefix().toStdString(), bind(&ChatDialog::respondHistoryRequest, this, _1));
Zhenkai Zhucf024442012-10-05 10:33:08 -070079 QTimer::singleShot(600, this, SLOT(sendJoin()));
Zhenkai Zhu86df7412012-09-27 16:30:20 -070080 m_timer->start(FRESHNESS * 2000);
Zhenkai Zhu0e7a9b22012-10-05 17:55:17 -070081 disableTreeDisplay();
82 QTimer::singleShot(2200, this, SLOT(enableTreeDisplay()));
Zhenkai Zhua4fb1242012-06-05 20:26:05 -070083 }
84 catch (Sync::CcnxOperationException ex)
85 {
Zhenkai Zhu0b3fa332012-09-27 21:58:43 -070086 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 -070087 std::exit(1);
88 }
Zhenkai Zhu82a62752012-06-04 17:11:04 -070089 }
Zhenkai Zhu3a008fc2012-06-08 17:36:39 -070090
Zhenkai Zhu5a8d5aa2012-05-30 21:25:23 -070091}
92
Zhenkai Zhu82a62752012-06-04 17:11:04 -070093ChatDialog::~ChatDialog()
94{
95 if (m_sock != NULL)
96 {
Zhenkai Zhucf024442012-10-05 10:33:08 -070097 sendLeave();
Zhenkai Zhu82a62752012-06-04 17:11:04 -070098 delete m_sock;
99 m_sock = NULL;
100 }
101}
102
Zhenkai Zhu86df7412012-09-27 16:30:20 -0700103void
Zhenkai Zhucf024442012-10-05 10:33:08 -0700104ChatDialog::sendLeave()
105{
106 SyncDemo::ChatMessage msg;
107 formControlMessage(msg, SyncDemo::ChatMessage::LEAVE);
108 sendMsg(msg);
109 usleep(500000);
110 m_sock->remove(m_user.getPrefix().toStdString());
111 usleep(5000);
112#ifdef __DEBUG
113 std::cout << "Sync REMOVE signal sent" << std::endl;
114#endif
115}
116
117void
Zhenkai Zhu86df7412012-09-27 16:30:20 -0700118ChatDialog::replot()
119{
Zhenkai Zhu9036e032012-09-27 20:59:33 -0700120 boost::recursive_mutex::scoped_lock lock(m_sceneMutex);
Zhenkai Zhu86df7412012-09-27 16:30:20 -0700121 m_scene->plot(m_sock->getRootDigest().c_str());
Zhenkai Zhuc9e4e3c2012-10-02 11:47:31 -0700122 fitView();
Zhenkai Zhu86df7412012-09-27 16:30:20 -0700123}
124
Zhenkai Zhu6082ede2012-09-27 17:28:46 -0700125void
Zhenkai Zhu25e33e52012-09-28 13:00:07 -0700126ChatDialog::updateRosterList(QStringList staleUserList)
Zhenkai Zhu6082ede2012-09-27 17:28:46 -0700127{
Zhenkai Zhu9036e032012-09-27 20:59:33 -0700128 boost::recursive_mutex::scoped_lock lock(m_sceneMutex);
Zhenkai Zhu6082ede2012-09-27 17:28:46 -0700129 QStringList rosterList = m_scene->getRosterList();
130 m_rosterModel->setStringList(rosterList);
Zhenkai Zhu25e33e52012-09-28 13:00:07 -0700131 QString user;
132 QStringListIterator it(staleUserList);
133 while(it.hasNext())
134 {
Zhenkai Zhu32cbdce2012-10-02 11:09:38 -0700135 std::string nick = it.next().toStdString();
136 if (nick.empty())
137 continue;
138
Zhenkai Zhu25e33e52012-09-28 13:00:07 -0700139 SyncDemo::ChatMessage msg;
Zhenkai Zhub5b78462012-09-28 14:10:37 -0700140 formControlMessage(msg, SyncDemo::ChatMessage::LEAVE);
Zhenkai Zhu32cbdce2012-10-02 11:09:38 -0700141 msg.set_from(nick);
Zhenkai Zhu25e33e52012-09-28 13:00:07 -0700142 appendMessage(msg);
143 }
Zhenkai Zhu6082ede2012-09-27 17:28:46 -0700144}
145
Zhenkai Zhu3a008fc2012-06-08 17:36:39 -0700146void
147ChatDialog::setVisible(bool visible)
148{
149 minimizeAction->setEnabled(visible);
150 maximizeAction->setEnabled(!isMaximized());
151 restoreAction->setEnabled(isMaximized() || !visible);
152 QDialog::setVisible(visible);
153}
154
155void
156ChatDialog::closeEvent(QCloseEvent *e)
157{
Zhenkai Zhu3974a492012-09-28 14:39:45 -0700158 if (trayIcon->isVisible() && !m_minimaniho)
Zhenkai Zhu3a008fc2012-06-08 17:36:39 -0700159 {
Zhenkai Zhu0b3fa332012-09-27 21:58:43 -0700160 QMessageBox::information(this, tr("Chronos"),
Zhenkai Zhu3a008fc2012-06-08 17:36:39 -0700161 tr("The program will keep running in the "
162 "system tray. To terminate the program"
163 "choose <b>Quit</b> in the context memu"
164 "of the system tray entry."));
165 hide();
166 e->ignore();
Zhenkai Zhu3974a492012-09-28 14:39:45 -0700167 m_minimaniho = true;
168 writeSettings();
Zhenkai Zhu3a008fc2012-06-08 17:36:39 -0700169 }
170}
171
172void
173ChatDialog::changeEvent(QEvent *e)
174{
175 switch(e->type())
176 {
177 case QEvent::ActivationChange:
178 if (isActiveWindow())
179 {
180 trayIcon->setIcon(QIcon(":/images/icon_small.png"));
181 }
182 break;
183 default:
184 break;
185 }
186}
187
Zhenkai Zhu5a8d5aa2012-05-30 21:25:23 -0700188void
Zhenkai Zhu10ccb5a2012-06-04 21:55:14 -0700189ChatDialog::appendMessage(const SyncDemo::ChatMessage msg)
Zhenkai Zhu5a8d5aa2012-05-30 21:25:23 -0700190{
Zhenkai Zhu9036e032012-09-27 20:59:33 -0700191 boost::recursive_mutex::scoped_lock lock(m_msgMutex);
Zhenkai Zhub6338822012-05-31 13:27:24 -0700192
Zhenkai Zhu25e33e52012-09-28 13:00:07 -0700193 if (msg.type() == SyncDemo::ChatMessage::CHAT)
Zhenkai Zhub98e6022012-09-27 13:48:23 -0700194 {
Zhenkai Zhub98e6022012-09-27 13:48:23 -0700195
Zhenkai Zhu25e33e52012-09-28 13:00:07 -0700196 if (!msg.has_data())
Zhenkai Zhub98e6022012-09-27 13:48:23 -0700197 {
Zhenkai Zhu25e33e52012-09-28 13:00:07 -0700198 return;
Zhenkai Zhub98e6022012-09-27 13:48:23 -0700199 }
Zhenkai Zhu25e33e52012-09-28 13:00:07 -0700200
201 if (msg.from().empty() || msg.data().empty())
202 {
203 return;
204 }
205
206 if (!msg.has_timestamp())
207 {
208 return;
209 }
210
Zhenkai Zhu6c4fc112012-10-07 17:07:43 -0700211 if (m_history.size() == MAX_HISTORY_ENTRY)
212 {
213 m_history.dequeue();
214 }
215
216 m_history.enqueue(msg);
217
Zhenkai Zhu25e33e52012-09-28 13:00:07 -0700218 QTextCharFormat nickFormat;
219 nickFormat.setForeground(Qt::darkGreen);
220 nickFormat.setFontWeight(QFont::Bold);
221 nickFormat.setFontUnderline(true);
222 nickFormat.setUnderlineColor(Qt::gray);
Zhenkai Zhu25e33e52012-09-28 13:00:07 -0700223
224 QTextCursor cursor(textEdit->textCursor());
225 cursor.movePosition(QTextCursor::End);
226 QTextTableFormat tableFormat;
227 tableFormat.setBorder(0);
228 QTextTable *table = cursor.insertTable(1, 2, tableFormat);
229 QString from = QString("%1 ").arg(msg.from().c_str());
230 QTextTableCell fromCell = table->cellAt(0, 0);
231 fromCell.setFormat(nickFormat);
232 fromCell.firstCursorPosition().insertText(from);
Zhenkai Zhu560ef1b2012-09-28 14:23:33 -0700233
Zhenkai Zhu25e33e52012-09-28 13:00:07 -0700234 time_t timestamp = msg.timestamp();
Zhenkai Zhu560ef1b2012-09-28 14:23:33 -0700235 printTimeInCell(table, timestamp);
Zhenkai Zhu25e33e52012-09-28 13:00:07 -0700236
237 QTextCursor nextCursor(textEdit->textCursor());
238 nextCursor.movePosition(QTextCursor::End);
239 table = nextCursor.insertTable(1, 1, tableFormat);
240 table->cellAt(0, 0).firstCursorPosition().insertText(msg.data().c_str());
241 showMessage(from, msg.data().c_str());
Zhenkai Zhub98e6022012-09-27 13:48:23 -0700242 }
243
Zhenkai Zhu25e33e52012-09-28 13:00:07 -0700244 if (msg.type() == SyncDemo::ChatMessage::JOIN || msg.type() == SyncDemo::ChatMessage::LEAVE)
245 {
246 QTextCharFormat nickFormat;
247 nickFormat.setForeground(Qt::gray);
248 nickFormat.setFontWeight(QFont::Bold);
249 nickFormat.setFontUnderline(true);
250 nickFormat.setUnderlineColor(Qt::gray);
Zhenkai Zhub98e6022012-09-27 13:48:23 -0700251
Zhenkai Zhu25e33e52012-09-28 13:00:07 -0700252 QTextCursor cursor(textEdit->textCursor());
253 cursor.movePosition(QTextCursor::End);
254 QTextTableFormat tableFormat;
255 tableFormat.setBorder(0);
256 QTextTable *table = cursor.insertTable(1, 2, tableFormat);
257 QString action;
258 if (msg.type() == SyncDemo::ChatMessage::JOIN)
259 {
260 action = "enters room";
261 }
262 else
263 {
264 action = "leaves room";
265 }
266
267 QString from = QString("%1 %2 ").arg(msg.from().c_str()).arg(action);
268 QTextTableCell fromCell = table->cellAt(0, 0);
269 fromCell.setFormat(nickFormat);
270 fromCell.firstCursorPosition().insertText(from);
Zhenkai Zhu25e33e52012-09-28 13:00:07 -0700271
Zhenkai Zhu560ef1b2012-09-28 14:23:33 -0700272 time_t timestamp = msg.timestamp();
273 printTimeInCell(table, timestamp);
Zhenkai Zhu25e33e52012-09-28 13:00:07 -0700274 }
275
Zhenkai Zhu5a8d5aa2012-05-30 21:25:23 -0700276 QScrollBar *bar = textEdit->verticalScrollBar();
277 bar->setValue(bar->maximum());
278}
279
Zhenkai Zhu560ef1b2012-09-28 14:23:33 -0700280void
281ChatDialog::printTimeInCell(QTextTable *table, time_t timestamp)
282{
283 QTextCharFormat timeFormat;
284 timeFormat.setForeground(Qt::gray);
285 timeFormat.setFontUnderline(true);
286 timeFormat.setUnderlineColor(Qt::gray);
287 QTextTableCell timeCell = table->cellAt(0, 1);
288 timeCell.setFormat(timeFormat);
289 timeCell.firstCursorPosition().insertText(formatTime(timestamp));
290}
291
292QString
293ChatDialog::formatTime(time_t timestamp)
294{
295 struct tm *tm_time = localtime(&timestamp);
296 int hour = tm_time->tm_hour;
297 QString amOrPM;
298 if (hour > 12)
299 {
300 hour -= 12;
301 amOrPM = "PM";
302 }
303 else
304 {
305 amOrPM = "AM";
306 if (hour == 0)
307 {
308 hour = 12;
309 }
310 }
311
312 char textTime[12];
313 sprintf(textTime, "%d:%02d:%02d %s", hour, tm_time->tm_min, tm_time->tm_sec, amOrPM.toStdString().c_str());
314 return QString(textTime);
315}
316
Zhenkai Zhu85845d22012-06-01 23:10:43 -0700317void
Zhenkai Zhu64f9ede2012-06-05 11:32:00 -0700318ChatDialog::processTreeUpdateWrapper(const std::vector<Sync::MissingDataInfo> v, Sync::SyncAppSocket *sock)
319{
320 emit treeUpdated(v);
Zhenkai Zhud1c5a972012-06-05 14:07:41 -0700321#ifdef __DEBUG
322 std::cout << "<<< Tree update signal emitted" << std::endl;
323#endif
Zhenkai Zhu64f9ede2012-06-05 11:32:00 -0700324}
325
326void
327ChatDialog::processTreeUpdate(const std::vector<Sync::MissingDataInfo> v)
Zhenkai Zhu82a62752012-06-04 17:11:04 -0700328{
Zhenkai Zhud1c5a972012-06-05 14:07:41 -0700329#ifdef __DEBUG
330 std::cout << "<<< processing Tree Update" << std::endl;
331#endif
Zhenkai Zhu82a62752012-06-04 17:11:04 -0700332 if (v.empty())
333 {
334 return;
335 }
336
337 // reflect the changes on digest tree
Zhenkai Zhu44b43752012-06-05 21:18:37 -0700338 {
Zhenkai Zhu9036e032012-09-27 20:59:33 -0700339 boost::recursive_mutex::scoped_lock lock(m_sceneMutex);
Zhenkai Zhu44b43752012-06-05 21:18:37 -0700340 m_scene->processUpdate(v, m_sock->getRootDigest().c_str());
341 }
Zhenkai Zhu82a62752012-06-04 17:11:04 -0700342
343 int n = v.size();
344 int totalMissingPackets = 0;
345 for (int i = 0; i < n; i++)
346 {
347 totalMissingPackets += v[i].high.getSeq() - v[i].low.getSeq() + 1;
348 }
349
Zhenkai Zhubb198112012-09-27 11:31:42 -0700350 for (int i = 0; i < n; i++)
351 {
352 if (totalMissingPackets < 4)
Zhenkai Zhu82a62752012-06-04 17:11:04 -0700353 {
354 for (Sync::SeqNo seq = v[i].low; seq <= v[i].high; ++seq)
355 {
Zhenkai Zhu64f9ede2012-06-05 11:32:00 -0700356 m_sock->fetchRaw(v[i].prefix, seq, bind(&ChatDialog::processDataWrapper, this, _1, _2, _3), 2);
Zhenkai Zhud1c5a972012-06-05 14:07:41 -0700357#ifdef __DEBUG
358 std::cout << "<<< Fetching " << v[i].prefix << "/" <<seq.getSession() <<"/" << seq.getSeq() << std::endl;
359#endif
Zhenkai Zhu82a62752012-06-04 17:11:04 -0700360 }
361 }
Zhenkai Zhubb198112012-09-27 11:31:42 -0700362 else
363 {
364 m_sock->fetchRaw(v[i].prefix, v[i].high, bind(&ChatDialog::processDataNoShowWrapper, this, _1, _2, _3), 2);
365 }
Zhenkai Zhu82a62752012-06-04 17:11:04 -0700366 }
367
368 // adjust the view
369 fitView();
370
371}
372
373void
Zhenkai Zhu64f9ede2012-06-05 11:32:00 -0700374ChatDialog::processDataWrapper(std::string name, const char *buf, size_t len)
375{
Zhenkai Zhuae29f5a2012-10-05 17:28:04 -0700376 char *tempBuf = new char[len];
377 memcpy(tempBuf, buf, len);
378 emit dataReceived(name.c_str(), tempBuf, len, true);
Zhenkai Zhud1c5a972012-06-05 14:07:41 -0700379#ifdef __DEBUG
380 std::cout <<"<<< " << name << " fetched" << std::endl;
381#endif
Zhenkai Zhu64f9ede2012-06-05 11:32:00 -0700382}
383
384void
Zhenkai Zhubb198112012-09-27 11:31:42 -0700385ChatDialog::processDataNoShowWrapper(std::string name, const char *buf, size_t len)
386{
Zhenkai Zhuae29f5a2012-10-05 17:28:04 -0700387 char *tempBuf = new char[len];
388 memcpy(tempBuf, buf, len);
389 emit dataReceived(name.c_str(), tempBuf, len, false);
Zhenkai Zhu6c4fc112012-10-07 17:07:43 -0700390
391 if (!m_historyInitialized)
392 {
393 fetchHistory(name);
394 m_historyInitialized = true;
395 }
396}
397
398void
399ChatDialog::fetchHistory(std::string name)
400{
401 std::string nameWithoutSeq = name.substr(0, name.find_last_of('/'));
402 std::string prefix = nameWithoutSeq.substr(0, nameWithoutSeq.find_last_of('/'));
403 prefix += "/history";
404 Sync::CcnxWrapperPtr handle = Sync::CcnxWrapper::Create();
405 QString randomString = getRandomString();
406 for (int i = 0; i < MAX_HISTORY_ENTRY; i++)
407 {
408 QString interest = QString("%1/%2/%3").arg(prefix.c_str()).arg(randomString).arg(i);
409 handle->sendInterest(interest.toStdString(), bind(&ChatDialog::processDataWrapper, this, _1, _2, _3));
410 }
411}
412
413void
414ChatDialog::respondHistoryRequest(std::string interest)
415{
416 std::string seqStr = interest.substr(interest.find_last_of('/') + 1);
417 int seq = boost::lexical_cast<int>(seqStr);
418 if (seq >= 0 && seq < m_history.size())
419 {
420 Sync::CcnxWrapperPtr handle = Sync::CcnxWrapper::Create();
421 SyncDemo::ChatMessage msg = m_history.at(seq);
422 size_t size = msg.ByteSize();
423 char *buf = new char[size];
424 msg.SerializeToArray(buf, size);
425 handle->publishRawData(interest, buf, size, 1);
426 delete buf;
427 }
Zhenkai Zhubb198112012-09-27 11:31:42 -0700428}
429
430void
431ChatDialog::processData(QString name, const char *buf, size_t len, bool show)
Zhenkai Zhu82a62752012-06-04 17:11:04 -0700432{
433 SyncDemo::ChatMessage msg;
Zhenkai Zhuef8d0632012-10-05 10:24:55 -0700434 bool corrupted = false;
Zhenkai Zhu82a62752012-06-04 17:11:04 -0700435 if (!msg.ParseFromArray(buf, len))
436 {
Zhenkai Zhubb198112012-09-27 11:31:42 -0700437 std::cerr << "Errrrr.. Can not parse msg with name: " << name.toStdString() << ". what is happening?" << std::endl;
Zhenkai Zhuef8d0632012-10-05 10:24:55 -0700438 // nasty stuff: as a remedy, we'll form some standard msg for inparsable msgs
439 msg.set_from("inconnu");
440 msg.set_type(SyncDemo::ChatMessage::OTHER);
441 corrupted = true;
Zhenkai Zhu82a62752012-06-04 17:11:04 -0700442 }
443
Zhenkai Zhuae29f5a2012-10-05 17:28:04 -0700444 delete [] buf;
445 buf = NULL;
446
Zhenkai Zhu10ccb5a2012-06-04 21:55:14 -0700447 // display msg received from network
448 // we have to do so; this function is called by ccnd thread
449 // so if we call appendMsg directly
450 // Qt crash as "QObject: Cannot create children for a parent that is in a different thread"
451 // the "cannonical" way to is use signal-slot
Zhenkai Zhuef8d0632012-10-05 10:24:55 -0700452 if (show && !corrupted)
Zhenkai Zhubb198112012-09-27 11:31:42 -0700453 {
454 appendMessage(msg);
455 }
Zhenkai Zhu82a62752012-06-04 17:11:04 -0700456
457 // update the tree view
Zhenkai Zhu097bfe72012-06-05 14:30:17 -0700458 std::string stdStrName = name.toStdString();
459 std::string stdStrNameWithoutSeq = stdStrName.substr(0, stdStrName.find_last_of('/'));
460 std::string prefix = stdStrNameWithoutSeq.substr(0, stdStrNameWithoutSeq.find_last_of('/'));
461#ifdef __DEBUG
462 std::cout <<"<<< updating scene for" << prefix << ": " << msg.from() << std::endl;
463#endif
Zhenkai Zhu25e33e52012-09-28 13:00:07 -0700464 if (msg.type() == SyncDemo::ChatMessage::LEAVE)
465 {
466 processRemove(prefix.c_str());
467 }
468 else
Zhenkai Zhu44b43752012-06-05 21:18:37 -0700469 {
Zhenkai Zhu9036e032012-09-27 20:59:33 -0700470 boost::recursive_mutex::scoped_lock lock(m_sceneMutex);
Zhenkai Zhu44b43752012-06-05 21:18:37 -0700471 m_scene->msgReceived(prefix.c_str(), msg.from().c_str());
472 }
Zhenkai Zhuc5470612012-06-05 12:28:59 -0700473 fitView();
Zhenkai Zhu82a62752012-06-04 17:11:04 -0700474}
475
476void
Zhenkai Zhu2425b6a2012-09-26 17:11:44 -0700477ChatDialog::processRemoveWrapper(std::string prefix)
478{
Zhenkai Zhu25e33e52012-09-28 13:00:07 -0700479#ifdef __DEBUG
480 std::cout << "Sync REMOVE signal received for prefix: " << prefix << std::endl;
481#endif
482 //emit removeReceived(prefix.c_str());
Zhenkai Zhu2425b6a2012-09-26 17:11:44 -0700483}
484
485void
486ChatDialog::processRemove(QString prefix)
Zhenkai Zhu82a62752012-06-04 17:11:04 -0700487{
Zhenkai Zhu591e8c32012-09-26 11:57:50 -0700488#ifdef __DEBUG
Zhenkai Zhu2425b6a2012-09-26 17:11:44 -0700489 std::cout << "<<< remove node for prefix" << prefix.toStdString() << std::endl;
Zhenkai Zhu591e8c32012-09-26 11:57:50 -0700490#endif
Zhenkai Zhu2425b6a2012-09-26 17:11:44 -0700491 bool removed = m_scene->removeNode(prefix);
Zhenkai Zhu591e8c32012-09-26 11:57:50 -0700492 if (removed)
493 {
Zhenkai Zhu9036e032012-09-27 20:59:33 -0700494 boost::recursive_mutex::scoped_lock lock(m_sceneMutex);
Zhenkai Zhu591e8c32012-09-26 11:57:50 -0700495 m_scene->plot(m_sock->getRootDigest().c_str());
496 }
Zhenkai Zhu82a62752012-06-04 17:11:04 -0700497}
498
499void
Zhenkai Zhu85845d22012-06-01 23:10:43 -0700500ChatDialog::formChatMessage(const QString &text, SyncDemo::ChatMessage &msg) {
Zhenkai Zhu71b42cb2012-06-04 09:42:53 -0700501 msg.set_from(m_user.getNick().toStdString());
502 msg.set_to(m_user.getChatroom().toStdString());
Zhenkai Zhu85845d22012-06-01 23:10:43 -0700503 msg.set_data(text.toStdString());
504 time_t seconds = time(NULL);
505 msg.set_timestamp(seconds);
Zhenkai Zhu82a62752012-06-04 17:11:04 -0700506 msg.set_type(SyncDemo::ChatMessage::CHAT);
Zhenkai Zhu5a8d5aa2012-05-30 21:25:23 -0700507}
508
Zhenkai Zhu2425b6a2012-09-26 17:11:44 -0700509void
Zhenkai Zhub5b78462012-09-28 14:10:37 -0700510ChatDialog::formControlMessage(SyncDemo::ChatMessage &msg, SyncDemo::ChatMessage::ChatMessageType type)
Zhenkai Zhu2425b6a2012-09-26 17:11:44 -0700511{
512 msg.set_from(m_user.getNick().toStdString());
513 msg.set_to(m_user.getChatroom().toStdString());
514 time_t seconds = time(NULL);
515 msg.set_timestamp(seconds);
Zhenkai Zhub5b78462012-09-28 14:10:37 -0700516 msg.set_type(type);
Zhenkai Zhu2425b6a2012-09-26 17:11:44 -0700517}
518
Zhenkai Zhu59245aa2012-09-26 16:07:04 -0700519static std::string chars("qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM0123456789");
520
521QString
522ChatDialog::getRandomString()
523{
524 std::string randStr;
525 boost::random::random_device rng;
526 boost::random::uniform_int_distribution<> index_dist(0, chars.size() - 1);
527 for (int i = 0; i < 10; i ++)
528 {
529 randStr += chars[index_dist(rng)];
530 }
531 return randStr.c_str();
532}
533
Zhenkai Zhu6bda0bd2012-10-06 23:50:39 -0700534QString
535ChatDialog::getLocalPrefix()
536{
Zhenkai Zhu756666a2012-10-07 00:24:35 -0700537 /*
538 * this method tries to use ccncat
539 * however, it does not work in Mac OS X app bundle
540 * it works well in command line though
541 */
542
Zhenkai Zhu6bda0bd2012-10-06 23:50:39 -0700543 std::string cmd = CCN_EXEC;
Zhenkai Zhu756666a2012-10-07 00:24:35 -0700544 cmd += " -c -v ";
Zhenkai Zhu6bda0bd2012-10-06 23:50:39 -0700545 cmd += LOCAL_PREFIX_QUERY;
546 QString localPrefix;
547#define MAX_PREFIX_LEN 100
548 FILE *fp = popen(cmd.c_str(), "r");
549 if (fp != NULL)
550 {
551 char prefix[MAX_PREFIX_LEN];
552 if (fgets(prefix, MAX_PREFIX_LEN, fp) != NULL)
553 {
554 localPrefix = prefix;
555 localPrefix.remove('\n');
556 }
557 else
558 {
559 localPrefix = DEFAULT_LOCAL_PREFIX;
560 }
561 pclose(fp);
562 }
563 else
564 {
565 localPrefix = DEFAULT_LOCAL_PREFIX;
566 }
567 return localPrefix;
568}
569
Zhenkai Zhu82a62752012-06-04 17:11:04 -0700570bool
Zhenkai Zhu7e9b06d2012-06-02 00:44:42 -0700571ChatDialog::readSettings()
572{
573 QSettings s(ORGANIZATION, APPLICATION);
Zhenkai Zhu71b42cb2012-06-04 09:42:53 -0700574 QString nick = s.value("nick", "").toString();
575 QString chatroom = s.value("chatroom", "").toString();
Zhenkai Zhu6bda0bd2012-10-06 23:50:39 -0700576 //QString originPrefix = s.value("originPrefix", "").toString();
577 QString originPrefix = getLocalPrefix();
Zhenkai Zhu3974a492012-09-28 14:39:45 -0700578 m_minimaniho = s.value("minimaniho", false).toBool();
579 if (nick == "" || chatroom == "" || originPrefix == "") {
Zhenkai Zhu7e9b06d2012-06-02 00:44:42 -0700580 QTimer::singleShot(500, this, SLOT(buttonPressed()));
Zhenkai Zhu82a62752012-06-04 17:11:04 -0700581 return false;
Zhenkai Zhu7e9b06d2012-06-02 00:44:42 -0700582 }
Zhenkai Zhu71b42cb2012-06-04 09:42:53 -0700583 else {
584 m_user.setNick(nick);
585 m_user.setChatroom(chatroom);
Zhenkai Zhue95c64a2012-09-27 21:46:44 -0700586 m_user.setOriginPrefix(originPrefix);
Zhenkai Zhu3974a492012-09-28 14:39:45 -0700587 m_user.setPrefix(originPrefix + "/" + chatroom + "/" + getRandomString());
Zhenkai Zhu82a62752012-06-04 17:11:04 -0700588 return true;
Zhenkai Zhu71b42cb2012-06-04 09:42:53 -0700589 }
Zhenkai Zhu3974a492012-09-28 14:39:45 -0700590
591// QTimer::singleShot(500, this, SLOT(buttonPressed()));
592 // return false;
Zhenkai Zhu7e9b06d2012-06-02 00:44:42 -0700593}
594
595void
596ChatDialog::writeSettings()
597{
598 QSettings s(ORGANIZATION, APPLICATION);
Zhenkai Zhu71b42cb2012-06-04 09:42:53 -0700599 s.setValue("nick", m_user.getNick());
600 s.setValue("chatroom", m_user.getChatroom());
Zhenkai Zhu6bda0bd2012-10-06 23:50:39 -0700601 //s.setValue("originPrefix", m_user.getOriginPrefix());
Zhenkai Zhu3974a492012-09-28 14:39:45 -0700602 s.setValue("minimaniho", m_minimaniho);
Zhenkai Zhu7e9b06d2012-06-02 00:44:42 -0700603}
604
605void
606ChatDialog::updateLabels()
607{
Zhenkai Zhu76ff02b2012-09-27 21:11:03 -0700608 QString settingDisp = QString("Chatroom: %1").arg(m_user.getChatroom());
609 infoLabel->setStyleSheet("QLabel {color: #630; font-size: 16px; font: bold \"Verdana\";}");
Zhenkai Zhu7e9b06d2012-06-02 00:44:42 -0700610 infoLabel->setText(settingDisp);
Zhenkai Zhu6bda0bd2012-10-06 23:50:39 -0700611 QString prefixDisp;
612 if (m_user.getPrefix().startsWith(DEFAULT_LOCAL_PREFIX))
613 {
614 prefixDisp = QString("<Warning: Auto config prefix failed.>\n <Prefix = %1>").arg(m_user.getPrefix());
615 prefixLabel->setStyleSheet("QLabel {color: red; font-size: 12px; font: bold \"Verdana\";}");
616 }
617 else
618 {
619 prefixDisp = QString("<Prefix = %1>").arg(m_user.getPrefix());
620 prefixLabel->setStyleSheet("QLabel {color: Green; font-size: 12px; font: bold \"Verdana\";}");
621 }
622 prefixLabel->setText(prefixDisp);
Zhenkai Zhu7e9b06d2012-06-02 00:44:42 -0700623}
624
Zhenkai Zhu5a8d5aa2012-05-30 21:25:23 -0700625void
626ChatDialog::returnPressed()
627{
628 QString text = lineEdit->text();
629 if (text.isEmpty())
630 return;
631
Zhenkai Zhub6338822012-05-31 13:27:24 -0700632 lineEdit->clear();
633
Zhenkai Zhu5a8d5aa2012-05-30 21:25:23 -0700634 SyncDemo::ChatMessage msg;
635 formChatMessage(text, msg);
636
Zhenkai Zhu5a8d5aa2012-05-30 21:25:23 -0700637 appendMessage(msg);
Zhenkai Zhu82a62752012-06-04 17:11:04 -0700638
Zhenkai Zhu2425b6a2012-09-26 17:11:44 -0700639 sendMsg(msg);
640
641 fitView();
642}
643
644void
645ChatDialog::sendMsg(SyncDemo::ChatMessage &msg)
646{
Zhenkai Zhu82a62752012-06-04 17:11:04 -0700647 // send msg
648 size_t size = msg.ByteSize();
649 char *buf = new char[size];
650 msg.SerializeToArray(buf, size);
651 if (!msg.IsInitialized())
652 {
653 std::cerr << "Errrrr.. msg was not probally initialized "<<__FILE__ <<":"<<__LINE__<<". what is happening?" << std::endl;
654 abort();
655 }
Zhenkai Zhu3e26bb42012-09-27 11:04:09 -0700656 m_sock->publishRaw(m_user.getPrefix().toStdString(), m_session, buf, size, FRESHNESS);
Zhenkai Zhuc5470612012-06-05 12:28:59 -0700657
Zhenkai Zhu2425b6a2012-09-26 17:11:44 -0700658 delete buf;
659
Zhenkai Zhu3e26bb42012-09-27 11:04:09 -0700660 m_lastMsgTime = time(NULL);
661
Zhenkai Zhuc5470612012-06-05 12:28:59 -0700662 int nextSequence = m_sock->getNextSeq(m_user.getPrefix().toStdString(), m_session);
Zhenkai Zhud1c5a972012-06-05 14:07:41 -0700663 Sync::MissingDataInfo mdi = {m_user.getPrefix().toStdString(), Sync::SeqNo(0), Sync::SeqNo(nextSequence - 1)};
Zhenkai Zhuc5470612012-06-05 12:28:59 -0700664 std::vector<Sync::MissingDataInfo> v;
665 v.push_back(mdi);
Zhenkai Zhu44b43752012-06-05 21:18:37 -0700666 {
Zhenkai Zhu9036e032012-09-27 20:59:33 -0700667 boost::recursive_mutex::scoped_lock lock(m_sceneMutex);
Zhenkai Zhu44b43752012-06-05 21:18:37 -0700668 m_scene->processUpdate(v, m_sock->getRootDigest().c_str());
669 m_scene->msgReceived(m_user.getPrefix(), m_user.getNick());
670 }
Zhenkai Zhu2425b6a2012-09-26 17:11:44 -0700671}
672
673void
Zhenkai Zhu25e33e52012-09-28 13:00:07 -0700674ChatDialog::sendJoin()
675{
676 SyncDemo::ChatMessage msg;
Zhenkai Zhub5b78462012-09-28 14:10:37 -0700677 formControlMessage(msg, SyncDemo::ChatMessage::JOIN);
Zhenkai Zhu25e33e52012-09-28 13:00:07 -0700678 sendMsg(msg);
679 QTimer::singleShot(m_randomizedInterval, this, SLOT(sendHello()));
680}
681
682void
Zhenkai Zhu2425b6a2012-09-26 17:11:44 -0700683ChatDialog::sendHello()
684{
Zhenkai Zhu3e26bb42012-09-27 11:04:09 -0700685 time_t now = time(NULL);
686 int elapsed = now - m_lastMsgTime;
Zhenkai Zhu25e33e52012-09-28 13:00:07 -0700687 if (elapsed >= m_randomizedInterval / 1000)
Zhenkai Zhu3e26bb42012-09-27 11:04:09 -0700688 {
689 SyncDemo::ChatMessage msg;
Zhenkai Zhub5b78462012-09-28 14:10:37 -0700690 formControlMessage(msg, SyncDemo::ChatMessage::HELLO);
Zhenkai Zhu3e26bb42012-09-27 11:04:09 -0700691 sendMsg(msg);
Zhenkai Zhuee5c90f2012-09-27 14:05:41 -0700692 QTimer::singleShot(m_randomizedInterval, this, SLOT(sendHello()));
Zhenkai Zhu3e26bb42012-09-27 11:04:09 -0700693 }
694 else
695 {
Zhenkai Zhuee5c90f2012-09-27 14:05:41 -0700696 QTimer::singleShot((m_randomizedInterval - elapsed * 1000), this, SLOT(sendHello()));
Zhenkai Zhu3e26bb42012-09-27 11:04:09 -0700697 }
Zhenkai Zhu5a8d5aa2012-05-30 21:25:23 -0700698}
699
700void
Zhenkai Zhu85845d22012-06-01 23:10:43 -0700701ChatDialog::buttonPressed()
702{
Zhenkai Zhue95c64a2012-09-27 21:46:44 -0700703 SettingDialog dialog(this, m_user.getNick(), m_user.getChatroom(), m_user.getOriginPrefix());
Zhenkai Zhu7e9b06d2012-06-02 00:44:42 -0700704 connect(&dialog, SIGNAL(updated(QString, QString, QString)), this, SLOT(settingUpdated(QString, QString, QString)));
Zhenkai Zhu85845d22012-06-01 23:10:43 -0700705 dialog.exec();
Zhenkai Zhue837f792012-06-05 20:47:54 -0700706 QTimer::singleShot(100, this, SLOT(checkSetting()));
707}
708
Zhenkai Zhub60b7e12012-09-28 11:34:21 -0700709void ChatDialog::treeButtonPressed()
710{
711 if (treeViewer->isVisible())
712 {
713 treeViewer->hide();
714 treeButton->setText("Show Sync Tree");
715 }
716 else
717 {
718 treeViewer->show();
719 treeButton->setText("Hide Sync Tree");
720 }
Zhenkai Zhu25e33e52012-09-28 13:00:07 -0700721
722 fitView();
Zhenkai Zhub60b7e12012-09-28 11:34:21 -0700723}
724
Zhenkai Zhu0e7a9b22012-10-05 17:55:17 -0700725void ChatDialog::enableTreeDisplay()
726{
727 treeButton->setEnabled(true);
728 treeViewer->show();
729 fitView();
730}
731
732void ChatDialog::disableTreeDisplay()
733{
734 treeButton->setEnabled(false);
735 treeViewer->hide();
736 fitView();
737}
738
Zhenkai Zhue837f792012-06-05 20:47:54 -0700739void
740ChatDialog::checkSetting()
741{
Zhenkai Zhue95c64a2012-09-27 21:46:44 -0700742 if (m_user.getOriginPrefix().isEmpty() || m_user.getNick().isEmpty() || m_user.getChatroom().isEmpty())
Zhenkai Zhue837f792012-06-05 20:47:54 -0700743 {
744 buttonPressed();
745 }
Zhenkai Zhu6d589aa2012-05-29 17:34:35 -0700746}
Zhenkai Zhue08afe02012-05-31 15:49:07 -0700747
Zhenkai Zhu7e9b06d2012-06-02 00:44:42 -0700748void
Zhenkai Zhue95c64a2012-09-27 21:46:44 -0700749ChatDialog::settingUpdated(QString nick, QString chatroom, QString originPrefix)
Zhenkai Zhu7e9b06d2012-06-02 00:44:42 -0700750{
Zhenkai Zhue95c64a2012-09-27 21:46:44 -0700751 QString randString = getRandomString();
Zhenkai Zhu7e9b06d2012-06-02 00:44:42 -0700752 bool needWrite = false;
Zhenkai Zhue95c64a2012-09-27 21:46:44 -0700753 bool needFresh = false;
Zhenkai Zhu71b42cb2012-06-04 09:42:53 -0700754 if (!nick.isEmpty() && nick != m_user.getNick()) {
755 m_user.setNick(nick);
Zhenkai Zhu7e9b06d2012-06-02 00:44:42 -0700756 needWrite = true;
757 }
Zhenkai Zhu6c4fc112012-10-07 17:07:43 -0700758 QString oldPrefix = m_user.getPrefix();
Zhenkai Zhue95c64a2012-09-27 21:46:44 -0700759 if (!originPrefix.isEmpty() && originPrefix != m_user.getOriginPrefix()) {
760 m_user.setOriginPrefix(originPrefix);
761 m_user.setPrefix(originPrefix + "/" + m_user.getChatroom() + "/" + randString);
Zhenkai Zhu7e9b06d2012-06-02 00:44:42 -0700762 needWrite = true;
Zhenkai Zhue95c64a2012-09-27 21:46:44 -0700763 needFresh = true;
Zhenkai Zhu7e9b06d2012-06-02 00:44:42 -0700764 }
Zhenkai Zhu71b42cb2012-06-04 09:42:53 -0700765 if (!chatroom.isEmpty() && chatroom != m_user.getChatroom()) {
766 m_user.setChatroom(chatroom);
Zhenkai Zhue95c64a2012-09-27 21:46:44 -0700767 m_user.setPrefix(m_user.getOriginPrefix() + "/" + chatroom + "/" + randString);
Zhenkai Zhu7e9b06d2012-06-02 00:44:42 -0700768 needWrite = true;
Zhenkai Zhue95c64a2012-09-27 21:46:44 -0700769 needFresh = true;
770 }
771
772 if (needFresh)
773 {
Zhenkai Zhu82a62752012-06-04 17:11:04 -0700774
Zhenkai Zhu44b43752012-06-05 21:18:37 -0700775 {
Zhenkai Zhu9036e032012-09-27 20:59:33 -0700776 boost::recursive_mutex::scoped_lock lock(m_sceneMutex);
Zhenkai Zhu44b43752012-06-05 21:18:37 -0700777 m_scene->clearAll();
778 m_scene->plot("Empty");
779 }
Zhenkai Zhucc4c2c02012-09-27 21:24:37 -0700780
781 textEdit->clear();
782
Zhenkai Zhu7e9b06d2012-06-02 00:44:42 -0700783 // TODO: perhaps need to do a lot. e.g. use a new SyncAppSokcet
Zhenkai Zhu82a62752012-06-04 17:11:04 -0700784 if (m_sock != NULL)
785 {
Zhenkai Zhucf024442012-10-05 10:33:08 -0700786 sendLeave();
Zhenkai Zhu6c4fc112012-10-07 17:07:43 -0700787 Sync::CcnxWrapperPtr handle = Sync::CcnxWrapper::Create();
788 handle->clearInterestFilter(oldPrefix.toStdString());
789 m_history.clear();
790 m_historyInitialized = false;
Zhenkai Zhu82a62752012-06-04 17:11:04 -0700791 delete m_sock;
792 m_sock = NULL;
793 }
794 std::string syncPrefix = BROADCAST_PREFIX_FOR_SYNC_DEMO;
795 syncPrefix += "/";
796 syncPrefix += m_user.getChatroom().toStdString();
Zhenkai Zhua4fb1242012-06-05 20:26:05 -0700797 try
798 {
Zhenkai Zhu2425b6a2012-09-26 17:11:44 -0700799 m_sock = new Sync::SyncAppSocket(syncPrefix, bind(&ChatDialog::processTreeUpdateWrapper, this, _1, _2), bind(&ChatDialog::processRemoveWrapper, this, _1));
Zhenkai Zhu6c4fc112012-10-07 17:07:43 -0700800 Sync::CcnxWrapperPtr handle = Sync::CcnxWrapper::Create();
801 handle->setInterestFilter(m_user.getPrefix().toStdString(), bind(&ChatDialog::respondHistoryRequest, this, _1));
Alexander Afanasyev288edd82012-10-04 17:07:56 -0700802 QTimer::singleShot(1000, this, SLOT(sendJoin()));
Zhenkai Zhu86df7412012-09-27 16:30:20 -0700803 m_timer->start(FRESHNESS * 2000);
Zhenkai Zhu0e7a9b22012-10-05 17:55:17 -0700804 disableTreeDisplay();
805 QTimer::singleShot(2200, this, SLOT(enableTreeDisplay()));
Zhenkai Zhua4fb1242012-06-05 20:26:05 -0700806 }
807 catch (Sync::CcnxOperationException ex)
808 {
Zhenkai Zhu0b3fa332012-09-27 21:58:43 -0700809 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 -0700810 std::exit(1);
811 }
Zhenkai Zhu82a62752012-06-04 17:11:04 -0700812
813 fitView();
814
Zhenkai Zhu7e9b06d2012-06-02 00:44:42 -0700815 }
Zhenkai Zhue95c64a2012-09-27 21:46:44 -0700816
Zhenkai Zhu7e9b06d2012-06-02 00:44:42 -0700817 if (needWrite) {
818 writeSettings();
819 updateLabels();
820 }
821}
Zhenkai Zhud13acd02012-06-04 15:25:20 -0700822
Zhenkai Zhu3a008fc2012-06-08 17:36:39 -0700823void
824ChatDialog::iconActivated(QSystemTrayIcon::ActivationReason reason)
825{
826 switch (reason)
827 {
828 case QSystemTrayIcon::Trigger:
829 case QSystemTrayIcon::DoubleClick:
830 break;
831 case QSystemTrayIcon::MiddleClick:
832 // showMessage();
833 break;
834 default:;
835 }
836}
837
838void
839ChatDialog::showMessage(QString from, QString data)
840{
841 // std::cout <<"Showing Message: " << from.toStdString() << ": " << data.toStdString() << std::endl;
842 if (!isActiveWindow())
843 {
844 trayIcon->showMessage(QString("Chatroom %1 has a new message").arg(m_user.getChatroom()), QString("<%1>: %2").arg(from).arg(data), QSystemTrayIcon::Information, 20000);
845 trayIcon->setIcon(QIcon(":/images/note.png"));
846 }
847}
848
849void
850ChatDialog::messageClicked()
851{
852 this->showMaximized();
853}
854
855void
856ChatDialog::createActions()
857{
858 minimizeAction = new QAction(tr("Mi&nimize"), this);
859 connect(minimizeAction, SIGNAL(triggered()), this, SLOT(hide()));
860
861 maximizeAction = new QAction(tr("Ma&ximize"), this);
862 connect(maximizeAction, SIGNAL(triggered()), this, SLOT(showMaximized()));
863
864 restoreAction = new QAction(tr("&Restore"), this);
865 connect(restoreAction, SIGNAL(triggered()), this, SLOT(showNormal()));
866
867 quitAction = new QAction(tr("Quit"), this);
868 connect(quitAction, SIGNAL(triggered()), qApp, SLOT(quit()));
869}
870
871void
872ChatDialog::createTrayIcon()
873{
874 trayIconMenu = new QMenu(this);
875 trayIconMenu->addAction(minimizeAction);
876 trayIconMenu->addAction(maximizeAction);
877 trayIconMenu->addAction(restoreAction);
878 trayIconMenu->addSeparator();
879 trayIconMenu->addAction(quitAction);
880
881 trayIcon = new QSystemTrayIcon(this);
882 trayIcon->setContextMenu(trayIconMenu);
883
884 QIcon icon(":/images/icon_small.png");
885 trayIcon->setIcon(icon);
886 setWindowIcon(icon);
Zhenkai Zhu0b3fa332012-09-27 21:58:43 -0700887 trayIcon->setToolTip("Chronos System Tray Icon");
Zhenkai Zhu3a008fc2012-06-08 17:36:39 -0700888 trayIcon->setVisible(true);
889}
890
Zhenkai Zhud13acd02012-06-04 15:25:20 -0700891void
892ChatDialog::resizeEvent(QResizeEvent *e)
893{
894 fitView();
895}
896
897void
898ChatDialog::showEvent(QShowEvent *e)
899{
900 fitView();
901}
902
903void
904ChatDialog::fitView()
905{
Zhenkai Zhu9036e032012-09-27 20:59:33 -0700906 boost::recursive_mutex::scoped_lock lock(m_sceneMutex);
Zhenkai Zhu21d75f92012-06-04 21:23:34 -0700907 QRectF rect = m_scene->itemsBoundingRect();
908 m_scene->setSceneRect(rect);
Zhenkai Zhu82a62752012-06-04 17:11:04 -0700909 treeViewer->fitInView(m_scene->itemsBoundingRect(), Qt::KeepAspectRatio);
Zhenkai Zhud13acd02012-06-04 15:25:20 -0700910}