Add code that profiles lyx2lyx.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9075 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
José Matox 2004-10-10 19:25:48 +00:00
parent 8702818f2b
commit 43c844920c
6 changed files with 75 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2004-10-10 José Matos <jamatos@lyx.org>
* Makefile.am (dist_lyx2lyx_DATA): fix entry for lyx2lyx/profiling.py
2004-10-08 José Matos <jamatos@lyx.org> 2004-10-08 José Matos <jamatos@lyx.org>
* scripts/legacy_lyxpreview2ppm.py (legacy_conversion): * scripts/legacy_lyxpreview2ppm.py (legacy_conversion):

View File

@ -846,7 +846,8 @@ dist_lyx2lyx_DATA = \
lyx2lyx/lyx_1_1_6fix3.py \ lyx2lyx/lyx_1_1_6fix3.py \
lyx2lyx/lyx_1_2.py \ lyx2lyx/lyx_1_2.py \
lyx2lyx/lyx_1_3.py \ lyx2lyx/lyx_1_3.py \
lyx2lyx/lyx_1_4.py lyx2lyx/lyx_1_4.py \
lyx2lyx/profiling.py
scriptsdir = $(pkgdatadir)/scripts scriptsdir = $(pkgdatadir)/scripts
dist_scripts_SCRIPTS = \ dist_scripts_SCRIPTS = \

View File

@ -1 +1,3 @@
*.pyc *.pyc
*.prof
lyx2lyxc

View File

@ -1,3 +1,10 @@
2004-10-10 José Matos <jamatos@lyx.org>
* .cvsignore: add entries related with profiling lyx2lyx.
* lyx2lyx (main): place all program inside this function, to allow
it to be called from profiling.
* profiling.py: new file to profile lyx2lyx.
2004-10-09 José Matos <jamatos@lyx.org> 2004-10-09 José Matos <jamatos@lyx.org>
* LyX.py: add support for format 237, fix variables type, * LyX.py: add support for format 237, fix variables type,

View File

@ -73,8 +73,8 @@ def parse_options(argv):
return end_format, input, output, error, debug return end_format, input, output, error, debug
if __name__ == "__main__": def main(argv):
end_format, input, output, error, debug = parse_options(sys.argv) end_format, input, output, error, debug = parse_options(argv)
file = LyX.FileInfo(end_format, input, output, error, debug) file = LyX.FileInfo(end_format, input, output, error, debug)
mode, convertion_chain = file.chain() mode, convertion_chain = file.chain()
@ -85,3 +85,6 @@ if __name__ == "__main__":
convert(file) convert(file)
file.write() file.write()
if __name__ == "__main__":
main(sys.argv)

55
lib/lyx2lyx/profiling.py Executable file
View File

@ -0,0 +1,55 @@
#! /usr/bin/env python
# -*- coding: iso-8859-1 -*-
# Copyright (C) 2004 José Matos <jamatos@lyx.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
# We need all this because lyx2lyx does not have the .py termination
import imp
lyx2lyx = imp.load_source("lyx2lyx", "lyx2lyx", open("lyx2lyx"))
# Profiler used in the study
import hotshot, hotshot.stats
import sys
import os
"""
This program profiles lyx2lyx.
Usage:
./profiling.py option_to_lyx2lyx
Example:
./profiling.py -ou.lyx ../doc/UserGuide.lyx
"""
def main(argv):
# This will only work with python >= 2.2, the version where this module was added
prof = hotshot.Profile("lyx2lyx.prof") # Use temporary file, here?
benchtime = prof.runcall(
lambda : lyx2lyx.main(argv))
prof.close()
# After the tests, show the profile analysis.
stats = hotshot.stats.load("lyx2lyx.prof")
stats.strip_dirs()
stats.sort_stats('time', 'calls')
stats.print_stats(20)
os.unlink("lyx2lyx.prof")
if __name__ == "__main__":
main(sys.argv)