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

com.nawforce.runtime.parsers.CodeParser.scala Maven / Gradle / Ivy

/*
 Copyright (c) 2019 Kevin Jones, All rights reserved.
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions
 are met:
 1. Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
 2. Redistributions in binary form must reproduce the above copyright
    notice, this list of conditions and the following disclaimer in the
    documentation and/or other materials provided with the distribution.
 3. The name of the author may not be used to endorse or promote products
    derived from this software without specific prior written permission.
 */
package com.nawforce.runtime.parsers

import com.nawforce.pkgforce.diagnostics.IssuesAnd
import com.nawforce.pkgforce.path.{PathLike, PathLocation}
import com.nawforce.runtime.parsers.CodeParser.ParserRuleContext
import io.github.apexdevtools.apexparser.{ApexLexer, ApexParser, CaseInsensitiveInputStream}
import org.antlr.v4.runtime.{CharStreams, CommonTokenStream}

import java.io.ByteArrayInputStream
import java.util
import scala.collection.compat.immutable.ArraySeq
import scala.jdk.CollectionConverters._
import scala.reflect.ClassTag

/** Apex class parser helper */
class CodeParser(val source: Source) {
  private[nawforce] val cis = source.asInsensitiveStream

  var lastTokenStream: Option[CommonTokenStream] = None

  def parseClass(): IssuesAnd[ApexParser.CompilationUnitContext] = {
    parse(parser => parser.compilationUnit())
  }

  def parseClassReturningParser(): IssuesAnd[(ApexParser, ApexParser.CompilationUnitContext)] = {
    parseReturningParser(parser => parser.compilationUnit())
  }

  def parseTriggerReturningParser(): IssuesAnd[(ApexParser, ApexParser.TriggerUnitContext)] = {
    parseReturningParser(parser => parser.triggerUnit())
  }

  def parseTrigger(): IssuesAnd[ApexParser.TriggerUnitContext] = {
    parse(parser => parser.triggerUnit())
  }

  def parseBlock(): IssuesAnd[ApexParser.BlockContext] = {
    parse(parser => parser.block())
  }

  def parsePropertyBlock(): IssuesAnd[ApexParser.PropertyBlockContext] = {
    parse(parser => parser.propertyBlock())
  }

  def parseSOQL(): IssuesAnd[ApexParser.QueryContext] = {
    parse(parser => parser.query())
  }

  def parseSOSL(): IssuesAnd[ApexParser.SoslLiteralContext] = {
    parse(parser => parser.soslLiteral())
  }

  def parseExpression(): IssuesAnd[ApexParser.ExpressionContext] = {
    parse(parser => parser.expression())
  }

  // Test use only
  def parseLiteral(): IssuesAnd[ApexParser.LiteralContext] = {
    parse(parser => parser.literal())
  }

  /** Find a location for a rule, adapts based on source offsets to give absolute position in file
    */
  def getPathLocation(context: ParserRuleContext): PathLocation = {
    source.getLocation(context)
  }

  /** Extract the source used for a parser rule */
  def extractSource(context: ParserRuleContext): Source = {
    source.extractSource(context)
  }

  def parse[T](parse: ApexParser => T): IssuesAnd[T] = {
    val result = parseReturningParser[T](parse)
    IssuesAnd(result.issues, result.value._2)
  }

  def parseReturningParser[T](parse: ApexParser => T): IssuesAnd[(ApexParser, T)] = {
    CodeParser.autoClearCache()

    val lexer = new ApexLexer(cis)
    lexer.setLine(source.startLine.getOrElse(1))
    lexer.setCharPositionInLine(source.startColumn.getOrElse(0))
    lastTokenStream = None
    val tokenStream = new CommonTokenStream(lexer)
    tokenStream.fill()

    val listener = new CollectingErrorListener(source.path)
    val parser   = new ApexParser(tokenStream)
    parser.removeErrorListeners()
    parser.addErrorListener(listener)

    val result = parse(parser)
    lastTokenStream = Some(tokenStream)
    IssuesAnd(listener.issues, (parser, result))
  }
}

object CodeParser {
  type ParserRuleContext = org.antlr.v4.runtime.ParserRuleContext
  type TerminalNode      = org.antlr.v4.runtime.tree.TerminalNode

  private var useCount = 0

  def apply(path: PathLike, code: SourceData): CodeParser = {
    new CodeParser(Source(path, code, 0, 0, None))
  }

  private def autoClearCache(): Unit = {
    useCount += 1
    if (useCount % 500 == 0) {
      clearCaches()
    }
  }

  def clearCaches(): Unit = {
    val lexer = new ApexLexer(
      new CaseInsensitiveInputStream(
        CharStreams.fromStream(new ByteArrayInputStream(Array[Byte]()))
      )
    )
    val parser = new ApexParser(new CommonTokenStream(lexer))
    lexer.clearCache()
    parser.clearCache()
  }

  // Helper for JS Portability
  def getText(context: ParserRuleContext): String = {
    Option(context).map(_.getText).getOrElse("")
  }

  // Helper for JS Portability
  def getText(context: TerminalNode): String = {
    Option(context).map(_.getText).getOrElse("")
  }

  // Helper for JS Portability
  def toScala[T: ClassTag](collection: java.util.List[T]): ArraySeq[T] = {
    collection match {
      case null                    => CodeParser.emptyArraySeq
      case _ if collection.isEmpty => CodeParser.emptyArraySeq
      case al: util.ArrayList[T]   => ArraySeq.unsafeWrapArray(al.toArray().asInstanceOf[Array[T]])
      case l                       => ArraySeq.unsafeWrapArray(l.asScala.toArray)
    }
  }

  // Helper for JS Portability
  def toScala[T](value: T): Option[T] = {
    Option(value)
  }

  private val emptyArraySeq = ArraySeq()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy