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
|
/* Message Property
This file is part of KMail, the KDE mail client.
Copyright (c) Don Sanders <sanders@kde.org>
KMail is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License, version 2, as
published by the Free Software Foundation.
KMail 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
In addition, as a special exception, the copyright holders give
permission to link the code of this program with any edition of
the Qt library by Trolltech AS, Norway (or with modified versions
of Qt that use the same license as Qt), and distribute linked
combinations including the two. You must obey the GNU General
Public License in all respects for all of the code used other than
Qt. If you modify this file, you may extend this exception to
your version of the file, but you are not obligated to do so. If
you do not wish to do so, delete this exception statement from
your version.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "messageproperty.h"
using namespace KMail;
TQMap<TQ_UINT32, TQGuardedPtr<KMFolder> > MessageProperty::sFolders;
TQMap<TQ_UINT32, TQGuardedPtr<ActionScheduler> > MessageProperty::sHandlers;
TQMap<TQ_UINT32, int > MessageProperty::sTransfers;
TQMap<const KMMsgBase*, long > MessageProperty::sSerialCache;
bool MessageProperty::filtering( TQ_UINT32 serNum )
{
return sFolders.tqcontains( serNum );
}
void MessageProperty::setFiltering( TQ_UINT32 serNum, bool filter )
{
assert(!filtering(serNum) || !filter);
if (filter && !filtering(serNum))
sFolders.tqreplace(serNum, TQGuardedPtr<KMFolder>(0) );
else if (!filter)
sFolders.remove(serNum);
}
bool MessageProperty::filtering( const KMMsgBase *msgBase )
{
return filtering( msgBase->getMsgSerNum() );
}
void MessageProperty::setFiltering( const KMMsgBase *msgBase, bool filter )
{
setFiltering( msgBase->getMsgSerNum(), filter );
}
KMFolder* MessageProperty::filterFolder( TQ_UINT32 serNum )
{
TQMap<TQ_UINT32, TQGuardedPtr<KMFolder> >::const_iterator it = sFolders.find( serNum );
return it == sFolders.constEnd() ? 0 : (*it).operator->();
}
void MessageProperty::setFilterFolder( TQ_UINT32 serNum, KMFolder* folder )
{
sFolders.insert(serNum, TQGuardedPtr<KMFolder>(folder) );
}
KMFolder* MessageProperty::filterFolder( const KMMsgBase *msgBase )
{
return filterFolder( msgBase->getMsgSerNum() );
}
void MessageProperty::setFilterFolder( const KMMsgBase *msgBase, KMFolder* folder )
{
setFilterFolder( msgBase->getMsgSerNum(), folder );
}
ActionScheduler* MessageProperty::filterHandler( TQ_UINT32 serNum )
{
TQMap<TQ_UINT32, TQGuardedPtr<ActionScheduler> >::const_iterator it = sHandlers.find( serNum );
return it == sHandlers.constEnd() ? 0 : (*it).operator->();
}
void MessageProperty::setFilterHandler( TQ_UINT32 serNum, ActionScheduler* handler )
{
if (handler)
sHandlers.insert( serNum, TQGuardedPtr<ActionScheduler>(handler) );
else
sHandlers.remove( serNum );
}
ActionScheduler* MessageProperty::filterHandler( const KMMsgBase *msgBase )
{
return filterHandler( msgBase->getMsgSerNum() );
}
void MessageProperty::setFilterHandler( const KMMsgBase *msgBase, ActionScheduler* handler )
{
setFilterHandler( msgBase->getMsgSerNum(), handler );
}
bool MessageProperty::transferInProgress( TQ_UINT32 serNum )
{
TQMap<TQ_UINT32, int >::const_iterator it = sTransfers.find( serNum );
return it == sTransfers.constEnd() ? false : *it;
}
void MessageProperty::setTransferInProgress( TQ_UINT32 serNum, bool transfer, bool force )
{
int transferInProgress = 0;
TQMap<TQ_UINT32, int >::const_iterator it = sTransfers.find( serNum );
if (it != sTransfers.constEnd())
transferInProgress = *it;
if ( force && !transfer )
transferInProgress = 0;
else
transfer ? ++transferInProgress : --transferInProgress;
if ( transferInProgress < 0 )
transferInProgress = 0;
if (transferInProgress)
sTransfers.insert( serNum, transferInProgress );
else
sTransfers.remove( serNum );
}
bool MessageProperty::transferInProgress( const KMMsgBase *msgBase )
{
return transferInProgress( msgBase->getMsgSerNum() );
}
void MessageProperty::setTransferInProgress( const KMMsgBase *msgBase, bool transfer, bool force )
{
setTransferInProgress( msgBase->getMsgSerNum(), transfer, force );
}
TQ_UINT32 MessageProperty::serialCache( const KMMsgBase *msgBase )
{
TQMap<const KMMsgBase*, long >::const_iterator it = sSerialCache.find( msgBase );
return it == sSerialCache.constEnd() ? 0 : *it;
}
void MessageProperty::setSerialCache( const KMMsgBase *msgBase, TQ_UINT32 serNum )
{
if (serNum)
sSerialCache.insert( msgBase, serNum );
else
sSerialCache.remove( msgBase );
}
void MessageProperty::forget( const KMMsgBase *msgBase )
{
TQ_UINT32 serNum = serialCache( msgBase );
if (serNum) {
Q_ASSERT( !transferInProgress( serNum ) );
sTransfers.remove( serNum );
sSerialCache.remove( msgBase );
}
}
#include "messageproperty.moc"
|