/* __ *\ ** ________ ___ / / ___ Scala API ** ** / __/ __// _ | / / / _ | (c) 2003-2009, LAMP/EPFL ** ** __\ \/ /__/ __ |/ /__/ __ | http://scala-lang.org/ ** ** /____/\___/_/ |_/____/_/ | | ** ** |/ ** \* */ // $Id: Parsing.scala 17988 2009-06-03 12:31:59Z extempore $ package scala.xml /** The object <code>Parsing</code> ... * * @author Burak Emir * @version 1.0 * * @deprecated use either <code>parsing.TokenTests</code> or * <code>Utilty</code> (helper functions for parsing XML fragments). */ object Parsing { /** <pre>(#x20 | #x9 | #xD | #xA)</pre> */ final def isSpace(ch: Char): Boolean = ch match { case '\u0009' | '\u000A' | '\u000D' | '\u0020' => true case _ => false } /** <pre>(#x20 | #x9 | #xD | #xA)+</pre> */ final def isSpace(cs: Seq[Char]): Boolean = cs forall isSpace /** <pre>NameChar ::= Letter | Digit | '.' | '-' | '_' | ':' * | CombiningChar | Extender</pre> * * see [4] and Appendix B of XML 1.0 specification */ private val nameCharTypeList = { import java.lang.Character._ List( COMBINING_SPACING_MARK, // Mc ENCLOSING_MARK, // Me NON_SPACING_MARK, // Mn MODIFIER_LETTER, // Lm DECIMAL_DIGIT_NUMBER // Nd ) } def isNameChar(ch: Char) = isNameStart(ch) || List('.', '-', ':').contains(ch) || nameCharTypeList.contains(Character.getType(ch).asInstanceOf[Byte]) /** <pre>NameStart ::= ( Letter | '_' )</pre> * where Letter means in one of the Unicode general * categories { Ll, Lu, Lo, Lt, Nl } * * We do not allow a name to start with ':'. * see [3] and Appendix B of XML 1.0 specification */ def isNameStart(ch: Char) = java.lang.Character.getType(ch).asInstanceOf[Byte] match { case java.lang.Character.LOWERCASE_LETTER => true case java.lang.Character.UPPERCASE_LETTER => true case java.lang.Character.OTHER_LETTER => true case java.lang.Character.TITLECASE_LETTER => true case java.lang.Character.LETTER_NUMBER => true case _ => ch == '_' } /** <pre>Name ::= ( Letter | '_' ) (NameChar)*</pre> * * see [5] of XML 1.0 specification */ def isName(s: String): Boolean = if (s.length() > 0) { val z: Seq[Char] = s val y = z.iterator if (isNameStart(y.next)) { while (y.hasNext && isNameChar(y.next)) {} !y.hasNext } else false } else false def isPubIDChar(c: Char) = c match { case '\u0020' | '\u000D' | '\u000A' => true case _ if ('0' < c && c < '9')||('a' < c && c < 'z')||('A' < c && c < 'Z') => true case '-' | '\''| '(' | ')' | '+' | ',' | '.' | '/' | ':' | '=' | '?' | ';' | '!' | '*' | '#' | '@' | '$' | '_' | '%' => true case _ => false } def checkSysID(s: String): Boolean = s.indexOf('"') == -1 || s.indexOf('\'') == -1 def checkPubID(s: String): Boolean = s forall isPubIDChar }