gen_doc.py 7.7 KB
Newer Older
R
root 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257
import paddle
import os
import shutil
import time
import pkgutil
import types
import contextlib
import argparse

en_suffix = "_en.rst"
cn_suffix = "_cn.rst"
file_path_dict = {}


def _str2bool(s):
    if s.lower() in ('yes', 'true'):
        return True
    elif s.lower() in ('no', 'false'):
        return False
    else:
        raise argparse.ArgumentTypeError('Unsupported value encountered.')


def parse_args():
    parser = argparse.ArgumentParser()
    parser.add_argument(
        '--gen_cn',
        type=_str2bool,
        default=False,
        help='Generate the cn documentations')
    parser.add_argument(
        '--gen_en',
        type=_str2bool,
        default=True,
        help='Generate the en documentations')
    return parser.parse_args()


def gen_doc_dir(root_path='paddle'):
    backup_path = root_path + "_" + str(int(time.time()))
    # move old dirs
    if os.path.isdir(root_path):
        os.rename(root_path, backup_path)

    os.mkdir(root_path)
    for filefiner, name, ispkg in pkgutil.walk_packages(
            path=paddle.__path__, prefix=paddle.__name__ + '.'):
        path = name.replace(".", "/")

        try:
            m = eval(name)
        except AttributeError:
            pass
        else:
            if hasattr(eval(name), "__all__"):
                os.makedirs(path)
                for api in list(set(eval(name).__all__)):
                    os.mknod(path + "/" + api + en_suffix)
                    gen = EnDocGenerator()
                    with gen.guard(path + "/" + api + en_suffix):
                        if api != 'test, get_dict':
                            gen.module_name = name
                            gen.api = api
                            gen.print_header_reminder()
                            gen.print_item()


def clean_en_files(path="./paddle"):
    for root, dirs, files in os.walk(path):
        for file in files:
            if file.endswith(en_suffix):
                os.remove(os.path.join(root, file))


def gen_en_files(root_path='paddle'):
    for filefiner, name, ispkg in pkgutil.walk_packages(
            path=paddle.__path__, prefix=paddle.__name__ + '.'):
        path = name.replace(".", "/")

        try:
            m = eval(name)
        except AttributeError:
            pass
        else:
            if hasattr(eval(name), "__all__"):
                for api in list(set(eval(name).__all__)):
                    gen = EnDocGenerator()
                    with gen.guard(path + "/" + api + en_suffix):
                        if api != 'test, get_dict':
                            gen.module_name = name
                            gen.api = api
                            gen.print_header_reminder()
                            gen.print_item()


def get_cn_files_path_dict(path=None):
    if path == None:
        path = os.getcwd() + "/../../fluid/api_cn"

    for root, dirs, files in os.walk(path):
        for file in files:
            file = file.replace(cn_suffix, "", 1)
            val = str(root + "/" + file)
            if file in file_path_dict:
                file_path_dict[file].append(val)
            else:
                file_path_dict[file] = [val]


def copy_cn_files():
    path = "./paddle"
    for root, dirs, files in os.walk(path):
        for file in files:
            f = file.replace(en_suffix, "", 1)
            if f in file_path_dict:
                key = root[len(path):] + "/" + f
                isfind = False
                for p in file_path_dict[f]:
                    if p.find(key) != -1:
                        src = p + cn_suffix
                        dst = root + "/" + f + cn_suffix
                        shutil.copy(src, dst)
                        isfind = True
                        break
                if not isfind:
                    src = find_max_size_file(file_path_dict[f]) + cn_suffix
                    dst = root + "/" + f + cn_suffix
                    shutil.copy(src, dst)


def check_cn_en_match(path="./paddle", diff_file="en_cn_files_diff"):
    fo = open(diff_file, 'w')
    fo.write("exist\tnot_exits\n")
    for root, dirs, files in os.walk(path):
        for file in files:
            if file.endswith(en_suffix):
                cf = file.replace(en_suffix, cn_suffix)
                if not os.path.exists(root + "/" + cf):
                    fo.write(
                        os.path.join(root, file) + "\t" + os.path.join(
                            root, cf) + "\n")

            elif file.endswith(cn_suffix):
                ef = file.replace(cn_suffix, en_suffix)
                if not os.path.exists(root + "/" + ef):
                    fo.write(
                        os.path.join(root, file) + "\t" + os.path.join(
                            root, ef) + "\n")
    fo.close()


def find_max_size_file(files):
    max_size = 0
    file = ""
    for f in files:
        if os.path.getsize(f + cn_suffix) > max_size:
            max_size = os.path.getsize(f + cn_suffix)
            file = f

    return file


class EnDocGenerator(object):
    def __init__(self, name=None, api=None):
        self.module_name = name
        self.api = api
        self.stream = None

    @contextlib.contextmanager
    def guard(self, filename):
        assert self.stream is None, "stream must be None"
        self.stream = open(filename, 'w')
        yield
        self.stream.close()
        self.stream = None

    def print_item(self):
        try:
            m = eval(self.module_name + "." + self.api)
        except AttributeError:
            #print("attribute error: module_name=" + self.module_name  + ", api=" + self.api)
            pass
        else:
            if isinstance(
                    eval(self.module_name + "." + self.api), types.TypeType):
                self.print_class()
            elif isinstance(
                    eval(self.module_name + "." + self.api),
                    types.FunctionType):
                self.print_function()

    def print_header_reminder(self):
        self.stream.write('''..  THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
    !DO NOT EDIT THIS FILE MANUALLY!

''')

    def _print_ref_(self):
        self.stream.write(".. _api_{0}_{1}:\n\n".format("_".join(
            self.module_name.split(".")), self.api))

    def _print_header_(self, name, dot, is_title):
        dot_line = dot * len(name)
        if is_title:
            self.stream.write(dot_line)
            self.stream.write('\n')
        self.stream.write(name)
        self.stream.write('\n')
        self.stream.write(dot_line)
        self.stream.write('\n')
        self.stream.write('\n')

    def print_class(self):
        self._print_ref_()
        self._print_header_(self.api, dot='-', is_title=False)
        if "fluid.dygraph" in self.module_name:
            self.stream.write('''..  autoclass:: paddle.{0}.{1}
    :members:
    :noindex:

'''.format(self.module_name, self.api))
        elif "fluid.optimizer" in self.module_name:
            self.stream.write('''..  autoclass:: paddle.{0}.{1}
    :members:
    :inherited-members:
    :exclude-members: apply_gradients, apply_optimize, backward, load
    :noindex:

'''.format(self.module_name, self.api))
        else:
            self.stream.write('''..  autoclass:: paddle.{0}.{1}
    :members:
    :inherited-members:
    :noindex:

'''.format(self.module_name, self.api))

    def print_function(self):
        self._print_ref_()
        self._print_header_(self.api, dot='-', is_title=False)
        self.stream.write('''..  autofunction:: paddle.{0}.{1}
    :noindex:

'''.format(self.module_name, self.api))


if __name__ == "__main__":
    args = parse_args()
    if args.gen_cn:
        gen_doc_dir()
        get_cn_files_path_dict()
        copy_cn_files()

    clean_en_files()
    if args.gen_en:
        gen_en_files()
        check_cn_en_match()