bb5fc7cb7c
This does patch updates Gramps to the 3.2 syntax, it does not yet mean Gramps works with python 3.2 Expect next day commits to fix further issues, but this is the main 2to3 tool created patch changed where needed to have python 2.7 work. Specific issues might be: 1. next has been changed, must be checked 2. new division as on the wiki page listed is to do 3. ... svn: r20634
158 lines
5.4 KiB
Python
158 lines
5.4 KiB
Python
#
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
#
|
|
# Copyright (C) 2000-2006 Donald N. Allingham
|
|
# Copyright (C) 2010 Michiel D. Nauta
|
|
#
|
|
# 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$
|
|
|
|
"""
|
|
AddressBase class for GRAMPS.
|
|
"""
|
|
|
|
#-------------------------------------------------------------------------
|
|
#
|
|
# GRAMPS modules
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
from .address import Address
|
|
from .const import IDENTICAL, EQUAL
|
|
|
|
#-------------------------------------------------------------------------
|
|
#
|
|
# AddressBase classes
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
class AddressBase(object):
|
|
"""
|
|
Base class for address-aware objects.
|
|
"""
|
|
|
|
def __init__(self, source=None):
|
|
"""
|
|
Initialize a AddressBase.
|
|
|
|
If the source is not None, then object is initialized from values of
|
|
the source object.
|
|
|
|
:param source: Object used to initialize the new object
|
|
:type source: AddressBase
|
|
"""
|
|
self.address_list = list(map(Address, source.address_list)) if source else []
|
|
|
|
def serialize(self):
|
|
"""
|
|
Convert the object to a serialized tuple of data.
|
|
"""
|
|
return [addr.serialize() for addr in self.address_list]
|
|
|
|
def to_struct(self):
|
|
"""
|
|
Convert the data held in this object to a structure (eg,
|
|
struct) that represents all the data elements.
|
|
|
|
This method is used to recursively convert the object into a
|
|
self-documenting form that can easily be used for various
|
|
purposes, including diffs and queries.
|
|
|
|
These structures may be primitive Python types (string,
|
|
integer, boolean, etc.) or complex Python types (lists,
|
|
tuples, or dicts). If the return type is a dict, then the keys
|
|
of the dict match the fieldname of the object. If the return
|
|
struct (or value of a dict key) is a list, then it is a list
|
|
of structs. Otherwise, the struct is just the value of the
|
|
attribute.
|
|
|
|
:returns: Returns a struct containing the data of the object.
|
|
:rtype: list
|
|
"""
|
|
return [addr.to_struct() for addr in self.address_list]
|
|
|
|
def unserialize(self, data):
|
|
"""
|
|
Convert a serialized tuple of data to an object.
|
|
"""
|
|
self.address_list = [Address().unserialize(item) for item in data]
|
|
|
|
def add_address(self, address):
|
|
"""
|
|
Add the :class:`~gen.lib.address.Address` instance to the object's list of addresses.
|
|
|
|
:param address: :class:`~gen.lib.address.Address` instance to add to the object's address list
|
|
:type address: list
|
|
"""
|
|
self.address_list.append(address)
|
|
|
|
def remove_address(self, address):
|
|
"""
|
|
Remove the specified :class:`~gen.lib.address.Address` instance from the address list.
|
|
|
|
If the instance does not exist in the list, the operation has
|
|
no effect.
|
|
|
|
:param address: :class:`~gen.lib.address.Address` instance to remove from the list
|
|
:type address: :class:`~gen.lib.address.Address`
|
|
|
|
:returns: True if the address was removed, False if it was not in the list.
|
|
:rtype: bool
|
|
"""
|
|
if address in self.address_list:
|
|
self.address_list.remove(address)
|
|
return True
|
|
else:
|
|
return False
|
|
|
|
def get_address_list(self):
|
|
"""
|
|
Return the list of :class:`~gen.lib.address.Address` instances associated with the object.
|
|
|
|
:returns: Returns the list of :class:`~gen.lib.address.Address` instances
|
|
:rtype: list
|
|
"""
|
|
return self.address_list
|
|
|
|
def set_address_list(self, address_list):
|
|
"""
|
|
Assign the passed list to the object's list of :class:`~gen.lib.address.Address` instances.
|
|
|
|
:param address_list: List of :class:`~gen.lib.address.Address` instances to be associated
|
|
with the object
|
|
:type address_list: list
|
|
"""
|
|
self.address_list = address_list
|
|
|
|
def _merge_address_list(self, acquisition):
|
|
"""
|
|
Merge the list of addresses from acquisition with our own.
|
|
|
|
:param acquisition: the address list of this object will be merged with
|
|
the current address list.
|
|
:rtype acquisition: AddressBase
|
|
"""
|
|
address_list = self.address_list[:]
|
|
for addendum in acquisition.get_address_list():
|
|
for address in address_list:
|
|
equi = address.is_equivalent(addendum)
|
|
if equi == IDENTICAL:
|
|
break
|
|
elif equi == EQUAL:
|
|
address.merge(addendum)
|
|
break
|
|
else:
|
|
self.address_list.append(addendum)
|