/* * Copyright (C) 2008-2012 Geometer Plus * * 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 __OPDSLINK_GENERICFEEDREADER_H__ #define __OPDSLINK_GENERICFEEDREADER_H__ #include #include #include "URLRewritingRule.h" #include "OPDSFeedReader.h" #include "OPDSLink.h" #include "OPDSLink_AdvancedSearch.h" class OPDSLink::GenericFeedReader : public OPDSFeedReader { public: GenericFeedReader( std::vector >& links ); public: void processFeedEntry(shared_ptr entry); void processFeedStart(); void processFeedMetadata(shared_ptr feed); void processFeedEnd(); public: void clear(); void setAdvancedSearch(shared_ptr advancedSearch); void setAuthenticationType(std::string type); void addUrlRewritingRule(shared_ptr rewritingRule); void addRelationAlias(const OPDSLink::RelationAlias&, std::string name); private: std::vector >& myLinks; private: std::string myAuthenticationType; std::vector > myUrlRewritingRules; shared_ptr myAdvancedSearch; std::map myRelationAliases; }; #endif /* __OPDSLINK_GENERICFEEDREADER_H__ */