-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathworksheet.py
executable file
·279 lines (220 loc) · 8.78 KB
/
worksheet.py
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
# Copyright (c) 2010 Resolver Systems Ltd, PythonAnywhere LLP
# See LICENSE.md
#
from cgi import escape
import csv
import json
import simplejson as json
from StringIO import StringIO
from threading import Lock
from xlrd import error_text_from_code, xldate_as_tuple, XL_CELL_DATE, XL_CELL_ERROR
from .cell import Cell, undefined
from .cell_range import CellRange
from .utils.cell_name_utils import (
cell_name_to_coordinates, column_name_to_index,
cell_range_as_string_to_coordinates
)
class InvalidKeyError(Exception):
pass
class Bounds(tuple):
def __init__(self, (left, top, right, bottom)):
super(tuple, self).__init__((left, top, right, bottom))
self.left, self.top, self.right, self.bottom = left, top, right, bottom
def dump_cell_to_json_stream(stream, col, row, cell):
stream.write('"%s,%s": { ' % (col, row))
stream.write('"formula": %s, ' % (json.dumps(cell.formula),))
stream.write('"formatted_value": %s ' % (json.dumps(cell.formatted_value),))
if cell.python_formula:
stream.write(', "python_formula": %s ' % (json.dumps(cell.python_formula),))
if cell.dependencies:
stream.write(', "dependencies": %s ' % (
json.dumps(map(list, cell.dependencies)),)
)
if cell.error:
stream.write(', "error": %s ' % (json.dumps(cell.error),))
try:
stream.write(', "value": %s ' % (json.dumps(cell.value, allow_nan=False),))
except (TypeError, ValueError):
# Not JSONifiable
pass
stream.write('}')
def worksheet_to_json(worksheet):
stream = StringIO()
stream.write("{ ")
stream.write('"_console_text": %s, ' % (json.dumps(worksheet._console_text),))
stream.write('"_usercode_error": %s ' % (json.dumps(worksheet._usercode_error),))
for (col, row), cell in worksheet.iteritems():
stream.write(',')
dump_cell_to_json_stream(stream, col, row, cell)
stream.write(" }")
result = stream.getvalue()
stream.close()
return result
def worksheet_from_json(json_string):
#use json for read ops because of better performance
#keep simplejson for write ops as it's more robust
worksheet_dict = json.loads(json_string)
worksheet = Worksheet()
for (key, value) in worksheet_dict.iteritems():
if key == "_console_text":
worksheet._console_text = value
elif key == "_usercode_error":
worksheet._usercode_error = value
else:
col_str, row_str = key.split(",")
cell = Cell()
cell._formula = value["formula"]
cell._python_formula = value.get("python_formula")
cell.dependencies = map(tuple, value.get("dependencies", []))
cell.error = value.get("error")
cell._value = value.get("value", undefined)
cell.formatted_value = value["formatted_value"]
worksheet[int(col_str), int(row_str)] = cell
return worksheet
def worksheet_to_csv(worksheet, encoding):
stream = StringIO()
writer = csv.writer(stream)
if worksheet:
_, __, right, bottom = worksheet.bounds
for row in range(1, bottom + 1):
row_list = []
for col in range(1, right + 1):
value = worksheet[col, row].value
encoded_value = ''
if not value is undefined:
if hasattr(value, 'encode'):
encoded_value = value.encode(encoding)
else:
encoded_value = value
row_list.append(encoded_value)
writer.writerow(row_list)
result = stream.getvalue()
stream.close()
return result
def worksheet_from_excel(excel_sheet):
worksheet = Worksheet()
for col in range(excel_sheet.ncols):
for row in range(excel_sheet.nrows):
cell = excel_sheet.cell(row, col)
if cell.ctype == XL_CELL_ERROR:
formula = '=%s' % (error_text_from_code[cell.value], )
elif cell.ctype == XL_CELL_DATE:
formula = '=DateTime(%s, %s, %s, %s, %s, %s)' % xldate_as_tuple(
cell.value, excel_sheet.book.datemode)
else:
formula = unicode(excel_sheet.cell(row, col).value)
worksheet[col + 1, row + 1].formula = formula
return worksheet
class Worksheet(dict):
def __init__(self):
self.name = None
self._console_text = ''
self._usercode_error = None
self._console_lock = Lock()
def __getitem__(self, key):
location = self.to_location(key)
if not location:
raise InvalidKeyError("%r is not a valid cell location" % (key,))
return self.setdefault(location, Cell())
def __setitem__(self, key, item):
location = self.to_location(key)
if not location:
raise InvalidKeyError("%r is not a valid cell location" % (key,))
if not isinstance(item, Cell):
raise TypeError("Worksheet locations must be Cell objects")
dict.__setitem__(self, location, item)
def __getattr__(self, name):
location = self.to_location(name)
if not location:
raise AttributeError("'Worksheet' object has no attribute %r" % (name,))
return self.__getitem__(name)
def __setattr__(self, name, value):
location = cell_name_to_coordinates(name)
if location:
self.__setitem__(location, value)
else:
super(Worksheet, self).__setattr__(name, value)
def __repr__(self):
if self.name:
return '<Worksheet %s>' % (self.name,)
else:
return '<Worksheet>'
def __eq__(self, other):
return (
isinstance(other, Worksheet) and
dict(self) == dict(other) and
self.name == other.name
)
def __ne__(self, other):
return not self.__eq__(other)
def to_location(self, key):
if isinstance(key, tuple) and len(key) == 2:
col, row = key
if isinstance(col, basestring):
col = column_name_to_index(col)
if isinstance(col, (int, long)) and isinstance(row, (int, long)):
return col, row
return None
elif isinstance(key, basestring):
return cell_name_to_coordinates(key)
return None
def add_console_text(self, error_text, log_type='error'):
self._console_lock.acquire()
self._console_text += '<span class="console_%s_text">%s</span>' \
% (log_type, escape(error_text))
self._console_lock.release()
def set_cell_formula(self, col, row, formula):
if not formula:
if (col, row) in self:
del self[col, row]
else:
self[col, row].formula = formula
def clear_values(self):
to_delete = []
for location, cell in self.items():
if cell.formula or cell.python_formula:
cell.value = undefined
cell.error = None
else:
to_delete.append(location)
for location in to_delete:
del self[location]
#--methods intended for public user consumption--
def cell_range(self, start_or_string_cellrange, end=None):
if isinstance(start_or_string_cellrange, basestring) and end is None:
start_and_end = cell_range_as_string_to_coordinates(start_or_string_cellrange)
if start_and_end is None:
raise ValueError("Invalid cell range '%s'" % (start_or_string_cellrange, ))
return CellRange(self, *start_and_end)
def convert_if_needed(cell_ref):
if isinstance(cell_ref, basestring):
return cell_name_to_coordinates(cell_ref)
else:
return cell_ref
start_tuple = convert_if_needed(start_or_string_cellrange)
end_tuple = convert_if_needed(end)
if start_tuple is None:
if end_tuple is None:
raise ValueError('Neither %s nor %s are valid cell locations' % (start_or_string_cellrange, end))
raise ValueError('%s is not a valid cell location' % (start_or_string_cellrange, ))
if end_tuple is None:
raise ValueError('%s is not a valid cell location' % (end, ))
return CellRange(self, start_tuple, end_tuple)
@property
def bounds(self):
if not self:
return None
locations = self.iterkeys()
col, row = locations.next()
left = right = col
top = bottom = row
for col, row in locations:
if col < left:
left = col
if row < top:
top = row
if col > right:
right = col
if row > bottom:
bottom = row
return Bounds((left, top, right, bottom))