print_signatures.py 10.7 KB
Newer Older
Y
yuyang18 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
# Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""
Print all signature of a python module in alphabet order.

Usage:
18
    ./print_signature  "paddle.fluid" > signature.txt
Y
yuyang18 已提交
19
"""
M
minqiyang 已提交
20 21
from __future__ import print_function

Y
yuyang18 已提交
22 23 24 25 26
import importlib
import inspect
import collections
import sys
import pydoc
27
import hashlib
28
import platform
Z
Zeng Jinle 已提交
29
import functools
30 31 32
import pkgutil
import logging
import paddle
Y
yuyang18 已提交
33 34 35

member_dict = collections.OrderedDict()

Z
Zeng Jinle 已提交
36 37
visited_modules = set()

38 39 40 41 42 43 44 45 46 47 48
logger = logging.getLogger()
if logger.handlers:
    # we assume the first handler is the one we want to configure
    console = logger.handlers[0]
else:
    console = logging.StreamHandler(sys.stderr)
    logger.addHandler(console)
console.setFormatter(
    logging.Formatter(
        "%(asctime)s - %(funcName)s:%(lineno)d - %(levelname)s - %(message)s"))

Y
yuyang18 已提交
49

50
def md5(doc):
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
    try:
        hashinst = hashlib.md5()
        if platform.python_version()[0] == "2":
            hashinst.update(str(doc))
        else:
            hashinst.update(str(doc).encode('utf-8'))
        md5sum = hashinst.hexdigest()
    except UnicodeDecodeError as e:
        md5sum = None
        print(
            "Error({}) occurred when `md5({})`, discard it.".format(
                str(e), doc),
            file=sys.stderr)

    return md5sum
66 67


Z
Zeng Jinle 已提交
68 69 70 71 72 73 74
def get_functools_partial_spec(func):
    func_str = func.func.__name__
    args = func.args
    keywords = func.keywords
    return '{}(args={}, keywords={})'.format(func_str, args, keywords)


75
def format_spec(spec):
Z
Zeng Jinle 已提交
76 77 78
    args = spec.args
    varargs = spec.varargs
    keywords = spec.keywords
79 80 81 82 83 84
    defaults = spec.defaults
    if defaults is not None:
        defaults = list(defaults)
        for idx, item in enumerate(defaults):
            if not isinstance(item, functools.partial):
                continue
Z
Zeng Jinle 已提交
85

86 87 88
            defaults[idx] = get_functools_partial_spec(item)

        defaults = tuple(defaults)
Z
Zeng Jinle 已提交
89 90

    return 'ArgSpec(args={}, varargs={}, keywords={}, defaults={})'.format(
91
        args, varargs, keywords, defaults)
Z
Zeng Jinle 已提交
92 93


94
def queue_dict(member, cur_name):
95 96 97 98 99 100 101 102 103 104 105 106 107
    if cur_name != 'paddle':
        try:
            eval(cur_name)
        except (AttributeError, NameError, SyntaxError) as e:
            print(
                "Error({}) occurred when `eval({})`, discard it.".format(
                    str(e), cur_name),
                file=sys.stderr)
            return

    if (inspect.isclass(member) or inspect.isfunction(member) or
            inspect.ismethod(member)) and hasattr(
                member, '__module__') and hasattr(member, '__name__'):
T
tianshuo78520a 已提交
108
        args = member.__module__ + "." + member.__name__
109 110 111 112 113 114 115 116
        try:
            eval(args)
        except (AttributeError, NameError, SyntaxError) as e:
            print(
                "Error({}) occurred when `eval({})`, discard it for {}.".format(
                    str(e), args, cur_name),
                file=sys.stderr)
            return
T
tianshuo78520a 已提交
117 118
    else:
        try:
119 120
            args = inspect.getargspec(member)
            has_type_error = False
T
tianshuo78520a 已提交
121 122 123 124 125
        except TypeError:  # special for PyBind method
            args = "  ".join([
                line.strip() for line in pydoc.render_doc(member).split('\n')
                if "->" in line
            ])
126 127 128 129 130
            has_type_error = True

        if not has_type_error:
            args = format_spec(args)

131
    doc_md5 = md5(member.__doc__)
Z
Zeng Jinle 已提交
132
    member_dict[cur_name] = "({}, ('document', '{}'))".format(args, doc_md5)
133 134


135 136 137 138 139
def visit_member(parent_name, member, member_name=None):
    if member_name:
        cur_name = ".".join([parent_name, member_name])
    else:
        cur_name = ".".join([parent_name, member.__name__])
X
fix py3  
Xin Pan 已提交
140
    if inspect.isclass(member):
141
        queue_dict(member, cur_name)
Y
yuyang18 已提交
142
        for name, value in inspect.getmembers(member):
143
            if hasattr(value, '__name__') and not name.startswith("_"):
Y
yuyang18 已提交
144
                visit_member(cur_name, value)
Z
zhangchunle 已提交
145 146
    elif inspect.ismethoddescriptor(member):
        return
147 148
    elif inspect.isbuiltin(member):
        return
Y
yuyang18 已提交
149
    elif callable(member):
150
        queue_dict(member, cur_name)
X
fix py3  
Xin Pan 已提交
151 152
    elif inspect.isgetsetdescriptor(member):
        return
Y
yuyang18 已提交
153 154 155 156 157
    else:
        raise RuntimeError("Unsupported generate signature of member, type {0}".
                           format(str(type(member))))


Z
Zeng Jinle 已提交
158
def is_primitive(instance):
159
    int_types = (int, long) if platform.python_version()[0] == "2" else (int, )
Z
Zeng Jinle 已提交
160 161 162 163 164 165 166 167 168 169 170 171 172
    pritimitive_types = int_types + (float, str)
    if isinstance(instance, pritimitive_types):
        return True
    elif isinstance(instance, (list, tuple, set)):
        for obj in instance:
            if not is_primitive(obj):
                return False

        return True
    else:
        return False


Y
yuyang18 已提交
173
def visit_all_module(mod):
Z
Zeng Jinle 已提交
174 175 176 177
    mod_name = mod.__name__
    if mod_name != 'paddle' and not mod_name.startswith('paddle.'):
        return

178 179 180
    if mod_name.startswith('paddle.fluid.core'):
        return

Z
Zeng Jinle 已提交
181 182 183 184
    if mod in visited_modules:
        return

    visited_modules.add(mod)
185 186 187 188 189 190 191 192
    if hasattr(mod, "__all__"):
        member_names = (name for name in mod.__all__
                        if not name.startswith("_"))
    elif mod_name == 'paddle':
        member_names = dir(mod)
    else:
        return
    for member_name in member_names:
Y
yuyang18 已提交
193 194 195
        instance = getattr(mod, member_name, None)
        if instance is None:
            continue
Z
Zeng Jinle 已提交
196 197 198 199 200 201 202

        if is_primitive(instance):
            continue

        if not hasattr(instance, "__name__"):
            continue

Y
yuyang18 已提交
203 204 205
        if inspect.ismodule(instance):
            visit_all_module(instance)
        else:
206
            if member_name != instance.__name__:
207
                print(
208
                    "Found alias API, alias name is: {}, original name is: {}".
209 210
                    format(member_name, instance.__name__),
                    file=sys.stderr)
211 212 213
                visit_member(mod.__name__, instance, member_name)
            else:
                visit_member(mod.__name__, instance)
Y
yuyang18 已提交
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 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328
# all from gen_doc.py
api_info_dict = {}  # used by get_all_api


# step 1: walkthrough the paddle package to collect all the apis in api_set
def get_all_api(root_path='paddle', attr="__all__"):
    """
    walk through the paddle package to collect all the apis.
    """
    global api_info_dict
    api_counter = 0
    for filefinder, name, ispkg in pkgutil.walk_packages(
            path=paddle.__path__, prefix=paddle.__name__ + '.'):
        try:
            if name in sys.modules:
                m = sys.modules[name]
            else:
                # importlib.import_module(name)
                m = eval(name)
                continue
        except AttributeError:
            logger.warning("AttributeError occurred when `eval(%s)`", name)
            pass
        else:
            api_counter += process_module(m, attr)

    api_counter += process_module(paddle, attr)

    logger.info('%s: collected %d apis, %d distinct apis.', attr, api_counter,
                len(api_info_dict))

    return [api_info['all_names'][0] for api_info in api_info_dict.values()]


def insert_api_into_dict(full_name, gen_doc_anno=None):
    """
    insert add api into the api_info_dict
    Return:
        api_info object or None
    """
    try:
        obj = eval(full_name)
        fc_id = id(obj)
    except AttributeError:
        logger.warning("AttributeError occurred when `id(eval(%s))`", full_name)
        return None
    except:
        logger.warning("Exception occurred when `id(eval(%s))`", full_name)
        return None
    else:
        logger.debug("adding %s to api_info_dict.", full_name)
        if fc_id in api_info_dict:
            api_info_dict[fc_id]["all_names"].add(full_name)
        else:
            api_info_dict[fc_id] = {
                "all_names": set([full_name]),
                "id": fc_id,
                "object": obj,
                "type": type(obj).__name__,
            }
            docstr = inspect.getdoc(obj)
            if docstr:
                api_info_dict[fc_id]["docstring"] = inspect.cleandoc(docstr)
            if gen_doc_anno:
                api_info_dict[fc_id]["gen_doc_anno"] = gen_doc_anno
        return api_info_dict[fc_id]


# step 1 fill field : `id` & `all_names`, type, docstring
def process_module(m, attr="__all__"):
    api_counter = 0
    if hasattr(m, attr):
        # may have duplication of api
        for api in set(getattr(m, attr)):
            if api[0] == '_': continue
            # Exception occurred when `id(eval(paddle.dataset.conll05.test, get_dict))`
            if ',' in api: continue

            # api's fullname
            full_name = m.__name__ + "." + api
            api_info = insert_api_into_dict(full_name)
            if api_info is not None:
                api_counter += 1
                if inspect.isclass(api_info['object']):
                    for name, value in inspect.getmembers(api_info['object']):
                        if (not name.startswith("_")) and hasattr(value,
                                                                  '__name__'):
                            method_full_name = full_name + '.' + name  # value.__name__
                            method_api_info = insert_api_into_dict(
                                method_full_name, 'class_method')
                            if method_api_info is not None:
                                api_counter += 1
    return api_counter


def get_all_api_from_modulelist():
    modulelist = [
        paddle, paddle.amp, paddle.nn, paddle.nn.functional,
        paddle.nn.initializer, paddle.nn.utils, paddle.static, paddle.static.nn,
        paddle.io, paddle.jit, paddle.metric, paddle.distribution,
        paddle.optimizer, paddle.optimizer.lr, paddle.regularizer, paddle.text,
        paddle.utils, paddle.utils.download, paddle.utils.profiler,
        paddle.utils.cpp_extension, paddle.sysconfig, paddle.vision,
        paddle.distributed, paddle.distributed.fleet,
        paddle.distributed.fleet.utils, paddle.distributed.parallel,
        paddle.distributed.utils, paddle.callbacks, paddle.hub, paddle.autograd
    ]
    for m in modulelist:
        visit_all_module(m)

    return member_dict


329
if __name__ == '__main__':
330 331 332 333
    # modules = sys.argv[1].split(",")
    # for m in modules:
    #    visit_all_module(importlib.import_module(m))
    get_all_api_from_modulelist()
Y
yuyang18 已提交
334

335 336
    for name in member_dict:
        print(name, member_dict[name])