print_signatures.py 11.9 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
import argparse
Y
yuyang18 已提交
22
import collections
23
import hashlib
24
import inspect
25
import logging
26 27 28
import pkgutil
import sys

29
import paddle
Y
yuyang18 已提交
30 31 32

member_dict = collections.OrderedDict()

Z
Zeng Jinle 已提交
33 34
visited_modules = set()

35 36 37 38 39 40 41 42 43
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(
44 45 46
        "%(asctime)s - %(funcName)s:%(lineno)d - %(levelname)s - %(message)s"
    )
)
47

Y
yuyang18 已提交
48

49
def md5(doc):
50 51
    try:
        hashinst = hashlib.md5()
T
tianshuo78520a 已提交
52
        hashinst.update(str(doc).encode('utf-8'))
53 54 55
        md5sum = hashinst.hexdigest()
    except UnicodeDecodeError as e:
        md5sum = None
56 57 58 59 60 61
        print(
            "Error({}) occurred when `md5({})`, discard it.".format(
                str(e), doc
            ),
            file=sys.stderr,
        )
62 63

    return md5sum
64 65


Z
Zeng Jinle 已提交
66
def is_primitive(instance):
67
    int_types = (int,)
Z
Zeng Jinle 已提交
68 69 70 71 72 73 74 75 76 77 78 79 80
    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


Z
zhiboniu 已提交
81 82
ErrorSet = set()
IdSet = set()
83
skiplist = []
Z
zhiboniu 已提交
84 85


Y
yuyang18 已提交
86
def visit_all_module(mod):
Z
Zeng Jinle 已提交
87 88 89 90
    mod_name = mod.__name__
    if mod_name != 'paddle' and not mod_name.startswith('paddle.'):
        return

91 92 93
    if mod_name.startswith('paddle.fluid.core'):
        return

Z
Zeng Jinle 已提交
94 95 96
    if mod in visited_modules:
        return
    visited_modules.add(mod)
Z
zhiboniu 已提交
97 98

    member_names = dir(mod)
99
    if hasattr(mod, "__all__"):
Z
zhiboniu 已提交
100
        member_names += mod.__all__
101
    for member_name in member_names:
102
        if member_name.startswith('_'):
Y
yuyang18 已提交
103
            continue
Z
zhiboniu 已提交
104
        cur_name = mod_name + '.' + member_name
105 106
        if cur_name in skiplist:
            continue
Z
zhiboniu 已提交
107 108 109 110
        try:
            instance = getattr(mod, member_name)
            if inspect.ismodule(instance):
                visit_all_module(instance)
111
            else:
Z
zhiboniu 已提交
112 113 114 115
                instance_id = id(instance)
                if instance_id in IdSet:
                    continue
                IdSet.add(instance_id)
116 117 118 119
                if (
                    hasattr(instance, '__name__')
                    and member_name != instance.__name__
                ):
Z
zhiboniu 已提交
120
                    print(
121 122 123 124 125
                        "Found alias API, alias name is: {}, original name is: {}".format(
                            member_name, instance.__name__
                        ),
                        file=sys.stderr,
                    )
Z
zhiboniu 已提交
126
        except:
127
            if cur_name not in ErrorSet and cur_name not in skiplist:
Z
zhiboniu 已提交
128
                ErrorSet.add(cur_name)
Y
yuyang18 已提交
129 130


131 132 133 134 135 136 137 138 139 140 141 142
# 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(
143 144
        path=paddle.__path__, prefix=paddle.__name__ + '.'
    ):
145 146 147 148 149 150 151 152 153 154 155 156 157 158
        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)
        else:
            api_counter += process_module(m, attr)

    api_counter += process_module(paddle, attr)

159 160 161 162 163 164
    logger.info(
        '%s: collected %d apis, %d distinct apis.',
        attr,
        api_counter,
        len(api_info_dict),
    )
165

166
    return [
167
        (sorted(api_info['all_names'])[0], md5(api_info['docstring']))
168 169
        for api_info in api_info_dict.values()
    ]
170 171 172 173 174 175 176 177 178 179 180 181 182 183


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
R
Ren Wei (任卫) 已提交
184
    except Exception as e:
185 186 187
        logger.warning(
            "Exception(%s) occurred when `id(eval(%s))`", str(e), full_name
        )
188 189 190 191 192 193 194 195 196 197 198
        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__,
199
                "docstring": '',
200 201 202 203 204 205
            }
            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
R
Ren Wei (任卫) 已提交
206 207
            if inspect.isfunction(obj):
                api_info_dict[fc_id]["signature"] = repr(
208 209
                    inspect.getfullargspec(obj)
                ).replace('FullArgSpec', 'ArgSpec', 1)
210 211 212 213 214 215 216 217 218
        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)):
219 220
            if api[0] == '_':
                continue
221
            # Exception occurred when `id(eval(paddle.dataset.conll05.test, get_dict))`
222 223
            if ',' in api:
                continue
