package ru.gravit.launcher.hasher; import ru.gravit.launcher.LauncherAPI; import java.util.Collection; public final class FileNameMatcher { private static final String[] NO_ENTRIES = new String[0]; private static boolean anyMatch(String[] entries, Collection path) { //return path.stream().anyMatch(e -> Arrays.stream(entries).anyMatch(p -> p.endsWith(e))); String jpath = String.join("/", path); for(String e : entries) { /*String[] split = e.split("/"); //int index = 0; //for(String p : path) //{ // if(index>=split.length) { return true; } if(!p.equals(split[index])) { break; } index++; }*/ if(jpath.startsWith(e)) return true; } return false; } // Instance private final String[] update; private final String[] verify; private final String[] exclusions; @LauncherAPI public FileNameMatcher(String[] update, String[] verify, String[] exclusions) { this.update = update; this.verify = verify; this.exclusions = exclusions; } public boolean shouldUpdate(Collection path) { return (anyMatch(update, path) || anyMatch(verify, path)) && !anyMatch(exclusions, path); } public boolean shouldVerify(Collection path) { return anyMatch(verify, path) && !anyMatch(exclusions, path); } public FileNameMatcher verifyOnly() { return new FileNameMatcher(NO_ENTRIES, verify, exclusions); } }