/****************************************************************************
**
** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
** All rights reserved.
** Contact: Nokia Corporation (qt-info@nokia.com)
**
** This file is part of the Qt Mobility Components.
**
** $QT_BEGIN_LICENSE:LGPL$
** No Commercial Usage
** This file contains pre-release code and may not be distributed.
** You may use this file in accordance with the terms and conditions
** contained in the Technology Preview License Agreement accompanying
** this package.
**
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 2.1 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL included in the
** packaging of this file. Please review the following information to
** ensure the GNU Lesser General Public License version 2.1 requirements
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, Nokia gives you certain additional
** rights. These rights are described in the Nokia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** If you have questions regarding the use of this file, please contact
** Nokia at qt-info@nokia.com.
**
**
**
**
**
**
**
**
** $QT_END_LICENSE$
**
****************************************************************************/
#include "cntsimcontactlocalidfetchrequest.h"
#include "cntsymbiansimengine.h"
#include "cntsimstore.h"
#include <qcontactfetchrequest.h>
CntSimContactLocalIdFetchRequest::CntSimContactLocalIdFetchRequest(CntSymbianSimEngine *engine, QContactLocalIdFetchRequest *req)
:CntAbstractSimRequest(engine, req)
{
connect( simStore(), SIGNAL(readComplete(QList<QContact>, QContactManager::Error)),
this, SLOT(readComplete(QList<QContact>, QContactManager::Error)), Qt::QueuedConnection );
}
CntSimContactLocalIdFetchRequest::~CntSimContactLocalIdFetchRequest()
{
cancel();
}
void CntSimContactLocalIdFetchRequest::run()
{
QContactLocalIdFetchRequest *r = req<QContactLocalIdFetchRequest>();
if (!r->isActive())
return;
// Contacts are fetched starting from index 1, all slots are read
// since slots may be not filled in a sequence.
int index = 1;
int numSlots = simStore()->storeInfo().m_totalEntries;
QContactManager::Error error = QContactManager::NoError;
if (!simStore()->read(index, numSlots, &error)) {
QContactManagerEngine::updateContactLocalIdFetchRequest(r, QList<QContactLocalId>(), error, QContactAbstractRequest::FinishedState);
}
}
void CntSimContactLocalIdFetchRequest::readComplete(QList<QContact> contacts, QContactManager::Error error)
{
QContactLocalIdFetchRequest *r = req<QContactLocalIdFetchRequest>();
if (!r->isActive())
return;
// Sometimes the sim store will return server busy error. All we can do is
// wait and try again. The error seems to occur if we try to read from the
// store right after writing some contacts to it.
// This was observed with S60 5.0 HW (Tube).
if (error == QContactManager::UnspecifiedError &&
simStore()->lastAsyncError() == KErrServerBusy)
{
if (waitAndRetry())
return;
}
// Filter & sort results
QList<QContact> filteredAndSorted;
for (int i=0; i<contacts.count(); i++) {
if (engine()->filter(r->filter(), contacts.at(i)))
QContactManagerEngine::addSorted(&filteredAndSorted, contacts.at(i), r->sorting());
}
// Convert to QContactLocalId-list
QList<QContactLocalId> filteredAndSortedIds;
for (int i=0; i<filteredAndSorted.count(); i++) {
filteredAndSortedIds << filteredAndSorted.at(i).localId();
}
// Complete the request
QContactManagerEngine::updateContactLocalIdFetchRequest(r, filteredAndSortedIds, error, QContactAbstractRequest::FinishedState);
}