from django.core.management.color import color_style
from django.core.files import File
+from wolnelektury_core.management.profile import profile
+import objgraph
+import gc
+
from catalogue.models import Book
from picture.models import Picture
picture = Picture.from_xml_file(file_path, overwrite=options.get('force'))
return picture
+ # @profile
def handle(self, *directories, **options):
from django.db import transaction
self.style = color_style()
-
+
verbose = options.get('verbose')
force = options.get('force')
show_traceback = options.get('traceback', False)
if import_picture:
self.import_picture(file_path, options)
else:
+ objgraph.show_growth()
self.import_book(file_path, options)
+ objgraph.show_growth()
+ print "--------------------"
+
files_imported += 1
transaction.commit()
-
+ ## track.
+
except (Book.AlreadyExists, Picture.AlreadyExists):
print self.style.ERROR('%s: Book or Picture already imported. Skipping. To overwrite use --force.' %
file_path)
Removes all tags from index, then index them again.
Indexed fields include: id, name (with and without polish stems), category
"""
+ log.debug("Indexing tags")
remove_only = kw.get('remove_only', False)
# first, remove tags from index.
if tags:
--- /dev/null
+
+import cProfile
+import functools
+
+_object = None
+
+def profile(meth):
+ def _wrapper(self, *args, **kwargs):
+ object = self
+ setattr(object, "__%s" % meth.__name__, meth)
+ cProfile.runctx('object.__%s(object, *args, **kwargs)' % (meth.__name__, ), globals(), locals(),
+ "wlprofile")
+
+ functools.update_wrapper(_wrapper, meth)
+ return _wrapper
+