-
Notifications
You must be signed in to change notification settings - Fork 0
/
messagedb.cpp
153 lines (134 loc) · 3.75 KB
/
messagedb.cpp
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
/* $Id: messagedb.cpp */
/*
* Copyright (C) 2012-2014 Dmytro Mishchenko <arkadiamail@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "messagedb.h"
#include "messagefile.h"
#include <QDebug>
#if defined(Q_OS_QNX)
const char *msgDBFile = "data/messages.dat";
#else
const char *msgDBFile = "messages.dat";
#endif
MessageDB::MessageDB(QObject *parent) :
QObject(parent),
lastMsgId(0)
{
load();
}
MessageDB::~MessageDB()
{
qDeleteAll(messageList);
messageList.clear();
}
void MessageDB::onMsgStatus(const MessageRec &msgStatus)
{
//qDebug() << "MessageDB::onMsgStatus" << msgStatus;
MessageRec *msg = messageList.findById(msgStatus.id);
if (msg) {
msg->pjStatusCode = msgStatus.pjStatusCode;
msg->pjStatusText = msgStatus.pjStatusText;
msg->deliveryStatus = msgStatus.deliveryStatus;
}
save();
}
void MessageDB::onMsgNew(MessageRec *msg)
{
//qDebug() << "MessageDB::onMsgNew Adding msg to the list";
if (msg->direction == MessageRec::In) {
msg->deliveryStatus = MessageRec::Delivered;
}
messageList.append(msg);
save();
}
void MessageDB::onMsgDeleteChat(const Cont &chatContact)
{
bool removed = false;
QString chatPhone(chatContact.getPhoneNumber());
MessageRecList::iterator it = messageList.begin();
while (it != messageList.end()) {
MessageRec *msg = *it;
if (msg->chatContact.getPhoneNumber() == chatPhone) {
it = messageList.erase(it);
delete msg;
removed = true;
}
else {
++it;
}
}
if (removed) {
save();
}
}
void MessageDB::onMsgDeleteAll()
{
qDeleteAll(messageList);
messageList.clear();
save();
}
void MessageDB::onMsgUpdated()
{
save();
}
void MessageDB::load()
{
MessageFile msgFile;
if (!msgFile.readFile(QString(msgDBFile), messageList)) {
qWarning() << "Can't load MessageDB:" << msgFile.errorString();
return;
}
if (!messageList.isEmpty()) {
lastMsgId = messageList.last()->id;
}
}
void MessageDB::save() const
{
MessageFile msgFile;
if (!msgFile.writeFile(QString(msgDBFile), messageList)) {
qWarning() << "Can't save MessageDB:" << msgFile.errorString();
}
}
quint32 MessageDB::getNextMsgId()
{
return ++lastMsgId;
}
void MessageDB::loadHistoryList(MessageRecList *ml) const
{
QMap <QString, bool> map;
// Start from the end, load last unique messages
for (int i = messageList.size() - 1; i >= 0; --i) {
QString key(messageList.at(i)->chatContact.getPhoneNumber());
if (!map.contains(key)) {
map.insert(key,true);
ml->append(messageList.at(i));
}
}
}
void MessageDB::loadViewList(const Cont &contact, MessageRecList *ml) const
{
QString chatId(contact.getPhoneNumber());
if (chatId.isEmpty()) {
return;
}
// Save messages with required chat id
for (int i = 0; i < messageList.size(); ++i) {
if (messageList.at(i)->chatContact.getPhoneNumber() == chatId) {
ml->append(messageList.at(i));
}
}
}