author | Simon Howkins <simonh@symbian.org> |
Thu, 25 Nov 2010 12:13:04 +0000 | |
branch | RCL_3 |
changeset 83 | 31a5fbf5db1d |
parent 80 | 726fba06891a |
permissions | -rw-r--r-- |
64 | 1 |
/* |
2 |
* Copyright (c) 2007 Nokia Corporation and/or its subsidiary(-ies). |
|
3 |
* All rights reserved. |
|
4 |
* This component and the accompanying materials are made available |
|
5 |
* under the terms of "Eclipse Public License v1.0" |
|
6 |
* which accompanies this distribution, and is available |
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 |
* |
|
9 |
* Initial Contributors: |
|
10 |
* Nokia Corporation - initial contribution. |
|
11 |
* |
|
12 |
* Contributors: |
|
13 |
* |
|
14 |
* Description: This file implements class CFSNotificationHandlerBase. |
|
15 |
* |
|
16 |
*/ |
|
17 |
||
18 |
#include <centralrepository.h> |
|
19 |
#include "emailtrace.h" |
|
20 |
#include "cfsmailclient.h" |
|
21 |
||
22 |
#include "fsnotificationhandlermgr.h" |
|
23 |
#include "fsnotificationhandlerbase.h" |
|
24 |
#include "cmailhandlerpluginpanic.h" |
|
25 |
#include "commonemailcrkeys.h" |
|
26 |
#include "freestyleemailcenrepkeys.h" |
|
27 |
#include "FreestyleEmailUiConstants.h" |
|
28 |
||
29 |
||
30 |
const TInt KTimerDelay = 20; |
|
31 |
||
32 |
// ======== MEMBER FUNCTIONS ======== |
|
33 |
||
34 |
CFSNotificationHandlerBase::CFSNotificationHandlerBase( |
|
35 |
MFSNotificationHandlerMgr& aOwner ) : |
|
36 |
iOwner( aOwner ), |
|
37 |
iObserving( EFalse ) |
|
38 |
{ |
|
39 |
FUNC_LOG; |
|
40 |
} |
|
41 |
||
42 |
void CFSNotificationHandlerBase::ConstructL() |
|
43 |
{ |
|
44 |
FUNC_LOG; |
|
45 |
||
46 |
iTimer = CNewMailNotificationTimer::NewL( *this ); |
|
47 |
} |
|
48 |
||
49 |
CFSNotificationHandlerBase::~CFSNotificationHandlerBase() |
|
50 |
{ |
|
51 |
FUNC_LOG; |
|
52 |
REComSession::DestroyedImplementation( iDestructorKey ); |
|
53 |
||
54 |
delete iTimer; |
|
55 |
iNewInboxEntries.Reset(); |
|
56 |
} |
|
57 |
||
58 |
CFSMailClient& CFSNotificationHandlerBase::MailClient() const |
|
59 |
{ |
|
60 |
FUNC_LOG; |
|
61 |
return iOwner.MailClient(); |
|
62 |
} |
|
63 |
void CFSNotificationHandlerBase::EventL( TFSMailEvent aEvent, TFSMailMsgId aMailbox, |
|
64 |
TAny* aParam1, TAny* aParam2, TAny* aParam3 ) |
|
65 |
{ |
|
66 |
FUNC_LOG; |
|
67 |
if ( !iObserving ) |
|
68 |
{ |
|
69 |
return; |
|
70 |
} |
|
71 |
||
72 |
HandleEventL( aEvent, aMailbox, aParam1, aParam2, aParam3 ); |
|
73 |
} |
|
74 |
||
75 |
||
76 |
||
77 |
void CFSNotificationHandlerBase::SetObserving( TBool aNewValue ) |
|
78 |
{ |
|
79 |
FUNC_LOG; |
|
80 |
iObserving = aNewValue; |
|
81 |
} |
|
82 |
||
83 |
TBool CFSNotificationHandlerBase::MsgIsUnread( CFSMailMessage& aMessage ) const |
|
84 |
{ |
|
85 |
FUNC_LOG; |
|
86 |
TBool read( aMessage.IsFlagSet( EFSMsgFlag_Read ) ); |
|
87 |
TBool read_locally( aMessage.IsFlagSet( EFSMsgFlag_Read_Locally ) ); |
|
88 |
||
89 |
if ( !read && !read_locally ) |
|
90 |
{ |
|
91 |
return ETrue; |
|
92 |
} |
|
93 |
else |
|
94 |
{ |
|
95 |
return EFalse; |
|
96 |
} |
|
97 |
} |
|
98 |
||
99 |
TBool CFSNotificationHandlerBase::MessagesCauseNotificationL( TFSMailMsgId aMailboxId, |
|
100 |
TFSMailMsgId aParentFolderId, |
|
101 |
const RArray<TFSMailMsgId>& aMsgIdList ) |
|
102 |
{ |
|
103 |
FUNC_LOG; |
|
104 |
||
105 |
CFSMailFolder* parentFolder( |
|
106 |
MailClient().GetFolderByUidL( aMailboxId, aParentFolderId ) ); |
|
80
726fba06891a
Revision: 201039
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
64
diff
changeset
|
107 |
if ( !parentFolder ) |
726fba06891a
Revision: 201039
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
64
diff
changeset
|
108 |
{ |
726fba06891a
Revision: 201039
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
64
diff
changeset
|
109 |
// by some reason the folder could not be found.. |
726fba06891a
Revision: 201039
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
64
diff
changeset
|
110 |
return EFalse; |
726fba06891a
Revision: 201039
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
64
diff
changeset
|
111 |
} |
64 | 112 |
CleanupStack::PushL( parentFolder ); |
113 |
||
114 |
CFSMailMessage* newestMsg( NULL ); |
|
115 |
TRAPD( notFoundError, |
|
116 |
newestMsg = |
|
117 |
NewestMsgInFolderL( *parentFolder ) ); |
|
118 |
if ( notFoundError == KErrNotFound ) |
|
119 |
{ |
|
120 |
// For some odd reason we are not able to get the newest |
|
121 |
// message from the folder. This should not be possible |
|
122 |
// as we just received notification of a new message. |
|
123 |
// Possibly something has moved/deleted the message? |
|
124 |
return EFalse; |
|
125 |
} |
|
126 |
User::LeaveIfError( notFoundError ); |
|
127 |
||
128 |
TTime dateOfNewest( newestMsg->GetDate() ); |
|
129 |
||
130 |
delete newestMsg; |
|
131 |
newestMsg = NULL; |
|
132 |
||
133 |
CleanupStack::PopAndDestroy( parentFolder ); |
|
134 |
||
135 |
const TInt entriesCount( aMsgIdList.Count() ); |
|
136 |
TInt index( entriesCount-1 ); |
|
137 |
// go from back of list, as messages are coming from earliest to latest.. |
|
138 |
while ( index >= 0 ) |
|
139 |
{ |
|
140 |
// Let's get the message. We need to check from it that |
|
141 |
// it is really unread. This info is stored in the |
|
142 |
// flags. Also check that the message is newest. |
|
143 |
// EFSMsgDataEnvelope is used as TFSMailDetails |
|
144 |
// so that we get enough data. |
|
145 |
CFSMailMessage* |
|
146 |
currentMessage( MailClient().GetMessageByUidL( |
|
147 |
aMailboxId, |
|
148 |
aParentFolderId, |
|
149 |
aMsgIdList[index], |
|
150 |
EFSMsgDataEnvelope ) ); |
|
80
726fba06891a
Revision: 201039
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
64
diff
changeset
|
151 |
if ( currentMessage ) |
64 | 152 |
{ |
80
726fba06891a
Revision: 201039
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
64
diff
changeset
|
153 |
const TTime dateOfCurrentMsg( currentMessage->GetDate() ); |
726fba06891a
Revision: 201039
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
64
diff
changeset
|
154 |
|
726fba06891a
Revision: 201039
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
64
diff
changeset
|
155 |
const TBool msgIsUnread( MsgIsUnread( *currentMessage ) ); |
726fba06891a
Revision: 201039
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
64
diff
changeset
|
156 |
delete currentMessage; |
726fba06891a
Revision: 201039
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
64
diff
changeset
|
157 |
currentMessage = NULL; |
726fba06891a
Revision: 201039
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
64
diff
changeset
|
158 |
|
726fba06891a
Revision: 201039
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
64
diff
changeset
|
159 |
if ( msgIsUnread && |
726fba06891a
Revision: 201039
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
64
diff
changeset
|
160 |
( dateOfCurrentMsg >= dateOfNewest ) ) |
726fba06891a
Revision: 201039
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
64
diff
changeset
|
161 |
{ |
726fba06891a
Revision: 201039
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
64
diff
changeset
|
162 |
// At least one of the messages is unread and newest. |
726fba06891a
Revision: 201039
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
64
diff
changeset
|
163 |
return ETrue; |
726fba06891a
Revision: 201039
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
64
diff
changeset
|
164 |
} |
64 | 165 |
} |
166 |
||
167 |
--index; |
|
168 |
} |
|
169 |
||
170 |
return EFalse; |
|
171 |
} |
|
172 |
||
173 |
TBool CFSNotificationHandlerBase::Observing() const |
|
174 |
{ |
|
175 |
FUNC_LOG; |
|
176 |
return iObserving; |
|
177 |
} |
|
178 |
||
179 |
TBool CFSNotificationHandlerBase::CapabilitiesToContinueL( |
|
180 |
TFSMailEvent aEvent, |
|
181 |
TFSMailMsgId aMailbox, |
|
182 |
TAny* /*aParam1*/, |
|
183 |
TAny* /*aParam2*/, |
|
184 |
TAny* /*aParam3*/ ) const |
|
185 |
{ |
|
186 |
FUNC_LOG; |
|
187 |
if ( aEvent != TFSEventMailboxDeleted ) |
|
188 |
{ |
|
189 |
CFSMailBox* mailBox( MailClient().GetMailBoxByUidL( aMailbox ) ); |
|
80
726fba06891a
Revision: 201039
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
64
diff
changeset
|
190 |
if ( !mailBox ) |
64 | 191 |
{ |
192 |
User::Leave( KErrArgument ); |
|
193 |
} |
|
194 |
||
195 |
if ( mailBox->HasCapability( EFSMBoxCapaNewEmailNotifications ) ) |
|
196 |
{ |
|
197 |
delete mailBox; |
|
198 |
return EFalse; |
|
199 |
} |
|
200 |
else |
|
201 |
{ |
|
202 |
delete mailBox; |
|
203 |
return ETrue; |
|
204 |
} |
|
205 |
} |
|
206 |
else |
|
207 |
{ |
|
208 |
return ETrue; |
|
209 |
} |
|
210 |
} |
|
211 |
||
212 |
void CFSNotificationHandlerBase::HandleEventL( |
|
213 |
TFSMailEvent aEvent, |
|
214 |
TFSMailMsgId aMailbox, |
|
215 |
TAny* aParam1, |
|
216 |
TAny* aParam2, |
|
217 |
TAny* /*aParam3*/ ) |
|
218 |
{ |
|
219 |
FUNC_LOG; |
|
220 |
// Only event TFSEventNewMail means that the mail is completely new. |
|
221 |
if ( aEvent == TFSEventNewMail ) |
|
222 |
{ |
|
223 |
// In case of TFSEventNewMail we have parent folder id |
|
224 |
// in aParam2 |
|
225 |
TFSMailMsgId* parentFolderId( NULL ); |
|
226 |
parentFolderId = static_cast< TFSMailMsgId* >( aParam2 ); |
|
80
726fba06891a
Revision: 201039
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
64
diff
changeset
|
227 |
if ( !parentFolderId ) |
64 | 228 |
{ |
229 |
User::Leave( KErrArgument ); |
|
230 |
} |
|
231 |
||
232 |
// Set the notification on only in cases that the new mail is |
|
233 |
// in folder of type EFSInbox |
|
234 |
if ( iOwner.GetFolderTypeL( aMailbox, parentFolderId ) == EFSInbox ) |
|
235 |
{ |
|
236 |
RArray<TFSMailMsgId>* newEntries( |
|
237 |
static_cast< RArray<TFSMailMsgId>* >( aParam1 ) ); |
|
238 |
||
239 |
TInt count = newEntries->Count(); |
|
240 |
for ( TInt i = 0; i<count;i++ ) |
|
241 |
{ |
|
242 |
TFSMailMsgId msgId = newEntries->operator []( i ); |
|
243 |
TNewMailInfo info( msgId, aMailbox, *parentFolderId ); |
|
244 |
iNewInboxEntries.AppendL( info ); |
|
245 |
} |
|
246 |
||
247 |
if (iTimer->IsActive() ) |
|
248 |
{ |
|
249 |
iTimer->Cancel(); |
|
250 |
} |
|
251 |
iTimer->After( KTimerDelay ); |
|
252 |
} |
|
253 |
else |
|
254 |
{ |
|
255 |
// If messages are in some other folder than in inbox |
|
256 |
// they have no effect on the notification |
|
257 |
} |
|
258 |
} |
|
259 |
else |
|
260 |
{ |
|
261 |
// No other events than new mail are handled. For example |
|
262 |
// moving of messages and changing message status has no |
|
263 |
// effect on the notification. |
|
264 |
} |
|
265 |
} |
|
266 |
||
267 |
void CFSNotificationHandlerBase::TimerExpiredL() |
|
268 |
{ |
|
269 |
// process collected insert requests |
|
270 |
RArray<TFSMailMsgId> msgIds; |
|
80
726fba06891a
Revision: 201039
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
64
diff
changeset
|
271 |
CleanupClosePushL( msgIds ); |
726fba06891a
Revision: 201039
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
64
diff
changeset
|
272 |
|
64 | 273 |
TFSMailMsgId mailBoxId; |
274 |
TFSMailMsgId parentFolderId; |
|
275 |
for ( TInt i = 0; i< iNewInboxEntries.Count(); i++ ) |
|
276 |
{ |
|
277 |
TNewMailInfo& info = iNewInboxEntries[ i ]; |
|
278 |
if ( mailBoxId.IsNullId() && parentFolderId.IsNullId() ) |
|
279 |
{ |
|
280 |
// starting new group is starting to collect |
|
281 |
mailBoxId = info.iMailBox; |
|
282 |
parentFolderId = info.iParentFolderId; |
|
283 |
} |
|
284 |
if ( mailBoxId == info.iMailBox && parentFolderId == info.iParentFolderId ) |
|
285 |
{ |
|
286 |
// collect message ids for the same mailbox and parent folder |
|
287 |
msgIds.Append( info.iMsgId ); |
|
288 |
} |
|
289 |
else |
|
290 |
{ |
|
291 |
// process collected message ids for the same mailbox and parent folder |
|
292 |
if ( msgIds.Count()&& MessagesCauseNotificationL( mailBoxId, parentFolderId, msgIds ) ) |
|
293 |
{ |
|
294 |
TurnNotificationOn(); |
|
295 |
} |
|
296 |
// clear data and start collecting again |
|
297 |
msgIds.Reset(); |
|
298 |
mailBoxId = TFSMailMsgId(); |
|
299 |
parentFolderId = TFSMailMsgId(); |
|
300 |
} |
|
301 |
} |
|
302 |
// process collected message ids for the same mailbox and parent folder |
|
303 |
if ( msgIds.Count() && MessagesCauseNotificationL( mailBoxId, parentFolderId, msgIds ) ) |
|
304 |
{ |
|
305 |
TurnNotificationOn(); |
|
306 |
} |
|
307 |
// clear processed entries |
|
308 |
msgIds.Reset(); |
|
80
726fba06891a
Revision: 201039
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
64
diff
changeset
|
309 |
CleanupStack::PopAndDestroy( &msgIds ); |
64 | 310 |
iNewInboxEntries.Reset(); |
311 |
} |
|
312 |
||
313 |
CFSMailMessage* CFSNotificationHandlerBase::NewestMsgInFolderL( |
|
314 |
CFSMailFolder& aFolder ) const |
|
315 |
{ |
|
316 |
FUNC_LOG; |
|
317 |
// Load info only necessary for sorting by date into the messages. |
|
318 |
TFSMailDetails details( EFSMsgDataDate ); |
|
319 |
||
320 |
// Want to sort mails so that the newest is in the beginning |
|
321 |
TFSMailSortCriteria criteriaDate; |
|
322 |
criteriaDate.iField = EFSMailSortByDate; |
|
323 |
criteriaDate.iOrder = EFSMailDescending; |
|
324 |
||
325 |
RArray<TFSMailSortCriteria> sorting; |
|
326 |
CleanupClosePushL( sorting ); |
|
327 |
// First criteria appended would be the primary criteria |
|
328 |
// but here we don't have any other criteria |
|
329 |
sorting.Append( criteriaDate ); |
|
330 |
MFSMailIterator* iterator = aFolder.ListMessagesL( details, sorting ); |
|
331 |
||
332 |
// Resetting array of sort criteria already here because |
|
333 |
// the iterator does not need it anymore. |
|
80
726fba06891a
Revision: 201039
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
64
diff
changeset
|
334 |
CleanupStack::PopAndDestroy( &sorting ); |
64 | 335 |
|
336 |
// CleanupStack::PushL doesn't work for M-class |
|
337 |
CleanupDeletePushL( iterator ); |
|
338 |
||
339 |
RPointerArray<CFSMailMessage> messages; |
|
340 |
CleanupClosePushL( messages ); |
|
341 |
// Let's get only the first and therefore the newest message. |
|
342 |
TInt amount( 1 ); |
|
343 |
iterator->NextL( TFSMailMsgId(), amount, messages ); |
|
344 |
if ( messages.Count() < 1 ) |
|
345 |
{ |
|
346 |
messages.ResetAndDestroy(); |
|
347 |
User::Leave( KErrNotFound ); |
|
348 |
} |
|
349 |
||
350 |
CFSMailMessage* outcome = messages[0]; |
|
351 |
messages.Remove( 0 ); // remove from array to prevent destruction of element |
|
352 |
messages.ResetAndDestroy(); |
|
80
726fba06891a
Revision: 201039
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
64
diff
changeset
|
353 |
CleanupStack::PopAndDestroy( &messages ); |
64 | 354 |
CleanupStack::PopAndDestroy( iterator ); |
355 |
return outcome; |
|
356 |
} |
|
357 |
||
358 |
CNewMailNotificationTimer::CNewMailNotificationTimer( MFSTimerObserver& aObserver ) : |
|
359 |
CTimer( EPriorityIdle ), iObserver( aObserver ) |
|
360 |
{ |
|
361 |
FUNC_LOG; |
|
362 |
} |
|
363 |
||
364 |
void CNewMailNotificationTimer::ConstructL() |
|
365 |
{ |
|
366 |
FUNC_LOG; |
|
367 |
CTimer::ConstructL(); |
|
368 |
CActiveScheduler::Add( this ); |
|
369 |
} |
|
370 |
||
371 |
CNewMailNotificationTimer* CNewMailNotificationTimer::NewL( |
|
372 |
MFSTimerObserver& aObserver ) |
|
373 |
{ |
|
374 |
FUNC_LOG; |
|
375 |
CNewMailNotificationTimer* self = |
|
376 |
new( ELeave ) CNewMailNotificationTimer( aObserver ); |
|
377 |
CleanupStack::PushL( self ); |
|
378 |
self->ConstructL(); |
|
379 |
CleanupStack::Pop( self ); |
|
380 |
return self; |
|
381 |
} |
|
382 |
||
383 |
||
384 |
CNewMailNotificationTimer::~CNewMailNotificationTimer() |
|
385 |
{ |
|
386 |
FUNC_LOG; |
|
387 |
Cancel(); |
|
388 |
} |
|
389 |
||
390 |
void CNewMailNotificationTimer::DoCancel() |
|
391 |
{ |
|
392 |
FUNC_LOG; |
|
393 |
// Cancel Base class |
|
394 |
CTimer::DoCancel(); |
|
395 |
} |
|
396 |
||
397 |
void CNewMailNotificationTimer::RunL() |
|
398 |
{ |
|
399 |
FUNC_LOG; |
|
400 |
iObserver.TimerExpiredL(); |
|
401 |
} |
|
402 |
||
80
726fba06891a
Revision: 201039
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
64
diff
changeset
|
403 |
TInt CNewMailNotificationTimer::RunError(TInt aError) |
726fba06891a
Revision: 201039
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
64
diff
changeset
|
404 |
{ |
726fba06891a
Revision: 201039
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
64
diff
changeset
|
405 |
if( aError ) |
726fba06891a
Revision: 201039
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
64
diff
changeset
|
406 |
{ |
726fba06891a
Revision: 201039
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
64
diff
changeset
|
407 |
INFO_1( "CNewMailNotificationTimer::RunError( aError: %d )", aError ); |
726fba06891a
Revision: 201039
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
64
diff
changeset
|
408 |
} |
726fba06891a
Revision: 201039
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
64
diff
changeset
|
409 |
|
726fba06891a
Revision: 201039
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
64
diff
changeset
|
410 |
return KErrNone; |
726fba06891a
Revision: 201039
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
64
diff
changeset
|
411 |
} |
64 | 412 |
|
413 |
void Panic( TCmailhandlerPanic aPanic ) |
|
414 |
{ |
|
415 |
_LIT( KPanicText, "emailhandlerplugin" ); |
|
416 |
User::Panic( KPanicText, aPanic ); |
|
417 |
} |
|
418 |
||
419 |
// End of file |
|
420 |