blob: 20280e882f72d09a6cc3e00c1f9c2995c09d5ff3 [file] [log] [blame]
Alexander Afanasyevb4b92292013-07-09 13:54:59 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
2/*
3 * Copyright (c) 2013, Regents of the University of California
Yingdi Yu5b989132013-10-23 14:03:09 -07004 * Yingdi Yu
Alexander Afanasyevb4b92292013-07-09 13:54:59 -07005 *
Yingdi Yu5b989132013-10-23 14:03:09 -07006 * BSD license, See the LICENSE file for more information
Alexander Afanasyevb4b92292013-07-09 13:54:59 -07007 *
Yingdi Yu7989eb22013-10-31 17:38:22 -07008 * Author: Zhenkai Zhu <zhenkai@cs.ucla.edu>
9 * Alexander Afanasyev <alexander.afanasyev@ucla.edu>
10 * Yingdi Yu <yingdi@cs.ucla.edu>
Alexander Afanasyevb4b92292013-07-09 13:54:59 -070011 */
12
Zhenkai Zhu6d589aa2012-05-29 17:34:35 -070013#ifndef CHATDIALOG_H
14#define CHATDIALOG_H
Alexander Afanasyevf829f4d2013-05-07 15:59:36 -070015
Yingdi Yu5b989132013-10-23 14:03:09 -070016#include <QDialog>
Yingdi Yu7989eb22013-10-31 17:38:22 -070017#include <QTextTable>
18#include <QStringListModel>
19#include <QTimer>
Yingdi Yu83eae842013-11-06 22:07:38 -080020#include <QSystemTrayIcon>
Yingdi Yu702d6f12013-11-07 17:00:54 -080021#include <QMenu>
Yingdi Yu7989eb22013-10-31 17:38:22 -070022
23#include "invitelistdialog.h"
Alexander Afanasyevf829f4d2013-05-07 15:59:36 -070024
Yingdi Yu5b989132013-10-23 14:03:09 -070025#ifndef Q_MOC_RUN
26#include <ndn.cxx/data.h>
Yingdi Yueda39aa2013-10-23 23:07:29 -070027#include <ndn.cxx/security/keychain.h>
28#include <ndn.cxx/wrapper/wrapper.h>
Yingdi Yu7989eb22013-10-31 17:38:22 -070029#include "invitation-policy-manager.h"
Yingdi Yueda39aa2013-10-23 23:07:29 -070030#include "contact-item.h"
Yingdi Yu7989eb22013-10-31 17:38:22 -070031
Alexander Afanasyev4a979312013-11-07 15:30:05 -080032#include <sync-socket.h>
Yingdi Yu7989eb22013-10-31 17:38:22 -070033#include <sync-seq-no.h>
34#include "chatbuf.pb.h"
35#include "digesttreescene.h"
Alexander Afanasyevf829f4d2013-05-07 15:59:36 -070036#endif
37
Yingdi Yu7989eb22013-10-31 17:38:22 -070038#define MAX_HISTORY_ENTRY 20
39
Yingdi Yu5b989132013-10-23 14:03:09 -070040namespace Ui {
41class ChatDialog;
42}
Zhenkai Zhu6d589aa2012-05-29 17:34:35 -070043
Yingdi Yu5b989132013-10-23 14:03:09 -070044class ChatDialog : public QDialog
Zhenkai Zhu6d589aa2012-05-29 17:34:35 -070045{
Yingdi Yu5b989132013-10-23 14:03:09 -070046 Q_OBJECT
Zhenkai Zhu6d589aa2012-05-29 17:34:35 -070047
48public:
Yingdi Yu7989eb22013-10-31 17:38:22 -070049 explicit ChatDialog(ndn::Ptr<ContactManager> contactManager,
50 const ndn::Name& chatroomPrefix,
Yingdi Yu5b989132013-10-23 14:03:09 -070051 const ndn::Name& localPrefix,
Yingdi Yueda39aa2013-10-23 23:07:29 -070052 const ndn::Name& defaultIdentity,
Yingdi Yu46948282013-11-06 18:43:31 -080053 const std::string& nick,
54 bool trial = false,
Yingdi Yu5b989132013-10-23 14:03:09 -070055 QWidget *parent = 0);
Yingdi Yu7989eb22013-10-31 17:38:22 -070056
57 // explicit ChatDialog(const ndn::Name& chatroomPrefix,
58 // const ndn::Name& localPrefix,
59 // const ndn::Name& defaultIdentity,
60 // const ndn::security::IdentityCertificate& identityCertificate,
61 // QWidget *parent = 0);
62
Zhenkai Zhu82a62752012-06-04 17:11:04 -070063 ~ChatDialog();
Zhenkai Zhub45e38a2012-06-01 15:44:36 -070064
Yingdi Yu5b989132013-10-23 14:03:09 -070065 const ndn::Name&
66 getChatroomPrefix() const
67 { return m_chatroomPrefix; }
Zhenkai Zhu3a008fc2012-06-08 17:36:39 -070068
Yingdi Yu5b989132013-10-23 14:03:09 -070069 const ndn::Name&
70 getLocalPrefix() const
71 { return m_localPrefix; }
72
73 void
Yingdi Yu7989eb22013-10-31 17:38:22 -070074 sendInvitation(ndn::Ptr<ContactItem> contact, bool isIntroducer);
75
76 void
77 addTrustAnchor(const EndorseCertificate& selfEndorseCertificate);
78
79 void
80 addChatDataRule(const ndn::Name& prefix,
81 const ndn::security::IdentityCertificate& identityCertificate,
82 bool isIntroducer);
83
84 void
85 appendMessage(const SyncDemo::ChatMessage msg, bool isHistory = false);
86
87 void
88 processTreeUpdateWrapper(const std::vector<Sync::MissingDataInfo>, Sync::SyncSocket *);
89
90 void
91 processDataWrapper(ndn::Ptr<ndn::Data> data);
92
93 void
94 processDataNoShowWrapper(ndn::Ptr<ndn::Data> data);
95
96 void
97 processRemoveWrapper(std::string);
Zhenkai Zhu10ccb5a2012-06-04 21:55:14 -070098
Yingdi Yu83eae842013-11-06 22:07:38 -080099 void
100 publishIntroCert(const ndn::security::IdentityCertificate& dskCertificate, bool isIntroducer);
101
Yingdi Yu46948282013-11-06 18:43:31 -0800102protected:
Yingdi Yu83eae842013-11-06 22:07:38 -0800103 void
104 closeEvent(QCloseEvent *e);
105
106 void
107 changeEvent(QEvent *e);
Yingdi Yu46948282013-11-06 18:43:31 -0800108
Zhenkai Zhub45e38a2012-06-01 15:44:36 -0700109private:
Yingdi Yu7989eb22013-10-31 17:38:22 -0700110
111 void
112 initializeSetting();
113
Yingdi Yufdb8ab82013-11-10 01:38:21 -0800114 QString
115 getRandomString();
116
Yingdi Yu7989eb22013-10-31 17:38:22 -0700117 void
118 updateLabels();
119
Yingdi Yueda39aa2013-10-23 23:07:29 -0700120 void
Yingdi Yu46948282013-11-06 18:43:31 -0800121 setWrapper(bool trial);
Yingdi Yu7989eb22013-10-31 17:38:22 -0700122
123 void
124 initializeSync();
Yingdi Yueda39aa2013-10-23 23:07:29 -0700125
126 void
Yingdi Yu7989eb22013-10-31 17:38:22 -0700127 onInviteReplyVerified(ndn::Ptr<ndn::Data> data, const ndn::Name& identity, bool isIntroducer);
Yingdi Yueda39aa2013-10-23 23:07:29 -0700128
129 void
130 onInviteTimeout(ndn::Ptr<ndn::Closure> closure,
131 ndn::Ptr<ndn::Interest> interest,
132 const ndn::Name& identity,
133 int retry);
134
135 void
136 invitationRejected(const ndn::Name& identity);
137
138 void
Yingdi Yu7989eb22013-10-31 17:38:22 -0700139 invitationAccepted(const ndn::Name& identity,
140 ndn::Ptr<ndn::Data> data,
141 const std::string& inviteePrefix,
142 bool isIntroducer);
Yingdi Yueda39aa2013-10-23 23:07:29 -0700143
144 void
145 onUnverified(ndn::Ptr<ndn::Data> data);
Yingdi Yu7989eb22013-10-31 17:38:22 -0700146
Yingdi Yu46948282013-11-06 18:43:31 -0800147 void
148 onTimeout(ndn::Ptr<ndn::Closure> closure,
149 ndn::Ptr<ndn::Interest> interest);
Yingdi Yu7989eb22013-10-31 17:38:22 -0700150
Yingdi Yufdb8ab82013-11-10 01:38:21 -0800151 void
Yingdi Yua66183f2013-11-10 10:32:18 -0800152 onLocalPrefix(ndn::Ptr<ndn::Data> data);
Yingdi Yufdb8ab82013-11-10 01:38:21 -0800153
154 void
Yingdi Yua66183f2013-11-10 10:32:18 -0800155 onLocalPrefixTimeout(ndn::Ptr<ndn::Closure> closure,
Yingdi Yufdb8ab82013-11-10 01:38:21 -0800156 ndn::Ptr<ndn::Interest> interest);
Yingdi Yu7989eb22013-10-31 17:38:22 -0700157
158 // void
159 // fetchHistory(std::string name);
160
161 void
162 formChatMessage(const QString &text, SyncDemo::ChatMessage &msg);
163
164 void
165 formControlMessage(SyncDemo::ChatMessage &msg, SyncDemo::ChatMessage::ChatMessageType type);
166
167 void
168 sendMsg(SyncDemo::ChatMessage &msg);
169
170 void
171 resizeEvent(QResizeEvent *);
172
173 void
174 showEvent(QShowEvent *);
175
176 void
177 fitView();
178
Yingdi Yu83eae842013-11-06 22:07:38 -0800179 void
180 createActions();
181
182 void
183 createTrayIcon();
184
Yingdi Yu7989eb22013-10-31 17:38:22 -0700185 QString
186 formatTime(time_t);
187
188 void
189 printTimeInCell(QTextTable *, time_t);
190
191 void
192 disableTreeDisplay();
193
194signals:
195 void
196 dataReceived(QString name, const char *buf, size_t len, bool show, bool isHistory);
197
198 void
199 treeUpdated(const std::vector<Sync::MissingDataInfo>);
200
201 void
202 removeReceived(QString prefix);
203
Yingdi Yu46948282013-11-06 18:43:31 -0800204 void
205 closeChatDialog(const ndn::Name& chatroomPrefix);
206
Yingdi Yu8e135832013-11-09 20:12:31 -0800207 void
208 noNdnConnection(const QString& msg);
209
Yingdi Yu7989eb22013-10-31 17:38:22 -0700210public slots:
211 void
212 processTreeUpdate(const std::vector<Sync::MissingDataInfo>);
213
214 void
215 processData(QString name, const char *buf, size_t len, bool show, bool isHistory);
216
217 void
218 processRemove(QString prefix);
219
220private slots:
221 void
222 returnPressed();
223
224 void
225 treeButtonPressed();
226
Yingdi Yufdb8ab82013-11-10 01:38:21 -0800227 void
228 settingUpdated(QString, QString, QString);
229
Yingdi Yu7989eb22013-10-31 17:38:22 -0700230 void
231 sendJoin();
232
233 void
234 sendHello();
235
236 void
237 sendLeave();
238
239 void
240 replot();
241
242 void
243 updateRosterList(QStringList);
244
245 void
246 enableTreeDisplay();
247
Yingdi Yufdb8ab82013-11-10 01:38:21 -0800248 void
249 updateLocalPrefix();
250
Yingdi Yu7989eb22013-10-31 17:38:22 -0700251 void
252 summonReaper();
253
254 void
255 reap();
256
257 void
Yingdi Yu83eae842013-11-06 22:07:38 -0800258 iconActivated(QSystemTrayIcon::ActivationReason reason);
259
260 void
261 messageClicked();
262
263 void
Yingdi Yu7989eb22013-10-31 17:38:22 -0700264 showMessage(QString, QString);
265
266 void
267 openInviteListDialog();
268
269 void
270 sendInvitationWrapper(QString, bool);
Yingdi Yu702d6f12013-11-07 17:00:54 -0800271
272 void
273 quit();
Yingdi Yueda39aa2013-10-23 23:07:29 -0700274
275private:
Yingdi Yu5b989132013-10-23 14:03:09 -0700276 Ui::ChatDialog *ui;
Yingdi Yu7989eb22013-10-31 17:38:22 -0700277 ndn::Ptr<ContactManager> m_contactManager;
Yingdi Yu5b989132013-10-23 14:03:09 -0700278 ndn::Name m_chatroomPrefix;
279 ndn::Name m_localPrefix;
Yingdi Yu7989eb22013-10-31 17:38:22 -0700280 ndn::Name m_localChatPrefix;
Yingdi Yueda39aa2013-10-23 23:07:29 -0700281 ndn::Name m_defaultIdentity;
Yingdi Yu7989eb22013-10-31 17:38:22 -0700282 ndn::Ptr<InvitationPolicyManager> m_invitationPolicyManager;
283 ndn::Ptr<SyncPolicyManager> m_syncPolicyManager;
Yingdi Yueda39aa2013-10-23 23:07:29 -0700284 ndn::Ptr<ndn::security::IdentityManager> m_identityManager;
285 ndn::Ptr<ndn::security::Keychain> m_keychain;
286 ndn::Ptr<ndn::Wrapper> m_handler;
Yingdi Yua66183f2013-11-10 10:32:18 -0800287
Yingdi Yufdb8ab82013-11-10 01:38:21 -0800288 ndn::Ptr<ndn::Wrapper> m_localPrefixHandler;
Yingdi Yua66183f2013-11-10 10:32:18 -0800289 ndn::Name m_newLocalPrefix;
290 bool m_newLocalPrefixReady;
Yingdi Yu7989eb22013-10-31 17:38:22 -0700291
292 User m_user;
Yingdi Yu46948282013-11-06 18:43:31 -0800293 std::string m_nick;
Yingdi Yu7989eb22013-10-31 17:38:22 -0700294 Sync::SyncSocket *m_sock;
295 uint32_t m_session;
296 DigestTreeScene *m_scene;
297 boost::recursive_mutex m_msgMutex;
298 boost::recursive_mutex m_sceneMutex;
299 time_t m_lastMsgTime;
300 int m_randomizedInterval;
301 QTimer *m_timer;
302 QStringListModel *m_rosterModel;
Yingdi Yu83eae842013-11-06 22:07:38 -0800303 QSystemTrayIcon *trayIcon;
Yingdi Yu7989eb22013-10-31 17:38:22 -0700304
Yingdi Yu702d6f12013-11-07 17:00:54 -0800305 QAction *minimizeAction;
306 QAction *maximizeAction;
307 QAction *restoreAction;
Yingdi Yufdb8ab82013-11-10 01:38:21 -0800308 QAction *updateLocalPrefixAction;
Yingdi Yu702d6f12013-11-07 17:00:54 -0800309 QAction *quitAction;
310 QMenu *trayIconMenu;
311
Yingdi Yu7989eb22013-10-31 17:38:22 -0700312 // QQueue<SyncDemo::ChatMessage> m_history;
313 // bool m_historyInitialized;
314 bool m_joined;
315
316 QList<QString> m_zombieList;
317 int m_zombieIndex;
318
319 InviteListDialog* m_inviteListDialog;
Zhenkai Zhu6d589aa2012-05-29 17:34:35 -0700320};
Yingdi Yu5b989132013-10-23 14:03:09 -0700321
322#endif // ChatDIALOG_H