mirror of
https://github.com/unidoc/unioffice.git
synced 2025-05-02 22:17:07 +08:00

* evaluation errors fixed * allow underscores in sheet names * allow wildcard in *LOOKUP functions * horizontal and vertical ranges * horizontal and vertical ranges for sheet references * remove redundant recalculate * caching * fixed named ranges, made Evaluator more generic * Memory usage shown in flatten example * temporary file deleted * ParseCellReference duplicate removed * ISREF is fixed
58 lines
1.9 KiB
Go
58 lines
1.9 KiB
Go
// Copyright 2017 FoxyUtils ehf. All rights reserved.
|
|
//
|
|
// Use of this source code is governed by the terms of the Affero GNU General
|
|
// Public License version 3.0 as published by the Free Software Foundation and
|
|
// appearing in the file LICENSE included in the packaging of this file. A
|
|
// commercial license can be purchased on https://unidoc.io.
|
|
|
|
package formula
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
)
|
|
|
|
// PrefixVerticalRange is a range expression that when evaluated returns a list of Results from references like Sheet1!AA:IJ (all cells from columns AA to IJ of sheet 'Sheet1').
|
|
type PrefixVerticalRange struct {
|
|
pfx Expression
|
|
colFrom, colTo string
|
|
}
|
|
|
|
// NewPrefixVerticalRange constructs a new full columns range with prefix.
|
|
func NewPrefixVerticalRange(pfx Expression, v string) Expression {
|
|
sl := strings.Split(v, ":")
|
|
if len(sl) != 2 {
|
|
return nil
|
|
}
|
|
return PrefixVerticalRange{pfx, sl[0], sl[1]}
|
|
}
|
|
|
|
// Eval evaluates a vertical range with prefix returning a list of results or an error.
|
|
func (r PrefixVerticalRange) Eval(ctx Context, ev Evaluator) Result {
|
|
pfx := r.pfx.Reference(ctx, ev)
|
|
switch pfx.Type {
|
|
case ReferenceTypeSheet:
|
|
ref := r.verticalRangeReference(pfx.Value)
|
|
if cached, found := ev.GetFromCache(ref); found {
|
|
return cached
|
|
}
|
|
c := ctx.Sheet(pfx.Value)
|
|
from, to := cellRefsFromVerticalRange(c, r.colFrom, r.colTo)
|
|
result := resultFromCellRange(c, ev, from, to)
|
|
ev.SetCache(ref, result)
|
|
return result
|
|
default:
|
|
return MakeErrorResult(fmt.Sprintf("no support for reference type %s", pfx.Type))
|
|
}
|
|
}
|
|
|
|
func (r PrefixVerticalRange) verticalRangeReference(sheetName string) string {
|
|
return fmt.Sprintf("%s!%s:%s", sheetName, r.colFrom, r.colTo)
|
|
}
|
|
|
|
// Reference returns a string reference value to a vertical range with prefix.
|
|
func (r PrefixVerticalRange) Reference(ctx Context, ev Evaluator) Reference {
|
|
pfx := r.pfx.Reference(ctx, ev)
|
|
return Reference{Type: ReferenceTypeVerticalRange, Value: r.verticalRangeReference(pfx.Value)}
|
|
}
|