![JAR search and dependency download from the Maven repository](/logo.png)
PIDE.command_span.scala Maven / Gradle / Ivy
/* Title: Pure/PIDE/command_span.scala
Author: Makarius
Syntactic representation of command spans.
*/
package isabelle
import scala.collection.mutable
object Command_Span
{
sealed abstract class Kind {
override def toString: String =
this match {
case Command_Span(name, _) => proper_string(name) getOrElse ""
case Ignored_Span => ""
case Malformed_Span => ""
}
}
case class Command_Span(name: String, pos: Position.T) extends Kind
case object Ignored_Span extends Kind
case object Malformed_Span extends Kind
sealed case class Span(kind: Kind, content: List[Token])
{
def name: String =
kind match { case Command_Span(name, _) => name case _ => "" }
def position: Position.T =
kind match { case Command_Span(_, pos) => pos case _ => Position.none }
def keyword_pos(start: Token.Pos): Token.Pos =
kind match {
case _: Command_Span =>
(start /: content.iterator.takeWhile(tok => !tok.is_command))(_.advance(_))
case _ => start
}
def is_kind(keywords: Keyword.Keywords, pred: String => Boolean, other: Boolean): Boolean =
keywords.kinds.get(name) match {
case Some(k) => pred(k)
case None => other
}
def is_begin: Boolean = content.exists(_.is_begin)
def is_end: Boolean = content.exists(_.is_end)
def length: Int = (0 /: content)(_ + _.source.length)
def compact_source: (String, Span) =
{
val source = Token.implode(content)
val content1 = new mutable.ListBuffer[Token]
var i = 0
for (Token(kind, s) <- content) {
val n = s.length
val s1 = source.substring(i, i + n)
content1 += Token(kind, s1)
i += n
}
(source, Span(kind, content1.toList))
}
}
val empty: Span = Span(Ignored_Span, Nil)
def unparsed(source: String): Span =
Span(Malformed_Span, List(Token(Token.Kind.UNPARSED, source)))
/* XML data representation */
def encode: XML.Encode.T[Span] = (span: Span) =>
{
import XML.Encode._
val kind: T[Kind] =
variant(List(
{ case Command_Span(a, b) => (List(a), properties(b)) },
{ case Ignored_Span => (Nil, Nil) },
{ case Malformed_Span => (Nil, Nil) }))
pair(kind, list(Token.encode))((span.kind, span.content))
}
def decode: XML.Decode.T[Span] = (body: XML.Body) =>
{
import XML.Decode._
val kind: T[Kind] =
variant(List(
{ case (List(a), b) => Command_Span(a, properties(b)) },
{ case (Nil, Nil) => Ignored_Span },
{ case (Nil, Nil) => Malformed_Span }))
val (k, toks) = pair(kind, list(Token.decode))(body)
Span(k, toks)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy