Ejemplo n.º 1
0
    def get_doc(self, info):
        if self.val != '##':
            raise QAPIParseError(
                self, "junk after '##' at start of documentation comment")

        docs = []
        cur_doc = QAPIDoc(self, info)
        self.accept(False)
        while self.tok == '#':
            if self.val.startswith('##'):
                # End of doc comment
                if self.val != '##':
                    raise QAPIParseError(
                        self,
                        "junk after '##' at end of documentation comment")
                cur_doc.end_comment()
                docs.append(cur_doc)
                self.accept()
                return docs
            if self.val.startswith('# ='):
                if cur_doc.symbol:
                    raise QAPIParseError(
                        self,
                        "unexpected '=' markup in definition documentation")
                if cur_doc.body.text:
                    cur_doc.end_comment()
                    docs.append(cur_doc)
                    cur_doc = QAPIDoc(self, info)
            cur_doc.append(self.val)
            self.accept(False)

        raise QAPIParseError(self, "documentation comment must end with '##'")
Ejemplo n.º 2
0
 def _start_symbol_section(self, symbols_dict, name):
     # FIXME invalid names other than the empty string aren't flagged
     if not name:
         raise QAPIParseError(self._parser, "invalid parameter name")
     if name in symbols_dict:
         raise QAPIParseError(self._parser,
                              "'%s' parameter name duplicated" % name)
     assert not self.sections
     self._end_section()
     self._section = QAPIDoc.ArgSection(name)
     symbols_dict[name] = self._section
Ejemplo n.º 3
0
 def _append_freeform(self, line):
     match = re.match(r'(@\S+:)', line)
     if match:
         raise QAPIParseError(
             self._parser,
             "'%s' not allowed in free-form documentation" % match.group(1))
     self._section.append(line)
Ejemplo n.º 4
0
 def _start_section(self, name=None):
     if name in ('Returns', 'Since') and self.has_section(name):
         raise QAPIParseError(self._parser,
                              "duplicated '%s' section" % name)
     self._end_section()
     self._section = QAPIDoc.Section(name)
     self.sections.append(self._section)
Ejemplo n.º 5
0
    def _append_various_line(self, line):
        """
        Process a line of documentation text in an additional section.

        A symbol line is an error.

        A section tag begins an additional section.  Start that
        section and append the line to it.

        Else, append the line to the current section.
        """
        name = line.split(' ', 1)[0]

        if name.startswith('@') and name.endswith(':'):
            raise QAPIParseError(
                self._parser, "'%s' can't follow '%s' section" %
                (name, self.sections[0].name))
        if self._is_section_tag(name):
            line = line[len(name) + 1:]
            self._start_section(name[:-1])

        if (not self._section.name
                or not self._section.name.startswith('Example')):
            line = line.strip()

        self._append_freeform(line)
Ejemplo n.º 6
0
 def get_expr(self, nested):
     if self.tok != '{' and not nested:
         raise QAPIParseError(self, "expected '{'")
     if self.tok == '{':
         self.accept()
         expr = self.get_members()
     elif self.tok == '[':
         self.accept()
         expr = self.get_values()
     elif self.tok in "'tfn":
         expr = self.val
         self.accept()
     else:
         raise QAPIParseError(
             self, "expected '{', '[', string, boolean or 'null'")
     return expr
Ejemplo n.º 7
0
 def get_values(self):
     expr = []
     if self.tok == ']':
         self.accept()
         return expr
     if self.tok not in "{['tfn":
         raise QAPIParseError(
             self, "expected '{', '[', ']', string, boolean or 'null'")
     while True:
         expr.append(self.get_expr(True))
         if self.tok == ']':
             self.accept()
             return expr
         if self.tok != ',':
             raise QAPIParseError(self, "expected ',' or ']'")
         self.accept()
Ejemplo n.º 8
0
    def _append_various_line(self, line):
        """
        Process a line of documentation text in an additional section.

        A symbol line is an error.

        A section tag begins an additional section.  Start that
        section and append the line to it.

        Else, append the line to the current section.
        """
        name = line.split(' ', 1)[0]

        if name.startswith('@') and name.endswith(':'):
            raise QAPIParseError(
                self._parser, "'%s' can't follow '%s' section" %
                (name, self.sections[0].name))
        if self._is_section_tag(name):
            # If line is "Section:   first line of description", find
            # the index of 'f', which is the indent we expect for any
            # following lines.  We then remove the leading "Section:"
            # from line and replace it with spaces so that 'f' has the
            # same index as it did in the original line and can be
            # handled the same way we will handle following lines.
            indent = re.match(r'\S*:\s*', line).end()
            line = line[indent:]
            if not line:
                # Line was just the "Section:" header; following lines
                # are not indented
                indent = 0
            else:
                line = ' ' * indent + line
            self._start_section(name[:-1], indent)

        self._append_freeform(line)
Ejemplo n.º 9
0
 def _end_section(self):
     if self._section:
         text = self._section.text = self._section.text.strip()
         if self._section.name and (not text or text.isspace()):
             raise QAPIParseError(
                 self._parser,
                 "empty doc section '%s'" % self._section.name)
         self._section = None
