/**************************************************************** * RetroShare GUI is distributed under the following license: * * Copyright (C) 2012 by Thunder * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program 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. ****************************************************************/ #ifndef P3_FEEDREADER #define P3_FEEDREADER #include "retroshare/rsplugin.h" #include "plugins/rspqiservice.h" #include "interface/rsFeedReader.h" class RsFeedReaderFeed; class RsFeedReaderMsg; class p3FeedReaderThread; class p3FeedReader : public RsPQIService, public RsFeedReader { public: p3FeedReader(RsPluginHandler *pgHandler); /****************** FeedReader Interface *************/ virtual void stop(); virtual void setNotify(RsFeedReaderNotify *notify); virtual uint32_t getStandardStorageTime(); virtual void setStandardStorageTime(uint32_t storageTime); virtual uint32_t getStandardUpdateInterval(); virtual void setStandardUpdateInterval(uint32_t updateInterval); virtual bool getStandardProxy(std::string &proxyAddress, uint16_t &proxyPort); virtual void setStandardProxy(bool useProxy, const std::string &proxyAddress, uint16_t proxyPort); virtual RsFeedAddResult addFolder(const std::string parentId, const std::string &name, std::string &feedId); virtual RsFeedAddResult setFolder(const std::string &feedId, const std::string &name); virtual RsFeedAddResult addFeed(const FeedInfo &feedInfo, std::string &feedId); virtual RsFeedAddResult setFeed(const std::string &feedId, const FeedInfo &feedInfo); virtual bool removeFeed(const std::string &feedId); virtual bool addPreviewFeed(const FeedInfo &feedInfo, std::string &feedId); virtual void getFeedList(const std::string &parentId, std::list &feedInfos); virtual bool getFeedInfo(const std::string &feedId, FeedInfo &feedInfo); virtual bool getMsgInfo(const std::string &feedId, const std::string &msgId, FeedMsgInfo &msgInfo); virtual bool removeMsg(const std::string &feedId, const std::string &msgId); virtual bool removeMsgs(const std::string &feedId, const std::list &msgIds); virtual bool getMessageCount(const std::string &feedId, uint32_t *msgCount, uint32_t *newCount, uint32_t *unreadCount); virtual bool getFeedMsgList(const std::string &feedId, std::list &msgInfos); virtual bool getFeedMsgIdList(const std::string &feedId, std::list &msgIds); virtual bool processFeed(const std::string &feedId); virtual bool setMessageRead(const std::string &feedId, const std::string &msgId, bool read); virtual RsFeedReaderErrorState processXPath(const std::list &xpathsToUse, const std::list &xpathsToRemove, std::string &description, std::string &errorString); /****************** p3Service STUFF ******************/ virtual int tick(); /****************** internal STUFF *******************/ bool getFeedToDownload(RsFeedReaderFeed &feed, const std::string &neededFeedId); void onDownloadSuccess(const std::string &feedId, const std::string &content, std::string &icon); void onDownloadError(const std::string &feedId, RsFeedReaderErrorState result, const std::string &errorString); void onProcessSuccess_filterMsg(const std::string &feedId, std::list &msgs); void onProcessSuccess_addMsgs(const std::string &feedId, std::list &msgs, bool single); void onProcessError(const std::string &feedId, RsFeedReaderErrorState result, const std::string &errorString); bool getFeedToProcess(RsFeedReaderFeed &feed, const std::string &neededFeedId); void setFeedInfo(const std::string &feedId, const std::string &name, const std::string &description); protected: /****************** p3Config STUFF *******************/ virtual RsSerialiser *setupSerialiser(); virtual bool saveList(bool &cleanup, std::list&); virtual bool loadList(std::list& load); virtual void saveDone(); private: void cleanFeeds(); void deleteAllMsgs_locked(RsFeedReaderFeed *fi); void stopPreviewThreads_locked(); time_t mLastClean; RsFeedReaderNotify *mNotify; RsMutex mFeedReaderMtx; std::list mThreads; uint32_t mNextFeedId; uint32_t mNextMsgId; int32_t mNextPreviewFeedId; int32_t mNextPreviewMsgId; uint32_t mStandardUpdateInterval; uint32_t mStandardStorageTime; bool mStandardUseProxy; std::string mStandardProxyAddress; uint16_t mStandardProxyPort; std::map mFeeds; RsMutex mDownloadMutex; std::list mDownloadFeeds; RsMutex mProcessMutex; std::list mProcessFeeds; RsMutex mPreviewMutex; p3FeedReaderThread *mPreviewDownloadThread; p3FeedReaderThread *mPreviewProcessThread; }; #endif