Initial revision

svn: r3
This commit is contained in:
Don Allingham
2001-05-13 01:56:57 +00:00
commit ae4694eed1
126 changed files with 42522 additions and 0 deletions

169
src/plugins/Check.py Normal file
View File

@ -0,0 +1,169 @@
#
# 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
#
"Database Processing/Check database integrity"
import RelLib
import utils
import soundex
import Config
import string
import os
from gtk import *
from gnome.ui import *
from libglade import *
#-------------------------------------------------------------------------
#
#
#
#-------------------------------------------------------------------------
def runTool(database,active_person,callback):
checker = CheckIntegrity(database)
checker.check_for_broken_family_links()
checker.cleanup_missing_photos()
checker.cleanup_empty_families(0)
checker.report()
#-------------------------------------------------------------------------
#
#
#
#-------------------------------------------------------------------------
class CheckIntegrity:
#-------------------------------------------------------------------------
#
#
#
#-------------------------------------------------------------------------
def __init__(self,db):
self.db = db
self.bad_family_photo = []
self.bad_person_photo = []
self.empty_family = []
self.broken_links = []
#-------------------------------------------------------------------------
#
#
#
#-------------------------------------------------------------------------
def check_for_broken_family_links(self):
self.broken_links = []
family_list = self.db.getFamilyMap().values()[:]
for family in family_list:
for child in family.getChildList():
if family == child.getMainFamily():
continue
for family_type in child.getAltFamilyList():
if family_type[0] == family:
break
else:
self.broken_links.append((child,family))
#-------------------------------------------------------------------------
#
#
#
#-------------------------------------------------------------------------
def cleanup_missing_photos(self):
for family in self.db.getFamilyMap().values():
for photo in family.getPhotoList():
if not os.path.isfile(photo.getPath()):
self.bad_family_photo.append(family,photo)
for person in self.db.getPersonMap().values():
for photo in person.getPhotoList():
if not os.path.isfile(photo.getPath()):
self.bad_person_photo.append(person,photo)
#-------------------------------------------------------------------------
#
#
#
#-------------------------------------------------------------------------
def cleanup_empty_families(self,automatic):
family_list = self.db.getFamilyMap().values()[:]
for family in family_list:
child_list = family.getChildList()[:]
num_kids = len(child_list)
father = family.getFather()
mother = family.getMother()
if num_kids == 0:
if father or mother:
continue
elif not father and not mother:
self.db.deleteFamily(family)
elif automatic:
self.db.deleteFamily(family)
else:
self.empty_family.append(family)
#-------------------------------------------------------------------------
#
#
#
#-------------------------------------------------------------------------
def report(self):
fphotos = len(self.bad_family_photo)
pphotos = len(self.bad_person_photo)
efam = len(self.empty_family)
blink = len(self.broken_links)
errors = blink + efam + pphotos + fphotos
if errors == 0:
GnomeOkDialog("No errors were found")
return
text = ""
if blink == 1:
text = text + "1 broken family link was found\n"
elif blink > 1:
text = text + "%d broken family links were found\n" % blink
if efam == 1:
text = text + "1 empty family was found\n"
elif efam > 1:
text = text + "%d empty families were found\n" % efam
if fphotos == 1:
text = text + "1 broken family photo was found\n"
elif fphotos > 1:
text = text + "%d broken family photos were found\n" % fphotos
if pphotos == 1:
text = text + "1 broken personal photo was found\n"
elif pphotos > 1:
text = text + "%d broken personal photos were found\n" % pphotos
GnomeWarningDialog(string.strip(text))
#-------------------------------------------------------------------------
#
#
#
#-------------------------------------------------------------------------
def get_description():
return "Checks the database for any relationship errors"