Ejemplo n.º 10
0
    def get_doc(self, info):
        if self.val != '##':
            raise QAPIParseError(
                self, "junk after '##' at start of documentation comment")

        doc = QAPIDoc(self, info)
        self.accept(False)
        while self.tok == '#':
            if self.val.startswith('##'):
                # End of doc comment
                if self.val != '##':
                    raise QAPIParseError(
                        self,
                        "junk after '##' at end of documentation comment")
                doc.end_comment()
                self.accept()
                return doc
            doc.append(self.val)
            self.accept(False)

        raise QAPIParseError(self, "documentation comment must end with '##'")
Ejemplo n.º 11
0
    def _append_body_line(self, line):
        """
        Process a line of documentation text in the body section.

        If this a symbol line and it is the section's first line, this
        is a definition documentation block for that symbol.

        If it's a definition documentation block, another symbol line
        begins the argument section for the argument named by it, and
        a section tag begins an additional section.  Start that
        section and append the line to it.

        Else, append the line to the current section.
        """
        name = line.split(' ', 1)[0]
        # FIXME not nice: things like '#  @foo:' and '# @foo: ' aren't
        # recognized, and get silently treated as ordinary text
        if not self.symbol and not self.body.text and line.startswith('@'):
            if not line.endswith(':'):
                raise QAPIParseError(self._parser, "line should end with ':'")
            self.symbol = line[1:-1]
            # FIXME invalid names other than the empty string aren't flagged
            if not self.symbol:
                raise QAPIParseError(self._parser, "invalid name")
        elif self.symbol:
            # This is a definition documentation block
            if name.startswith('@') and name.endswith(':'):
                self._append_line = self._append_args_line
                self._append_args_line(line)
            elif line == 'Features:':
                self._append_line = self._append_features_line
            elif self._is_section_tag(name):
                self._append_line = self._append_various_line
                self._append_various_line(line)
            else:
                self._append_freeform(line.strip())
        else:
            # This is a free-form documentation block
            self._append_freeform(line.strip())
Ejemplo n.º 12
0
        def append(self, line):
            # Strip leading spaces corresponding to the expected indent level
            # Blank lines are always OK.
            if line:
                indent = re.match(r'\s*', line).end()
                if indent < self._indent:
                    raise QAPIParseError(
                        self._parser,
                        "unexpected de-indent (expected at least %d spaces)" %
                        self._indent)
                line = line[self._indent:]

            self.text += line.rstrip() + '\n'
Ejemplo n.º 13
0
 def get_members(self):
     expr = OrderedDict()
     if self.tok == '}':
         self.accept()
         return expr
     if self.tok != "'":
         raise QAPIParseError(self, "expected string or '}'")
     while True:
         key = self.val
         self.accept()
         if self.tok != ':':
             raise QAPIParseError(self, "expected ':'")
         self.accept()
         if key in expr:
             raise QAPIParseError(self, "duplicate key '%s'" % key)
         expr[key] = self.get_expr(True)
         if self.tok == '}':
             self.accept()
             return expr
         if self.tok != ',':
             raise QAPIParseError(self, "expected ',' or '}'")
         self.accept()
         if self.tok != "'":
             raise QAPIParseError(self, "expected string")
Ejemplo n.º 14
0
    def append(self, line):
        """
        Parse a comment line and add it to the documentation.

        The way that the line is dealt with depends on which part of
        the documentation we're parsing right now:
        * The body section: ._append_line is ._append_body_line
        * An argument section: ._append_line is ._append_args_line
        * A features section: ._append_line is ._append_features_line
        * An additional section: ._append_line is ._append_various_line
        """
        line = line[1:]
        if not line:
            self._append_freeform(line)
            return

        if line[0] != ' ':
            raise QAPIParseError(self._parser, "missing space after #")
        line = line[1:]
        self._append_line(line)
Ejemplo n.º 15
0
    def accept(self, skip_comment=True):
        while True:
            self.tok = self.src[self.cursor]
            self.pos = self.cursor
            self.cursor += 1
            self.val = None

            if self.tok == '#':
                if self.src[self.cursor] == '#':
                    # Start of doc comment
                    skip_comment = False
                self.cursor = self.src.find('\n', self.cursor)
                if not skip_comment:
                    self.val = self.src[self.pos:self.cursor]
                    return
            elif self.tok in '{}:,[]':
                return
            elif self.tok == "'":
                # Note: we accept only printable ASCII
                string = ''
                esc = False
                while True:
                    ch = self.src[self.cursor]
                    self.cursor += 1
                    if ch == '\n':
                        raise QAPIParseError(self, "missing terminating \"'\"")
                    if esc:
                        # Note: we recognize only \\ because we have
                        # no use for funny characters in strings
                        if ch != '\\':
                            raise QAPIParseError(self,
                                                 "unknown escape \\%s" % ch)
                        esc = False
                    elif ch == '\\':
                        esc = True
                        continue
                    elif ch == "'":
                        self.val = string
                        return
                    if ord(ch) < 32 or ord(ch) >= 127:
                        raise QAPIParseError(self, "funny character in string")
                    string += ch
            elif self.src.startswith('true', self.pos):
                self.val = True
                self.cursor += 3
                return
            elif self.src.startswith('false', self.pos):
                self.val = False
                self.cursor += 4
                return
            elif self.tok == '\n':
                if self.cursor == len(self.src):
                    self.tok = None
                    return
                self.info = self.info.next_line()
                self.line_pos = self.cursor
            elif not self.tok.isspace():
                # Show up to next structural, whitespace or quote
                # character
                match = re.match('[^[\\]{}:,\\s\'"]+',
                                 self.src[self.cursor - 1:])
                raise QAPIParseError(self, "stray '%s'" % match.group(0))