home *** CD-ROM | disk | FTP | other *** search
/ Chip 2011 November / CHIP_2011_11.iso / Programy / Narzedzia / Inkscape / Inkscape-0.48.2-1-win32.exe / share / extensions / svg_regex.py < prev    next >
Text File  |  2011-07-08  |  10KB  |  282 lines

  1. # This software is OSI Certified Open Source Software.
  2. # OSI Certified is a certification mark of the Open Source Initiative.
  3. # Copyright (c) 2006, Enthought, Inc.
  4. # All rights reserved.
  5. #
  6. # Redistribution and use in source and binary forms, with or without
  7. # modification, are permitted provided that the following conditions are met:
  8. #
  9. #  * Redistributions of source code must retain the above copyright notice, this
  10. #    list of conditions and the following disclaimer.
  11. #  * Redistributions in binary form must reproduce the above copyright notice,
  12. #    this list of conditions and the following disclaimer in the documentation
  13. #    and/or other materials provided with the distribution.
  14. #  * Neither the name of Enthought, Inc. nor the names of its contributors may
  15. #    be used to endorse or promote products derived from this software without
  16. #    specific prior written permission.
  17. #
  18. # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
  19. # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  20. # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  21. # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
  22. # ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  23. # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  24. # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  25. # ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  26. # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  27. # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  28.  
  29. """ Small hand-written recursive descent parser for SVG <path> data.
  30.  
  31.  
  32. In [1]: from svg_regex import svg_parser
  33.  
  34. In [3]: svg_parser.parse('M 10,20 30,40V50 60 70')
  35. Out[3]: [('M', [(10.0, 20.0), (30.0, 40.0)]), ('V', [50.0, 60.0, 70.0])]
  36.  
  37. In [4]: svg_parser.parse('M 0.6051.5')  # An edge case
  38. Out[4]: [('M', [(0.60509999999999997, 0.5)])]
  39.  
  40. In [5]: svg_parser.parse('M 100-200')  # Another edge case
  41. Out[5]: [('M', [(100.0, -200.0)])]
  42. """
  43.  
  44. import re
  45.  
  46.  
  47. # Sentinel.
  48. class _EOF(object):
  49.     def __repr__(self):
  50.         return 'EOF'
  51. EOF = _EOF()
  52.  
  53. lexicon = [
  54.     ('float', r'[-\+]?(?:(?:[0-9]*\.[0-9]+)|(?:[0-9]+\.?))(?:[Ee][-\+]?[0-9]+)?'),
  55.     ('int', r'[-\+]?[0-9]+'),
  56.     ('command', r'[AaCcHhLlMmQqSsTtVvZz]'),
  57. ]
  58.  
  59.  
  60. class Lexer(object):
  61.     """ Break SVG path data into tokens.
  62.  
  63.     The SVG spec requires that tokens are greedy. This lexer relies on Python's
  64.     regexes defaulting to greediness.
  65.  
  66.     This style of implementation was inspired by this article:
  67.  
  68.         http://www.gooli.org/blog/a-simple-lexer-in-python/
  69.     """
  70.     def __init__(self, lexicon):
  71.         self.lexicon = lexicon
  72.         parts = []
  73.         for name, regex in lexicon:
  74.             parts.append('(?P<%s>%s)' % (name, regex))
  75.         self.regex_string = '|'.join(parts)
  76.         self.regex = re.compile(self.regex_string)
  77.  
  78.     def lex(self, text):
  79.         """ Yield (token_type, str_data) tokens.
  80.  
  81.         The last token will be (EOF, None) where EOF is the singleton object
  82.         defined in this module.
  83.         """
  84.         for match in self.regex.finditer(text):
  85.             for name, _ in self.lexicon:
  86.                 m = match.group(name)
  87.                 if m is not None:
  88.                     yield (name, m)
  89.                     break
  90.         yield (EOF, None)
  91.  
  92. svg_lexer = Lexer(lexicon)
  93.  
  94.  
  95. class SVGPathParser(object):
  96.     """ Parse SVG <path> data into a list of commands.
  97.  
  98.     Each distinct command will take the form of a tuple (command, data). The
  99.     `command` is just the character string that starts the command group in the
  100.     <path> data, so 'M' for absolute moveto, 'm' for relative moveto, 'Z' for
  101.     closepath, etc. The kind of data it carries with it depends on the command.
  102.     For 'Z' (closepath), it's just None. The others are lists of individual
  103.     argument groups. Multiple elements in these lists usually mean to repeat the
  104.     command. The notable exception is 'M' (moveto) where only the first element
  105.     is truly a moveto. The remainder are implicit linetos.
  106.  
  107.     See the SVG documentation for the interpretation of the individual elements
  108.     for each command.
  109.  
  110.     The main method is `parse(text)`. It can only consume actual strings, not
  111.     filelike objects or iterators.
  112.     """
  113.  
  114.     def __init__(self, lexer=svg_lexer):
  115.         self.lexer = lexer
  116.  
  117.         self.command_dispatch = {
  118.             'Z': self.rule_closepath,
  119.             'z': self.rule_closepath,
  120.             'M': self.rule_moveto_or_lineto,
  121.             'm': self.rule_moveto_or_lineto,
  122.             'L': self.rule_moveto_or_lineto,
  123.             'l': self.rule_moveto_or_lineto,
  124.             'H': self.rule_orthogonal_lineto,
  125.             'h': self.rule_orthogonal_lineto,
  126.             'V': self.rule_orthogonal_lineto,
  127.             'v': self.rule_orthogonal_lineto,
  128.             'C': self.rule_curveto3,
  129.             'c': self.rule_curveto3,
  130.             'S': self.rule_curveto2,
  131.             's': self.rule_curveto2,
  132.             'Q': self.rule_curveto2,
  133.             'q': self.rule_curveto2,
  134.             'T': self.rule_curveto1,
  135.             't': self.rule_curveto1,
  136.             'A': self.rule_elliptical_arc,
  137.             'a': self.rule_elliptical_arc,
  138.         }
  139.  
  140. #        self.number_tokens = set(['int', 'float'])
  141.         self.number_tokens = list(['int', 'float'])
  142.  
  143.     def parse(self, text):
  144.         """ Parse a string of SVG <path> data.
  145.         """
  146.         next = self.lexer.lex(text).next
  147.         token = next()
  148.         return self.rule_svg_path(next, token)
  149.  
  150.     def rule_svg_path(self, next, token):
  151.         commands = []
  152.         while token[0] is not EOF:
  153.             if token[0] != 'command':
  154.                 raise SyntaxError("expecting a command; got %r" % (token,))
  155.             rule = self.command_dispatch[token[1]]
  156.             command_group, token = rule(next, token)
  157.             commands.append(command_group)
  158.         return commands
  159.  
  160.     def rule_closepath(self, next, token):
  161.         command = token[1]
  162.         token = next()
  163.         return (command, None), token
  164.  
  165.     def rule_moveto_or_lineto(self, next, token):
  166.         command = token[1]
  167.         token = next()
  168.         coordinates = []
  169.         while token[0] in self.number_tokens:
  170.             pair, token = self.rule_coordinate_pair(next, token)
  171.             coordinates.append(pair)
  172.         return (command, coordinates), token
  173.  
  174.     def rule_orthogonal_lineto(self, next, token):
  175.         command = token[1]
  176.         token = next()
  177.         coordinates = []
  178.         while token[0] in self.number_tokens:
  179.             coord, token = self.rule_coordinate(next, token)
  180.             coordinates.append(coord)
  181.         return (command, coordinates), token
  182.  
  183.     def rule_curveto3(self, next, token):
  184.         command = token[1]
  185.         token = next()
  186.         coordinates = []
  187.         while token[0] in self.number_tokens:
  188.             pair1, token = self.rule_coordinate_pair(next, token)
  189.             pair2, token = self.rule_coordinate_pair(next, token)
  190.             pair3, token = self.rule_coordinate_pair(next, token)
  191.             coordinates.append((pair1, pair2, pair3))
  192.         return (command, coordinates), token
  193.  
  194.     def rule_curveto2(self, next, token):
  195.         command = token[1]
  196.         token = next()
  197.         coordinates = []
  198.         while token[0] in self.number_tokens:
  199.             pair1, token = self.rule_coordinate_pair(next, token)
  200.             pair2, token = self.rule_coordinate_pair(next, token)
  201.             coordinates.append((pair1, pair2))
  202.         return (command, coordinates), token
  203.  
  204.     def rule_curveto1(self, next, token):
  205.         command = token[1]
  206.         token = next()
  207.         coordinates = []
  208.         while token[0] in self.number_tokens:
  209.             pair1, token = self.rule_coordinate_pair(next, token)
  210.             coordinates.append(pair1)
  211.         return (command, coordinates), token
  212.  
  213.     def rule_elliptical_arc(self, next, token):
  214.         command = token[1]
  215.         token = next()
  216.         arguments = []
  217.         while token[0] in self.number_tokens:
  218.             rx = float(token[1])
  219.             if rx < 0.0:
  220.                 raise SyntaxError("expecting a nonnegative number; got %r" % (token,))
  221.  
  222.             token = next()
  223.             if token[0] not in self.number_tokens:
  224.                 raise SyntaxError("expecting a number; got %r" % (token,))
  225.             ry = float(token[1])
  226.             if ry < 0.0:
  227.                 raise SyntaxError("expecting a nonnegative number; got %r" % (token,))
  228.  
  229.             token = next()
  230.             if token[0] not in self.number_tokens:
  231.                 raise SyntaxError("expecting a number; got %r" % (token,))
  232.             axis_rotation = float(token[1])
  233.  
  234.             token = next()
  235.             if token[1] not in ('0', '1'):
  236.                 raise SyntaxError("expecting a boolean flag; got %r" % (token,))
  237.             large_arc_flag = bool(int(token[1]))
  238.  
  239.             token = next()
  240.             if token[1] not in ('0', '1'):
  241.                 raise SyntaxError("expecting a boolean flag; got %r" % (token,))
  242.             sweep_flag = bool(int(token[1]))
  243.  
  244.             token = next()
  245.             if token[0] not in self.number_tokens:
  246.                 raise SyntaxError("expecting a number; got %r" % (token,))
  247.             x = float(token[1])
  248.  
  249.             token = next()
  250.             if token[0] not in self.number_tokens:
  251.                 raise SyntaxError("expecting a number; got %r" % (token,))
  252.             y = float(token[1])
  253.  
  254.             token = next()
  255.             arguments.append(((rx,ry), axis_rotation, large_arc_flag, sweep_flag, (x,y)))
  256.  
  257.         return (command, arguments), token
  258.  
  259.     def rule_coordinate(self, next, token):
  260.         if token[0] not in self.number_tokens:
  261.             raise SyntaxError("expecting a number; got %r" % (token,))
  262.         x = float(token[1])
  263.         token = next()
  264.         return x, token
  265.  
  266.  
  267.     def rule_coordinate_pair(self, next, token):
  268.         # Inline these since this rule is so common.
  269.         if token[0] not in self.number_tokens:
  270.             raise SyntaxError("expecting a number; got %r" % (token,))
  271.         x = float(token[1])
  272.         token = next()
  273.         if token[0] not in self.number_tokens:
  274.             raise SyntaxError("expecting a number; got %r" % (token,))
  275.         y = float(token[1])
  276.         token = next()
  277.         return (x,y), token
  278.  
  279.  
  280. svg_parser = SVGPathParser()
  281.