-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
range.go
98 lines (85 loc) · 2.58 KB
/
range.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
package formula
import (
"fmt"
"go.devnw.com/ooxml/spreadsheet/reference"
"go.devnw.com/ooxml/spreadsheet/update"
)
// Range is a range expression that when evaluated returns a list of Results.
type Range struct {
from, to Expression
}
// NewRange constructs a new range.
func NewRange(from, to Expression) Expression {
return Range{from, to}
}
// Eval evaluates a range returning a list of results or an error.
func (r Range) Eval(ctx Context, ev Evaluator) Result {
from := r.from.Reference(ctx, ev)
to := r.to.Reference(ctx, ev)
ref := rangeReference(from, to)
if from.Type == ReferenceTypeCell && to.Type == ReferenceTypeCell {
if cached, found := ev.GetFromCache(ref); found {
return cached
} else {
result := resultFromCellRange(ctx, ev, from.Value, to.Value)
ev.SetCache(ref, result)
return result
}
}
return MakeErrorResult("invalid range " + ref)
}
func rangeReference(from, to Reference) string {
return fmt.Sprintf("%s:%s", from.Value, to.Value)
}
// Reference returns a string reference value to a range.
func (r Range) Reference(ctx Context, ev Evaluator) Reference {
from := r.from.Reference(ctx, ev)
to := r.to.Reference(ctx, ev)
if from.Type == ReferenceTypeCell && to.Type == ReferenceTypeCell {
return MakeRangeReference(rangeReference(from, to))
}
return ReferenceInvalid
}
func resultFromCellRange(ctx Context, ev Evaluator, from, to string) Result {
fromRef, fe := reference.ParseCellReference(from)
if fe != nil {
return MakeErrorResult(fmt.Sprintf("unable to parse range %s: error %s", from, fe.Error()))
}
fc, fr := fromRef.ColumnIdx, fromRef.RowIdx
toRef, te := reference.ParseCellReference(to)
if te != nil {
return MakeErrorResult(fmt.Sprintf("unable to parse range %s: error %s", to, te.Error()))
}
tc, tr := toRef.ColumnIdx, toRef.RowIdx
arr := [][]Result{}
for r := fr; r <= tr; r++ {
args := []Result{}
for c := fc; c <= tc; c++ {
res := ctx.Cell(fmt.Sprintf("%s%d", reference.IndexToColumn(c), r), ev)
args = append(args, res)
}
arr = append(arr, args)
}
// for a single row, just return a list
if len(arr) == 1 {
// single cell result
if len(arr[0]) == 1 {
return arr[0][0]
}
return MakeListResult(arr[0])
}
return MakeArrayResult(arr)
}
// String returns a string of a range.
func (r Range) String() string {
return fmt.Sprintf("%s:%s", r.from.String(), r.to.String())
}
// Update updates references in the Range after removing a row/column.
func (r Range) Update(q *update.UpdateQuery) Expression {
new := r
if q.UpdateCurrentSheet {
new.from = r.from.Update(q)
new.to = r.to.Update(q)
}
return new
}