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

net.consensys.cava.toml.Parser Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2018 ConsenSys AG.
 *
 * 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 net.consensys.cava.toml;

import net.consensys.cava.toml.internal.TomlLexer;
import net.consensys.cava.toml.internal.TomlParser;

import java.util.List;
import java.util.Map;
import java.util.Set;
import javax.annotation.Nullable;

import org.antlr.v4.runtime.CharStream;
import org.antlr.v4.runtime.CharStreams;
import org.antlr.v4.runtime.CommonTokenStream;
import org.antlr.v4.runtime.tree.ParseTree;

final class Parser {
  private Parser() {}

  static TomlParseResult parse(CharStream stream, TomlVersion version) {
    TomlLexer lexer = new TomlLexer(stream);
    TomlParser parser = new TomlParser(new CommonTokenStream(lexer));
    parser.removeErrorListeners();
    AccumulatingErrorListener errorListener = new AccumulatingErrorListener();
    parser.addErrorListener(errorListener);
    ParseTree tree = parser.toml();
    TomlTable table = tree.accept(new LineVisitor(errorListener, version));

    return new TomlParseResult() {
      @Override
      public int size() {
        return table.size();
      }

      @Override
      public boolean isEmpty() {
        return table.isEmpty();
      }

      @Override
      public Set keySet() {
        return table.keySet();
      }

      @Override
      public Set> keyPathSet(boolean includeTables) {
        return table.keyPathSet(includeTables);
      }

      @Override
      @Nullable
      public Object get(List path) {
        return table.get(path);
      }

      @Override
      @Nullable
      public TomlPosition inputPositionOf(List path) {
        return table.inputPositionOf(path);
      }

      @Override
      public Map toMap() {
        return table.toMap();
      }

      @Override
      public List errors() {
        return errorListener.errors();
      }
    };
  }

  static List parseDottedKey(String dottedKey) {
    TomlLexer lexer = new TomlLexer(CharStreams.fromString(dottedKey));
    lexer.mode(TomlLexer.KeyMode);
    TomlParser parser = new TomlParser(new CommonTokenStream(lexer));
    parser.removeErrorListeners();
    AccumulatingErrorListener errorListener = new AccumulatingErrorListener();
    parser.addErrorListener(errorListener);
    List keyList = parser.tomlKey().accept(new KeyVisitor());
    List errors = errorListener.errors();
    if (!errors.isEmpty()) {
      TomlParseError e = errors.get(0);
      throw new IllegalArgumentException("Invalid key: " + e.getMessage(), e);
    }
    return keyList;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy