This file is indexed.

/usr/lib/python3/dist-packages/libxmp/files.py is in python3-libxmp 2.0.1~git20140309.5437b0a-1.

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
# -*- coding: utf-8 -*-
#
# Copyright (c) 2008-2009, European Space Agency & European Southern
# Observatory (ESA/ESO)
# Copyright (c) 2008-2009, CRS4 - Centre for Advanced Studies, Research and
# Development in Sardinia
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
#     * Redistributions of source code must retain the above copyright
#       notice, this list of conditions and the following disclaimer.
#
#     * Redistributions in binary form must reproduce the above copyright
#       notice, this list of conditions and the following disclaimer in the
#       documentation and/or other materials provided with the distribution.
#
#     * Neither the name of the European Space Agency, European Southern
#       Observatory, CRS4 nor the names of its contributors may be used to
#       endorse or promote products derived from this software without specific
#       prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY ESA/ESO AND CRS4 ``AS IS'' AND ANY EXPRESS OR
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
# EVENT SHALL ESA/ESO BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
# WHETHER # IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE

"""
The Files module provides support for locating the XMP in a file, adding XMP to
a file, or updating the XMP in a file. It returns the entire XMP packet, the
core pacakage can then be used to manipulate the individual XMP properties.
:class:`XMPFiles` contains a number of "smart" file handlers that know how to
efficiently access the XMP in specific file formats. It also includes a
fallback packet scanner that can be used for unknown file formats.
"""

from . import XMPError, XMPMeta
from .consts import options_mask
from .consts import XMP_CLOSE_NOOPTION
from .consts import XMP_OPEN_OPTIONS
from .consts import XMP_OPEN_NOOPTION
from . import exempi as _cexempi

__all__ = ['XMPFiles']

class XMPFiles(object):
    """API for access to the "main" metadata in a file.

    XMPFiles provides the API for the Exempi's File Handler component.  This
    provides convenient access to the main, or document level, XMP for a file.
    The general model is to open a file, read and write the metadata, then
    close the file. While open, portions of the file might be maintained in RAM
    data structures. Memory usage can vary considerably depending on file
    format and access options. The file may be opened for read-only or
    read-write access, with typical exclusion for both modes.

    Errors result in raising of an :exc:`libxmp.XMPError` exception.

    :keyword file_path:     Path to file to open.

    .. todo::
        Documentation
    """
    def __init__(self, **kwargs ):
        self._file_path = None
        self.xmpfileptr = _cexempi.files_new()

        if 'file_path' in kwargs:
            file_path = kwargs['file_path']
            del kwargs['file_path']

            self.open_file( file_path, **kwargs )


    def __repr__(self):
        msg = "XMPFiles("
        if self._file_path is None:
            msg += ")"
        else:
            msg += "file_path='{0}')"
            msg = msg.format(self._file_path)
        return msg
    def __del__(self):
        """
        Free up the memory associated with the XMP file instance.
        """
        _cexempi.files_free( self.xmpfileptr )


    def open_file(self, file_path, **kwargs ):
        """
        Open a given file and read XMP from file. File must be closed again with
        :func:`close_file`

        :param str file_path: Path to file to open.
        :raises XMPError: in case of errors.

        .. todo::
            Change signature into using kwargs to set option flag
        """
        if kwargs:
            open_flags = options_mask( XMP_OPEN_OPTIONS, **kwargs )
        else:
            open_flags = XMP_OPEN_NOOPTION

        if self._file_path != None:
            raise XMPError('A file is already open - close it first.')

        _cexempi.files_open( self.xmpfileptr, file_path, open_flags )
        self._file_path = file_path

    def close_file( self, close_flags=XMP_CLOSE_NOOPTION):
        """
        Close file after use. XMP will not be written to file until
        this method has been called.

        :param close_flags: One of the close flags
        :raises XMPError: in case of errors.

        .. todo::
            Change signature into using kwargs to set option flag
        """
        _cexempi.files_close( self.xmpfileptr, close_flags )
        self._file_path = None

    def get_xmp( self ):
        """
        Get XMP from file.

        :return: A new :class:`libxmp.core.XMPMeta` instance.
        :raises XMPError: in case of errors.
        """
        xmpptr = _cexempi.files_get_new_xmp(self.xmpfileptr)

        if xmpptr:
            return XMPMeta( _xmp_internal_ref = xmpptr )
        else:
            return None

    def put_xmp( self, xmp_obj ):
        """
        Write XMPMeta object to file. See also :func:`can_put_xmp`.

        :param xmp_obj: An :class:`libxmp.core.XMPMeta` object
        """
        xmpptr = xmp_obj.xmpptr
        _cexempi.files_put_xmp( self.xmpfileptr, xmpptr )

    def can_put_xmp( self, xmp_obj ):
        """Determine if XMP can be written into the file.

        Determines if a given :class:`libxmp.core.XMPMeta` object can be
        written into the file.

        :param xmp_obj: An :class:`libxmp.core.XMPMeta` object
        :return:  true if :class:`libxmp.core.XMPMeta` object writeable to file.
        :rtype: bool
        """
        if not isinstance( xmp_obj, XMPMeta ):
            raise XMPError('Not a XMPMeta object')

        xmpptr = xmp_obj.xmpptr

        if xmpptr != None:
            return _cexempi.files_can_put_xmp(self.xmpfileptr, xmpptr)
        else:
            return False