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

com.ibm.wala.cast.java.ipa.callgraph.JavaSourceAnalysisScope Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2002 - 2006 IBM Corporation.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 */
/*
 * Created on Sep 27, 2005
 */
package com.ibm.wala.cast.java.ipa.callgraph;

import com.ibm.wala.classLoader.Language;
import com.ibm.wala.classLoader.Module;
import com.ibm.wala.classLoader.SourceDirectoryTreeModule;
import com.ibm.wala.core.util.strings.Atom;
import com.ibm.wala.ipa.callgraph.AnalysisScope;
import com.ibm.wala.types.ClassLoaderReference;
import java.util.Collection;
import java.util.Collections;

public class JavaSourceAnalysisScope extends AnalysisScope {

  public static final ClassLoaderReference SOURCE =
      new ClassLoaderReference(
          Atom.findOrCreateAsciiAtom("Source"),
          Atom.findOrCreateAsciiAtom("Java"),
          ClassLoaderReference.Application);

  public JavaSourceAnalysisScope() {
    this(Collections.singleton(Language.JAVA));
  }

  protected void initCoreForJavaSource() {
    initCoreForJava();
    loadersByName.put(SOURCE.getName(), SOURCE);

    setLoaderImpl(SOURCE, "com.ibm.wala.cast.java.translator.polyglot.PolyglotSourceLoaderImpl");
  }

  protected JavaSourceAnalysisScope(Collection languages) {
    super(languages);
    initCoreForJavaSource();
    initSynthetic(SOURCE);
  }

  public ClassLoaderReference getSourceLoader() {
    return SOURCE;
  }

  @Override
  public void addToScope(ClassLoaderReference loader, Module m) {
    if (m instanceof SourceDirectoryTreeModule && loader.equals(ClassLoaderReference.Application)) {
      super.addToScope(SOURCE, m);
    } else {
      super.addToScope(loader, m);
    }
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy