import os import sys import re import inspect validExtensions = (".cpp", ".h", ".js", ".md") # specify the paths in which docublocks are searched. note that js/apps/* must not be included because it contains js/apps/system/ # and that path also contains copies of some files present in js/ anyway. searchMDPaths = [ "Manual", "AQL", "HTTP", "Cookbook", "Drivers" ] searchPaths = [ "Documentation/Books/Manual/", "Documentation/Books/AQL/", "Documentation/Books/HTTP/", "Documentation/Books/Cookbook/", "Documentation/Books/Drivers/", "Documentation/DocuBlocks/" ] fullSuccess = True def file_content(filepath): """ Fetches and formats file's content to perform the required operation. """ infile = open(filepath, 'r') filelines = tuple(infile) infile.close() comment_indexes = [] comments = [] _start = None for line in enumerate(filelines): if "@startDocuBlock" in line[1]: # in the unprocessed md files we have non-terminated startDocuBlocks, else it is an error: if ((_start != None) and (not searchMDPaths[0] in filepath) and (not searchMDPaths[1] in filepath) and (not searchMDPaths[2] in filepath) and (not searchMDPaths[3] in filepath) and (not searchMDPaths[4] in filepath)): print "next startDocuBlock found without endDocuBlock inbetween in file %s [%s]" %(filepath, line) raise _start = line[0] if "@endDocuBlock" in line[1]: try: _end = line[0] + 1 comment_indexes.append([_start, _end]) _start = None except NameError: print "endDocuBlock without previous startDocublock seen while analyzing file %s [%s]" %(filepath, line) raise for index in comment_indexes: comments.append(filelines[index[0]: index[1]]) return comments def example_content(filepath, fh, tag, blockType, placeIntoFilePath): """ Fetches an example file and inserts it using code """ first = True aqlResult = False lastline = None longText = "" longLines = 0 short = "" shortLines = 0 shortable = False showdots = True CURL_STATE_CMD = 1 CURL_STATE_HEADER = 2 CURL_STATE_BODY = 3 curlState = CURL_STATE_CMD AQL_STATE_QUERY = 1 AQL_STATE_BINDV = 2 AQL_STATE_RESULT = 3 aqlState = AQL_STATE_QUERY blockCount = 0; # read in the context, split into long and short infile = open(filepath, 'r') for line in infile: if first: if blockType == "arangosh" and not line.startswith("arangosh>"): raise Exception ("mismatching blocktype - expecting 'arangosh' to start with 'arangosh>' - in %s while inpecting %s - referenced via %s have '%s'" %(filepath, tag, placeIntoFilePath, line)) if blockType == "curl" and not line.startswith("shell> curl"): raise Exception("mismatching blocktype - expecting 'curl' to start with 'shell > curl' in %s while inpecting %s - referenced via %s have '%s'" %(filepath, tag, placeIntoFilePath, line)) first = False if blockType == "arangosh": if line.startswith("arangosh>") or line.startswith("........>"): if lastline != None: # short = short + lastline # shortLines = shortLines + 1 lastline = None short += line shortLines += 1 showdots = True else: if showdots: if lastline == None: # lastline = line shortable = True showdots = False lastline = None else: # short = short + "~~~hidden~~~\n" # shortLines = shortLines + 1 shortable = True showdots = False lastline = None if blockType == "curl": if line.startswith("shell> curl"): curlState = CURL_STATE_CMD elif curlState == CURL_STATE_CMD and line.startswith("HTTP/"): curlState = CURL_STATE_HEADER elif curlState == CURL_STATE_HEADER and line.startswith("{"): curlState = CURL_STATE_BODY if curlState == CURL_STATE_CMD or curlState == CURL_STATE_HEADER: short = short + line shortLines += 1 else: shortable = True if blockType == "AQL": if line.startswith("@Q"): # query part blockCount = 0 aqlState = AQL_STATE_QUERY short += "Query:\n
\n"
        longText += "Query:\n
\n"
        continue # skip this line - it is only here for this.
      elif line.startswith("@B"): # bind values part
        short += "
\nBind Values:\n
\n"
        longText += "
\nBind Values:\n
\n"
        blockCount = 0
        aqlState = AQL_STATE_BINDV
        continue # skip this line - it is only here for this.
      elif line.startswith("@R"): # result part
        shortable = True
        longText += "
