summaryrefslogtreecommitdiffstats
path: root/fbreader/src/network/tree/NetworkBookTree.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'fbreader/src/network/tree/NetworkBookTree.cpp')
-rw-r--r--fbreader/src/network/tree/NetworkBookTree.cpp262
1 files changed, 0 insertions, 262 deletions
diff --git a/fbreader/src/network/tree/NetworkBookTree.cpp b/fbreader/src/network/tree/NetworkBookTree.cpp
deleted file mode 100644
index c59d247..0000000
--- a/fbreader/src/network/tree/NetworkBookTree.cpp
+++ /dev/null
@@ -1,262 +0,0 @@
-/*
- * Copyright (C) 2004-2012 Geometer Plus <[email protected]>
- *
- * 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.
- */
-
-#include <ZLResource.h>
-#include <ZLImage.h>
-#include <ZLExecutionUtil.h>
-#include <ZLNetworkManager.h>
-
-#include "NetworkTreeNodes.h"
-#include "NetworkTreeFactory.h"
-#include "NetworkLibrary.h"
-#include "NetworkCatalogUtil.h"
-
-#include "../../networkActions/NetworkActions.h"
-
-const ZLTypeId NetworkBookTree::TYPE_ID(ZLTreePageNode::TYPE_ID);
-
-const ZLTypeId &NetworkBookTree::typeId() const {
- return TYPE_ID;
-}
-
-const ZLResource &NetworkBookTree::resource() const {
- return ZLResource::resource("networkView")["bookNode"];
-}
-
-NetworkBookTree::NetworkBookTree(NetworkTree *parent, shared_ptr<NetworkItem> book, SummaryType summaryType) : ZLTreePageNode(parent), myBook(book), mySummaryType(summaryType) {
- init();
-}
-
-//TODO we don't need a actions wrappers since we don't use old network library
-class NetworkTreeBookReadAction : public NetworkBookReadAction {
-public:
- NetworkTreeBookReadAction(const NetworkBookTree &tree, const NetworkBookItem &book, bool demo) : NetworkBookReadAction(book, demo), myTree(tree) {}
- void run() {
- NetworkBookReadAction::run();
- myTree.close();
- }
-
-private:
- const NetworkBookTree &myTree;
-};
-
-static std::vector<shared_ptr<ZLTreeAction> > getBookActions(NetworkBookTree &tree) {
- std::vector<shared_ptr<ZLTreeAction> > actions;
- const NetworkBookItem &book = tree.book();
- if (!book.reference(BookReference::DOWNLOAD_FULL).isNull() ||
- !book.reference(BookReference::DOWNLOAD_FULL_CONDITIONAL).isNull()) {
- actions.push_back(new NetworkTreeBookReadAction(tree, book, false));
- actions.push_back(new NetworkBookDownloadAction(tree, book, false));
- actions.push_back(new NetworkBookDeleteAction(book));
- }
- if (!book.reference(BookReference::DOWNLOAD_DEMO).isNull()) {
- actions.push_back(new NetworkTreeBookReadAction(tree, book, true));
- actions.push_back(new NetworkBookDownloadAction(tree, book, true, tree.resource()["demo"].value()));
- }
- if (!book.reference(BookReference::BUY).isNull()) {
- actions.push_back(new NetworkBookBuyDirectlyAction(tree, book));
- } else if (!book.reference(BookReference::BUY_IN_BROWSER).isNull()) {
- actions.push_back(new NetworkBookBuyInBrowserAction(book));
- }
- return actions;
-}
-
-void NetworkBookTree::init() {
- std::vector<shared_ptr<ZLTreeAction> > actions = getBookActions(*this);
- for (std::size_t i = 0; i < actions.size(); ++i) {
- registerAction(actions.at(i));
- }
-}
-
-std::string NetworkBookTree::title() const {
- return myBook->Title;
-}
-
-std::string NetworkBookTree::subtitle() const {
- int count = 0;
- std::string authorsString;
- const std::vector<NetworkBookItem::AuthorData> authors = book().Authors;
- for (std::vector<NetworkBookItem::AuthorData>::const_iterator it = authors.begin(); it != authors.end(); ++it) {
- if (!authorsString.empty()) {
- authorsString += ", ";
- }
- authorsString += it->DisplayName;
- ++count;
- }
- if (mySummaryType == NONE && count == 1) {
- return std::string();
- }
- return authorsString;
-}
-
-shared_ptr<ZLTreePageInfo> NetworkBookTree::getPageInfo() /*const*/ {
- if (myPageInfo.isNull()) {
- myPageInfo = new BookItemWrapper(*this, myBook);
- }
- return myPageInfo;
-}
-
-
-shared_ptr<const ZLImage> NetworkBookTree::image() const {
- if (myImage.isNull()) {
- myImage = NetworkCatalogUtil::getAndDownloadImageByUrl(myBook->URLByType[NetworkItem::URL_COVER], this);
- }
- return (!myImage.isNull() && myImage->good()) ? myImage : FBTree::defaultCoverImage("booktree-book.png");
-}
-
-shared_ptr<const ZLImage> NetworkBookTree::fullImage() const {
- if (myBook->URLByType.find(NetworkItem::URL_FULL_COVER) == myBook->URLByType.end()) {
- return 0;
- }
- shared_ptr<const ZLImage> fullImage = NetworkCatalogUtil::getImageByUrl(myBook->URLByType[NetworkItem::URL_FULL_COVER]);
- return !fullImage.isNull() ? fullImage : 0;
-}
-
-const NetworkBookItem &NetworkBookTree::book() const {
- return (const NetworkBookItem&)*myBook;
-}
-
-
-NetworkBookTree::BookItemWrapper::BookItemWrapper(NetworkBookTree &tree, shared_ptr<NetworkItem> bookItem) :
- myTree(tree), myBookItem(bookItem), myIsInitialized(false) {
-}
-
-bool NetworkBookTree::BookItemWrapper::isPageInfoLoaded() {
- return myIsInitialized;
-}
-
-class BookItemWrapperScope : public ZLUserData {
-public:
- shared_ptr<ZLNetworkRequest::Listener> listener;
-};
-
-void NetworkBookTree::BookItemWrapper::loadAll(shared_ptr<ZLNetworkRequest::Listener> listener) {
- if (myIsInitialized) {
- listener->finished();
- return;
- }
-
- NetworkBookItem &bookItem = book();
-
- BookItemWrapperScope *scope = new BookItemWrapperScope;
- scope->listener = listener;
- shared_ptr<ZLUserDataHolder> scopeData = new ZLUserDataHolder;
- scopeData->addUserData("scope", scope);
-
- if (bookItem.isFullyLoaded()) {
- onInformationLoaded(*scopeData, std::string());
- return;
- }
- bookItem.loadFullInformation(ZLExecutionUtil::createListener(scopeData, this, &NetworkBookTree::BookItemWrapper::onInformationLoaded));
-}
-
-void NetworkBookTree::BookItemWrapper::onInformationLoaded(ZLUserDataHolder &data, const std::string &error){
- shared_ptr<const ZLImage> cover = image();
- if (!cover.isNull()) {
- shared_ptr<ZLNetworkRequest> request = cover->synchronizationData();
- if (!request.isNull()) {
- request->setListener(ZLExecutionUtil::createListener(new ZLUserDataHolder(data), this, &NetworkBookTree::BookItemWrapper::onCoverLoaded));
- ZLNetworkManager::Instance().performAsync(request);
- return;
- }
- }
- onCoverLoaded(data, error); //if image is loaded already
-}
-
-void NetworkBookTree::BookItemWrapper::onCoverLoaded(ZLUserDataHolder &data, const std::string &error) {
- BookItemWrapperScope &scope = static_cast<BookItemWrapperScope&>(*data.getUserData("scope"));
- if (error.empty()) {
- myIsInitialized = true;
- }
- scope.listener->finished(error);
-}
-
-std::string NetworkBookTree::BookItemWrapper::title() const {
- return book().Title;
-}
-
-std::vector<std::string> NetworkBookTree::BookItemWrapper::authors() const {
- const NetworkBookItem &bookItem = book();
- std::vector<std::string> authors;
- for (std::size_t i = 0; i < bookItem.Authors.size(); ++i) {
- authors.push_back(bookItem.Authors.at(i).DisplayName);
- }
- return authors;
-}
-
-std::vector<std::string> NetworkBookTree::BookItemWrapper::tags() const {
- return book().Tags;
-}
-
-std::string NetworkBookTree::BookItemWrapper::summary() const {
- return book().Summary;
-}
-
-shared_ptr<const ZLImage> NetworkBookTree::BookItemWrapper::image() const {
- shared_ptr<const ZLImage> fullImage = myTree.fullImage();
- if (!fullImage.isNull()) {
- return fullImage;
- }
- return myTree.image();
-}
-
-const std::vector<shared_ptr<ZLTreeAction> > &NetworkBookTree::BookItemWrapper::actions() const {
- return myTree.actions();
-}
-
-std::string NetworkBookTree::BookItemWrapper::actionText(const shared_ptr<ZLTreeAction> &action) const {
- return myTree.actionText(action);
-}
-
-class RelatedAction : public ZLTreeAction {
-public:
- RelatedAction(shared_ptr<NetworkItem> item) : myTitle(item->Title) {
- myNode = new NetworkCatalogTree(&NetworkLibrary::Instance().getFakeCatalogTree(), item);
- //myNode = NetworkTreeFactory::createNetworkTree(0, item);
- }
- ZLResourceKey key() const { return ZLResourceKey(""); }
- std::string text(const ZLResource &/*resource*/) const {
- return myTitle;
- }
- void run() {
- if (NetworkCatalogTree *tree = zlobject_cast<NetworkCatalogTree*>(&*myNode)){
- tree->expand();
- }
- }
-
-private:
- shared_ptr<ZLTreeTitledNode> myNode;
- std::string myTitle;
-};
-
-const std::vector<shared_ptr<ZLTreeAction> > NetworkBookTree::BookItemWrapper::relatedActions() const {
- if (!myRelatedActions.empty()) {
- return myRelatedActions;
- }
- std::vector<shared_ptr<NetworkItem> > catalogItems = static_cast<NetworkBookItem&>(*myBookItem).getRelatedCatalogsItems();
- for (std::size_t i = 0; i < catalogItems.size(); ++i) {
- shared_ptr<NetworkItem> item = catalogItems.at(i);
- myRelatedActions.push_back(new RelatedAction(item));
- }
- return myRelatedActions;
-}
-
-NetworkBookItem &NetworkBookTree::BookItemWrapper::book() const {
- return (NetworkBookItem&)*myBookItem;
-}