224 225 226 227 228 229 230 231

            # 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']):
232
                        if (not name.startswith("_")) and hasattr(
233 234 235 236 237
                            value, '__name__'
                        ):
                            method_full_name = (
                                full_name + '.' + name
                            )  # value.__name__
238
                            method_api_info = insert_api_into_dict(
239 240
                                method_full_name, 'class_method'
                            )
241 242 243 244 245
                            if method_api_info is not None:
                                api_counter += 1
    return api_counter


246
def check_public_api():
247
    modulelist = [  # npqa
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
        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.vision.datasets,
        paddle.vision.models,
        paddle.vision.transforms,
        paddle.vision.ops,
        paddle.distributed,
        paddle.distributed.fleet,
        paddle.distributed.fleet.utils,
        paddle.distributed.parallel,
        paddle.distributed.utils,
        paddle.callbacks,
        paddle.hub,
        paddle.autograd,
        paddle.incubate,
        paddle.inference,
        paddle.onnx,
        paddle.device,
        paddle.audio,
        paddle.audio.backends,
        paddle.audio.datasets,
289 290 291
        paddle.sparse,
        paddle.sparse.nn,
        paddle.sparse.nn.functional,
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
    ]

    apinum = 0
    alldict = {}
    for module in modulelist:
        if hasattr(module, '__all__'):
            old_all = module.__all__
        else:
            old_all = []
            dirall = dir(module)
            for item in dirall:
                if item.startswith('__'):
                    continue
                old_all.append(item)
        apinum += len(old_all)
        alldict.update({module.__name__: old_all})

    old_all = []
    dirall = dir(paddle.Tensor)
    for item in dirall:
        if item.startswith('_'):
            continue
        old_all.append(item)
    apinum += len(old_all)
    alldict.update({'paddle.Tensor': old_all})

    for module, allapi in alldict.items():
        for member_name in allapi:
            cur_name = module + '.' + member_name
            instance = eval(cur_name)
            doc_md5 = md5(instance.__doc__)
323
            member_dict[cur_name] = "({}, ('document', '{}'))".format(
324 325
                cur_name, doc_md5
            )
326 327 328


def check_allmodule_callable():
Z
zhiboniu 已提交
329
    modulelist = [paddle]
330 331 332 333 334 335
    for m in modulelist:
        visit_all_module(m)

    return member_dict


336 337 338 339 340 341
def parse_args():
    """
    Parse input arguments
    """
    parser = argparse.ArgumentParser(description='Print Apis Signatures')
    parser.add_argument('--debug', dest='debug', action="store_true")
342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358
    parser.add_argument(
        '--method',
        dest='method',
        type=str,
        default='get_all_api',
        help="using get_all_api or from_modulelist",
    )
    parser.add_argument(
        'module', type=str, help='module', default='paddle'
    )  # not used
    parser.add_argument(
        '--skipped',
        dest='skipped',
        type=str,
        help='Skip Checking submodules',
        default='paddle.fluid.libpaddle.eager.ops',
    )
359 360 361 362 363 364 365 366 367 368 369

    if len(sys.argv) == 1:
        args = parser.parse_args(['paddle'])
        return args
    #    parser.print_help()
    #    sys.exit(1)

    args = parser.parse_args()
    return args


370
if __name__ == '__main__':
371
    args = parse_args()
372
    check_allmodule_callable()
373
    if args.method == 'from_modulelist':
374
        check_public_api()
375 376 377
        for name in member_dict:
            print(name, member_dict[name])
    elif args.method == 'get_all_api':
R
Ren Wei (任卫) 已提交
378 379 380 381 382
        get_all_api()
        all_api_names_to_k = {}
        for k, api_info in api_info_dict.items():
            # 1. the shortest suggested_name may be renamed;
            # 2. some api's fullname is not accessable, the module name of it is overrided by the function with the same name;
383
            api_name = sorted(api_info['all_names'])[0]
R
Ren Wei (任卫) 已提交
384 385 386
            all_api_names_to_k[api_name] = k
        all_api_names_sorted = sorted(all_api_names_to_k.keys())
        for api_name in all_api_names_sorted:
387 388
            if args.skipped != '' and api_name.find(args.skipped) >= 0:
                continue
R
Ren Wei (任卫) 已提交
389
            api_info = api_info_dict[all_api_names_to_k[api_name]]
390 391 392 393 394 395 396 397 398
            print(
                "{0} ({2}, ('document', '{1}'))".format(
                    api_name,
                    md5(api_info['docstring']),
                    api_info['signature']
                    if 'signature' in api_info
                    else 'ArgSpec()',
                )
            )
Y
yuyang18 已提交
399

Z
zhiboniu 已提交
400 401
    if len(ErrorSet) == 0:
        sys.exit(0)
402 403
    else:
        for erroritem in ErrorSet:
404 405 406 407
            print(
                "Error, new function {} is unreachable".format(erroritem),
                file=sys.stderr,
            )
408
        sys.exit(1)