org.sonar.batch.components.TimeMachineConfiguration.java Source code

Java tutorial

Introduction

Here is the source code for org.sonar.batch.components.TimeMachineConfiguration.java

Source

/*
 * Sonar, open source software quality management tool.
 * Copyright (C) 2008-2012 SonarSource
 * mailto:contact AT sonarsource DOT com
 *
 * Sonar is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 3 of the License, or (at your option) any later version.
 *
 * Sonar 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with Sonar; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02
 */
package org.sonar.batch.components;

import com.google.common.collect.Lists;
import org.apache.commons.configuration.Configuration;
import org.apache.commons.lang.StringUtils;
import org.slf4j.LoggerFactory;
import org.sonar.api.BatchExtension;
import org.sonar.api.CoreProperties;
import org.sonar.api.database.DatabaseSession;
import org.sonar.api.database.model.Snapshot;
import org.sonar.api.resources.Project;
import org.sonar.api.resources.Qualifiers;
import org.sonar.api.utils.Logs;

import javax.persistence.Query;

import java.util.Date;
import java.util.List;

public class TimeMachineConfiguration implements BatchExtension {

    private static final int NUMBER_OF_VARIATION_SNAPSHOTS = 5;

    private Project project;
    private final Configuration configuration;
    private List<PastSnapshot> projectPastSnapshots;
    private DatabaseSession session;

    public TimeMachineConfiguration(DatabaseSession session, Project project, Configuration configuration,
            PastSnapshotFinder pastSnapshotFinder) {
        this.session = session;
        this.project = project;
        this.configuration = configuration;
        initPastSnapshots(pastSnapshotFinder);
    }

    private void initPastSnapshots(PastSnapshotFinder pastSnapshotFinder) {
        Snapshot projectSnapshot = buildProjectSnapshot();

        projectPastSnapshots = Lists.newLinkedList();
        if (projectSnapshot != null) {
            for (int index = 1; index <= NUMBER_OF_VARIATION_SNAPSHOTS; index++) {
                PastSnapshot pastSnapshot = pastSnapshotFinder.find(projectSnapshot, configuration, index);
                if (pastSnapshot != null) {
                    log(pastSnapshot);
                    projectPastSnapshots.add(pastSnapshot);
                }
            }
        }
    }

    private Snapshot buildProjectSnapshot() {
        Query query = session.createNativeQuery(
                "select p.id from projects p where p.kee=:resourceKey and p.qualifier<>:lib and p.enabled=:enabled");
        query.setParameter("resourceKey", project.getKey());
        query.setParameter("lib", Qualifiers.LIBRARY);
        query.setParameter("enabled", Boolean.TRUE);

        Snapshot snapshot = null;
        Number projectId = session.getSingleResult(query, null);
        if (projectId != null) {
            snapshot = new Snapshot();
            snapshot.setResourceId(projectId.intValue());
            snapshot.setCreatedAt(project.getAnalysisDate());
            snapshot.setBuildDate(new Date());
            snapshot.setVersion(project.getAnalysisVersion());
        }
        return snapshot;
    }

    private void log(PastSnapshot pastSnapshot) {
        String qualifier = pastSnapshot.getQualifier();
        // hack to avoid too many logs when the views plugin is installed
        if (StringUtils.equals(Qualifiers.VIEW, qualifier) || StringUtils.equals(Qualifiers.SUBVIEW, qualifier)) {
            LoggerFactory.getLogger(getClass()).debug(pastSnapshot.toString());
        } else {
            Logs.INFO.info(pastSnapshot.toString());
        }
    }

    public boolean skipTendencies() {
        return configuration.getBoolean(CoreProperties.SKIP_TENDENCIES_PROPERTY,
                CoreProperties.SKIP_TENDENCIES_DEFAULT_VALUE);
    }

    public int getTendencyPeriodInDays() {
        return configuration.getInt(CoreProperties.CORE_TENDENCY_DEPTH_PROPERTY,
                CoreProperties.CORE_TENDENCY_DEPTH_DEFAULT_VALUE);
    }

    public List<PastSnapshot> getProjectPastSnapshots() {
        return projectPastSnapshots;
    }

    public boolean isFileVariationEnabled() {
        return configuration.getBoolean("sonar.enableFileVariation", Boolean.FALSE);
    }
}