com.neophob.sematrix.core.glue.FileUtils.java Source code

Java tutorial

Introduction

Here is the source code for com.neophob.sematrix.core.glue.FileUtils.java

Source

/**
 * Copyright (C) 2011-2013 Michael Vogt <michu@neophob.com>
 *
 * This file is part of PixelController.
 *
 * PixelController 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 3 of the License, or
 * (at your option) any later version.
 *
 * PixelController 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 PixelController.  If not, see <http://www.gnu.org/licenses/>.
 */
package com.neophob.sematrix.core.glue;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.FilenameFilter;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;
import java.util.Properties;
import java.util.logging.Level;
import java.util.logging.Logger;

import org.apache.commons.lang3.StringUtils;

/**
 * Helper Class to find some files
 * @author michu
 *
 */
public class FileUtils {

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

    private static final String DATA_DIR = File.separator + "data";

    private static final String BML_DIR = DATA_DIR + File.separator + "blinken" + File.separator;
    private static final String IMAGE_DIR = DATA_DIR + File.separator + "pics";

    /** The Constant PRESENTS_FILENAME. */
    private static final String PRESETS_FILENAME = "presets.led";

    private String rootDirectory;

    /**
     * 
     * @param rootDirectory
     */
    public FileUtils() {
        this.rootDirectory = System.getProperty("user.dir");

        if (!new File(getDataDir()).isDirectory()) {
            this.rootDirectory = System.getProperty("user.dir")
                    + "/../pixelcontroller-distribution/src/main/resources";//
            LOG.log(Level.INFO, "Try root directory: {0}", rootDirectory);

            if (!new File(getDataDir()).isDirectory()) {
                LOG.log(Level.INFO, "Root directory {0} is not correct!", rootDirectory);
            }
        } else {
            LOG.log(Level.INFO, "Use root directory: {0}", rootDirectory);
        }

    }

    protected FileUtils(String rootDirectory) {
        this.rootDirectory = rootDirectory;
        LOG.log(Level.INFO, "Root directory: {0}", rootDirectory);
    }

    /**
     * get files by extension
     * not recursive
     * @param path
     * @param ff
     * @return
     */
    private String[] findFiles(String path, FilenameFilter ff) {
        File f = new File(path);
        if (!f.isDirectory()) {
            LOG.log(Level.WARNING, f + " is not a directoy");
            return null;
        }

        List<String> tmp = Arrays.asList(f.list(ff));
        Collections.sort(tmp, new SortIgnoreCase());
        return tmp.toArray(new String[tmp.size()]);
    }

    /**
     * 
     * @param path
     * @return
     */
    public String[] findBlinkenFiles() {
        FilenameFilter ff = new BlinkenlightsFilter();
        return findFiles(this.rootDirectory + BML_DIR, ff);
    }

    /**
     * 
     * @param path
     * @return
     */
    public String[] findImagesFiles() {
        FilenameFilter ff = new ImageFilter();
        return findFiles(this.rootDirectory + IMAGE_DIR, ff);
    }

    /**
     * 
     * @return
     */
    public String getRootDirectory() {
        return rootDirectory;
    }

    /**
     * @return the dataDir
     */
    public String getDataDir() {
        return rootDirectory + DATA_DIR;
    }

    /**
     * @return the bmlDir
     */
    public String getBmlDir() {
        return rootDirectory + BML_DIR;
    }

    /**
     * @return the imageDir
     */
    public String getImageDir() {
        return rootDirectory + IMAGE_DIR;
    }

    /**
     * Load presents.
     */
    public List<PresetSettings> loadPresents(int nrOfElements) {
        Properties props = new Properties();
        List<PresetSettings> presets = new ArrayList<PresetSettings>(nrOfElements);
        for (int i = 0; i < nrOfElements; i++) {
            presets.add(new PresetSettings());
        }

        InputStream input = null;
        try {
            String filename = this.getDataDir() + File.separator + PRESETS_FILENAME;
            input = new FileInputStream(filename);
            props.load(input);
            String s;
            int count = 0;
            for (int i = 0; i < nrOfElements; i++) {
                s = props.getProperty("" + i);
                if (StringUtils.isNotBlank(s)) {
                    presets.get(i).setPresent(s.split(";"));
                    count++;
                }
            }
            LOG.log(Level.INFO, "Loaded {0} presets from file {1}", new Object[] { count, PRESETS_FILENAME });
        } catch (Exception e) {
            LOG.log(Level.WARNING, "Failed to load {0}, Error: {1}", new Object[] { PRESETS_FILENAME, e });
        } finally {
            try {
                if (input != null) {
                    input.close();
                }
            } catch (Exception e) {
                LOG.log(Level.WARNING, "Failed to close input stream", e);
            }
        }

        return presets;
    }

    /**
     * Save presents.
     */
    public void savePresents(List<PresetSettings> presets) {
        Properties props = new Properties();
        int idx = 0;
        for (PresetSettings p : presets) {
            props.setProperty("" + idx, p.getSettingsAsString());
            idx++;
        }

        OutputStream output = null;
        try {
            String filename = this.getDataDir() + File.separator + PRESETS_FILENAME;
            output = new FileOutputStream(filename);
            props.store(output, "Visual Daemon presets file");
            LOG.log(Level.INFO, "Presets saved as {0}", PRESETS_FILENAME);
        } catch (Exception e) {
            LOG.log(Level.WARNING, "Failed to save {0}, Error: {1}", new Object[] { PRESETS_FILENAME, e });
        } finally {
            try {
                if (output != null) {
                    output.close();
                }
            } catch (Exception e) {
                LOG.log(Level.WARNING, "Failed to close output stream", e);
            }
        }
    }

    /**
     * 
     * @author michu
     *
     */
    private class BlinkenlightsFilter implements FilenameFilter {
        public boolean accept(File dir, String name) {
            return (name.toLowerCase().endsWith(".bml"));
        }
    }

    /**
     * 
     * @author michu
     *
     */
    private class ImageFilter implements FilenameFilter {
        public boolean accept(File dir, String name) {
            return (name.toLowerCase().endsWith(".jpg") || name.toLowerCase().endsWith(".gif")
                    || name.toLowerCase().endsWith(".png") || name.toLowerCase().endsWith(".jpeg"));
        }
    }

    /**
     * 
     * @author michu
     *
     */
    class SortIgnoreCase implements Comparator<String> {
        public int compare(String o1, String o2) {
            String s1 = (String) o1;
            String s2 = (String) o2;
            return s1.compareToIgnoreCase(s2);
        }
    }
}