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

com.intellij.rt.coverage.testDiscovery.instrumentation.SourceFilesCollector Maven / Gradle / Ivy

There is a newer version: 1.0.766
Show newest version
/*
 * Copyright 2000-2018 JetBrains s.r.o.
 *
 * 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 com.intellij.rt.coverage.testDiscovery.instrumentation;

import com.intellij.rt.coverage.instrumentation.JSR45Util;
import org.jetbrains.coverage.org.objectweb.asm.ClassVisitor;

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

class SourceFilesCollector extends ClassVisitor {
  private final List sources = new ArrayList(1);
  private final String className;

  SourceFilesCollector(int api, ClassVisitor cv, String className) {
    super(api, cv);
    this.className = className;
  }

  List getSources() {
    return sources;
  }

  @Override
  public void visitSource(String source, String debug) {
    if (debug != null) {
      // SourceDebugExtension attribute
      List sourceFiles = JSR45Util.parseSourcePaths(debug);
      for (String sourceFile : sourceFiles) {
        if (!sources.contains(sourceFile)) {
          sources.add(sourceFile);
        }
      }
    }
    else {
      // SourceFile attribute
      String sourceFile = JSR45Util.getClassPackageName(className).replace(".", "/") + source;
      if (!sources.contains(sourceFile)) {
        sources.add(sourceFile);
      }
    }
    super.visitSource(source, debug);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy