org.robam.xutils.http.callback.FileDownloadHandler.java Source code

Java tutorial

Introduction

Here is the source code for org.robam.xutils.http.callback.FileDownloadHandler.java

Source

/*
 * Copyright (c) 2013. wyouflf (wyouflf@gmail.com)
 *
 * 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 org.robam.xutils.http.callback;

import android.text.TextUtils;

import org.apache.http.HttpEntity;
import org.robam.xutils.Utils.IOUtils;

import java.io.BufferedInputStream;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;

/**
 * ??,?.
 * ?:?Callback,Callback,?
 */
public class FileDownloadHandler {

    /**
     * ?.
     *
     * @param entity
     * @param callBackHandler
     * @param target
     * @param isResume
     * @param responseFileName
     * @return ??.??.???, ??.
     * @throws java.io.IOException
     */
    public File handleEntity(HttpEntity entity, RequestCallBackHandler callBackHandler, String target,
            boolean isResume, String responseFileName) throws IOException {
        if (entity == null || TextUtils.isEmpty(target)) {
            return null;
        }

        File targetFile = new File(target);

        //??
        if (!targetFile.exists()) {
            File dir = targetFile.getParentFile();
            //
            if (!dir.exists()) {
                dir.mkdirs();
            }
            //?
            targetFile.createNewFile();
        }

        long currentFileSize = 0;
        InputStream inputStream = null;
        FileOutputStream fileOutputStream = null;

        try {
            if (isResume) {
                currentFileSize = targetFile.length();
                // true
                fileOutputStream = new FileOutputStream(target, true);
            } else {
                fileOutputStream = new FileOutputStream(target);
            }

            // 
            long totalFileSize = entity.getContentLength() + currentFileSize;

            //TODO:?CallbackHandler????,?...
            if (callBackHandler != null && !callBackHandler.updateProgress(totalFileSize, currentFileSize, true)) {
                return targetFile;
            }

            // TODO:?entity.getContent??????????????
            inputStream = entity.getContent();
            BufferedInputStream bis = new BufferedInputStream(inputStream);

            byte[] tmp = new byte[4096];
            int len;
            while ((len = bis.read(tmp)) != -1) {
                fileOutputStream.write(tmp, 0, len);
                currentFileSize += len;
                if (callBackHandler != null) {
                    if (!callBackHandler.updateProgress(totalFileSize, currentFileSize, false)) {
                        return targetFile;
                    }
                }
            }
            fileOutputStream.flush();
            if (callBackHandler != null) {
                callBackHandler.updateProgress(totalFileSize, currentFileSize, true);
            }
        } finally {
            //
            IOUtils.closeQuietly(inputStream);
            IOUtils.closeQuietly(fileOutputStream);
        }

        // ???
        if (targetFile.exists() && !TextUtils.isEmpty(responseFileName)) {
            File newFile = new File(targetFile.getParent(), responseFileName);
            //???,????.
            while (newFile.exists()) {
                newFile = new File(targetFile.getParent(), System.currentTimeMillis() + responseFileName);
            }
            return targetFile.renameTo(newFile) ? newFile : targetFile;
        } else {
            return targetFile;
        }
    }

}