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

commonMain.org.antlr.v4.kotlinruntime.dfa.DFASerializer.kt Maven / Gradle / Ivy

There is a newer version: 1.0.1
Show newest version
// Copyright 2017-present Strumenta and contributors, licensed under Apache 2.0.
// Copyright 2024-present Strumenta and contributors, licensed under BSD 3-Clause.

package org.antlr.v4.kotlinruntime.dfa

import org.antlr.v4.kotlinruntime.Vocabulary

/**
 * A DFA walker that knows how to dump them to serialized strings.
 */
public open class DFASerializer(
  private val dfa: DFA,
  private val vocabulary: Vocabulary,
) {
  override fun toString(): String {
    if (dfa.s0 == null) {
      return "null"
    }

    val buf = StringBuilder()
    val states = dfa.getStates()

    for (s in states) {
      var n = 0
      val edges = s.edges

      if (edges != null) {
        n = edges.size
      }

      for (i in 0..")
          buf.append(getStateString(t))
          buf.append("\n")
        }
      }
    }

    val output = buf.toString()
    return output.ifEmpty { "null" }
  }

  protected open fun getEdgeLabel(i: Int): String =
    vocabulary.getDisplayName(i - 1)

  @Suppress("MemberVisibilityCanBePrivate")
  protected fun getStateString(s: DFAState): String {
    val n = s.stateNumber
    val baseStateStr = "${if (s.isAcceptState) ":" else ""}s$n${if (s.requiresFullContext) "^" else ""}"
    return if (s.isAcceptState) {
      val predicates = s.predicates

      if (predicates != null) {
        baseStateStr + "=>" + predicates.joinToString()
      } else {
        baseStateStr + "=>" + s.prediction
      }
    } else {
      baseStateStr
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy