Package br.net.woodstock.rockframework.core.io

Source Code of br.net.woodstock.rockframework.core.io.FileMimeTypeFilter

/*
* This file is part of rockframework.
*
* rockframework 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.
*
* rockframework 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, see <http://www.gnu.org/licenses/>;.
*/
package br.net.woodstock.rockframework.core.io;

import java.io.File;
import java.io.FilenameFilter;
import java.io.IOException;
import java.io.Serializable;
import java.util.Arrays;
import java.util.Collection;

import br.net.woodstock.rockframework.core.RockFrameworkException;
import br.net.woodstock.rockframework.core.RockFrameworkVersion;
import br.net.woodstock.rockframework.core.util.Assert;
import br.net.woodstock.rockframework.core.utils.Conditions;
import br.net.woodstock.rockframework.core.utils.Files;

public class FileMimeTypeFilter implements FilenameFilter, Serializable {

  private static final long  serialVersionUID  = RockFrameworkVersion.VERSION;

  private Collection<String>  types;

  public FileMimeTypeFilter(final String... types) {
    super();
    Assert.notNull(types, "types");
    this.types = Arrays.asList(types);
  }

  public FileMimeTypeFilter(final Collection<String> types) {
    super();
    Assert.notNull(types, "types");
    this.types = types;
  }

  @Override
  public boolean accept(final File dir, final String name) {
    if (Conditions.isEmpty(this.types)) {
      return true;
    }

    File f = new File(dir.getAbsolutePath() + File.separator + name);
    if (f.isDirectory()) {
      return true;
    }

    try {
      String mimeType = Files.getType(f);
      return this.types.contains(mimeType);
    } catch (IOException e) {
      throw new RockFrameworkException(e);
    }
  }

}
TOP

Related Classes of br.net.woodstock.rockframework.core.io.FileMimeTypeFilter

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.