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

name.lakhin.eliah.projects.papacarlo.lexis.Tokenizer.scala Maven / Gradle / Ivy

/*
   Copyright 2013 Ilya Lakhin (Илья Александрович Лахин)

   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 name.lakhin.eliah.projects
package papacarlo.lexis

final class Tokenizer {
  private var rules = Map.empty[String, Matcher]
  private var order = List.empty[String]
  private var terminals = List.empty[(String, StringMatcher)]
  private var keywords = Set.empty[String]
  private var skips = Set.empty[String]
  private var mutables = Set.empty[String]
  private var indentations = Set.empty[String]

  final case class RuleDefinition(name: String) {
    def skip = {
      skips += name

      this
    }

    def mutable = {
      mutables += name

      this
    }

    def indentation = {
      mutables += name

      this
    }
  }

  def tokenCategory(name: String, matcher: Matcher) = {
    if (!rules.contains(name)) {
      rules += Pair(name, matcher)
      order :+= name
    }

    RuleDefinition(name)
  }

  def terminals(patterns: String*) {
    for (pattern <- patterns)
      if (!terminals.exists(terminal => terminal._1 == pattern))
        terminals = (Pair(pattern, StringMatcher(pattern)) :: terminals)
          .sortBy(_._1.length)

    terminals = terminals.sortBy(_._1).reverse
  }

  def keywords(patterns: String*) {
    keywords ++= patterns
  }

  def tokenize(input: String) = {
    val rules = (terminals ::: this.rules.toList).toIterable

    var output = List.empty[Token]
    var position = 0
    var inTheBegin = true
    while (position < input.length) {
      val start = position

      var application = Option.empty[(String, Int)]
      while (position < input.length && application.isEmpty) {
        application = rules
          .map(rule => (rule._1, rule._2(input, position)))
          .find(candidate => candidate._2.isDefined)
          .map(result => result.copy(_2 = result._2.getOrElse(position + 1)))
        if (application.isEmpty) position += 1
      }

      if (start < position) {
        output ::= Token.unknown(input.substring(start, position))
      }

      for (successful <- application) {
        val value = input.substring(position, successful._2)

        if (keywords.contains(value)) output ::= Token.terminal(value)
        else {
          val kind = successful._1

          val indentation = inTheBegin && indentations.contains(kind)
          if (!indentation) inTheBegin = false

          output ::= new Token(
            kind = kind,
            value = value,
            skipped = skips.contains(kind),
            mutable = mutables.contains(kind),
            indentation = indentation
          )
        }

        position = successful._2
      }
    }

    output.reverse
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy