Пример #1
0
def generate_docs(args):
    # This present script should live in '$gpstk_root/swig',
    # so to get the $gpstk_root, just strip off the file name
    # and use split() to pop off the 'swig' directory from the
    # remaining file path.
    script_fullpath_name = os.path.realpath(__file__)
    path_gpstk_swig = os.path.dirname( script_fullpath_name )
    (gpstk_root, swig_dir) = os.path.split( path_gpstk_swig )

    # Build a list of all the XML files that dOxygen output previously
    xml_glob_pattern = os.path.sep.join((args.src_dir, 'xml', '*.xml'))
    xml_files = glob.glob( xml_glob_pattern )
    num_files = len( xml_files )
    if num_files == 0:
        print 'WARNING: No doxygen-xml files found, docstrings cannot be generated.'
        return

    # create directories for swig doc files
    path_gpstk_swig_doc = args.dst_dir
    if not os.path.exists( path_gpstk_swig_doc ):
        os.makedirs( path_gpstk_swig_doc )

    # for each doxygen xml file, create a converted swig .i file for associated docstrings
    for f_xml in xml_files:
        (f, xml_ext) = os.path.splitext( f_xml ) # remove the .xml ending
        name_root = file_name(f)
        output_file = path_gpstk_swig_doc + os.path.sep + name_root + '.i'
        if ('index' not in name_root):  # don't try to use index.xml
            try:
                doxy2swig.convert(f_xml, output_file, False, False)
                clean_errors(output_file)
                print 'Parsed ', f, 'to', output_file
            except Exception as e:
                print 'ERROR:', f_xml, 'can not be parsed'
                print '\t', e

    # Add the includes for each converted xml file.i to the doc.i file
    out_file = open(path_gpstk_swig_doc + os.path.sep + 'doc.i', 'w')
    out_file.write('# This is an AUTO-GENERATED file by doc.py.\n')
    out_file.write('# Do not modify it unless you know what you are doing.\n')
    doc_files = glob.glob(path_gpstk_swig_doc + os.path.sep + '*.i')
    for f_i in doc_files:
        if 'doc.i' not in f_i:
            out_file.write('%include ' + f_i + '\n')
    out_file.close()
    print '\nFinished with documentation.'
Пример #2
0
def generate_docs(args):
    # This present script should live in '$gpstk_root/swig',
    # so to get the $gpstk_root, just strip off the file name
    # and use split() to pop off the 'swig' directory from the
    # remaining file path.
    script_fullpath_name = os.path.realpath(__file__)
    path_gpstk_swig = os.path.dirname(script_fullpath_name)
    (gpstk_root, swig_dir) = os.path.split(path_gpstk_swig)

    # Build a list of all the XML files that dOxygen output previously
    xml_glob_pattern = os.path.sep.join((args.src_dir, 'xml', '*.xml'))
    xml_files = glob.glob(xml_glob_pattern)
    num_files = len(xml_files)
    if num_files == 0:
        print 'WARNING: No doxygen-xml files found, docstrings cannot be generated.'
        return

    # create directories for swig doc files
    path_gpstk_swig_doc = args.dst_dir
    if not os.path.exists(path_gpstk_swig_doc):
        os.makedirs(path_gpstk_swig_doc)

    # for each doxygen xml file, create a converted swig .i file for associated docstrings
    for f_xml in xml_files:
        (f, xml_ext) = os.path.splitext(f_xml)  # remove the .xml ending
        name_root = file_name(f)
        output_file = path_gpstk_swig_doc + os.path.sep + name_root + '.i'
        if ('index' not in name_root):  # don't try to use index.xml
            try:
                doxy2swig.convert(f_xml, output_file, False, False)
                clean_errors(output_file)
                print 'Parsed ', f, 'to', output_file
            except Exception as e:
                print 'ERROR:', f_xml, 'can not be parsed'
                print '\t', e

    # Add the includes for each converted xml file.i to the doc.i file
    out_file = open(path_gpstk_swig_doc + os.path.sep + 'doc.i', 'w')
    out_file.write('# This is an AUTO-GENERATED file by doc.py.\n')
    out_file.write('# Do not modify it unless you know what you are doing.\n')
    doc_files = glob.glob(path_gpstk_swig_doc + os.path.sep + '*.i')
    for f_i in doc_files:
        if 'doc.i' not in f_i:
            out_file.write('%include ' + f_i + '\n')
    out_file.close()
    print '\nFinished with documentation.'
