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

org.sonar.javascript.cfg.JsCfgBlock Maven / Gradle / Ivy

There is a newer version: 7.4.4.15624
Show newest version
/*
 * SonarQube JavaScript Plugin
 * Copyright (C) 2011-2018 SonarSource SA
 * mailto:info AT sonarsource DOT com
 *
 * 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.javascript.cfg;

import com.google.common.base.Preconditions;
import com.google.common.collect.ImmutableSet;
import java.util.Collections;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Set;
import org.sonar.plugins.javascript.api.tree.Tree;
import org.sonar.plugins.javascript.api.tree.lexical.SyntaxToken;

class JsCfgBlock implements CfgBlock {

  private Set predecessors = new HashSet<>();
  private JsCfgBlock successor;

  private LinkedList elements = new LinkedList<>();

  private final Set disconnectingJumps = new HashSet<>();

  JsCfgBlock(JsCfgBlock successor) {
    Preconditions.checkArgument(successor != null, "Successor cannot be null");
    this.successor = successor;
  }

  JsCfgBlock() {
  }

  @Override
  public Set predecessors() {
    return Collections.unmodifiableSet(predecessors);
  }

  @Override
  public Set successors() {
    return ImmutableSet.of(successor);
  }

  @Override
  public List elements() {
    return Collections.unmodifiableList(elements);
  }

  public void addElement(Tree element) {
    Preconditions.checkArgument(element != null, "Cannot add a null element to a block");
    elements.addFirst(element);
  }

  void addPredecessor(JsCfgBlock predecessor) {
    this.predecessors.add(predecessor);
  }

  /**
   * Replace successors based on a replacement map.
   * This method is used when we remove empty blocks:
   * we have to replace empty successors in the remaining blocks by non-empty successors.
   */
  public void replaceSuccessors(Map replacements) {
    this.successor = replacement(successor, replacements);
  }

  static JsCfgBlock replacement(JsCfgBlock successor, Map replacements) {
    JsCfgBlock newSuccessor = replacements.get(successor);
    return newSuccessor == null ? successor : newSuccessor;
  }

  /**
   * Jump keywords (return, throw, break continue) which disconnect normal execution flow coming to this block.
   */
  Set disconnectingJumps() {
    return disconnectingJumps;
  }

  void addDisconnectingJump(SyntaxToken jumpToken) {
    disconnectingJumps.add(jumpToken);
  }

  JsCfgBlock skipEmptyBlocks() {
    Set skippedBlocks = new HashSet<>();
    JsCfgBlock block = this;
    while (block.successors().size() == 1 && block.elements().isEmpty()) {
      JsCfgBlock next = (JsCfgBlock) block.successors().iterator().next();
      skippedBlocks.add(block);
      if (!skippedBlocks.contains(next)) {
        block = next;
      } else {
        return block;
      }
    }
    return block;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy