-
Notifications
You must be signed in to change notification settings - Fork 0
/
cell.go
419 lines (377 loc) · 10.6 KB
/
cell.go
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
package xlsx
import (
"fmt"
"math"
"strconv"
"strings"
"time"
)
// CellType is an int type for storing metadata about the data type in the cell.
type CellType int
// Known types for cell values.
const (
CellTypeString CellType = iota
CellTypeFormula
CellTypeNumeric
CellTypeBool
CellTypeInline
CellTypeError
CellTypeDate
CellTypeGeneral
)
// Cell is a high level structure intended to provide user access to
// the contents of Cell within an xlsx.Row.
type Cell struct {
Row *Row
Value string
formula string
style *Style
NumFmt string
date1904 bool
Hidden bool
HMerge int
VMerge int
cellType CellType
}
// CellInterface defines the public API of the Cell.
type CellInterface interface {
String() string
FormattedValue() string
}
// NewCell creates a cell and adds it to a row.
func NewCell(r *Row) *Cell {
return &Cell{Row: r}
}
// Merge with other cells, horizontally and/or vertically.
func (c *Cell) Merge(hcells, vcells int) {
c.HMerge = hcells
c.VMerge = vcells
}
// Type returns the CellType of a cell. See CellType constants for more details.
func (c *Cell) Type() CellType {
return c.cellType
}
// SetString sets the value of a cell to a string.
func (c *Cell) SetString(s string) {
c.Value = s
c.formula = ""
c.cellType = CellTypeString
}
// String returns the value of a Cell as a string.
func (c *Cell) String() (string, error) {
return c.FormattedValue()
}
// SetFloat sets the value of a cell to a float.
func (c *Cell) SetFloat(n float64) {
c.SetFloatWithFormat(n, builtInNumFmt[builtInNumFmtIndex_GENERAL])
}
/*
The following are samples of format samples.
* "0.00e+00"
* "0", "#,##0"
* "0.00", "#,##0.00", "@"
* "#,##0 ;(#,##0)", "#,##0 ;[red](#,##0)"
* "#,##0.00;(#,##0.00)", "#,##0.00;[red](#,##0.00)"
* "0%", "0.00%"
* "0.00e+00", "##0.0e+0"
*/
// SetFloatWithFormat sets the value of a cell to a float and applies
// formatting to the cell.
func (c *Cell) SetFloatWithFormat(n float64, format string) {
// beauty the output when the float is small enough
if n != 0 && n < 0.00001 {
c.Value = strconv.FormatFloat(n, 'e', -1, 64)
} else {
c.Value = strconv.FormatFloat(n, 'f', -1, 64)
}
c.NumFmt = format
c.formula = ""
c.cellType = CellTypeNumeric
}
var timeLocationUTC *time.Location
func init() {
timeLocationUTC, _ = time.LoadLocation("UTC")
}
func timeToUTCTime(t time.Time) time.Time {
return time.Date(t.Year(), t.Month(), t.Day(), t.Hour(), t.Minute(), t.Second(), t.Nanosecond(), timeLocationUTC)
}
func timeToExcelTime(t time.Time) float64 {
return float64(t.Unix())/86400.0 + 25569.0
}
// SetDate sets the value of a cell to a float.
func (c *Cell) SetDate(t time.Time) {
c.SetDateTimeWithFormat(float64(int64(timeToExcelTime(timeToUTCTime(t)))), builtInNumFmt[14])
}
func (c *Cell) SetDateTime(t time.Time) {
c.SetDateTimeWithFormat(timeToExcelTime(timeToUTCTime(t)), builtInNumFmt[14])
}
func (c *Cell) SetDateTimeWithFormat(n float64, format string) {
c.Value = strconv.FormatFloat(n, 'f', -1, 64)
c.NumFmt = format
c.formula = ""
c.cellType = CellTypeDate
}
// Float returns the value of cell as a number.
func (c *Cell) Float() (float64, error) {
f, err := strconv.ParseFloat(c.Value, 64)
if err != nil {
return math.NaN(), err
}
return f, nil
}
// SetInt64 sets a cell's value to a 64-bit integer.
func (c *Cell) SetInt64(n int64) {
c.Value = fmt.Sprintf("%d", n)
c.NumFmt = builtInNumFmt[builtInNumFmtIndex_INT]
c.formula = ""
c.cellType = CellTypeNumeric
}
// Int64 returns the value of cell as 64-bit integer.
func (c *Cell) Int64() (int64, error) {
f, err := strconv.ParseInt(c.Value, 10, 64)
if err != nil {
return -1, err
}
return f, nil
}
// SetInt sets a cell's value to an integer.
func (c *Cell) SetInt(n int) {
c.Value = fmt.Sprintf("%d", n)
c.NumFmt = builtInNumFmt[builtInNumFmtIndex_INT]
c.formula = ""
c.cellType = CellTypeNumeric
}
// SetInt sets a cell's value to an integer.
func (c *Cell) SetValue(n interface{}) {
var s string
switch n.(type) {
case time.Time:
c.SetDateTime(n.(time.Time))
return
case int:
c.setGeneral(fmt.Sprintf("%v", n))
return
case int32:
c.setGeneral(fmt.Sprintf("%v", n))
return
case int64:
c.setGeneral(fmt.Sprintf("%v", n))
return
case float32:
c.setGeneral(fmt.Sprintf("%v", n))
return
case float64:
c.setGeneral(fmt.Sprintf("%v", n))
return
case string:
s = n.(string)
case []byte:
s = string(n.([]byte))
case nil:
s = ""
default:
s = fmt.Sprintf("%v", n)
}
c.SetString(s)
}
// SetInt sets a cell's value to an integer.
func (c *Cell) setGeneral(s string) {
c.Value = s
c.NumFmt = builtInNumFmt[builtInNumFmtIndex_GENERAL]
c.formula = ""
c.cellType = CellTypeGeneral
}
// Int returns the value of cell as integer.
// Has max 53 bits of precision
// See: float64(int64(math.MaxInt))
func (c *Cell) Int() (int, error) {
f, err := strconv.ParseFloat(c.Value, 64)
if err != nil {
return -1, err
}
return int(f), nil
}
// SetBool sets a cell's value to a boolean.
func (c *Cell) SetBool(b bool) {
if b {
c.Value = "1"
} else {
c.Value = "0"
}
c.cellType = CellTypeBool
}
// Bool returns a boolean from a cell's value.
// TODO: Determine if the current return value is
// appropriate for types other than CellTypeBool.
func (c *Cell) Bool() bool {
// If bool, just return the value.
if c.cellType == CellTypeBool {
return c.Value == "1"
}
// If numeric, base it on a non-zero.
if c.cellType == CellTypeNumeric {
return c.Value != "0"
}
// Return whether there's an empty string.
return c.Value != ""
}
// SetFormula sets the format string for a cell.
func (c *Cell) SetFormula(formula string) {
c.formula = formula
c.cellType = CellTypeFormula
}
// Formula returns the formula string for the cell.
func (c *Cell) Formula() string {
return c.formula
}
// GetStyle returns the Style associated with a Cell
func (c *Cell) GetStyle() *Style {
if c.style == nil {
c.style = NewStyle()
}
return c.style
}
// SetStyle sets the style of a cell.
func (c *Cell) SetStyle(style *Style) {
c.style = style
}
// GetNumberFormat returns the number format string for a cell.
func (c *Cell) GetNumberFormat() string {
return c.NumFmt
}
func (c *Cell) formatToFloat(format string) (string, error) {
f, err := strconv.ParseFloat(c.Value, 64)
if err != nil {
return c.Value, err
}
return fmt.Sprintf(format, f), nil
}
func (c *Cell) formatToInt(format string) (string, error) {
f, err := strconv.ParseFloat(c.Value, 64)
if err != nil {
return c.Value, err
}
return fmt.Sprintf(format, int(f)), nil
}
// FormattedValue returns a value, and possibly an error condition
// from a Cell. If it is possible to apply a format to the cell
// value, it will do so, if not then an error will be returned, along
// with the raw value of the Cell.
func (c *Cell) FormattedValue() (string, error) {
var numberFormat = c.GetNumberFormat()
if isTimeFormat(numberFormat) {
return parseTime(c)
}
switch numberFormat {
case builtInNumFmt[builtInNumFmtIndex_GENERAL], builtInNumFmt[builtInNumFmtIndex_STRING]:
return c.Value, nil
case builtInNumFmt[builtInNumFmtIndex_INT], "#,##0":
return c.formatToInt("%d")
case builtInNumFmt[builtInNumFmtIndex_FLOAT], "#,##0.00":
return c.formatToFloat("%.2f")
case "#,##0 ;(#,##0)", "#,##0 ;[red](#,##0)":
f, err := strconv.ParseFloat(c.Value, 64)
if err != nil {
return c.Value, err
}
if f < 0 {
i := int(math.Abs(f))
return fmt.Sprintf("(%d)", i), nil
}
i := int(f)
return fmt.Sprintf("%d", i), nil
case "#,##0.00;(#,##0.00)", "#,##0.00;[red](#,##0.00)":
f, err := strconv.ParseFloat(c.Value, 64)
if err != nil {
return c.Value, err
}
if f < 0 {
return fmt.Sprintf("(%.2f)", f), nil
}
return fmt.Sprintf("%.2f", f), nil
case "0%":
f, err := strconv.ParseFloat(c.Value, 64)
if err != nil {
return c.Value, err
}
f = f * 100
return fmt.Sprintf("%d%%", int(f)), nil
case "0.00%":
f, err := strconv.ParseFloat(c.Value, 64)
if err != nil {
return c.Value, err
}
f = f * 100
return fmt.Sprintf("%.2f%%", f), nil
case "0.00e+00", "##0.0e+0":
return c.formatToFloat("%e")
}
return c.Value, nil
}
// parseTime returns a string parsed using time.Time
func parseTime(c *Cell) (string, error) {
f, err := strconv.ParseFloat(c.Value, 64)
if err != nil {
return c.Value, err
}
val := TimeFromExcelTime(f, c.date1904)
format := c.GetNumberFormat()
// Replace Excel placeholders with Go time placeholders.
// For example, replace yyyy with 2006. These are in a specific order,
// due to the fact that m is used in month, minute, and am/pm. It would
// be easier to fix that with regular expressions, but if it's possible
// to keep this simple it would be easier to maintain.
// Full-length month and days (e.g. March, Tuesday) have letters in them that would be replaced
// by other characters below (such as the 'h' in March, or the 'd' in Tuesday) below.
// First we convert them to arbitrary characters unused in Excel Date formats, and then at the end,
// turn them to what they should actually be.
// Based off: http://www.ozgrid.com/Excel/CustomFormats.htm
replacements := []struct{ xltime, gotime string }{
{"yyyy", "2006"},
{"yy", "06"},
{"mmmm", "%%%%"},
{"dddd", "&&&&"},
{"dd", "02"},
{"d", "2"},
{"mmm", "Jan"},
{"mmss", "0405"},
{"ss", "05"},
{"hh", "15"},
{"h", "3"},
{"mm:", "04:"},
{":mm", ":04"},
{"mm", "01"},
{"am/pm", "pm"},
{"m/", "1/"},
{".0", ".9999"},
{"%%%%", "January"},
{"&&&&", "Monday"},
}
for _, repl := range replacements {
format = strings.Replace(format, repl.xltime, repl.gotime, 1)
}
// If the hour is optional, strip it out, along with the
// possible dangling colon that would remain.
if val.Hour() < 1 {
format = strings.Replace(format, "]:", "]", 1)
format = strings.Replace(format, "[3]", "", 1)
format = strings.Replace(format, "[15]", "", 1)
} else {
format = strings.Replace(format, "[3]", "3", 1)
format = strings.Replace(format, "[15]", "15", 1)
}
return val.Format(format), nil
}
// isTimeFormat checks whether an Excel format string represents
// a time.Time.
func isTimeFormat(format string) bool {
dateParts := []string{
"yy", "hh", "am", "pm", "ss", "mm", ":",
}
for _, part := range dateParts {
if strings.Contains(format, part) {
return true
}
}
return false
}