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

com.intellij.lang.FCTSBackedLighterAST Maven / Gradle / Ivy

Go to download

A packaging of the IntelliJ Community Edition core-api library. This is release number 1 of trunk branch 142.

The newest version!
/*
 * Copyright 2000-2015 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.lang;

import com.intellij.openapi.util.Ref;
import com.intellij.util.CharTable;
import com.intellij.util.containers.ContainerUtil;
import com.intellij.util.diff.FlyweightCapableTreeStructure;
import org.jetbrains.annotations.NotNull;

import java.util.AbstractList;
import java.util.List;

public class FCTSBackedLighterAST extends LighterAST {
  @NotNull
  private final FlyweightCapableTreeStructure myTreeStructure;

  public FCTSBackedLighterAST(@NotNull CharTable charTable, @NotNull FlyweightCapableTreeStructure treeStructure) {
    super(charTable);
    myTreeStructure = treeStructure;
  }

  @NotNull
  @Override
  public LighterASTNode getRoot() {
    return myTreeStructure.getRoot();
  }

  @Override
  public LighterASTNode getParent(@NotNull final LighterASTNode node) {
    return myTreeStructure.getParent(node);
  }

  @NotNull
  @Override
  public List getChildren(@NotNull final LighterASTNode parent) {
    final Ref into = new Ref();
    final int numKids = myTreeStructure.getChildren(myTreeStructure.prepareForGetChildren(parent), into);
    if (numKids == 0) {
      return ContainerUtil.emptyList();
    }
    LighterASTNode[] elements = into.get();
    assert elements != null : myTreeStructure +" ("+parent+")";
    return new LighterASTNodeList(numKids, elements);
  }

  @Override
  public void disposeChildren(@NotNull List children) {
    if (children instanceof LighterASTNodeList) {
      LighterASTNodeList nodes = (LighterASTNodeList)children;
      myTreeStructure.disposeChildren(nodes.myElements, nodes.mySize);
    }
    else {
      LighterASTNode[] astNodes = new LighterASTNode[children.size()];
      myTreeStructure.disposeChildren(children.toArray(astNodes), astNodes.length);
    }
  }

  private static class LighterASTNodeList extends AbstractList {
    private final int mySize;
    private final LighterASTNode[] myElements;

    public LighterASTNodeList(int size, LighterASTNode[] elements) {
      mySize = size;
      myElements = elements;
    }

    @Override
    public LighterASTNode get(final int index) {
      if (index < 0 || index >= mySize) throw new IndexOutOfBoundsException("index:" + index + " size:" + mySize);
      return myElements[index];
    }

    @Override
    public int size() {
      return mySize;
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy