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

de.malkusch.whoisServerList.publicSuffixList.index.Index Maven / Gradle / Ivy

package de.malkusch.whoisServerList.publicSuffixList.index;

import java.util.Collection;
import java.util.Collections;
import java.util.List;
import java.util.NoSuchElementException;

import net.jcip.annotations.ThreadSafe;

import org.apache.commons.lang3.StringUtils;

import de.malkusch.whoisServerList.publicSuffixList.PublicSuffixListFactory;
import de.malkusch.whoisServerList.publicSuffixList.rule.Rule;
import de.malkusch.whoisServerList.publicSuffixList.rule.RuleComparator;

/**
 * Rule index.
 *
 * The {@link PublicSuffixListFactory} builds the {@code PublicSuffixList} with
 * the index defined with
 * the property {@link PublicSuffixListFactory#PROPERTY_INDEX}.
 *
 * Index implementations must be thread-safe.
 *
 * @author [email protected]
 * @see Donations
 */
@ThreadSafe
public abstract class Index {

    /**
     * Finds a list of matching rules.
     *
     * This list may not include all matching rules, but must include the
     * prevailing rule.
     *
     * @param domain  the domain name, may be null
     * @return the list of matching rules, not null.
     */
    protected abstract Collection findRules(String domain);

    /**
     * Returns all rules of this index.
     *
     * @return the rules, not null
     */
    public abstract List getRules();

    /**
     * Finds the prevailing rule.
     *
     * @param domain  the domain name, null returns null
     * @return the prevailing rule, null if no rule matches
     */
    public final Rule findRule(final String domain) {
        try {
            if (StringUtils.isEmpty(domain)) {
                return null;

            }
            return Collections.max(findRules(domain), new RuleComparator());

        } catch (NoSuchElementException e) {
            return null;

        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy