blob: 71f36d81cc5c93e33f0a27bff8923f3decdcc4de [file] [log] [blame]
Zhenkai Zhu6d589aa2012-05-29 17:34:35 -07001#ifndef CHATDIALOG_H
2#define CHATDIALOG_H
Alexander Afanasyevf829f4d2013-05-07 15:59:36 -07003
4#ifndef Q_MOC_RUN
Zhenkai Zhub45e38a2012-06-01 15:44:36 -07005#include <boost/function.hpp>
Zhenkai Zhu9036e032012-09-27 20:59:33 -07006#include <boost/thread/recursive_mutex.hpp>
Alexander Afanasyevf829f4d2013-05-07 15:59:36 -07007
Zhenkai Zhub45e38a2012-06-01 15:44:36 -07008#include <vector>
9#include "digesttreescene.h"
Zhenkai Zhu6d589aa2012-05-29 17:34:35 -070010#include "ui_chatdialog.h"
Zhenkai Zhu5a8d5aa2012-05-30 21:25:23 -070011#include "chatbuf.pb.h"
Zhenkai Zhu90ee76c2012-06-01 16:00:25 -070012#include <sync-app-socket.h>
Zhenkai Zhu85845d22012-06-01 23:10:43 -070013#include <sync-logic.h>
14#include <sync-seq-no.h>
Alexander Afanasyevf829f4d2013-05-07 15:59:36 -070015#endif
16
Zhenkai Zhu3a008fc2012-06-08 17:36:39 -070017#include <QSystemTrayIcon>
Zhenkai Zhu6c4fc112012-10-07 17:07:43 -070018#include <QQueue>
Zhenkai Zhu6d589aa2012-05-29 17:34:35 -070019
Zhenkai Zhu7e9b06d2012-06-02 00:44:42 -070020#define ORGANIZATION "IRL@UCLA"
Zhenkai Zhu0b3fa332012-09-27 21:58:43 -070021#define APPLICATION "CHRONOS"
Zhenkai Zhu6c4fc112012-10-07 17:07:43 -070022#define MAX_HISTORY_ENTRY 20
Zhenkai Zhu7e9b06d2012-06-02 00:44:42 -070023
Zhenkai Zhu3a008fc2012-06-08 17:36:39 -070024class QAction;
25class QMenu;
Zhenkai Zhu6082ede2012-09-27 17:28:46 -070026class QStringListModel;
Zhenkai Zhu560ef1b2012-09-28 14:23:33 -070027class QTextTable;
Zhenkai Zhu3a008fc2012-06-08 17:36:39 -070028
Zhenkai Zhu6d589aa2012-05-29 17:34:35 -070029class ChatDialog : public QDialog, private Ui::ChatDialog
30{
31 Q_OBJECT
32
33public:
Zhenkai Zhu3a008fc2012-06-08 17:36:39 -070034 ChatDialog(QWidget *parent = 0);
Zhenkai Zhu82a62752012-06-04 17:11:04 -070035 ~ChatDialog();
Zhenkai Zhu3a008fc2012-06-08 17:36:39 -070036 void setVisible(bool visible);
Zhenkai Zhu24ec4722012-10-07 17:56:38 -070037 void appendMessage(const SyncDemo::ChatMessage msg, bool isHistory = false);
Zhenkai Zhu64f9ede2012-06-05 11:32:00 -070038 void processTreeUpdateWrapper(const std::vector<Sync::MissingDataInfo>, Sync::SyncAppSocket *);
39 void processDataWrapper(std::string, const char *buf, size_t len);
Zhenkai Zhubb198112012-09-27 11:31:42 -070040 void processDataNoShowWrapper(std::string, const char *buf, size_t len);
Zhenkai Zhu24ec4722012-10-07 17:56:38 -070041 void processDataHistoryWrapper(std::string, const char *buf, size_t len);
Zhenkai Zhu2425b6a2012-09-26 17:11:44 -070042 void processRemoveWrapper(std::string);
Zhenkai Zhu6c4fc112012-10-07 17:07:43 -070043 void respondHistoryRequest(std::string interest);
Zhenkai Zhub45e38a2012-06-01 15:44:36 -070044
Zhenkai Zhu3a008fc2012-06-08 17:36:39 -070045protected:
46 void closeEvent(QCloseEvent *e);
47 void changeEvent(QEvent *e);
48
Zhenkai Zhu10ccb5a2012-06-04 21:55:14 -070049public slots:
Zhenkai Zhu64f9ede2012-06-05 11:32:00 -070050 void processTreeUpdate(const std::vector<Sync::MissingDataInfo>);
Zhenkai Zhu24ec4722012-10-07 17:56:38 -070051 void processData(QString name, const char *buf, size_t len, bool show, bool isHistory);
Zhenkai Zhu2425b6a2012-09-26 17:11:44 -070052 void processRemove(QString);
Zhenkai Zhu10ccb5a2012-06-04 21:55:14 -070053
Zhenkai Zhub45e38a2012-06-01 15:44:36 -070054private:
Zhenkai Zhu6c4fc112012-10-07 17:07:43 -070055 void fetchHistory(std::string name);
Zhenkai Zhu59245aa2012-09-26 16:07:04 -070056 QString getRandomString();
Zhenkai Zhub45e38a2012-06-01 15:44:36 -070057 void formChatMessage(const QString &text, SyncDemo::ChatMessage &msg);
Zhenkai Zhub5b78462012-09-28 14:10:37 -070058 void formControlMessage(SyncDemo::ChatMessage &msg, SyncDemo::ChatMessage::ChatMessageType type);
Zhenkai Zhu2425b6a2012-09-26 17:11:44 -070059 void sendMsg(SyncDemo::ChatMessage &msg);
Zhenkai Zhu82a62752012-06-04 17:11:04 -070060 bool readSettings();
Zhenkai Zhu7e9b06d2012-06-02 00:44:42 -070061 void writeSettings();
62 void updateLabels();
Zhenkai Zhud13acd02012-06-04 15:25:20 -070063 void resizeEvent(QResizeEvent *);
64 void showEvent(QShowEvent *);
65 void fitView();
Zhenkai Zhu21d75f92012-06-04 21:23:34 -070066 void testDraw();
Zhenkai Zhu3a008fc2012-06-08 17:36:39 -070067 void createTrayIcon();
68 void createActions();
Zhenkai Zhu560ef1b2012-09-28 14:23:33 -070069 QString formatTime(time_t);
70 void printTimeInCell(QTextTable *, time_t);
Zhenkai Zhu0e7a9b22012-10-05 17:55:17 -070071 void disableTreeDisplay();
Zhenkai Zhu0fe2b8c2012-10-09 04:49:28 -070072 bool getLocalPrefix();
Zhenkai Zhud616b582012-10-10 00:04:07 -070073 void initializeSync();
Zhenkai Zhu5a8d5aa2012-05-30 21:25:23 -070074
75private slots:
76 void returnPressed();
Zhenkai Zhu85845d22012-06-01 23:10:43 -070077 void buttonPressed();
Zhenkai Zhub60b7e12012-09-28 11:34:21 -070078 void treeButtonPressed();
Zhenkai Zhue837f792012-06-05 20:47:54 -070079 void checkSetting();
Zhenkai Zhu7e9b06d2012-06-02 00:44:42 -070080 void settingUpdated(QString, QString, QString);
Zhenkai Zhu3e26bb42012-09-27 11:04:09 -070081 void sendHello();
Zhenkai Zhu25e33e52012-09-28 13:00:07 -070082 void sendJoin();
Zhenkai Zhucf024442012-10-05 10:33:08 -070083 void sendLeave();
Zhenkai Zhu86df7412012-09-27 16:30:20 -070084 void replot();
Zhenkai Zhu25e33e52012-09-28 13:00:07 -070085 void updateRosterList(QStringList);
Zhenkai Zhu0e7a9b22012-10-05 17:55:17 -070086 void enableTreeDisplay();
Zhenkai Zhu0fe2b8c2012-10-09 04:49:28 -070087 void updateLocalPrefix();
Zhenkai Zhu7f52e1b2012-10-09 11:45:36 -070088 void reap();
89 void summonReaper();
Zhenkai Zhu86581412012-10-08 16:58:39 -070090
Zhenkai Zhu3a008fc2012-06-08 17:36:39 -070091 // icon related
92 void iconActivated(QSystemTrayIcon::ActivationReason reason);
93 void showMessage(QString, QString);
94 void messageClicked();
95
Zhenkai Zhu10ccb5a2012-06-04 21:55:14 -070096signals:
Zhenkai Zhu24ec4722012-10-07 17:56:38 -070097 void dataReceived(QString name, const char *buf, size_t len, bool show, bool isHistory);
Zhenkai Zhu64f9ede2012-06-05 11:32:00 -070098 void treeUpdated(const std::vector<Sync::MissingDataInfo>);
Zhenkai Zhu2425b6a2012-09-26 17:11:44 -070099 void removeReceived(QString prefix);
Zhenkai Zhu10ccb5a2012-06-04 21:55:14 -0700100
Zhenkai Zhu5a8d5aa2012-05-30 21:25:23 -0700101private:
Zhenkai Zhu71b42cb2012-06-04 09:42:53 -0700102 User m_user;
Zhenkai Zhub45e38a2012-06-01 15:44:36 -0700103 Sync::SyncAppSocket *m_sock;
Zhenkai Zhu82a62752012-06-04 17:11:04 -0700104 uint32_t m_session;
105 DigestTreeScene *m_scene;
Zhenkai Zhu9036e032012-09-27 20:59:33 -0700106 boost::recursive_mutex m_msgMutex;
107 boost::recursive_mutex m_sceneMutex;
Zhenkai Zhu3e26bb42012-09-27 11:04:09 -0700108 time_t m_lastMsgTime;
Zhenkai Zhuee5c90f2012-09-27 14:05:41 -0700109 int m_randomizedInterval;
Zhenkai Zhu86df7412012-09-27 16:30:20 -0700110 QTimer *m_timer;
Zhenkai Zhu6082ede2012-09-27 17:28:46 -0700111 QStringListModel *m_rosterModel;
Zhenkai Zhu3974a492012-09-28 14:39:45 -0700112 bool m_minimaniho;
Zhenkai Zhu3a008fc2012-06-08 17:36:39 -0700113
Zhenkai Zhu6c4fc112012-10-07 17:07:43 -0700114 QQueue<SyncDemo::ChatMessage> m_history;
115 bool m_historyInitialized;
Zhenkai Zhu0fe2b8c2012-10-09 04:49:28 -0700116 bool m_joined;
Zhenkai Zhu7f52e1b2012-10-09 11:45:36 -0700117
118 QList<QString> m_zombieList;
119 int m_zombieIndex;
Zhenkai Zhud616b582012-10-10 00:04:07 -0700120
Zhenkai Zhu3a008fc2012-06-08 17:36:39 -0700121 // icon related
122 QAction *minimizeAction;
123 QAction *maximizeAction;
124 QAction *restoreAction;
125 QAction *quitAction;
126 QSystemTrayIcon *trayIcon;
127 QMenu *trayIconMenu;
Zhenkai Zhu6d589aa2012-05-29 17:34:35 -0700128};
129#endif