tokenstream.py
上传用户:king477883
上传日期:2021-03-01
资源大小:9553k
文件大小:4k
源码类别:

游戏引擎

开发平台:

C++ Builder

  1. """
  2. @file tokenstream.py
  3. @brief Message template parsing utility class
  4. $LicenseInfo:firstyear=2007&license=mit$
  5. Copyright (c) 2007-2010, Linden Research, Inc.
  6. Permission is hereby granted, free of charge, to any person obtaining a copy
  7. of this software and associated documentation files (the "Software"), to deal
  8. in the Software without restriction, including without limitation the rights
  9. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  10. copies of the Software, and to permit persons to whom the Software is
  11. furnished to do so, subject to the following conditions:
  12. The above copyright notice and this permission notice shall be included in
  13. all copies or substantial portions of the Software.
  14. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  17. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  18. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  19. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  20. THE SOFTWARE.
  21. $/LicenseInfo$
  22. """
  23. import re
  24. class _EOF(object):
  25.     pass
  26. EOF = _EOF()
  27. class _LineMarker(int):
  28.     pass
  29.     
  30. _commentRE = re.compile(r'//.*')
  31. _symbolRE = re.compile(r'[a-zA-Z_][a-zA-Z_0-9]*')
  32. _integerRE = re.compile(r'(0x[0-9A-Fa-f]+|0d*|[1-9]d*)')
  33. _floatRE = re.compile(r'd+(.d*)?')
  34. class ParseError(Exception):
  35.     def __init__(self, stream, reason):
  36.         self.line = stream.line
  37.         self.context = stream._context()
  38.         self.reason = reason
  39.     def _contextString(self):    
  40.         c = [ ]
  41.         for t in self.context:
  42.             if isinstance(t, _LineMarker):
  43.                 break
  44.             c.append(t)
  45.         return " ".join(c)
  46.     def __str__(self):
  47.         return "line %d: %s @ ... %s" % (
  48.             self.line, self.reason, self._contextString())
  49.     def __nonzero__(self):
  50.         return False
  51. def _optionText(options):
  52.     n = len(options)
  53.     if n == 1:
  54.         return '"%s"' % options[0]
  55.     return '"' + '", "'.join(options[0:(n-1)]) + '" or "' + options[-1] + '"'
  56. class TokenStream(object):
  57.     def __init__(self):
  58.         self.line = 0
  59.         self.tokens = [ ]
  60.     
  61.     def fromString(self, string):
  62.         return self.fromLines(string.split('n'))
  63.         
  64.     def fromFile(self, file):
  65.         return self.fromLines(file)
  66.     def fromLines(self, lines):
  67.         i = 0
  68.         for line in lines:
  69.             i += 1
  70.             self.tokens.append(_LineMarker(i))
  71.             self.tokens.extend(_commentRE.sub(" ", line).split())
  72.         self._consumeLines()
  73.         return self
  74.     
  75.     def consume(self):
  76.         if not self.tokens:
  77.             return EOF
  78.         t = self.tokens.pop(0)
  79.         self._consumeLines()
  80.         return t
  81.     
  82.     def _consumeLines(self):
  83.         while self.tokens and isinstance(self.tokens[0], _LineMarker):
  84.             self.line = self.tokens.pop(0)
  85.     
  86.     def peek(self):
  87.         if not self.tokens:
  88.             return EOF
  89.         return self.tokens[0]
  90.             
  91.     def want(self, t):
  92.         if t == self.peek():
  93.             return self.consume()
  94.         return ParseError(self, 'expected "%s"' % t)
  95.     def wantOneOf(self, options):
  96.         assert len(options)
  97.         if self.peek() in options:
  98.             return self.consume()
  99.         return ParseError(self, 'expected one of %s' % _optionText(options))
  100.     def wantEOF(self):
  101.         return self.want(EOF)
  102.         
  103.     def wantRE(self, re, message=None):
  104.         t = self.peek()
  105.         if t != EOF:
  106.             m = re.match(t)
  107.             if m and m.end() == len(t):
  108.                 return self.consume()
  109.         if not message:
  110.             message = "expected match for r'%s'" % re.pattern
  111.         return ParseError(self, message)
  112.     
  113.     def wantSymbol(self):
  114.         return self.wantRE(_symbolRE, "expected symbol")
  115.     
  116.     def wantInteger(self):
  117.         return self.wantRE(_integerRE, "expected integer")
  118.     
  119.     def wantFloat(self):
  120.         return self.wantRE(_floatRE, "expected float")
  121.     
  122.     def _context(self):
  123.         n = min(5, len(self.tokens))
  124.         return self.tokens[0:n]
  125.     def require(self, t):
  126.         if t:
  127.             return t
  128.         if isinstance(t, ParseError):
  129.             raise t
  130.         else:
  131.             raise ParseError(self, "unmet requirement")