add time to logger

svn: r13517
This commit is contained in:
Benny Malengier 2009-11-07 13:24:50 +00:00
parent e6ddc51d72
commit ac84dc2e26
2 changed files with 31 additions and 1 deletions

View File

@ -31,6 +31,7 @@ PersonView interface.
#------------------------------------------------------------------------ #------------------------------------------------------------------------
import cPickle as pickle import cPickle as pickle
import time
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
@ -41,6 +42,14 @@ import gtk
import pango import pango
from gtk.gdk import ACTION_COPY, BUTTON1_MASK from gtk.gdk import ACTION_COPY, BUTTON1_MASK
#-------------------------------------------------------------------------
#
# set up logging
#
#-------------------------------------------------------------------------
import logging
_LOG = logging.getLogger(".gui.personview")
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# GRAMPS modules # GRAMPS modules
@ -518,6 +527,7 @@ class PersonView(PageView.PersonNavView):
since it can change when rows are unselected when the model is set. since it can change when rows are unselected when the model is set.
""" """
if self.active: if self.active:
cput = time.clock()
if Config.get(Config.FILTER): if Config.get(Config.FILTER):
filter_info = (PeopleModel.GENERIC, self.generic_filter) filter_info = (PeopleModel.GENERIC, self.generic_filter)
else: else:
@ -525,7 +535,9 @@ class PersonView(PageView.PersonNavView):
self.model = PeopleModel(self.dbstate.db, filter_info, skip) self.model = PeopleModel(self.dbstate.db, filter_info, skip)
active = self.dbstate.active active = self.dbstate.active
cput1 = time.clock()
self.tree.set_model(self.model) self.tree.set_model(self.model)
cput2 = time.clock()
if const.USE_TIPS and self.model.tooltip_column is not None: if const.USE_TIPS and self.model.tooltip_column is not None:
self.tooltips = TreeTips.TreeTips(self.tree, self.tooltips = TreeTips.TreeTips(self.tree,
@ -539,6 +551,9 @@ class PersonView(PageView.PersonNavView):
self.uistate.show_filter_results(self.dbstate, self.uistate.show_filter_results(self.dbstate,
self.model.displayed, self.model.displayed,
self.model.total) self.model.total)
_LOG.debug(self.__class__.__name__ + ' build_tree ' +
str(time.clock() - cput) + ' sec')
_LOG.debug(' setting model ' + str(cput2 - cput1) + ' sec')
else: else:
self.dirty = True self.dirty = True
@ -710,6 +725,7 @@ class PersonView(PageView.PersonNavView):
if not self.model: if not self.model:
return return
if self.active: if self.active:
cput = time.clock()
self.dirty = False self.dirty = False
for node in set(handle_list): for node in set(handle_list):
person = self.dbstate.db.get_person_from_handle(node) person = self.dbstate.db.get_person_from_handle(node)
@ -729,6 +745,8 @@ class PersonView(PageView.PersonNavView):
path = self.model.on_get_path(node) path = self.model.on_get_path(node)
pnode = self.model.get_iter(path) pnode = self.model.get_iter(path)
self.model.row_inserted(path, pnode) self.model.row_inserted(path, pnode)
_LOG.debug(self.__class__.__name__ + ' person_added ' +
str(time.clock() - cput) + ' sec')
else: else:
self.dirty = True self.dirty = True
@ -745,6 +763,7 @@ class PersonView(PageView.PersonNavView):
if not self.model: if not self.model:
return return
cput = time.clock()
expand = [] expand = []
self.tree.map_expanded_rows(self.func, expand) self.tree.map_expanded_rows(self.func, expand)
@ -753,11 +772,14 @@ class PersonView(PageView.PersonNavView):
path = self.model.mapper.top_iter2path.get(i) path = self.model.mapper.top_iter2path.get(i)
if path: if path:
self.tree.expand_row(path, False) self.tree.expand_row(path, False)
_LOG.debug(self.__class__.__name__ + ' person_removed ' +
str(time.clock() - cput) + ' sec')
def person_updated(self, handle_list): def person_updated(self, handle_list):
if not self.model: if not self.model:
return return
cput = time.clock()
self.model.clear_cache() self.model.clear_cache()
for node in handle_list: for node in handle_list:
person = self.dbstate.db.get_person_from_handle(node) person = self.dbstate.db.get_person_from_handle(node)
@ -796,6 +818,8 @@ class PersonView(PageView.PersonNavView):
break break
self.goto_active_person() self.goto_active_person()
_LOG.debug(self.__class__.__name__ + ' person_updated ' +
str(time.clock() - cput) + ' sec')
def get_selected_objects(self): def get_selected_objects(self):
(mode, paths) = self.selection.get_selected_rows() (mode, paths) = self.selection.get_selected_rows()

View File

@ -40,7 +40,7 @@ import locale
# #
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
import logging import logging
log = logging.getLogger(".") _LOG = logging.getLogger(".gui.peoplemodel")
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
@ -243,6 +243,7 @@ class PeopleModel(gtk.GenericTreeModel):
""" """
Initialize the model building the initial data Initialize the model building the initial data
""" """
cput = time.clock()
gtk.GenericTreeModel.__init__(self) gtk.GenericTreeModel.__init__(self)
self.db = db self.db = db
@ -291,6 +292,8 @@ class PeopleModel(gtk.GenericTreeModel):
data_filter = None data_filter = None
self.current_filter = data_filter self.current_filter = data_filter
self.rebuild_data(data_filter, skip) self.rebuild_data(data_filter, skip)
_LOG.debug(self.__class__.__name__ + ' __init__ ' +
str(time.clock() - cput) + ' sec')
def update_todo(self,client,cnxn_id,entry,data): def update_todo(self,client,cnxn_id,entry,data):
self.todo_color = Config.get(Config.TODO_COLOR) self.todo_color = Config.get(Config.TODO_COLOR)
@ -305,9 +308,12 @@ class PeopleModel(gtk.GenericTreeModel):
""" """
Convience function that calculates the new data and assigns it. Convience function that calculates the new data and assigns it.
""" """
cput = time.clock()
self.calculate_data(data_filter, skip) self.calculate_data(data_filter, skip)
self.assign_data() self.assign_data()
self.current_filter = data_filter self.current_filter = data_filter
_LOG.debug(self.__class__.__name__ + ' rebuild_data ' +
str(time.clock() - cput) + ' sec')
def _build_search_sub(self,dfilter, skip): def _build_search_sub(self,dfilter, skip):