Java tutorial
/* * SonarQube, open source software quality management tool. * Copyright (C) 2008-2013 SonarSource * mailto:contact AT sonarsource DOT com * * SonarQube 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. * * SonarQube 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 this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ package org.sonar.batch.tasks; import com.google.common.collect.ImmutableSortedMap; import com.google.common.collect.Maps; import org.sonar.api.task.Task; import org.sonar.api.task.TaskComponent; import org.sonar.api.task.TaskDefinition; import org.sonar.api.utils.SonarException; import java.util.Collection; import java.util.Map; import java.util.SortedMap; public class Tasks implements TaskComponent { private final SortedMap<String, TaskDefinition> byKey; public Tasks(TaskDefinition[] definitions) { SortedMap<String, TaskDefinition> map = Maps.newTreeMap(); for (TaskDefinition definition : definitions) { if (map.containsKey(definition.key())) { throw new SonarException("Task '" + definition.key() + "' is declared twice"); } map.put(definition.key(), definition); } this.byKey = ImmutableSortedMap.copyOf(map); } public TaskDefinition definition(String taskKey) { return byKey.get(taskKey); } public Collection<TaskDefinition> definitions() { return byKey.values(); } /** * Perform validation of task definitions */ public void start() { checkDuplicatedClasses(); } private void checkDuplicatedClasses() { Map<Class<? extends Task>, TaskDefinition> byClass = Maps.newHashMap(); for (TaskDefinition def : definitions()) { TaskDefinition other = byClass.get(def.taskClass()); if (other == null) { byClass.put(def.taskClass(), def); } else { throw new SonarException("Task '" + def.taskClass().getName() + "' is defined twice: first by '" + other.key() + "' and then by '" + def.key() + "'"); } } } }