/*
* Copyright (C) 2010-2012 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.fbreader.network;
import java.util.*;
import org.geometerplus.zlibrary.core.image.ZLImage;
import org.geometerplus.zlibrary.core.util.MimeType;
import org.geometerplus.fbreader.tree.FBTree;
public abstract class NetworkTree extends FBTree {
protected NetworkTree() {
super();
}
protected NetworkTree(NetworkTree parent) {
super(parent);
}
protected NetworkTree(NetworkTree parent, int position) {
super(parent, position);
}
public INetworkLink getLink() {
final NetworkTree parent = (NetworkTree)Parent;
return parent != null ? parent.getLink() : null;
}
public static ZLImage createCover(NetworkItem item) {
final String imageUrl = item.getImageUrl();
if (imageUrl == null) {
return null;
}
return createCover(imageUrl, null);
}
private static final String DATA_PREFIX = "data:";
public static ZLImage createCover(String url, MimeType mimeType) {
if (url == null) {
return null;
}
if (mimeType == null) {
mimeType = MimeType.IMAGE_AUTO;
}
if (url.startsWith("http://") || url.startsWith("https://") || url.startsWith("ftp://")) {
return NetworkLibrary.Instance().getImageByUrl(url, mimeType);
} else if (url.startsWith(DATA_PREFIX)) {
int commaIndex = url.indexOf(',');
if (commaIndex == -1) {
return null;
}
if (mimeType == MimeType.IMAGE_AUTO) {
int index = url.indexOf(';');
if (index == -1 || index > commaIndex) {
index = commaIndex;
}
// string starts with "data:image/"
if (url.startsWith(MimeType.IMAGE_PREFIX, DATA_PREFIX.length())) {
mimeType = MimeType.get(url.substring(DATA_PREFIX.length(), index));
}
}
int key = url.indexOf("base64");
if (key != -1 && key < commaIndex) {
Base64EncodedImage img = new Base64EncodedImage(mimeType);
img.setData(url.substring(commaIndex + 1));
return img;
}
}
return null;
}
public void removeTrees(Set<NetworkTree> trees) {
if (trees.isEmpty() || subTrees().isEmpty()) {
return;
}
final LinkedList<FBTree> toRemove = new LinkedList<FBTree>();
for (FBTree t : subTrees()) {
if (trees.contains(t)) {
toRemove.add(t);
trees.remove(t);
}
}
for (FBTree tree : toRemove) {
tree.removeSelf();
}
if (trees.isEmpty()) {
return;
}
final LinkedList<FBTree> toProcess = new LinkedList<FBTree>(subTrees());
while (!toProcess.isEmpty()) {
((NetworkTree)toProcess.remove(toProcess.size() - 1)).removeTrees(trees);
}
}
}