\nResults:\n
\n"
        blockCount = 0
        aqlState = AQL_STATE_RESULT
        continue # skip this line - it is only here for this.

      if aqlState == AQL_STATE_QUERY or aqlState == AQL_STATE_BINDV:
        short = short + line
        shortLines += 1

      blockCount += 1

    longText += line
    longLines += 1

  if lastline != None:
    short += lastline
    shortLines += 1

  infile.close()

  if longLines - shortLines < 5:
    shortable = False

  # write example
  fh.write("\n")
  fh.write("
\n" % tag) longTag = "%s_long" % tag shortTag = "%s_short" % tag longToggle = "" shortToggle = "$('#%s').hide(); $('#%s').show();" % (shortTag, longTag) if shortable: fh.write("
\n" % (longTag, longToggle)) else: fh.write("
\n" % longTag) if blockType != "AQL": fh.write("
\n")
  fh.write("%s" % longText)
  fh.write("
\n") fh.write("
\n") if shortable: fh.write("
\n" % (shortTag, shortToggle)) if blockType != "AQL": fh.write("
\n")
    fh.write("%s" % short)

    if blockType == "arangosh":
      fh.write("
show execution results
\n") elif blockType == "curl": fh.write("
show response body
\n") elif blockType == "AQL": fh.write("
show query result
\n") else: fh.write("
show
\n") fh.write("\n") fh.write("\n") fh.write("\n") def fetch_comments(dirpath): """ Fetches comments from files and writes to a file in required format. """ global fullSuccess global validExtensions comments_filename = "allComments.txt" fh = open(comments_filename, "a") shouldIgnoreLine = False; for root, directories, files in os.walk(dirpath): for filename in files: if filename.endswith(validExtensions) and (filename.find("#") < 0): filepath = os.path.join(root, filename) file_comments = file_content(filepath) for comment in file_comments: fh.write("\n\n" % filepath) for _com in comment: _text = re.sub(r"//(/)+\s*\n", "
\n", _com) # place in temporary brs... _text = re.sub(r"///+(\s+\s+)([-\*\d])", r" \2", _text) _text = re.sub(r"///\s", "", _text) _text = _text.strip("\n") if _text: if not shouldIgnoreLine: if ("@startDocuBlock" in _text) or \ ("@endDocuBlock" in _text): fh.write("%s\n\n" % _text) elif ("@EXAMPLE_ARANGOSH_OUTPUT" in _text or \ "@EXAMPLE_ARANGOSH_RUN" in _text or \ "@EXAMPLE_AQL" in _text): blockType="" if "@EXAMPLE_ARANGOSH_OUTPUT" in _text: blockType = "arangosh" elif "@EXAMPLE_ARANGOSH_RUN" in _text: blockType = "curl" elif "@EXAMPLE_AQL" in _text: blockType = "AQL" shouldIgnoreLine = True try: _filename = re.search("{(.*)}", _text).group(1) except Exception as x: print "failed to match file name in %s while parsing %s " % (_text, filepath) raise x dirpath = os.path.abspath(os.path.join(os.path.dirname( __file__ ), os.pardir, "Examples", _filename + ".generated")) if os.path.isfile(dirpath): example_content(dirpath, fh, _filename, blockType, filepath) else: fullSuccess = False print "Could not find the generated example for " + _filename + " found in " + filepath else: fh.write("%s\n" % _text) elif ("@END_EXAMPLE_ARANGOSH_OUTPUT" in _text or \ "@END_EXAMPLE_ARANGOSH_RUN" in _text or \ "@END_EXAMPLE_AQL" in _text): shouldIgnoreLine = False else: fh.write("\n") fh.close() if __name__ == "__main__": errorsFile = open("../../lib/Basics/errors.dat", "r") commentsFile = open("allComments.txt", "w") commentsFile.write("@startDocuBlock errorCodes \n") for line in errorsFile: commentsFile.write(line + "\n") commentsFile.write("@endDocuBlock \n") commentsFile.close() errorsFile.close() for i in searchPaths: print "Searching for docublocks in " + i + ": " dirpath = os.path.abspath(os.path.join(os.path.dirname( __file__ ), os.pardir,"ArangoDB/../../"+i)) fetch_comments(dirpath) os.path.abspath(os.path.join(os.path.dirname( __file__ ), '..', 'templates')) if not fullSuccess: sys.exit(1)