com.bt.download.android.gui.DiskCrawlCache.java Source code

Java tutorial

Introduction

Here is the source code for com.bt.download.android.gui.DiskCrawlCache.java

Source

/*
 * Created by Angel Leon (@gubatron), Alden Torres (aldenml)
 * Copyright (c) 2011, 2012, FrostWire(R). All rights reserved.
     
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.bt.download.android.gui;

import android.content.Context;
import com.bt.download.android.util.DiskCache;
import com.bt.download.android.util.DiskCache.Entry;
import com.bt.download.android.util.SystemUtils;
import com.frostwire.logging.Logger;
import com.frostwire.search.CrawlCache;
import com.frostwire.util.Ref;
import org.apache.commons.io.IOUtils;

import java.io.File;
import java.lang.ref.WeakReference;

/**
 * @author gubatron
 * @author aldenml
 */
public final class DiskCrawlCache implements CrawlCache {

    private static final Logger LOG = Logger.getLogger(DiskCrawlCache.class);

    private static final int MIN_DISK_CACHE_SIZE = 5 * 1024 * 1024; // 5MB
    private static final int MAX_DISK_CACHE_SIZE = 50 * 1024 * 1024; // 50MB

    private final WeakReference<Context> contextRef;
    private DiskCache cache;

    public DiskCrawlCache(Context context) {
        contextRef = Ref.weak(context);
        initDiskCache();
    }

    private void initDiskCache() {
        Context context = contextRef.get();
        if (context != null) {
            File directory = SystemUtils.getCacheDir(context, "search");
            long diskSize = SystemUtils.calculateDiskCacheSize(directory, MIN_DISK_CACHE_SIZE, MAX_DISK_CACHE_SIZE);
            this.cache = createDiskCache(directory, diskSize);
        }
    }

    @Override
    public byte[] get(String key) {
        byte[] data = null;

        if (cache != null) {
            try {
                Entry e = cache.get(key);
                if (e != null) {
                    try {
                        data = IOUtils.toByteArray(e.getInputStream());
                    } finally {
                        e.close();
                    }
                }
            } catch (Throwable e) {
                // ignore
            }
        }

        return data;
    }

    @Override
    public void put(String key, byte[] data) {
        if (cache != null) {
            try {
                cache.put(key, data);
            } catch (Throwable e) {
                // ignore
            }
        }
    }

    @Override
    public void remove(String key) {
        if (cache != null) {
            try {
                cache.remove(key);
            } catch (Throwable e) {
                // ignore
            }
        }
    }

    @Override
    public void clear() {
        if (cache != null) {
            try {
                cache.delete();
                initDiskCache();
            } catch (Throwable e) {
                LOG.error("Unable to clear the crawl cache", e);
            }
        }
    }

    @Override
    public long size() {
        long size = 0;
        if (cache != null) {
            try {
                size = cache.size();
            } catch (Throwable e) {
                LOG.error("Unable to get crawl cache size", e);
            }
        }

        return size;
    }

    private DiskCache createDiskCache(File directory, long diskSize) {
        try {
            return new DiskCache(directory, diskSize);
        } catch (Throwable e) {
            return null;
        }
    }
}