001/*
002 * SonarQube
003 * Copyright (C) 2009-2016 SonarSource SA
004 * mailto:contact AT sonarsource DOT com
005 *
006 * This program is free software; you can redistribute it and/or
007 * modify it under the terms of the GNU Lesser General Public
008 * License as published by the Free Software Foundation; either
009 * version 3 of the License, or (at your option) any later version.
010 *
011 * This program is distributed in the hope that it will be useful,
012 * but WITHOUT ANY WARRANTY; without even the implied warranty of
013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
014 * Lesser General Public License for more details.
015 *
016 * You should have received a copy of the GNU Lesser General Public License
017 * along with this program; if not, write to the Free Software Foundation,
018 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
019 */
020package org.sonar.api.component;
021
022import javax.annotation.CheckForNull;
023import org.sonar.api.batch.fs.InputFile;
024import org.sonar.api.batch.fs.InputPath;
025import org.sonar.api.batch.sensor.SensorContext;
026import org.sonar.api.issue.Issuable;
027import org.sonar.api.resources.Resource;
028import org.sonar.api.source.Highlightable;
029import org.sonar.api.source.Symbolizable;
030import org.sonar.api.test.TestPlan;
031import org.sonar.api.test.Testable;
032
033/**
034 * Use this component to create perspective from resources or {@link InputPath}
035 * Only on batch-side.
036 * 
037 * <pre>
038 * public class MySensor implements Sensor {
039 *   private final ResourcePerspectives perspectives;
040 *
041 *   public MySensor(ResourcePerspectives perspectives) {
042 *     this.perspectives = perspectives;
043 *   }
044 *   
045 *   public void analyse(Project module, SensorContext context) {
046 *      // Get some Resource or InputFile/InputPath
047 *      Highlightable highlightable = perspectives.as(Highlightable.class, inputPath);
048 *      if (highlightable != null) {
049 *        ...
050 *      }
051 *   }
052 * }
053 * </pre>
054 * @see Issuable
055 * @see Highlightable
056 * @see Symbolizable
057 * @see Testable
058 * @see TestPlan
059 * @since 3.5
060 * @deprecated since 5.2. Use appropriate methods on {@link SensorContext}.
061 */
062@Deprecated
063public interface ResourcePerspectives {
064
065  @CheckForNull
066  <P extends Perspective> P as(Class<P> perspectiveClass, Resource resource);
067
068  /**
069   * Allow to create perspective from {@link InputPath}. In particular from {@link InputFile}.
070   * @since 4.5.2
071   */
072  @CheckForNull
073  <P extends Perspective> P as(Class<P> perspectiveClass, InputPath inputPath);
074}