com.sun.syndication.propono.atom.server.impl.FileStore.java Source code

Java tutorial

Introduction

Here is the source code for com.sun.syndication.propono.atom.server.impl.FileStore.java

Source

/*   
 * Copyright 2007 Sun Microsystems, Inc.
 * 
 * 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.sun.syndication.propono.atom.server.impl;

import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import org.apache.commons.lang.RandomStringUtils;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

/**
 * Class which helps in handling File persistence related operations.
 */
class FileStore {

    private static Log log = LogFactory.getFactory().getInstance(FileStore.class);

    private static final FileStore fileStore = new FileStore();

    public String getNextId() {
        //return UUID.randomUUID().toString(); // requires JDK 1.5
        return RandomStringUtils.randomAlphanumeric(20);
    }

    public boolean exists(String path) {
        File f = new File(path);
        return f.exists();
    }

    public InputStream getFileInputStream(String path) {
        log.debug("getFileContents path: " + path);
        try {
            return new BufferedInputStream(new FileInputStream(path));
        } catch (FileNotFoundException e) {
            log.debug("   File not found: " + path);
            return null;
        }
    }

    public OutputStream getFileOutputStream(String path) {
        log.debug("getFileOutputStream path: " + path);
        try {
            File f = new File(path);
            f.getParentFile().mkdirs();
            return new BufferedOutputStream(new FileOutputStream(f));
        } catch (FileNotFoundException e) {
            log.debug("   File not found: " + path);
            return null;
        }
    }

    public void createOrUpdateFile(String path, InputStream content) throws FileNotFoundException, IOException {
        log.debug("createOrUpdateFile path: " + path);
        File f = new File(path);
        f.mkdirs();
        FileOutputStream out = new FileOutputStream(f);

        byte[] buffer = new byte[2048];
        int read;
        while ((read = content.read(buffer)) != -1) {
            out.write(buffer, 0, read);
        }
    }

    public void deleteFile(String path) {
        log.debug("deleteFile path: " + path);
        File f = new File(path);
        if (!f.delete()) {
            log.debug("   Failed to delete: " + f.getAbsolutePath());
        }
    }

    public static FileStore getFileStore() {
        return fileStore;
    }

    public boolean deleteDirectory(String path) {
        return deleteDirectory(new File(path));
    }

    public boolean deleteDirectory(File path) {
        log.debug("deleteDirectory path: " + path);
        if (path.exists()) {
            File[] files = path.listFiles();
            for (int i = 0; i < files.length; i++) {
                if (files[i].isDirectory()) {
                    deleteDirectory(files[i]);
                } else {
                    files[i].delete();
                }
            }
        }
        return (path.delete());
    }
}