/* * Copyright (C) 2010-2011 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.io.*; import org.geometerplus.zlibrary.core.constants.MimeTypes; import org.geometerplus.zlibrary.core.image.ZLBase64EncodedImage; import org.geometerplus.fbreader.Paths; final class Base64EncodedImage extends ZLBase64EncodedImage { private static final String ENCODED_SUFFIX = ".base64"; private String myDecodedFileName; // mimeType string MUST be interned public Base64EncodedImage(String mimeType) { super(mimeType); new File(makeImagesDir()).mkdirs(); } public static String makeImagesDir() { return Paths.networkCacheDirectory() + "/base64"; } public void setData(String data) { myDecodedFileName = makeImagesDir() + File.separator + Integer.toHexString(data.hashCode()); String type = mimeType(); if (type == MimeTypes.MIME_IMAGE_PNG) { myDecodedFileName += ".png"; } else if (type == MimeTypes.MIME_IMAGE_JPEG) { myDecodedFileName += ".jpg"; } if (isCacheValid(new File(myDecodedFileName))) { return; } File file = new File(encodedFileName()); if (isCacheValid(file)) { return; } try { final OutputStreamWriter writer = new OutputStreamWriter(new FileOutputStream(file), "UTF-8"); try { writer.write(data, 0, data.length()); } finally { writer.close(); } } catch (IOException e) { } } @Override protected boolean isCacheValid(File file) { if (file.exists()) { final long diff = System.currentTimeMillis() - file.lastModified(); final long valid = 24 * 60 * 60 * 1000; // one day in milliseconds; FIXME: hardcoded const if (diff >= 0 && diff <= valid) { return true; } file.delete(); } return false; } @Override protected String encodedFileName() { return myDecodedFileName + ENCODED_SUFFIX; } @Override protected String decodedFileName() { return myDecodedFileName; } }