Codebase list jd-gui / 0af4a626-0b34-4685-a8a4-c18e8bd66f2d/upstream services / src / main / java / org / jd / gui / service / uriloader / FileUriLoaderProvider.java
0af4a626-0b34-4685-a8a4-c18e8bd66f2d/upstream

Tree @0af4a626-0b34-4685-a8a4-c18e8bd66f2d/upstream (Download .tar.gz)

FileUriLoaderProvider.java @0af4a626-0b34-4685-a8a4-c18e8bd66f2d/upstreamraw · history · blame

/*
 * Copyright (c) 2008-2019 Emmanuel Dupuy.
 * This project is distributed under the GPLv3 license.
 * This is a Copyleft license that gives the user the right to use,
 * copy and modify the code freely for non-commercial purposes.
 */

package org.jd.gui.service.uriloader;

import org.jd.gui.api.API;
import org.jd.gui.spi.FileLoader;
import org.jd.gui.spi.UriLoader;

import java.io.File;
import java.net.URI;

public class FileUriLoaderProvider implements UriLoader {
    protected static final String[] SCHEMES = { "file" };

    public String[] getSchemes() { return SCHEMES; }

    public boolean accept(API api, URI uri) { return "file".equals(uri.getScheme()); }

    public boolean load(API api, URI uri) {
        File file = new File(uri.getPath());
        FileLoader fileLoader = api.getFileLoader(file);

        return (fileLoader != null) && fileLoader.load(api, file);
    }
}