I want to create a decorator that profiles a method and logs the result. How can this be done?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
The decorator would look something like:
Anyway, if you want to do some serious profiling I would suggest you use the profile or cProfile packages. |
|||
|
|
If you want proper profiling instead of timing, you can use an undocumented feature of
If you want more control over the file name then you will need another layer of indirection:
It looks complicated, but if you follow it step by step (and note the difference in invoking the profiler) it should become clear. |
|||||||||||
|
|
Using AOP you could have an interceptor before and/or after the method call. There is a full example here : http://www.cs.tut.fi/~ask/aspects/examples.shtml |
|||
|
|
