d58641415d
* various: gen.lib integration. probably touches almost every file * various: gen.utils integration svn: r9101
188 lines
6.7 KiB
Python
188 lines
6.7 KiB
Python
#
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
#
|
|
# Copyright (C) 2000-2006 Donald N. Allingham
|
|
#
|
|
# 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
|
|
#
|
|
|
|
# $Id$
|
|
|
|
"View/Summary of the database"
|
|
|
|
#------------------------------------------------------------------------
|
|
#
|
|
# standard python modules
|
|
#
|
|
#------------------------------------------------------------------------
|
|
import os
|
|
import posixpath
|
|
from gettext import gettext as _
|
|
|
|
#------------------------------------------------------------------------
|
|
#
|
|
# GNOME/GTK modules
|
|
#
|
|
#------------------------------------------------------------------------
|
|
import gtk.glade
|
|
|
|
#------------------------------------------------------------------------
|
|
#
|
|
# GRAMPS modules
|
|
#
|
|
#------------------------------------------------------------------------
|
|
import gen.lib
|
|
from PluginUtils import register_report
|
|
from ReportBase import CATEGORY_VIEW, MODE_GUI
|
|
import DateHandler
|
|
import ManagedWindow
|
|
|
|
#------------------------------------------------------------------------
|
|
#
|
|
# Build the text of the report
|
|
#
|
|
#------------------------------------------------------------------------
|
|
def build_report(database,person):
|
|
|
|
personList = database.get_person_handles(sort_handles=False)
|
|
familyList = database.get_family_handles()
|
|
|
|
with_photos = 0
|
|
total_photos = 0
|
|
incomp_names = 0
|
|
disconnected = 0
|
|
missing_bday = 0
|
|
males = 0
|
|
females = 0
|
|
unknowns = 0
|
|
bytes = 0
|
|
namelist = []
|
|
notfound = []
|
|
|
|
pobjects = len(database.get_media_object_handles())
|
|
for photo_id in database.get_media_object_handles():
|
|
photo = database.get_object_from_handle(photo_id)
|
|
try:
|
|
bytes = bytes + posixpath.getsize(photo.get_path())
|
|
except:
|
|
notfound.append(photo.get_path())
|
|
|
|
for person_handle in personList:
|
|
person = database.get_person_from_handle(person_handle)
|
|
if not person:
|
|
continue
|
|
length = len(person.get_media_list())
|
|
if length > 0:
|
|
with_photos = with_photos + 1
|
|
total_photos = total_photos + length
|
|
|
|
person = database.get_person_from_handle(person_handle)
|
|
name = person.get_primary_name()
|
|
if name.get_first_name() == "" or name.get_surname() == "":
|
|
incomp_names = incomp_names + 1
|
|
if (not person.get_main_parents_family_handle()) and (not len(person.get_family_handle_list())):
|
|
disconnected = disconnected + 1
|
|
birth_ref = person.get_birth_ref()
|
|
if birth_ref:
|
|
birth = database.get_event_from_handle(birth_ref.ref)
|
|
if not DateHandler.get_date(birth):
|
|
missing_bday = missing_bday + 1
|
|
else:
|
|
missing_bday = missing_bday + 1
|
|
if person.get_gender() == gen.lib.Person.FEMALE:
|
|
females = females + 1
|
|
elif person.get_gender() == gen.lib.Person.MALE:
|
|
males = males + 1
|
|
else:
|
|
unknowns += 1
|
|
if name.get_surname() not in namelist:
|
|
namelist.append(name.get_surname())
|
|
|
|
text = _("Individuals") + "\n"
|
|
text = text + "----------------------------\n"
|
|
text = text + "%s: %d\n" % (_("Number of individuals"),len(personList))
|
|
text = text + "%s: %d\n" % (_("Males"),males)
|
|
text = text + "%s: %d\n" % (_("Females"),females)
|
|
text = text + "%s: %d\n" % (_("Individuals with unknown gender"),unknowns)
|
|
text = text + "%s: %d\n" % (_("Individuals with incomplete names"),incomp_names)
|
|
text = text + "%s: %d\n" % (_("Individuals missing birth dates"),missing_bday)
|
|
text = text + "%s: %d\n" % (_("Disconnected individuals"),disconnected)
|
|
text = text + "\n%s\n" % _("Family Information")
|
|
text = text + "----------------------------\n"
|
|
text = text + "%s: %d\n" % (_("Number of families"),len(familyList))
|
|
text = text + "%s: %d\n" % (_("Unique surnames"),len(namelist))
|
|
text = text + "\n%s\n" % _("Media Objects")
|
|
text = text + "----------------------------\n"
|
|
text = text + "%s: %d\n" % (_("Individuals with media objects"),with_photos)
|
|
text = text + "%s: %d\n" % (_("Total number of media object references"),total_photos)
|
|
text = text + "%s: %d\n" % (_("Number of unique media objects"),pobjects)
|
|
text = text + "%s: %d %s\n" % (_("Total size of media objects"),bytes,\
|
|
_("bytes"))
|
|
|
|
if len(notfound) > 0:
|
|
text = text + "\n%s\n" % _("Missing Media Objects")
|
|
text = text + "----------------------------\n"
|
|
for p in notfound:
|
|
text = text + "%s\n" % p
|
|
|
|
return text
|
|
|
|
#------------------------------------------------------------------------
|
|
#
|
|
# Output report in a window
|
|
#
|
|
#------------------------------------------------------------------------
|
|
class SummaryReport(ManagedWindow.ManagedWindow):
|
|
def __init__(self,dbstate,uistate,person):
|
|
self.title = _('Database summary')
|
|
ManagedWindow.ManagedWindow.__init__(self,uistate,[],self.__class__)
|
|
|
|
database = dbstate.db
|
|
text = build_report(database,person)
|
|
|
|
base = os.path.dirname(__file__)
|
|
glade_file = "%s/summary.glade" % base
|
|
|
|
topDialog = gtk.glade.XML(glade_file,"summary","gramps")
|
|
topDialog.signal_autoconnect({
|
|
"destroy_passed_object" : self.close,
|
|
})
|
|
|
|
window = topDialog.get_widget("summary")
|
|
self.set_window(window,topDialog.get_widget('title'),self.title)
|
|
textwindow = topDialog.get_widget("textwindow")
|
|
textwindow.get_buffer().set_text(text)
|
|
self.show()
|
|
|
|
def build_menu_names(self,obj):
|
|
return (self.title,None)
|
|
|
|
#-------------------------------------------------------------------------
|
|
#
|
|
#
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
register_report(
|
|
name = 'summary',
|
|
category = CATEGORY_VIEW,
|
|
report_class = SummaryReport,
|
|
options_class = None,
|
|
modes = MODE_GUI,
|
|
translated_name = _("Summary of the database"),
|
|
status = _("Beta"),
|
|
description= _("Provides a summary of the current database"),
|
|
require_active=False,
|
|
)
|