mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-06 01:45:38 +08:00
* allow to set severity of failed reading * get entities with cached data * removed needsSharedInfoFileLoaded in CDatabaseReaderConfig
92 lines
3.8 KiB
C++
92 lines
3.8 KiB
C++
/* Copyright (C) 2016
|
|
* swift project Community / Contributors
|
|
*
|
|
* This file is part of swift project. It is subject to the license terms in the LICENSE file found in the top-level
|
|
* directory of this distribution and at http://www.swift-project.org/license.html. No part of swift project,
|
|
* including this file, may be copied, modified, propagated, or distributed except according to the terms
|
|
* contained in the LICENSE file.
|
|
*/
|
|
|
|
//! \file
|
|
|
|
#ifndef BLACKCORE_DB_INFODATAREADER_H
|
|
#define BLACKCORE_DB_INFODATAREADER_H
|
|
|
|
#include "blackcore/blackcoreexport.h"
|
|
#include "blackcore/db/databasereader.h"
|
|
#include "blackmisc/db/dbinfolist.h"
|
|
|
|
#include <QObject>
|
|
#include <QNetworkReply>
|
|
#include <QReadWriteLock>
|
|
|
|
namespace BlackCore
|
|
{
|
|
namespace Db
|
|
{
|
|
//! Read information about data from Database or shared file
|
|
//! like when updated and number of entries.
|
|
//! \see BlackMisc::Db::CDbInfo
|
|
class BLACKCORE_EXPORT CInfoDataReader : public CDatabaseReader
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
//! Constructor
|
|
explicit CInfoDataReader(QObject *owner, const CDatabaseReaderConfigList &config, BlackMisc::Db::CDbFlags::DataRetrievalModeFlag mode);
|
|
|
|
//! Get info list (either shared or from DB)
|
|
//! \threadsafe
|
|
BlackMisc::Db::CDbInfoList getInfoObjects() const;
|
|
|
|
//! Get info list size (either shared or from DB)
|
|
//! \threadsafe
|
|
int getInfoObjectCount() const;
|
|
|
|
//! All data read?
|
|
//! \threadsafe
|
|
bool areAllInfoObjectsRead() const;
|
|
|
|
//! Allow to call directly, special for info objects reader
|
|
void read();
|
|
|
|
//! URL depending on mode, i.e. shared/DB
|
|
BlackMisc::Network::CUrl getInfoObjectsUrl() const;
|
|
|
|
// cache handling for base class: no cache handling here in that case
|
|
virtual BlackMisc::Network::CEntityFlags::Entity getSupportedEntities() const override;
|
|
virtual QDateTime getCacheTimestamp(BlackMisc::Network::CEntityFlags::Entity entity) const override;
|
|
virtual int getCacheCount(BlackMisc::Network::CEntityFlags::Entity entity) const override;
|
|
virtual BlackMisc::Network::CEntityFlags::Entity getEntitiesWithCacheCount() const override;
|
|
virtual BlackMisc::Network::CEntityFlags::Entity getEntitiesWithCacheTimestampNewerThan(const QDateTime &threshold) const override;
|
|
virtual void synchronizeCaches(BlackMisc::Network::CEntityFlags::Entity entities) override;
|
|
virtual void admitCaches(BlackMisc::Network::CEntityFlags::Entity entities) override;
|
|
|
|
protected:
|
|
// cache handling for base class
|
|
virtual void invalidateCaches(BlackMisc::Network::CEntityFlags::Entity entities) override;
|
|
virtual bool hasChangedUrl(BlackMisc::Network::CEntityFlags::Entity entity, BlackMisc::Network::CUrl &oldUrlInfo, BlackMisc::Network::CUrl &newUrlInfo) const override;
|
|
virtual BlackMisc::Network::CUrl getDbServiceBaseUrl() const override;
|
|
|
|
private:
|
|
//! Info objects have been read
|
|
void parseInfoObjectsData(QNetworkReply *nwReply);
|
|
|
|
//! URL info objects web service
|
|
BlackMisc::Network::CUrl getDbInfoObjectsUrl() const;
|
|
|
|
//! URL shared info objects
|
|
BlackMisc::Network::CUrl getSharedInfoObjectsUrl() const;
|
|
|
|
//! Entity for mode
|
|
BlackMisc::Network::CEntityFlags::EntityFlag getEntityForMode() const;
|
|
|
|
BlackMisc::Db::CDbFlags::DataRetrievalModeFlag m_mode; //!< shared or DB web service?
|
|
BlackMisc::Db::CDbInfoList m_infoObjects;
|
|
BlackMisc::Network::CUrl m_urlInfoObjects;
|
|
mutable QReadWriteLock m_lockInfoObjects;
|
|
};
|
|
} // ns
|
|
} // ns
|
|
#endif // guard
|