Source code for gramps.gen.lib.placeref

#
# Gramps - a GTK+/GNOME based genealogy program
#
# Copyright (C) 2000-2007  Donald N. Allingham
# Copyright (C) 2013,2017  Nick Hall
#
# 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#

"""
Place Reference class for Gramps
"""

#-------------------------------------------------------------------------
#
# Gramps modules
#
#-------------------------------------------------------------------------
from .secondaryobj import SecondaryObject
from .refbase import RefBase
from .datebase import DateBase
from .const import IDENTICAL, EQUAL, DIFFERENT
from ..const import GRAMPS_LOCALE as glocale
_ = glocale.translation.gettext

#-------------------------------------------------------------------------
#
# Place References
#
#-------------------------------------------------------------------------
[docs] class PlaceRef(RefBase, DateBase, SecondaryObject): """ Place reference class. This class is for keeping information about how places link to other places in the place hierarchy. """ def __init__(self, source=None): """ Create a new PlaceRef instance, copying from the source if present. """ RefBase.__init__(self, source) DateBase.__init__(self, source)
[docs] def serialize(self): """ Convert the object to a serialized tuple of data. """ return ( RefBase.serialize(self), DateBase.serialize(self) )
[docs] def unserialize(self, data): """ Convert a serialized tuple of data to an object. """ (ref, date) = data RefBase.unserialize(self, ref) DateBase.unserialize(self, date) return self
[docs] @classmethod def get_schema(cls): """ Returns the JSON Schema for this class. :returns: Returns a dict containing the schema. :rtype: dict """ from .date import Date return { "type": "object", "title": _("Place ref"), "properties": { "_class": {"enum": [cls.__name__]}, "ref": {"type": "string", "title": _("Handle"), "maxLength": 50}, "date": {"oneOf": [{"type": "null"}, Date.get_schema()], "title": _("Date")} } }
[docs] def get_text_data_list(self): """ Return the list of all textual attributes of the object. :returns: Returns the list of all textual attributes of the object. :rtype: list """ return []
[docs] def get_text_data_child_list(self): """ Return the list of child objects that may carry textual data. :returns: Returns the list of child objects that may carry textual data. :rtype: list """ return []
[docs] def get_citation_child_list(self): """ Return the list of child secondary objects that may refer citations. :returns: Returns the list of child secondary child objects that may refer citations. :rtype: list """ return []
[docs] def get_note_child_list(self): """ Return the list of child secondary objects that may refer notes. :returns: Returns the list of child secondary child objects that may refer notes. :rtype: list """ return []
[docs] def get_referenced_handles(self): """ Return the list of (classname, handle) tuples for all directly referenced primary objects. :returns: Returns the list of (classname, handle) tuples for referenced objects. :rtype: list """ return [('Place', self.ref)]
[docs] def get_handle_referents(self): """ Return the list of child objects which may, directly or through their children, reference primary objects.. :returns: Returns the list of objects referencing primary objects. :rtype: list """ return []
[docs] def is_equivalent(self, other): """ Return if this eventref is equivalent, that is agrees in handle and role, to other. :param other: The eventref to compare this one to. :type other: PlaceRef :returns: Constant indicating degree of equivalence. :rtype: int """ if self.ref != other.ref or self.date != other.date: return DIFFERENT else: if self.is_equal(other): return IDENTICAL else: return EQUAL