All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.mycore.datamodel.niofs.MCRContentTypes Maven / Gradle / Ivy

There is a newer version: 2024.05
Show newest version
/*
 * This file is part of ***  M y C o R e  ***
 * See http://www.mycore.de/ for details.
 *
 * MyCoRe 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.
 *
 * MyCoRe 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 MyCoRe.  If not, see .
 */

package org.mycore.datamodel.niofs;

import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.spi.FileTypeDetector;
import java.util.ArrayList;
import java.util.List;
import java.util.ServiceLoader;

import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;

/**
 * @author Thomas Scheffler (yagee)
 *
 */
public class MCRContentTypes {

    private static final Logger LOGGER = LogManager.getLogger(MCRContentTypes.class);

    private static List fileTypeDetectors;

    static {
        try {
            fileTypeDetectors = getInstalledDetectors();
        } catch (Exception exc) {
            LOGGER.error("Unable to retrieve installed file type detectors", exc);
        }
    }

    private MCRContentTypes() {
    }

    private static List getInstalledDetectors() {
        ArrayList detectors = new ArrayList<>();
        ServiceLoader serviceLoader = ServiceLoader.load(FileTypeDetector.class);
        for (FileTypeDetector fileTypeDetector : serviceLoader) {
            LOGGER.info("Adding content type detector: {}", fileTypeDetector.getClass());
            detectors.add(fileTypeDetector);
        }
        return detectors;
    }

    /**
     * Probes the content type of a file.
     * 
     * Same as {@link Files#probeContentType(Path)} but uses context class loader.
     * @param path
     *              the path to the file to probe
     * @return The content type of the file, or null if the content type cannot be determined
     * @throws IOException if an I/O error occurs
     */
    public static String probeContentType(Path path) throws IOException {
        LOGGER.debug("Probing content type: {}", path);
        for (FileTypeDetector fileTypeDetector : fileTypeDetectors) {
            LOGGER.debug("Using type detector: {}", fileTypeDetector.getClass());
            String contentType = fileTypeDetector.probeContentType(path);
            if (contentType != null) {
                LOGGER.debug("Content type: {}", contentType);
                return contentType;
            }
        }
        return Files.probeContentType(path);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy