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

org.sonar.css.tree.symbol.ScopeVisitor Maven / Gradle / Ivy

There is a newer version: 4.13
Show newest version
/*
 * SonarQube CSS / SCSS / Less Analyzer
 * Copyright (C) 2013-2016 Tamas Kende and David RACODON
 * mailto: [email protected] and [email protected]
 *
 * This program 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.
 *
 * This program 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.css.tree.symbol;

import org.sonar.plugins.css.api.tree.Tree;
import org.sonar.plugins.css.api.tree.css.StatementBlockTree;
import org.sonar.plugins.css.api.tree.css.StyleSheetTree;
import org.sonar.plugins.css.api.tree.embedded.FileWithEmbeddedCssTree;
import org.sonar.plugins.css.api.visitors.DoubleDispatchVisitor;

import java.util.HashMap;
import java.util.Map;

public class ScopeVisitor extends DoubleDispatchVisitor {

  private SymbolModelBuilder symbolModel;
  private Scope currentScope;
  private Map treeScopeMap;

  public Map getTreeScopeMap() {
    return treeScopeMap;
  }

  @Override
  public void visitFileWithEmbeddedCss(FileWithEmbeddedCssTree tree) {
    initScopes();
    newScope(tree);
    super.visitFileWithEmbeddedCss(tree);
    leaveScope();
  }

  @Override
  public void visitStyleSheet(StyleSheetTree tree) {
    if (symbolModel == null) {
      initScopes();
    }
    newScope(tree);
    super.visitStyleSheet(tree);
    leaveScope();
  }

  @Override
  public void visitStatementBlock(StatementBlockTree tree) {
    newScope(tree);
    super.visitStatementBlock(tree);
    leaveScope();
  }

  private void leaveScope() {
    if (currentScope != null) {
      currentScope = currentScope.outer();
    }
  }

  private void newScope(Tree tree) {
    currentScope = new Scope(currentScope, tree);
    treeScopeMap.put(tree, currentScope);
    symbolModel.addScope(currentScope);
  }

  private void initScopes() {
    symbolModel = (SymbolModelBuilder) getContext().getSymbolModel();
    currentScope = null;
    treeScopeMap = new HashMap<>();
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy