benchmark.py :  » 3.1.2-Python » Lib » Lib » importlib » test » Python Open Source

Home
Python Open Source
1.3.1.2 Python
2.Ajax
3.Aspect Oriented
4.Blog
5.Build
6.Business Application
7.Chart Report
8.Content Management Systems
9.Cryptographic
10.Database
11.Development
12.Editor
13.Email
14.ERP
15.Game 2D 3D
16.GIS
17.GUI
18.IDE
19.Installer
20.IRC
21.Issue Tracker
22.Language Interface
23.Log
24.Math
25.Media Sound Audio
26.Mobile
27.Network
28.Parser
29.PDF
30.Project Management
31.RSS
32.Search
33.Security
34.Template Engines
35.Test
36.UML
37.USB Serial
38.Web Frameworks
39.Web Server
40.Web Services
41.Web Unit
42.Wiki
43.Windows
44.XML
Python Open Source » 3.1.2 Python » Lib 
Lib » Lib » importlib » test » benchmark.py
from  import util
from .source import util
import gc
import decimal
import imp
import importlib
import sys
import timeit


def bench_cache(import_, repeat, number):
    """Measure the time it takes to pull from sys.modules."""
    name = '<benchmark import>'
    with util.uncache(name):
        module = imp.new_module(name)
        sys.modules[name] = module
        runs = []
        for x in range(repeat):
            start_time = timeit.default_timer()
            for y in range(number):
                import_(name)
            end_time = timeit.default_timer()
            runs.append(end_time - start_time)
        return min(runs)


def bench_importing_source(import_, repeat, number, loc=100000):
    """Measure importing source from disk.

    For worst-case scenario, the line endings are \\r\\n and thus require
    universal newline translation.

    """
    name = '__benchmark'
    with source_util.create_modules(name) as mapping:
        with open(mapping[name], 'w') as file:
            for x in range(loc):
                file.write("{0}\r\n".format(x))
        with util.import_state(path=[mapping['.root']]):
            runs = []
            for x in range(repeat):
                start_time = timeit.default_timer()
                for y in range(number):
                    try:
                        import_(name)
                    finally:
                        del sys.modules[name]
                end_time = timeit.default_timer()
                runs.append(end_time - start_time)
            return min(runs)


def main(import_):
    args = [('sys.modules', bench_cache, 5, 500000),
            ('source', bench_importing_source, 5, 10000)]
    test_msg = "{test}, {number} times (best of {repeat}):"
    result_msg = "{result:.2f} secs"
    gc.disable()
    try:
        for name, meth, repeat, number in args:
            result = meth(import_, repeat, number)
            print(test_msg.format(test=name, repeat=repeat,
                    number=number).ljust(40),
                    result_msg.format(result=result).rjust(10))
    finally:
        gc.enable()


if __name__ == '__main__':
    import optparse

    parser = optparse.OptionParser()
    parser.add_option('-b', '--builtin', dest='builtin', action='store_true',
                        default=False, help="use the built-in __import__")
    options, args = parser.parse_args()
    if args:
        raise RuntimeError("unrecognized args: {0}".format(args))
    import_ = __import__
    if not options.builtin:
        import_ = importlib.__import__

    main(import_)
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.