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

org.gradle.internal.jacoco.rules.JacocoViolationRuleImpl Maven / Gradle / Ivy

/*
 * Copyright 2016 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.gradle.internal.jacoco.rules;

import com.google.common.collect.ImmutableList;
import org.gradle.api.Action;
import org.gradle.testing.jacoco.tasks.rules.JacocoLimit;
import org.gradle.testing.jacoco.tasks.rules.JacocoViolationRule;

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;

public class JacocoViolationRuleImpl implements JacocoViolationRule {

    private boolean enabled = true;
    private String scope = "BUNDLE";
    private List includes = ImmutableList.of("*");
    private List excludes = ImmutableList.of();
    private final List limits = new ArrayList();

    @Override
    public boolean isEnabled() {
        return enabled;
    }

    @Override
    public void setEnabled(boolean enabled) {
        this.enabled = enabled;
    }

    @Override
    public void setElement(String element) {
        this.scope = element;
    }

    @Override
    public String getElement() {
        return scope;
    }

    @Override
    public void setIncludes(List includes) {
        this.includes = includes;
    }

    @Override
    public List getIncludes() {
        return Collections.unmodifiableList(includes);
    }

    @Override
    public void setExcludes(List excludes) {
        this.excludes = excludes;
    }

    @Override
    public List getExcludes() {
        return Collections.unmodifiableList(excludes);
    }

    @Override
    public List getLimits() {
        return Collections.unmodifiableList(limits);
    }

    @Override
    public JacocoLimit limit(Action configureAction) {
        JacocoLimit limit = new JacocoLimitImpl();
        configureAction.execute(limit);
        limits.add(limit);
        return limit;
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) {
            return true;
        }
        if (o == null || getClass() != o.getClass()) {
            return false;
        }

        JacocoViolationRuleImpl that = (JacocoViolationRuleImpl) o;

        if (enabled != that.enabled) {
            return false;
        }
        if (scope != that.scope) {
            return false;
        }
        if (includes != null ? !includes.equals(that.includes) : that.includes != null) {
            return false;
        }
        if (excludes != null ? !excludes.equals(that.excludes) : that.excludes != null) {
            return false;
        }
        return limits != null ? limits.equals(that.limits) : that.limits == null;
    }

    @Override
    public int hashCode() {
        int result = enabled ? 1 : 0;
        result = 31 * result + (scope != null ? scope.hashCode() : 0);
        result = 31 * result + (includes != null ? includes.hashCode() : 0);
        result = 31 * result + (excludes != null ? excludes.hashCode() : 0);
        result = 31 * result + (limits != null ? limits.hashCode() : 0);
        return result;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy