mirror of
https://github.com/geometer/FBReaderJ.git
synced 2025-10-05 02:39:23 +02:00
106 lines
3.1 KiB
Java
106 lines
3.1 KiB
Java
/*
|
|
* Copyright (C) 2010 Geometer Plus <contact@geometerplus.com>
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
package org.geometerplus.android.fbreader.network;
|
|
|
|
import java.util.Set;
|
|
import java.util.LinkedList;
|
|
import java.util.ListIterator;
|
|
|
|
import org.geometerplus.zlibrary.core.image.ZLImage;
|
|
import org.geometerplus.zlibrary.core.resources.ZLResource;
|
|
|
|
import org.geometerplus.fbreader.tree.FBTree;
|
|
import org.geometerplus.fbreader.network.*;
|
|
import org.geometerplus.fbreader.network.tree.NetworkAuthorTree;
|
|
|
|
import org.geometerplus.zlibrary.ui.android.R;
|
|
|
|
import org.geometerplus.android.fbreader.tree.ZLAndroidTree;
|
|
|
|
public class SearchItemTree extends NetworkTree implements ZLAndroidTree {
|
|
|
|
private SearchResult myResult;
|
|
|
|
public SearchItemTree() {
|
|
super(1);
|
|
}
|
|
|
|
@Override
|
|
public String getName() {
|
|
return ZLResource.resource("networkView").getResource("search").getValue();
|
|
}
|
|
|
|
@Override
|
|
public String getSummary() {
|
|
return ZLResource.resource("networkView").getResource("searchSummary").getValue();
|
|
}
|
|
|
|
public int getCoverResourceId() {
|
|
return R.drawable.ic_list_searchresult;
|
|
}
|
|
|
|
public void setSearchResult(SearchResult result) {
|
|
myResult = result;
|
|
clear();
|
|
}
|
|
|
|
public SearchResult getSearchResult() {
|
|
return myResult;
|
|
}
|
|
|
|
public void updateSubTrees() {
|
|
ListIterator<FBTree> nodeIterator = subTrees().listIterator();
|
|
|
|
final Set<NetworkBookItem.AuthorData> authorsSet = myResult.BooksMap.keySet();
|
|
|
|
for (NetworkBookItem.AuthorData author: authorsSet) {
|
|
if (nodeIterator != null) {
|
|
if (nodeIterator.hasNext()) {
|
|
FBTree currentNode = nodeIterator.next();
|
|
if (!(currentNode instanceof NetworkAuthorTree)) {
|
|
throw new RuntimeException("That's impossible!!!");
|
|
}
|
|
NetworkAuthorTree child = (NetworkAuthorTree) currentNode;
|
|
if (!child.Author.equals(author)) {
|
|
throw new RuntimeException("That's impossible!!!");
|
|
}
|
|
LinkedList<NetworkBookItem> authorBooks = myResult.BooksMap.get(author);
|
|
child.updateSubTrees(authorBooks);
|
|
continue;
|
|
}
|
|
nodeIterator = null;
|
|
}
|
|
|
|
LinkedList<NetworkBookItem> authorBooks = myResult.BooksMap.get(author);
|
|
if (authorBooks.size() != 0) {
|
|
NetworkAuthorTree child = new NetworkAuthorTree(this, author);
|
|
child.updateSubTrees(authorBooks);
|
|
}
|
|
}
|
|
if (nodeIterator != null && nodeIterator.hasNext()) {
|
|
throw new RuntimeException("That's impossible!!!");
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public NetworkLibraryItem getHoldedItem() {
|
|
return null;
|
|
}
|
|
}
|