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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
|
#include "stdafx.h"
// Event
bool HistoryArray::ItemData::load(EventLoadMode mode)
{
if (mode == ELM_NOTHING)
return true;
if ((mode == ELM_INFO) && !dbeOk) {
dbeOk = true;
dbe.cbBlob = 0;
dbe.pBlob = 0;
db_event_get(hEvent, &dbe);
return true;
}
if ((mode == ELM_DATA) && (!dbeOk || !dbe.cbBlob)) {
dbeOk = true;
dbe.cbBlob = db_event_getBlobSize(hEvent);
dbe.pBlob = (PBYTE)mir_calloc(dbe.cbBlob + 1);
db_event_get(hEvent, &dbe);
int aLength = 0;
atext = 0;
wtext = 0;
switch (dbe.eventType) {
case EVENTTYPE_STATUSCHANGE:
case EVENTTYPE_MESSAGE:
atext = (char *)dbe.pBlob;
atext_del = false;
aLength = (int)mir_strlen(atext);
if (dbe.cbBlob > (DWORD)aLength + 1) {
wtext = (wchar_t *)(dbe.pBlob + aLength + 1);
wtext_del = false;
}
break;
case EVENTTYPE_JABBER_PRESENCE:
wtext = DbEvent_GetTextW(&dbe, CP_ACP);
wtext_del = false;
break;
case EVENTTYPE_AUTHREQUEST:
atext = new char[512];
atext_del = true;
if ((dbe.cbBlob > 8) && *(dbe.pBlob + 8)) {
mir_snprintf(atext, 512, ("%s requested authorization"), dbe.pBlob + 8);
}
else {
mir_snprintf(atext, 512, ("%d requested authorization"), *(DWORD *)(dbe.pBlob));
}
aLength = (int)mir_strlen(atext);
break;
case EVENTTYPE_ADDED:
atext = new char[512];
atext_del = true;
if ((dbe.cbBlob > 8) && *(dbe.pBlob + 8)) {
mir_snprintf(atext, 512, ("%s added you to the contact list"), dbe.pBlob + 8);
}
else {
mir_snprintf(atext, 512, ("%d added you to the contact list"), *(DWORD *)(dbe.pBlob));
}
aLength = (int)mir_strlen(atext);
break;
}
if (atext && !wtext) {
#ifdef UNICODE
int bufSize = MultiByteToWideChar(CP_ACP, 0, atext, aLength + 1, 0, 0);
wtext = new wchar_t[bufSize + 1];
MultiByteToWideChar(CP_ACP, 0, atext, aLength + 1, wtext, bufSize);
wtext_del = true;
#else
this->wtext = 0;
wtext_del = false;
#endif
}
else if (!atext && wtext) {
// strange situation, really :) I'll fix this later
}
else if (!atext && !wtext) {
atext = "";
atext_del = false;
wtext = L"";
wtext_del = false;
}
return true;
}
return false;
}
HistoryArray::ItemData::~ItemData()
{
if (dbeOk && dbe.pBlob) {
mir_free(dbe.pBlob);
dbe.pBlob = 0;
}
if (wtext && wtext_del) delete[] wtext;
if (atext && atext_del) delete[] atext;
if (data) MTextDestroy(data);
}
// Array
HistoryArray::HistoryArray()
{
}
HistoryArray::~HistoryArray()
{
clear();
}
bool HistoryArray::allocateBlock(int count)
{
ItemBlock *newBlock = new ItemBlock;
newBlock->items = new ItemData[count];
newBlock->count = count;
newBlock->prev = tail;
newBlock->next = 0;
if (tail) {
tail->next = newBlock;
}
else {
head = newBlock;
}
tail = newBlock;
return true;
}
void HistoryArray::clear()
{
while (head) {
ItemBlock *next = head->next;
// for (int i = 0; i < head->count; ++i)
// destroyEvent(head->items[i]);
delete[] head->items;
head = next;
}
head = tail = 0;
preBlock = 0;
preIndex = 0;
}
bool HistoryArray::addHistory(MCONTACT hContact, EventLoadMode)
{
int count = db_event_count(hContact);
allocateBlock(count);
int i = 0;
MEVENT hEvent = db_event_first(hContact);
while (hEvent) {
tail->items[i].hContact = hContact;
tail->items[i].hEvent = hEvent;
++i;
hEvent = db_event_next(hContact, hEvent);
}
return true;
}
bool HistoryArray::addEvent(MCONTACT hContact, MEVENT hEvent, EventLoadMode mode)
{
allocateBlock(1);
tail->items[0].hContact = hContact;
tail->items[0].hEvent = hEvent;
if (mode != ELM_NOTHING)
tail->items[0].load(mode);
return true;
}
/*
bool HistoryArray::preloadEvents(int count)
{
for (int i = 0; i < count; ++i)
{
preBlock->items[preIndex].load(ELM_DATA);
if (++preIndex == preBlock->count)
{
preBlock = preBlock->next;
if (!preBlock)
return false;
preIndex = 0;
}
}
return true;
}
*/
HistoryArray::ItemData *HistoryArray::get(int id, EventLoadMode mode)
{
int offset = 0;
for (ItemBlock *p = head; p; p = p->next) {
if (id < offset + p->count) {
if (mode != ELM_NOTHING)
p->items[id - offset].load(mode);
return p->items + id - offset;
}
offset += p->count;
}
return 0;
}
|