Source code for gramps.gen.lib.mediaobj

#
# Gramps - a GTK+/GNOME based genealogy program
#
# Copyright (C) 2000-2007  Donald N. Allingham
# Copyright (C) 2010       Michiel D. Nauta
# Copyright (C) 2010       Nick Hall
# Copyright (C) 2011       Tim G L Lyons
#
# 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.
#

"""
Media object for Gramps.
"""

#-------------------------------------------------------------------------
#
# standard python modules
#
#-------------------------------------------------------------------------
import os
import sys
if sys.version_info[0] < 3:
    from urlparse import urlparse
else:
    from urllib.parse import urlparse
import logging
LOG = logging.getLogger(".citation")

#-------------------------------------------------------------------------
#
# GRAMPS modules
#
#-------------------------------------------------------------------------
from .primaryobj import PrimaryObject
from .citationbase import CitationBase
from .notebase import NoteBase
from .datebase import DateBase
from .attrbase import AttributeBase
from .tagbase import TagBase
from .handle import Handle

#-------------------------------------------------------------------------
#
# MediaObject class
#
#-------------------------------------------------------------------------
[docs]class MediaObject(CitationBase, NoteBase, DateBase, AttributeBase, PrimaryObject): """ Container for information about an image file, including location, description and privacy. """ def __init__(self, source=None): """ Initialize a MediaObject. If 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: MediaObject """ PrimaryObject.__init__(self, source) CitationBase.__init__(self, source) NoteBase.__init__(self, source) DateBase.__init__(self, source) AttributeBase.__init__(self, source) if source: self.path = source.path self.mime = source.mime self.desc = source.desc self.checksum = source.checksum self.thumb = source.thumb else: self.path = "" self.mime = "" self.desc = "" self.checksum = "" self.thumb = None
[docs] def serialize(self, no_text_date = False): """ Convert the data held in the event to a Python tuple that represents all the data elements. This method is used to convert the object into a form that can easily be saved to a database. These elements may be primitive Python types (string, integers), complex Python types (lists or tuples, or Python objects. If the target database cannot handle complex types (such as objects or lists), the database is responsible for converting the data into a form that it can use. :returns: Returns a python tuple containing the data that should be considered persistent. :rtype: tuple """ return (self.handle, self.gramps_id, self.path, self.mime, self.desc, self.checksum, AttributeBase.serialize(self), CitationBase.serialize(self), NoteBase.serialize(self), self.change, DateBase.serialize(self, no_text_date), TagBase.serialize(self), self.private)
[docs] 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: dict """ return {"_class": "MediaObject", "handle": Handle("Media", self.handle), "gramps_id": self.gramps_id, "path": self.path, "mime": self.mime, "desc": self.desc, "checksum": self.checksum, "attribute_list": AttributeBase.to_struct(self), "citation_list": CitationBase.to_struct(self), "note_list": NoteBase.to_struct(self), "change": self.change, "date": DateBase.to_struct(self), "tag_list": TagBase.to_struct(self), "private": self.private}
@classmethod
[docs] def from_struct(cls, struct): """ Given a struct data representation, return a serialized object. :returns: Returns a serialized object """ default = MediaObject() return (Handle.from_struct(struct.get("handle", default.handle)), struct.get("gramps_id", default.gramps_id), struct.get("path", default.path), struct.get("mime", default.mime), struct.get("desc", default.desc), struct.get("checksum", default.checksum), AttributeBase.from_struct(struct.get("attribute_list", default.attribute_list)), CitationBase.from_struct(struct.get("citation_list", default.citation_list)), NoteBase.from_struct(struct.get("note_list", default.note_list)), struct.get("change", default.change), DateBase.from_struct(struct.get("date", {})), TagBase.from_struct(struct.get("tag_list", default.tag_list)), struct.get("private", default.private))
[docs] def unserialize(self, data): """ Convert the data held in a tuple created by the serialize method back into the data in a MediaObject structure. :param data: tuple containing the persistent data associated the object :type data: tuple """ (self.handle, self.gramps_id, self.path, self.mime, self.desc, self.checksum, attribute_list, citation_list, note_list, self.change, date, tag_list, self.private) = data AttributeBase.unserialize(self, attribute_list) CitationBase.unserialize(self, citation_list) NoteBase.unserialize(self, note_list) DateBase.unserialize(self, date) TagBase.unserialize(self, tag_list) return self
[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 [self.path, self.mime, self.desc, self.gramps_id]
[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 self.attribute_list
[docs] def get_citation_child_list(self): """ Return the list of child secondary objects that may refer to citations. :returns: Returns the list of child secondary child objects that may refer to citations. :rtype: list """ return self.attribute_list
[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 self.attribute_list
[docs] def get_referenced_handles(self): """ Return the list of (classname, handle) tuples for all directly referenced primary objects. :returns: List of (classname, handle) tuples for referenced objects. :rtype: list """ return self.get_referenced_note_handles() + \ self.get_referenced_tag_handles() + \ self.get_referenced_citation_handles()
[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 self.get_citation_child_list()
[docs] def merge(self, acquisition): """ Merge the content of acquisition into this media object. Lost: handle, id, file, date of acquisition. :param acquisition: The media object to merge with the present object. :type acquisition: MediaObject """ self._merge_privacy(acquisition) self._merge_attribute_list(acquisition) self._merge_note_list(acquisition) self._merge_citation_list(acquisition) self._merge_tag_list(acquisition)
[docs] def set_mime_type(self, mime_type): """ Set the MIME type associated with the MediaObject. :param mime_type: MIME type to be assigned to the object :type mime_type: str """ self.mime = mime_type
[docs] def get_mime_type(self): """ Return the MIME type associated with the MediaObject. :returns: Returns the associated MIME type :rtype: str """ return self.mime
[docs] def set_path(self, path): """Set the file path to the passed path.""" res = urlparse(path) if res.scheme == '' or res.scheme == 'file': self.path = os.path.normpath(path) else: # The principal case this path caters for is where the scheme is # 'http' or 'https'. It would be possible to do some more extensive # checking or processing, but for now we just store the reference self.path = path
[docs] def get_path(self): """Return the file path.""" return self.path
[docs] def set_description(self, text): """Set the description of the image.""" self.desc = text
[docs] def get_description(self): """Return the description of the image.""" return self.desc
[docs] def set_checksum(self, text): """Set the checksum of the image.""" self.checksum = text
[docs] def get_checksum(self): """Return the checksum of the image.""" return self.checksum