4f6e5a4031
svn: r1252
151 lines
5.1 KiB
Python
151 lines
5.1 KiB
Python
#
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
#
|
|
# Copyright (C) 2000 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
|
|
#
|
|
|
|
"View/Summary of the database"
|
|
|
|
#------------------------------------------------------------------------
|
|
#
|
|
# standard python modules
|
|
#
|
|
#------------------------------------------------------------------------
|
|
import os
|
|
import posixpath
|
|
|
|
#------------------------------------------------------------------------
|
|
#
|
|
# GRAMPS modules
|
|
#
|
|
#------------------------------------------------------------------------
|
|
import Utils
|
|
import RelLib
|
|
from intl import gettext as _
|
|
|
|
#------------------------------------------------------------------------
|
|
#
|
|
# GNOME/GTK modules
|
|
#
|
|
#------------------------------------------------------------------------
|
|
import gtk
|
|
import gtk.glade
|
|
from gnome.ui import *
|
|
|
|
#------------------------------------------------------------------------
|
|
#
|
|
#
|
|
#
|
|
#------------------------------------------------------------------------
|
|
def report(database,person):
|
|
|
|
base = os.path.dirname(__file__)
|
|
glade_file = base + os.sep + "summary.glade"
|
|
|
|
topDialog = gtk.glade.XML(glade_file,"summary")
|
|
topDialog.signal_autoconnect({
|
|
"destroy_passed_object" : Utils.destroy_passed_object,
|
|
})
|
|
|
|
personList = database.getPersonMap().values()
|
|
familyList = database.getFamilyMap().values()
|
|
|
|
with_photos = 0
|
|
total_photos = 0
|
|
incomp_names = 0
|
|
disconnected = 0
|
|
missing_bday = 0
|
|
males = 0
|
|
females = 0
|
|
bytes = 0
|
|
namelist = []
|
|
notfound = []
|
|
|
|
pobjects = len(database.getObjectMap().values())
|
|
for photo in database.getObjectMap().values():
|
|
try:
|
|
bytes = bytes + posixpath.getsize(photo.getPath())
|
|
except:
|
|
notfound.append(photo.getPath())
|
|
|
|
for person in personList:
|
|
length = len(person.getPhotoList())
|
|
if length > 0:
|
|
with_photos = with_photos + 1
|
|
total_photos = total_photos + length
|
|
|
|
name = person.getPrimaryName()
|
|
if name.getFirstName() == "" or name.getSurname() == "":
|
|
incomp_names = incomp_names + 1
|
|
if person.getMainParents() == None and len(person.getFamilyList()) == 0:
|
|
disconnected = disconnected + 1
|
|
if person.getBirth().getDate() == "":
|
|
missing_bday = missing_bday + 1
|
|
if person.getGender() == RelLib.Person.female:
|
|
females = females + 1
|
|
else:
|
|
males = males + 1
|
|
if name.getSurname() not in namelist:
|
|
namelist.append(name.getSurname())
|
|
|
|
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 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
|
|
|
|
top = topDialog.get_widget("summary")
|
|
textwindow = topDialog.get_widget("textwindow")
|
|
textwindow.get_buffer().set_text(text)
|
|
top.show()
|
|
|
|
#-------------------------------------------------------------------------
|
|
#
|
|
#
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
from Plugins import register_report
|
|
|
|
register_report(
|
|
report,
|
|
_("Summary of the database"),
|
|
status=(_("Beta")),
|
|
category=_("View"),
|
|
description=_("Provides a summary of the current database")
|
|
)
|
|
|