This file is indexed.

/usr/lib/python3/dist-packages/pyutilib/excel/spreadsheet_xlrd.py is in python3-pyutilib 5.3.5-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
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
#  _________________________________________________________________________
#
#  PyUtilib: A Python utility library.
#  Copyright (c) 2008 Sandia Corporation.
#  This software is distributed under the BSD License.
#  Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
#  the U.S. Government retains certain rights in this software.
#  _________________________________________________________________________

"""
A class for interacting with an Excel spreadsheet.
"""

#
# Imports
#
import os
import sys

import xlrd

from pyutilib.excel.base import ExcelSpreadsheet_base


class ExcelSpreadsheet_xlrd(ExcelSpreadsheet_base):

    def can_read(self): return True
    def can_write(self): return False
    def can_calculate(self): return False

    def __init__(self, filename=None, worksheets=(1,), default_worksheet=1):
        """
        Constructor.
        """
        self.wb = None
        self.xlsfile = None
        self._ws = {}
        if filename is not None:
            self.open(filename, worksheets, default_worksheet)

    def open(self, filename, worksheets=(1,), default_worksheet=1):
        """
        Initialize this object from a file.
        """
        #
        # Set the excel spreadsheet name
        #
        self.xlsfile = filename
        #
        # Start the excel spreadsheet
        #
        self.wb = xlrd.open_workbook(self.xlsfile)
        self.worksheets=set(worksheets)
        self._ws = {}
        for wsid in worksheets:
            if type(wsid) is int:
                self._ws[wsid] = self.wb.sheet_by_index(wsid-1)
            else:
                self._ws[wsid] = self.wb.sheet_by_name(wsid)
        self.default_worksheet=default_worksheet

    def ws(self):
        """ The active worksheet """
        return self._ws[self.default_worksheet]

    def __del__(self):
        """
        Close the spreadsheet when deleting this object.
        """
        if self is None:
            return
        self.close()

    def close(self):
        """
        Close the spreadsheet
        """
        if self is None:       #pragma:nocover
            return
        if self._ws is None:
            return
        self._ws = {}

    def activate(self, name):
        """ Activate a specific sheet """
        if name is None:
            return
        if not name in self._ws:
            raise ValueError("Cannot activate a missing sheet with xlrd")
        self.default_worksheet=name

    def calc_iterations(self, val=None):
        raise ValueError("ExcelSpreadsheet calc_iterations() is not supported with xlrd")

    def max_iterations(self, val=None):
        raise ValueError("ExcelSpreadsheet max_iterations() is not supported with xlrd")

    def calculate(self):
        """
        Perform calculations in a spreadsheet
        """
        raise ValueError("ExcelSpreadsheet calculate() is not supported with xlrd")

    def set_array(self, row, col, val, wsid=None):
        """
        Set an array of cells to a given value
        """
        raise IOError("Cannot write to ranges with xlrd")

    def get_array(self, row, col, row2, col2, wsid=None, raw=False):
        """
        Return a range of cells
        """
        return self.get_range( (self.ws().Cells(row,col), self.ws().Cells(row2,col2)), wsid, raw)

    def set_range(self, rangename, val, wsid=None):
        """
        Set a range with a given value (or set of values)
        """
        raise IOError("Cannot write to ranges with xlrd")

    def get_column(self, colname, wsid=None, raw=False, contiguous=False):
        """
        Select the values of a column.
        This ignores blank cells at the top and bottom of the column.

        If contiguous is False, a list is returned with all cell values
        starting from the first non-blank cell until the last non-blank cell.

        If contiguous if True, a list is returned with all cell values
        starting from the first non-blank cell until the first blank cell.
        """
        raise IOError("Cannot get a named column with xlrd")

    def get_range(self, rangename, wsid=None, raw=False):
        """
        Get values for a specified range
        """
        rangeid = self._range(rangename)
        if not rangeid is None:
            return self._get_range_data(rangeid, raw)

    def _get_range_data(self, _range, raw):
        """
        Return data for the specified range.
        """
        sheet, rowxlo, rowxhi, colxlo, colxhi = _range.area2d()
        if (rowxhi-rowxlo)==1 and (colxhi-colxlo) == 1:
            return self._translate(sheet.cell(rowxlo, colxlo))
        else:
            #
            # If the range is a column or row of data, then return a list of values.
            # Otherwise, return a tuple of tuples
            #
            ans = []
            for i in range(rowxhi-rowxlo):
                col = []
                for j in range(colxhi-colxlo):
                    val = self._translate(sheet.cell(i+rowxlo,j+colxlo))
                    col.append( val )
                if len(col) == 1:
                    ans.append( col[0] )
                else:
                    ans.append( list(col) ) 
            return list(ans)

    def get_range_nrows(self, rangename, wsid=None):
        """
        Get the number of rows in a specified range
        """
        _range = self._range(rangename)
        sheet, rowxlo, rowxhi, colxlo, colxhi = _range.area2d()
        return rowxhi-rowxlo

    def get_range_ncolumns(self, rangename, wsid=None):
        """
        Get the number of columns in a specified range
        """
        _range = self._range(rangename)
        sheet, rowxlo, rowxhi, colxlo, colxhi = _range.area2d()
        return colxhi-colxlo

    def _range(self, rangeid, wsid=None):
        """
        Return a range for a given worksheet
        """
        self.activate(wsid)
        #
        # If rangeid is a tuple, then this is a list of arguments to pass
        # to the Range() method.
        #
        if type(rangeid) is tuple:
            return self.ws().Range(*rangeid)
        #
        # Otherwise, we assume that this is a range name.
        #
        else:
            tmp_= self.wb.name_map.get(rangeid.lower(), None)
            if tmp_ is None:
                raise IOError("Range %s is not found" % rangeid)
            if len(tmp_) > 1:
                raise IOError("Cannot process scoped names")
            return tmp_[0]

    def _translate(self, cell):
        """
        Translate the cell value to a standard type
        """
        if cell.ctype == 0:
            return ""
        if cell.ctype == 1:
            return str(cell.value)
        if cell.ctype == 2 or cell.ctype == 3 or cell.ctype == 4:
            return cell.value
        if cell.ctype == 6:
            return None
        raise ValueError("Unexpected cell error")