0

我有一个想用 cProfile 分析的函数,但我还保存了很多关于结果的其他分析 - 这当前保存到一个以编程方式生成名称的目录中,我希望将配置文件数据保存在同一个目录。

但是:目录名称仅在我要分析的函数完成后在concurrent.futures回调函数中计算出来。

有没有一种简单的方法可以将配置文件数据保存在 Python 对象中,该对象可以传递给回调函数(例如,与函数的结果一起返回),以便在知道文件名后写入磁盘?

4

1 回答 1

1

中的run()函数cProfile.py看起来像这样(在 Python 2.7 中,但同样的方法也适用于 Python 3)。从那里您会看到,如果您Profile直接使用对象,则可以dump_stats在分析后到达您想要的位置。

def run(statement, filename=None, sort=-1):
    """Run statement under profiler optionally saving results in filename

    This function takes a single argument that can be passed to the
    "exec" statement, and an optional file name.  In all cases this
    routine attempts to "exec" its first argument and gather profiling
    statistics from the execution. If no file name is present, then this
    function automatically prints a simple profiling report, sorted by the
    standard name string (file/line/function-name) that is presented in
    each line.
    """
    prof = Profile()
    result = None
    try:
        try:
            prof = prof.run(statement)
        except SystemExit:
            pass
    finally:
        if filename is not None:
            prof.dump_stats(filename)
        else:
            result = prof.print_stats(sort)
    return result
于 2013-03-26T08:43:53.017 回答