/usr/lib/python2.7/dist-packages/pyexiv2/xmp.py is in python-pyexiv2 0.3.2-5ubuntu4build6.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 | # -*- coding: utf-8 -*-
# ******************************************************************************
#
# Copyright (C) 2006-2011 Olivier Tilloy <olivier@tilloy.net>
#
# This file is part of the pyexiv2 distribution.
#
# pyexiv2 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.
#
# pyexiv2 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 pyexiv2; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, 5th Floor, Boston, MA 02110-1301 USA.
#
# Author: Olivier Tilloy <olivier@tilloy.net>
#
# ******************************************************************************
"""
XMP specific code.
"""
import libexiv2python
from pyexiv2.utils import FixedOffset, is_fraction, make_fraction, \
GPSCoordinate, DateTimeFormatter
import datetime
import re
class XmpValueError(ValueError):
"""
Exception raised when failing to parse the *value* of an XMP tag.
:attribute value: the value that fails to be parsed
:type value: string
:attribute type: the XMP type of the tag
:type type: string
"""
def __init__(self, value, type):
self.value = value
self.type = type
def __str__(self):
return 'Invalid value for XMP type [%s]: [%s]' % \
(self.type, self.value)
class XmpTag(object):
"""
An XMP tag.
Here is a correspondance table between the XMP types and the possible
python types the value of a tag may take:
- alt, bag, seq: list of the contained simple type
- lang alt: dict of (language-code: value)
- Boolean: boolean
- Colorant: *[not implemented yet]*
- Date: :class:`datetime.date`, :class:`datetime.datetime`
- Dimensions: *[not implemented yet]*
- Font: *[not implemented yet]*
- GPSCoordinate: :class:`pyexiv2.utils.GPSCoordinate`
- Integer: int
- Locale: *[not implemented yet]*
- MIMEType: 2-tuple of strings
- Rational: :class:`fractions.Fraction` if available (Python ≥ 2.6) or
:class:`pyexiv2.utils.Rational`
- Real: *[not implemented yet]*
- AgentName, ProperName, Text: unicode string
- Thumbnail: *[not implemented yet]*
- URI, URL: string
- XPath: *[not implemented yet]*
"""
# FIXME: should inherit from ListenerInterface and implement observation of
# changes on list/dict values.
# strptime is not flexible enough to handle all valid Date formats, we use a
# custom regular expression
_time_zone_re = r'Z|((?P<sign>\+|-)(?P<ohours>\d{2}):(?P<ominutes>\d{2}))'
_time_re = r'(?P<hours>\d{2})(:(?P<minutes>\d{2})(:(?P<seconds>\d{2})(.(?P<decimal>\d+))?)?(?P<tzd>%s))?' % _time_zone_re
_date_re = re.compile(r'(?P<year>\d{4})(-(?P<month>\d{2})(-(?P<day>\d{2})(T(?P<time>%s))?)?)?' % _time_re)
def __init__(self, key, value=None, _tag=None):
"""
The tag can be initialized with an optional value which expected type
depends on the XMP type of the tag.
:param key: the key of the tag
:type key: string
:param value: the value of the tag
"""
super(XmpTag, self).__init__()
if _tag is not None:
self._tag = _tag
else:
self._tag = libexiv2python._XmpTag(key)
self._raw_value = None
self._value = None
self._value_cookie = False
if value is not None:
self._set_value(value)
def _set_owner(self, metadata):
self._tag._setParentImage(metadata._image)
@staticmethod
def _from_existing_tag(_tag):
# Build a tag from an already existing libexiv2python._XmpTag
tag = XmpTag(_tag._getKey(), _tag=_tag)
type = _tag._getExiv2Type()
# Do not set the raw_value property, as it would call
# _tag._set{Text,Array,LangAlt}Value
# (see https://bugs.launchpad.net/pyexiv2/+bug/582445).
if type == 'XmpText':
tag._raw_value = _tag._getTextValue()
elif type in ('XmpAlt', 'XmpBag', 'XmpSeq'):
tag._raw_value = _tag._getArrayValue()
elif type == 'LangAlt':
tag._raw_value = _tag._getLangAltValue()
tag._value_cookie = True
return tag
@property
def key(self):
"""The key of the tag in the dotted form
``familyName.groupName.tagName`` where ``familyName`` = ``xmp``."""
return self._tag._getKey()
@property
def type(self):
"""The XMP type of the tag."""
return self._tag._getType()
@property
def name(self):
"""The name of the tag (this is also the third part of the key)."""
return self._tag._getName()
@property
def title(self):
"""The title (label) of the tag."""
return self._tag._getTitle()
@property
def description(self):
"""The description of the tag."""
return self._tag._getDescription()
def _get_raw_value(self):
return self._raw_value
def _set_raw_value(self, value):
type = self._tag._getExiv2Type()
if type == 'XmpText':
self._tag._setTextValue(value)
elif type in ('XmpAlt', 'XmpBag', 'XmpSeq'):
if not value:
raise ValueError('Empty array')
self._tag._setArrayValue(value)
elif type == 'LangAlt':
if not value:
raise ValueError('Empty LangAlt')
self._tag._setLangAltValue(value)
self._raw_value = value
self._value_cookie = True
raw_value = property(fget=_get_raw_value, fset=_set_raw_value,
doc='The raw value of the tag as a [list of] ' \
'string(s).')
def _compute_value(self):
# Lazy computation of the value from the raw value
if self.type.startswith(('seq', 'bag', 'alt')):
type = self.type[4:]
if type.lower().startswith('closed choice of'):
type = type[17:]
self._value = map(lambda x: self._convert_to_python(x, type), self._raw_value)
elif self.type == 'Lang Alt':
self._value = {}
for k, v in self._raw_value.iteritems():
try:
self._value[unicode(k, 'utf-8')] = unicode(v, 'utf-8')
except TypeError:
raise XmpValueError(self._raw_value, type)
elif self.type.lower().startswith('closed choice of'):
self._value = self._convert_to_python(self._raw_value, self.type[17:])
elif self.type == '':
self._value = self._raw_value
else:
self._value = self._convert_to_python(self._raw_value, self.type)
self._value_cookie = False
def _get_value(self):
if self._value_cookie:
self._compute_value()
return self._value
def _set_value(self, value):
type = self._tag._getExiv2Type()
if type == 'XmpText':
stype = self.type
if stype.lower().startswith('closed choice of'):
stype = stype[17:]
self.raw_value = self._convert_to_string(value, stype)
elif type in ('XmpAlt', 'XmpBag', 'XmpSeq'):
if not isinstance(value, (list, tuple)):
raise TypeError('Expecting a list of values')
stype = self.type[4:]
if stype.lower().startswith('closed choice of'):
stype = stype[17:]
self.raw_value = map(lambda x: self._convert_to_string(x, stype), value)
elif type == 'LangAlt':
if isinstance(value, basestring):
value = {'x-default': value}
if not isinstance(value, dict):
raise TypeError('Expecting a dictionary mapping language codes to values')
raw_value = {}
for k, v in value.iteritems():
try:
raw_value[k.encode('utf-8')] = v.encode('utf-8')
except TypeError:
raise XmpValueError(value, type)
self.raw_value = raw_value
self._value = value
self._value_cookie = False
value = property(fget=_get_value, fset=_set_value,
doc='The value of the tag as a [list of] python ' \
'object(s).')
def _convert_to_python(self, value, type):
"""
Convert a raw value to its corresponding python type.
:param value: the raw value to be converted
:type value: string
:param type: the simple type of the raw value
:type type: string
:return: the value converted to its corresponding python type
:raise XmpValueError: if the conversion fails
"""
if type == 'Boolean':
if value == 'True':
return True
elif value == 'False':
return False
else:
raise XmpValueError(value, type)
elif type == 'Colorant':
# TODO
raise NotImplementedError('XMP conversion for type [%s]' % type)
elif type == 'Date':
match = self._date_re.match(value)
if match is None:
raise XmpValueError(value, type)
gd = match.groupdict()
if gd['month'] is not None:
month = int(gd['month'])
else:
month = 1
if gd['day'] is not None:
day = int(gd['day'])
else:
day = 1
if gd['time'] is None:
try:
return datetime.date(int(gd['year']), month, day)
except ValueError:
raise XmpValueError(value, type)
else:
if gd['minutes'] is None:
# Malformed time
raise XmpValueError(value, type)
if gd['seconds'] is not None:
seconds = int(gd['seconds'])
else:
seconds = 0
if gd['decimal'] is not None:
microseconds = int(float('0.%s' % gd['decimal']) * 1E6)
else:
microseconds = 0
if gd['tzd'] == 'Z':
tzinfo = FixedOffset()
else:
tzinfo = FixedOffset(gd['sign'], int(gd['ohours']),
int(gd['ominutes']))
try:
return datetime.datetime(int(gd['year']), month, day,
int(gd['hours']), int(gd['minutes']),
seconds, microseconds, tzinfo)
except ValueError:
raise XmpValueError(value, type)
elif type == 'Dimensions':
# TODO
raise NotImplementedError('XMP conversion for type [%s]' % type)
elif type == 'Font':
# TODO
raise NotImplementedError('XMP conversion for type [%s]' % type)
elif type == 'GPSCoordinate':
try:
return GPSCoordinate.from_string(value)
except ValueError:
raise XmpValueError(value, type)
elif type == 'Integer':
try:
return int(value)
except ValueError:
raise XmpValueError(value, type)
elif type == 'Locale':
# TODO
# See RFC 3066
raise NotImplementedError('XMP conversion for type [%s]' % type)
elif type == 'MIMEType':
if value.count('/') != 1:
raise XmpValueError(value, type)
try:
return tuple(value.split('/', 1))
except ValueError:
raise XmpValueError(value, type)
elif type == 'Rational':
try:
return make_fraction(value)
except (ValueError, ZeroDivisionError):
raise XmpValueError(value, type)
elif type == 'Real':
# TODO
raise NotImplementedError('XMP conversion for type [%s]' % type)
elif type in ('AgentName', 'ProperName', 'Text'):
try:
return unicode(value, 'utf-8')
except TypeError:
raise XmpValueError(value, type)
elif type == 'Thumbnail':
# TODO
raise NotImplementedError('XMP conversion for type [%s]' % type)
elif type in ('URI', 'URL'):
return value
elif type == 'XPath':
# TODO
raise NotImplementedError('XMP conversion for type [%s]' % type)
raise NotImplementedError('XMP conversion for type [%s]' % type)
def _convert_to_string(self, value, type):
"""
Convert a value to its corresponding string representation, suitable to
pass to libexiv2.
:param value: the value to be converted
:param type: the simple type of the value
:type type: string
:return: the value converted to its corresponding string representation
:rtype: string
:raise XmpValueError: if the conversion fails
"""
if type == 'Boolean':
if isinstance(value, bool):
return str(value)
else:
raise XmpValueError(value, type)
elif type == 'Date':
if isinstance(value, (datetime.date, datetime.datetime)):
return DateTimeFormatter.xmp(value)
else:
raise XmpValueError(value, type)
elif type == 'GPSCoordinate':
if isinstance(value, GPSCoordinate):
return str(value)
else:
raise XmpValueError(value, type)
elif type == 'Integer':
if isinstance(value, (int, long)):
return str(value)
else:
raise XmpValueError(value, type)
elif type == 'MIMEType':
if isinstance(value, tuple) and len(value) == 2:
return '/'.join(value)
else:
raise XmpValueError(value, type)
elif type in ('AgentName', 'ProperName', 'Text', 'URI', 'URL'):
if isinstance(value, unicode):
try:
return value.encode('utf-8')
except UnicodeEncodeError:
raise XmpValueError(value, type)
elif isinstance(value, str):
return value
else:
raise XmpValueError(value, type)
elif type == 'Rational':
if is_fraction(value):
return str(value)
else:
raise XmpValueError(value, type)
elif type == '':
# Unknown type, assume string
if isinstance(value, unicode):
try:
return value.encode('utf-8')
except UnicodeEncodeError:
raise XmpValueError(value, type)
elif isinstance(value, str):
return value
else:
raise XmpValueError(value, type)
raise NotImplementedError('XMP conversion for type [%s]' % type)
def __str__(self):
"""
:return: a string representation of the XMP tag for debugging purposes
:rtype: string
"""
left = '%s [%s]' % (self.key, self.type)
if self._raw_value is None:
right = '(No value)'
else:
right = self._raw_value
return '<%s = %s>' % (left, right)
# Support for pickling.
def __getstate__(self):
return (self.key, self.raw_value)
def __setstate__(self, state):
key, raw_value = state
self._tag = libexiv2python._XmpTag(key)
self.raw_value = raw_value
def register_namespace(name, prefix):
"""
Register a custom XMP namespace.
Overriding the prefix of a known or previously registered namespace is not
allowed.
:param name: the name of the custom namespace (ending with a ``/``),
typically a URL (e.g. http://purl.org/dc/elements/1.1/)
:type name: string
:param prefix: the prefix for the custom namespace (keys in this namespace
will be in the form ``Xmp.{prefix}.{something}``)
:type prefix: string
:raise ValueError: if the name doesn’t end with a ``/``
:raise KeyError: if a namespace already exist with this prefix
"""
if not name.endswith('/'):
raise ValueError('Name should end with a /')
libexiv2python._registerXmpNs(name, prefix)
def unregister_namespace(name):
"""
Unregister a custom XMP namespace.
A custom namespace is identified by its name, **not** by its prefix.
Attempting to unregister an unknown namespace raises an error, as does
attempting to unregister a builtin namespace.
:param name: the name of the custom namespace (ending with a ``/``),
typically a URL (e.g. http://purl.org/dc/elements/1.1/)
:type name: string
:raise ValueError: if the name doesn’t end with a ``/``
:raise KeyError: if the namespace is unknown or a builtin namespace
"""
if not name.endswith('/'):
raise ValueError('Name should end with a /')
libexiv2python._unregisterXmpNs(name)
def unregister_namespaces():
"""
Unregister all custom XMP namespaces.
Builtin namespaces are not unregistered.
This function always succeeds.
"""
libexiv2python._unregisterAllXmpNs()
|