Пример #3
0
def generate_docs():
    # yes, it's a magic number below.
    # gpstk_folder should be the path ending with 'gpstk/'
    # the number is the number of chars to cut off from this file's path
    gpstk_folder = os.path.realpath(__file__)[:-45]
    xml_files = glob.glob(gpstk_folder + 'dev/doc/xml/*.xml')
    num_files = len(xml_files)
    if num_files == 0:
        print 'WARNING: No doxygen-xml files found, docstrings cannot be generated.'

    gpstk_swig = ''
    gpstk_py_doc = gpstk_swig + 'doc/'
    if not os.path.exists(gpstk_py_doc):
        os.makedirs(gpstk_py_doc)

    for f_xml in xml_files:
        f = f_xml[:-4]  # remove the .xml ending
        name = file_name(f)
        output_file = gpstk_py_doc + name + '.i'
        if ('index' not in name):  # don't try to use index.xml
            try:
                doxy2swig.convert(f_xml, output_file, False, False)
                clean_errors(output_file)
                print 'Parsed ', f, 'to', output_file
            except Exception as e:
                print 'ERROR:', f_xml, 'can not be parsed'
                print '\t', e

    out_file = open(gpstk_py_doc + 'doc.i', 'w')
    out_file.write('# This is an AUTO-GENERATED file by doc.py.\n')
    out_file.write('# Do not modify it unless you know what you are doing.\n')
    doc_files = glob.glob(gpstk_py_doc + '*.i')
    for f_i in doc_files:
        if 'doc.i' not in f_i:
            out_file.write('%include ' + f_i + '\n')
    out_file.close()
    print '\nFinished with documentation.'
Пример #4
0
def generate_docs():
    # yes, it's a magic number below.
    # gpstk_folder should be the path ending with 'gpstk/'
    # the number is the number of chars to cut off from this file's path
    gpstk_folder = os.path.realpath(__file__)[:-45]
    xml_files = glob.glob(gpstk_folder + 'dev/doc/xml/*.xml')
    num_files = len(xml_files)
    if num_files == 0:
        print 'WARNING: No doxygen-xml files found, docstrings cannot be generated.'

    gpstk_swig = ''
    gpstk_py_doc = gpstk_swig + 'doc/'
    if not os.path.exists(gpstk_py_doc):
        os.makedirs(gpstk_py_doc)

    for f_xml in xml_files:
        f = f_xml[:-4]  # remove the .xml ending
        name = file_name(f)
        output_file = gpstk_py_doc + name + '.i'
        if ('index' not in name):  # don't try to use index.xml
            try:
                doxy2swig.convert(f_xml, output_file, False, False)
                clean_errors(output_file)
                print 'Parsed ', f, 'to', output_file
            except Exception as e:
                print 'ERROR:', f_xml, 'can not be parsed'
                print '\t', e

    out_file = open(gpstk_py_doc + 'doc.i', 'w')
    out_file.write('# This is an AUTO-GENERATED file by doc.py.\n')
    out_file.write('# Do not modify it unless you know what you are doing.\n')
    doc_files = glob.glob(gpstk_py_doc + '*.i')
    for f_i in doc_files:
        if 'doc.i' not in f_i:
            out_file.write('%include ' + f_i + '\n')
    out_file.close()
    print '\nFinished with documentation.'