2005-12-21 02:18:18 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
2006-02-04 03:33:53 +05:30
|
|
|
# Copyright (C) 2000-2006 Donald N. Allingham
|
2010-07-22 07:46:32 +05:30
|
|
|
# Copyright (C) 2010 Michiel D. Nauta
|
2005-12-21 02:18:18 +05:30
|
|
|
#
|
|
|
|
# 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$
|
|
|
|
|
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
AddressBase class for GRAMPS.
|
2005-12-21 02:18:18 +05:30
|
|
|
"""
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# GRAMPS modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2012-11-07 23:23:14 +05:30
|
|
|
from .address import Address
|
|
|
|
from .const import IDENTICAL, EQUAL
|
2005-12-21 02:18:18 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# AddressBase classes
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2009-05-21 22:49:50 +05:30
|
|
|
class AddressBase(object):
|
2005-12-21 02:18:18 +05:30
|
|
|
"""
|
|
|
|
Base class for address-aware objects.
|
|
|
|
"""
|
|
|
|
|
2007-01-08 07:19:33 +05:30
|
|
|
def __init__(self, source=None):
|
2005-12-21 02:18:18 +05:30
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Initialize a AddressBase.
|
|
|
|
|
|
|
|
If the source is not None, then object is initialized from values of
|
|
|
|
the source object.
|
2005-12-21 02:18:18 +05:30
|
|
|
|
2009-06-25 03:26:07 +05:30
|
|
|
:param source: Object used to initialize the new object
|
|
|
|
:type source: AddressBase
|
2005-12-21 02:18:18 +05:30
|
|
|
"""
|
2012-11-07 23:23:14 +05:30
|
|
|
self.address_list = list(map(Address, source.address_list)) if source else []
|
2005-12-21 02:18:18 +05:30
|
|
|
|
2006-02-04 03:33:53 +05:30
|
|
|
def serialize(self):
|
2007-01-08 07:19:33 +05:30
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Convert the object to a serialized tuple of data.
|
2007-01-08 07:19:33 +05:30
|
|
|
"""
|
2006-02-04 03:33:53 +05:30
|
|
|
return [addr.serialize() for addr in self.address_list]
|
|
|
|
|
2012-08-14 05:15:19 +05:30
|
|
|
def to_struct(self):
|
|
|
|
"""
|
2012-08-14 18:29:19 +05:30
|
|
|
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
|
2012-08-14 05:15:19 +05:30
|
|
|
"""
|
|
|
|
return [addr.to_struct() for addr in self.address_list]
|
|
|
|
|
2007-01-08 07:19:33 +05:30
|
|
|
def unserialize(self, data):
|
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Convert a serialized tuple of data to an object.
|
2007-01-08 07:19:33 +05:30
|
|
|
"""
|
2010-02-02 19:26:15 +05:30
|
|
|
self.address_list = [Address().unserialize(item) for item in data]
|
2006-02-04 03:33:53 +05:30
|
|
|
|
2007-01-08 07:19:33 +05:30
|
|
|
def add_address(self, address):
|
2005-12-21 02:18:18 +05:30
|
|
|
"""
|
2009-06-25 03:26:07 +05:30
|
|
|
Add the :class:`~gen.lib.address.Address` instance to the object's list of addresses.
|
2005-12-21 02:18:18 +05:30
|
|
|
|
2009-06-25 03:26:07 +05:30
|
|
|
:param address: :class:`~gen.lib.address.Address` instance to add to the object's address list
|
|
|
|
:type address: list
|
2005-12-21 02:18:18 +05:30
|
|
|
"""
|
|
|
|
self.address_list.append(address)
|
|
|
|
|
2007-01-08 07:19:33 +05:30
|
|
|
def remove_address(self, address):
|
2005-12-21 02:18:18 +05:30
|
|
|
"""
|
2009-06-25 03:26:07 +05:30
|
|
|
Remove the specified :class:`~gen.lib.address.Address` instance from the address list.
|
2008-02-24 19:25:55 +05:30
|
|
|
|
2005-12-21 02:18:18 +05:30
|
|
|
If the instance does not exist in the list, the operation has
|
|
|
|
no effect.
|
|
|
|
|
2009-06-25 03:26:07 +05:30
|
|
|
:param address: :class:`~gen.lib.address.Address` instance to remove from the list
|
|
|
|
:type address: :class:`~gen.lib.address.Address`
|
2005-12-21 02:18:18 +05:30
|
|
|
|
2009-06-25 03:26:07 +05:30
|
|
|
:returns: True if the address was removed, False if it was not in the list.
|
|
|
|
:rtype: bool
|
2005-12-21 02:18:18 +05:30
|
|
|
"""
|
|
|
|
if address in self.address_list:
|
|
|
|
self.address_list.remove(address)
|
|
|
|
return True
|
|
|
|
else:
|
|
|
|
return False
|
|
|
|
|
|
|
|
def get_address_list(self):
|
|
|
|
"""
|
2009-06-25 03:26:07 +05:30
|
|
|
Return the list of :class:`~gen.lib.address.Address` instances associated with the object.
|
2005-12-21 02:18:18 +05:30
|
|
|
|
2009-06-25 03:26:07 +05:30
|
|
|
:returns: Returns the list of :class:`~gen.lib.address.Address` instances
|
|
|
|
:rtype: list
|
2005-12-21 02:18:18 +05:30
|
|
|
"""
|
|
|
|
return self.address_list
|
|
|
|
|
2007-01-08 07:19:33 +05:30
|
|
|
def set_address_list(self, address_list):
|
2005-12-21 02:18:18 +05:30
|
|
|
"""
|
2009-06-25 03:26:07 +05:30
|
|
|
Assign the passed list to the object's list of :class:`~gen.lib.address.Address` instances.
|
2008-02-24 19:25:55 +05:30
|
|
|
|
2009-06-25 03:26:07 +05:30
|
|
|
:param address_list: List of :class:`~gen.lib.address.Address` instances to be associated
|
2005-12-21 02:18:18 +05:30
|
|
|
with the object
|
2009-06-25 03:26:07 +05:30
|
|
|
:type address_list: list
|
2005-12-21 02:18:18 +05:30
|
|
|
"""
|
|
|
|
self.address_list = address_list
|
2010-07-22 07:46:32 +05:30
|
|
|
|
|
|
|
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)
|