src/Pure/Thy/completion.scala
author wenzelm
Mon, 24 May 2010 23:01:51 +0200
changeset 37112 9105c8237c7a
parent 36036 0614676f14d4
child 40779 e38e80686ce5
permissions -rw-r--r--
renamed "rev" to "reverse" following usual Scala conventions;
     1 /*  Title:      Pure/Thy/completion.scala
     2     Author:     Makarius
     3 
     4 Completion of symbols and keywords.
     5 */
     6 
     7 package isabelle
     8 
     9 import scala.util.matching.Regex
    10 import scala.util.parsing.combinator.RegexParsers
    11 
    12 
    13 private object Completion
    14 {
    15   /** word completion **/
    16 
    17   val word_regex = "[a-zA-Z0-9_']+".r
    18   def is_word(s: CharSequence): Boolean = word_regex.pattern.matcher(s).matches
    19 
    20   object Parse extends RegexParsers
    21   {
    22     override val whiteSpace = "".r
    23 
    24     def reverse_symbol: Parser[String] = """>[A-Za-z0-9_']+<\\""".r
    25     def reverse_symb: Parser[String] = """[A-Za-z0-9_']{2,}<\\""".r
    26     def word: Parser[String] = "[a-zA-Z0-9_']{3,}".r
    27 
    28     def read(in: CharSequence): Option[String] =
    29     {
    30       val reverse_in = new Library.Reverse(in)
    31       parse((reverse_symbol | reverse_symb | word) ^^ (_.reverse), reverse_in) match {
    32         case Success(result, _) => Some(result)
    33         case _ => None
    34       }
    35     }
    36   }
    37 }
    38 
    39 class Completion
    40 {
    41   /* representation */
    42 
    43   protected val words_lex = Scan.Lexicon()
    44   protected val words_map = Map[String, String]()
    45 
    46   protected val abbrevs_lex = Scan.Lexicon()
    47   protected val abbrevs_map = Map[String, (String, String)]()
    48 
    49 
    50   /* adding stuff */
    51 
    52   def + (keyword: String): Completion =
    53   {
    54     val old = this
    55     new Completion {
    56       override val words_lex = old.words_lex + keyword
    57       override val words_map = old.words_map + (keyword -> keyword)
    58       override val abbrevs_lex = old.abbrevs_lex
    59       override val abbrevs_map = old.abbrevs_map
    60     }
    61   }
    62 
    63   def + (symbols: Symbol.Interpretation): Completion =
    64   {
    65     val words =
    66       (for ((x, _) <- symbols.names) yield (x, x)).toList :::
    67       (for ((x, y) <- symbols.names) yield (y, x)).toList :::
    68       (for ((x, y) <- symbols.abbrevs if Completion.is_word(y)) yield (y, x)).toList
    69 
    70     val abbrs =
    71       (for ((x, y) <- symbols.abbrevs if !Completion.is_word(y))
    72         yield (y.reverse.toString, (y, x))).toList
    73 
    74     val old = this
    75     new Completion {
    76       override val words_lex = old.words_lex ++ words.map(_._1)
    77       override val words_map = old.words_map ++ words
    78       override val abbrevs_lex = old.abbrevs_lex ++ abbrs.map(_._1)
    79       override val abbrevs_map = old.abbrevs_map ++ abbrs
    80     }
    81   }
    82 
    83 
    84   /* complete */
    85 
    86   def complete(line: CharSequence): Option[(String, List[String])] =
    87   {
    88     abbrevs_lex.parse(abbrevs_lex.keyword, new Library.Reverse(line)) match {
    89       case abbrevs_lex.Success(reverse_a, _) =>
    90         val (word, c) = abbrevs_map(reverse_a)
    91         Some(word, List(c))
    92       case _ =>
    93         Completion.Parse.read(line) match {
    94           case Some(word) =>
    95             words_lex.completions(word).map(words_map(_)) match {
    96               case Nil => None
    97               case cs => Some(word, cs.sortWith(_ < _))
    98             }
    99           case None => None
   100         }
   101     }
   102   }
   103 }