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 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473
|
// Copyright 2018 The CUE Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Package internal exposes some cue internals to other packages.
//
// A better name for this package would be technicaldebt.
package internal
// TODO: refactor packages as to make this package unnecessary.
import (
"bufio"
"fmt"
"path/filepath"
"slices"
"strings"
"github.com/cockroachdb/apd/v3"
"cuelang.org/go/cue/ast"
"cuelang.org/go/cue/ast/astutil"
"cuelang.org/go/cue/errors"
"cuelang.org/go/cue/token"
)
// A Decimal is an arbitrary-precision binary-coded decimal number.
//
// Right now Decimal is aliased to apd.Decimal. This may change in the future.
type Decimal = apd.Decimal
// Context wraps apd.Context for CUE's custom logic.
//
// Note that it avoids pointers to make it easier to make copies.
type Context struct {
apd.Context
}
// WithPrecision mirrors upstream, but returning our type without a pointer.
func (c Context) WithPrecision(p uint32) Context {
c.Context = *c.Context.WithPrecision(p)
return c
}
// apd/v2 used to call Reduce on the result of Quo and Rem,
// so that the operations always trimmed all but one trailing zeros.
// apd/v3 does not do that at all.
// For now, get the old behavior back by calling Reduce ourselves.
// Note that v3's Reduce also removes all trailing zeros,
// whereas v2's Reduce would leave ".0" behind.
// Get that detail back as well, to consistently show floats with decimal points.
//
// TODO: Rather than reducing all trailing zeros,
// we should keep a number of zeros that makes sense given the operation.
func reduceKeepingFloats(d *apd.Decimal) {
oldExponent := d.Exponent
d.Reduce(d)
// If the decimal had decimal places, like "3.000" and "5.000E+5",
// Reduce gives us "3" and "5E+5", but we want "3.0" and "5.0E+5".
if oldExponent < 0 && d.Exponent >= 0 {
d.Exponent--
// TODO: we can likely make the NewBigInt(10) a static global to reduce allocs
d.Coeff.Mul(&d.Coeff, apd.NewBigInt(10))
}
}
func (c Context) Quo(d, x, y *apd.Decimal) (apd.Condition, error) {
res, err := c.Context.Quo(d, x, y)
reduceKeepingFloats(d)
return res, err
}
func (c Context) Sqrt(d, x *apd.Decimal) (apd.Condition, error) {
res, err := c.Context.Sqrt(d, x)
reduceKeepingFloats(d)
return res, err
}
// ErrIncomplete can be used by builtins to signal the evaluation was
// incomplete.
var ErrIncomplete = errors.New("incomplete value")
// BaseContext is used as CUE's default context for arbitrary-precision decimals.
var BaseContext = Context{*apd.BaseContext.WithPrecision(34)}
// APIVersionSupported is the back version until which deprecated features
// are still supported.
var APIVersionSupported = Version(MinorSupported, PatchSupported)
const (
MinorCurrent = 5
MinorSupported = 4
PatchSupported = 0
)
func Version(minor, patch int) int {
return -1000 + 100*minor + patch
}
// EvaluatorVersion is declared here so it can be used everywhere without import cycles,
// but the canonical documentation lives at [cuelang.org/go/cue/cuecontext.EvalVersion].
//
// TODO(mvdan): rename to EvalVersion for consistency with cuecontext.
type EvaluatorVersion int
const (
// EvalVersionUnset is the zero value, which signals that no evaluator version is provided.
EvalVersionUnset EvaluatorVersion = 0
// The values below are documented under [cuelang.org/go/cue/cuecontext.EvalVersion].
// We should never change or delete the values below, as they describe all known past versions
// which is useful for understanding old debug output.
EvalV2 EvaluatorVersion = 2
EvalV3 EvaluatorVersion = 3
// The current default and experimental versions.
DefaultVersion = EvalV2 // TODO(mvdan): rename to EvalDefault for consistency with cuecontext
DevVersion = EvalV3 // TODO(mvdan): rename to EvalExperiment for consistency with cuecontext
)
// ListEllipsis reports the list type and remaining elements of a list. If we
// ever relax the usage of ellipsis, this function will likely change. Using
// this function will ensure keeping correct behavior or causing a compiler
// failure.
func ListEllipsis(n *ast.ListLit) (elts []ast.Expr, e *ast.Ellipsis) {
elts = n.Elts
if n := len(elts); n > 0 {
var ok bool
if e, ok = elts[n-1].(*ast.Ellipsis); ok {
elts = elts[:n-1]
}
}
return elts, e
}
// Package finds the package declaration from the preamble of a file.
func Package(f *ast.File) *ast.Package {
for _, d := range f.Decls {
switch d := d.(type) {
case *ast.CommentGroup:
case *ast.Attribute:
case *ast.Package:
if d.Name == nil { // malformed package declaration
return nil
}
return d
default:
return nil
}
}
return nil
}
func SetPackage(f *ast.File, name string, overwrite bool) {
if pkg := Package(f); pkg != nil {
if !overwrite || pkg.Name.Name == name {
return
}
ident := ast.NewIdent(name)
astutil.CopyMeta(ident, pkg.Name)
return
}
decls := make([]ast.Decl, len(f.Decls)+1)
k := 0
for _, d := range f.Decls {
if _, ok := d.(*ast.CommentGroup); ok {
decls[k] = d
k++
continue
}
break
}
decls[k] = &ast.Package{Name: ast.NewIdent(name)}
copy(decls[k+1:], f.Decls[k:])
f.Decls = decls
}
// NewComment creates a new CommentGroup from the given text.
// Each line is prefixed with "//" and the last newline is removed.
// Useful for ASTs generated by code other than the CUE parser.
func NewComment(isDoc bool, s string) *ast.CommentGroup {
if s == "" {
return nil
}
cg := &ast.CommentGroup{Doc: isDoc}
if !isDoc {
cg.Line = true
cg.Position = 10
}
scanner := bufio.NewScanner(strings.NewReader(s))
for scanner.Scan() {
scanner := bufio.NewScanner(strings.NewReader(scanner.Text()))
scanner.Split(bufio.ScanWords)
const maxRunesPerLine = 66
count := 2
buf := strings.Builder{}
buf.WriteString("//")
for scanner.Scan() {
s := scanner.Text()
n := len([]rune(s)) + 1
if count+n > maxRunesPerLine && count > 3 {
cg.List = append(cg.List, &ast.Comment{Text: buf.String()})
count = 3
buf.Reset()
buf.WriteString("//")
}
buf.WriteString(" ")
buf.WriteString(s)
count += n
}
cg.List = append(cg.List, &ast.Comment{Text: buf.String()})
}
if last := len(cg.List) - 1; cg.List[last].Text == "//" {
cg.List = cg.List[:last]
}
return cg
}
func FileComments(f *ast.File) (docs, rest []*ast.CommentGroup) {
hasPkg := false
if pkg := Package(f); pkg != nil {
hasPkg = true
docs = pkg.Comments()
}
for _, c := range f.Comments() {
if c.Doc {
docs = append(docs, c)
} else {
rest = append(rest, c)
}
}
if !hasPkg && len(docs) == 0 && len(rest) > 0 {
// use the first file comment group as as doc comment.
docs, rest = rest[:1], rest[1:]
docs[0].Doc = true
}
return
}
// MergeDocs merges multiple doc comments into one single doc comment.
func MergeDocs(comments []*ast.CommentGroup) []*ast.CommentGroup {
if len(comments) <= 1 || !hasDocComment(comments) {
return comments
}
comments1 := make([]*ast.CommentGroup, 0, len(comments))
comments1 = append(comments1, nil)
var docComment *ast.CommentGroup
for _, c := range comments {
switch {
case !c.Doc:
comments1 = append(comments1, c)
case docComment == nil:
docComment = c
default:
docComment.List = append(slices.Clip(docComment.List), &ast.Comment{Text: "//"})
docComment.List = append(docComment.List, c.List...)
}
}
comments1[0] = docComment
return comments1
}
func hasDocComment(comments []*ast.CommentGroup) bool {
for _, c := range comments {
if c.Doc {
return true
}
}
return false
}
func NewAttr(name, str string) *ast.Attribute {
buf := &strings.Builder{}
buf.WriteByte('@')
buf.WriteString(name)
buf.WriteByte('(')
buf.WriteString(str)
buf.WriteByte(')')
return &ast.Attribute{Text: buf.String()}
}
// ToExpr converts a node to an expression. If it is a file, it will return
// it as a struct. If is an expression, it will return it as is. Otherwise
// it panics.
func ToExpr(n ast.Node) ast.Expr {
switch x := n.(type) {
case nil:
return nil
case ast.Expr:
return x
case *ast.File:
start := 0
outer:
for i, d := range x.Decls {
switch d.(type) {
case *ast.Package, *ast.ImportDecl:
start = i + 1
case *ast.CommentGroup, *ast.Attribute:
default:
break outer
}
}
decls := x.Decls[start:]
if len(decls) == 1 {
if e, ok := decls[0].(*ast.EmbedDecl); ok {
return e.Expr
}
}
return &ast.StructLit{Elts: decls}
default:
panic(fmt.Sprintf("Unsupported node type %T", x))
}
}
// ToFile converts an expression to a file.
//
// Adjusts the spacing of x when needed.
func ToFile(n ast.Node) *ast.File {
if n == nil {
return nil
}
switch n := n.(type) {
case *ast.StructLit:
f := &ast.File{Decls: n.Elts}
// Ensure that the comments attached to the struct literal are not lost.
ast.SetComments(f, ast.Comments(n))
return f
case ast.Expr:
ast.SetRelPos(n, token.NoSpace)
return &ast.File{Decls: []ast.Decl{&ast.EmbedDecl{Expr: n}}}
case *ast.File:
return n
default:
panic(fmt.Sprintf("Unsupported node type %T", n))
}
}
func IsDef(s string) bool {
return strings.HasPrefix(s, "#") || strings.HasPrefix(s, "_#")
}
func IsHidden(s string) bool {
return strings.HasPrefix(s, "_")
}
func IsDefOrHidden(s string) bool {
return strings.HasPrefix(s, "#") || strings.HasPrefix(s, "_")
}
func IsDefinition(label ast.Label) bool {
switch x := label.(type) {
case *ast.Alias:
if ident, ok := x.Expr.(*ast.Ident); ok {
return IsDef(ident.Name)
}
case *ast.Ident:
return IsDef(x.Name)
}
return false
}
func IsRegularField(f *ast.Field) bool {
var ident *ast.Ident
switch x := f.Label.(type) {
case *ast.Alias:
ident, _ = x.Expr.(*ast.Ident)
case *ast.Ident:
ident = x
}
if ident == nil {
return true
}
if strings.HasPrefix(ident.Name, "#") || strings.HasPrefix(ident.Name, "_") {
return false
}
return true
}
// ConstraintToken reports which constraint token (? or !) is associated
// with a field (if any), taking into account compatibility of deprecated
// fields.
func ConstraintToken(f *ast.Field) (t token.Token, ok bool) {
if f.Constraint != token.ILLEGAL {
return f.Constraint, true
}
if f.Optional != token.NoPos {
return token.OPTION, true
}
return f.Constraint, false
}
// SetConstraints sets both the main and deprecated fields of f according to the
// given constraint token.
func SetConstraint(f *ast.Field, t token.Token) {
f.Constraint = t
if t == token.ILLEGAL {
f.Optional = token.NoPos
} else {
f.Optional = token.Blank.Pos()
}
}
func EmbedStruct(s *ast.StructLit) *ast.EmbedDecl {
e := &ast.EmbedDecl{Expr: s}
if len(s.Elts) == 1 {
d := s.Elts[0]
astutil.CopyPosition(e, d)
ast.SetRelPos(d, token.NoSpace)
astutil.CopyComments(e, d)
ast.SetComments(d, nil)
if f, ok := d.(*ast.Field); ok {
ast.SetRelPos(f.Label, token.NoSpace)
}
}
s.Lbrace = token.Newline.Pos()
s.Rbrace = token.NoSpace.Pos()
return e
}
// IsEllipsis reports whether the declaration can be represented as an ellipsis.
func IsEllipsis(x ast.Decl) bool {
// ...
if _, ok := x.(*ast.Ellipsis); ok {
return true
}
// [string]: _ or [_]: _
f, ok := x.(*ast.Field)
if !ok {
return false
}
v, ok := f.Value.(*ast.Ident)
if !ok || v.Name != "_" {
return false
}
l, ok := f.Label.(*ast.ListLit)
if !ok || len(l.Elts) != 1 {
return false
}
i, ok := l.Elts[0].(*ast.Ident)
if !ok {
return false
}
return i.Name == "string" || i.Name == "_"
}
// GenPath reports the directory in which to store generated files.
func GenPath(root string) string {
return filepath.Join(root, "cue.mod", "gen")
}
var ErrInexact = errors.New("inexact subsumption")
|