Source file src/context/context.go
1 // Copyright 2014 The Go Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 // Package context defines the Context type, which carries deadlines, 6 // cancellation signals, and other request-scoped values across API boundaries 7 // and between processes. 8 // 9 // Incoming requests to a server should create a [Context], and outgoing 10 // calls to servers should accept a Context. The chain of function 11 // calls between them must propagate the Context, optionally replacing 12 // it with a derived Context created using [WithCancel], [WithDeadline], 13 // [WithTimeout], or [WithValue]. 14 // 15 // A Context may be canceled to indicate that work done on its behalf should stop. 16 // A Context with a deadline is canceled after the deadline passes. 17 // When a Context is canceled, all Contexts derived from it are also canceled. 18 // 19 // The [WithCancel], [WithDeadline], and [WithTimeout] functions take a 20 // Context (the parent) and return a derived Context (the child) and a 21 // [CancelFunc]. Calling the CancelFunc directly cancels the child and its 22 // children, removes the parent's reference to the child, and stops 23 // any associated timers. Failing to call the CancelFunc leaks the 24 // child and its children until the parent is canceled. The go vet tool 25 // checks that CancelFuncs are used on all control-flow paths. 26 // 27 // The [WithCancelCause], [WithDeadlineCause], and [WithTimeoutCause] functions 28 // return a [CancelCauseFunc], which takes an error and records it as 29 // the cancellation cause. Calling [Cause] on the canceled context 30 // or any of its children retrieves the cause. If no cause is specified, 31 // Cause(ctx) returns the same value as ctx.Err(). 32 // 33 // Programs that use Contexts should follow these rules to keep interfaces 34 // consistent across packages and enable static analysis tools to check context 35 // propagation: 36 // 37 // Do not store Contexts inside a struct type; instead, pass a Context 38 // explicitly to each function that needs it. This is discussed further in 39 // https://go.dev/blog/context-and-structs. The Context should be the first 40 // parameter, typically named ctx: 41 // 42 // func DoSomething(ctx context.Context, arg Arg) error { 43 // // ... use ctx ... 44 // } 45 // 46 // Do not pass a nil [Context], even if a function permits it. Pass [context.TODO] 47 // if you are unsure about which Context to use. 48 // 49 // Use context Values only for request-scoped data that transits processes and 50 // APIs, not for passing optional parameters to functions. 51 // 52 // The same Context may be passed to functions running in different goroutines; 53 // Contexts are safe for simultaneous use by multiple goroutines. 54 // 55 // See https://go.dev/blog/context for example code for a server that uses 56 // Contexts. 57 package context 58 59 import ( 60 "errors" 61 "internal/reflectlite" 62 "sync" 63 "sync/atomic" 64 "time" 65 ) 66 67 // A Context carries a deadline, a cancellation signal, and other values across 68 // API boundaries. 69 // 70 // Context's methods may be called by multiple goroutines simultaneously. 71 type Context interface { 72 // Deadline returns the time when work done on behalf of this context 73 // should be canceled. Deadline returns ok==false when no deadline is 74 // set. Successive calls to Deadline return the same results. 75 Deadline() (deadline time.Time, ok bool) 76 77 // Done returns a channel that's closed when work done on behalf of this 78 // context should be canceled. Done may return nil if this context can 79 // never be canceled. Successive calls to Done return the same value. 80 // The close of the Done channel may happen asynchronously, 81 // after the cancel function returns. 82 // 83 // WithCancel arranges for Done to be closed when cancel is called; 84 // WithDeadline arranges for Done to be closed when the deadline 85 // expires; WithTimeout arranges for Done to be closed when the timeout 86 // elapses. 87 // 88 // Done is provided for use in select statements: 89 // 90 // // Stream generates values with DoSomething and sends them to out 91 // // until DoSomething returns an error or ctx.Done is closed. 92 // func Stream(ctx context.Context, out chan<- Value) error { 93 // for { 94 // v, err := DoSomething(ctx) 95 // if err != nil { 96 // return err 97 // } 98 // select { 99 // case <-ctx.Done(): 100 // return ctx.Err() 101 // case out <- v: 102 // } 103 // } 104 // } 105 // 106 // See https://blog.golang.org/pipelines for more examples of how to use 107 // a Done channel for cancellation. 108 Done() <-chan struct{} 109 110 // If Done is not yet closed, Err returns nil. 111 // If Done is closed, Err returns a non-nil error explaining why: 112 // DeadlineExceeded if the context's deadline passed, 113 // or Canceled if the context was canceled for some other reason. 114 // After Err returns a non-nil error, successive calls to Err return the same error. 115 Err() error 116 117 // Value returns the value associated with this context for key, or nil 118 // if no value is associated with key. Successive calls to Value with 119 // the same key returns the same result. 120 // 121 // Use context values only for request-scoped data that transits 122 // processes and API boundaries, not for passing optional parameters to 123 // functions. 124 // 125 // A key identifies a specific value in a Context. Functions that wish 126 // to store values in Context typically allocate a key in a global 127 // variable then use that key as the argument to context.WithValue and 128 // Context.Value. A key can be any type that supports equality; 129 // packages should define keys as an unexported type to avoid 130 // collisions. 131 // 132 // Packages that define a Context key should provide type-safe accessors 133 // for the values stored using that key: 134 // 135 // // Package user defines a User type that's stored in Contexts. 136 // package user 137 // 138 // import "context" 139 // 140 // // User is the type of value stored in the Contexts. 141 // type User struct {...} 142 // 143 // // key is an unexported type for keys defined in this package. 144 // // This prevents collisions with keys defined in other packages. 145 // type key int 146 // 147 // // userKey is the key for user.User values in Contexts. It is 148 // // unexported; clients use user.NewContext and user.FromContext 149 // // instead of using this key directly. 150 // var userKey key 151 // 152 // // NewContext returns a new Context that carries value u. 153 // func NewContext(ctx context.Context, u *User) context.Context { 154 // return context.WithValue(ctx, userKey, u) 155 // } 156 // 157 // // FromContext returns the User value stored in ctx, if any. 158 // func FromContext(ctx context.Context) (*User, bool) { 159 // u, ok := ctx.Value(userKey).(*User) 160 // return u, ok 161 // } 162 Value(key any) any 163 } 164 165 // Canceled is the error returned by [Context.Err] when the context is canceled 166 // for some reason other than its deadline passing. 167 var Canceled = errors.New("context canceled") 168 169 // DeadlineExceeded is the error returned by [Context.Err] when the context is canceled 170 // due to its deadline passing. 171 var DeadlineExceeded error = deadlineExceededError{} 172 173 type deadlineExceededError struct{} 174 175 func (deadlineExceededError) Error() string { return "context deadline exceeded" } 176 func (deadlineExceededError) Timeout() bool { return true } 177 func (deadlineExceededError) Temporary() bool { return true } 178 179 // An emptyCtx is never canceled, has no values, and has no deadline. 180 // It is the common base of backgroundCtx and todoCtx. 181 type emptyCtx struct{} 182 183 func (emptyCtx) Deadline() (deadline time.Time, ok bool) { 184 return 185 } 186 187 func (emptyCtx) Done() <-chan struct{} { 188 return nil 189 } 190 191 func (emptyCtx) Err() error { 192 return nil 193 } 194 195 func (emptyCtx) Value(key any) any { 196 return nil 197 } 198 199 type backgroundCtx struct{ emptyCtx } 200 201 func (backgroundCtx) String() string { 202 return "context.Background" 203 } 204 205 type todoCtx struct{ emptyCtx } 206 207 func (todoCtx) String() string { 208 return "context.TODO" 209 } 210 211 // Background returns a non-nil, empty [Context]. It is never canceled, has no 212 // values, and has no deadline. It is typically used by the main function, 213 // initialization, and tests, and as the top-level Context for incoming 214 // requests. 215 func Background() Context { 216 return backgroundCtx{} 217 } 218 219 // TODO returns a non-nil, empty [Context]. Code should use context.TODO when 220 // it's unclear which Context to use or it is not yet available (because the 221 // surrounding function has not yet been extended to accept a Context 222 // parameter). 223 func TODO() Context { 224 return todoCtx{} 225 } 226 227 // A CancelFunc tells an operation to abandon its work. 228 // A CancelFunc does not wait for the work to stop. 229 // A CancelFunc may be called by multiple goroutines simultaneously. 230 // After the first call, subsequent calls to a CancelFunc do nothing. 231 type CancelFunc func() 232 233 // WithCancel returns a derived context that points to the parent context 234 // but has a new Done channel. The returned context's Done channel is closed 235 // when the returned cancel function is called or when the parent context's 236 // Done channel is closed, whichever happens first. 237 // 238 // Canceling this context releases resources associated with it, so code should 239 // call cancel as soon as the operations running in this [Context] complete. 240 func WithCancel(parent Context) (ctx Context, cancel CancelFunc) { 241 c := withCancel(parent) 242 return c, func() { c.cancel(true, Canceled, nil) } 243 } 244 245 // A CancelCauseFunc behaves like a [CancelFunc] but additionally sets the cancellation cause. 246 // This cause can be retrieved by calling [Cause] on the canceled Context or on 247 // any of its derived Contexts. 248 // 249 // If the context has already been canceled, CancelCauseFunc does not set the cause. 250 // For example, if childContext is derived from parentContext: 251 // - if parentContext is canceled with cause1 before childContext is canceled with cause2, 252 // then Cause(parentContext) == Cause(childContext) == cause1 253 // - if childContext is canceled with cause2 before parentContext is canceled with cause1, 254 // then Cause(parentContext) == cause1 and Cause(childContext) == cause2 255 type CancelCauseFunc func(cause error) 256 257 // WithCancelCause behaves like [WithCancel] but returns a [CancelCauseFunc] instead of a [CancelFunc]. 258 // Calling cancel with a non-nil error (the "cause") records that error in ctx; 259 // it can then be retrieved using Cause(ctx). 260 // Calling cancel with nil sets the cause to Canceled. 261 // 262 // Example use: 263 // 264 // ctx, cancel := context.WithCancelCause(parent) 265 // cancel(myError) 266 // ctx.Err() // returns context.Canceled 267 // context.Cause(ctx) // returns myError 268 func WithCancelCause(parent Context) (ctx Context, cancel CancelCauseFunc) { 269 c := withCancel(parent) 270 return c, func(cause error) { c.cancel(true, Canceled, cause) } 271 } 272 273 func withCancel(parent Context) *cancelCtx { 274 if parent == nil { 275 panic("cannot create context from nil parent") 276 } 277 c := &cancelCtx{} 278 c.propagateCancel(parent, c) 279 return c 280 } 281 282 // Cause returns a non-nil error explaining why c was canceled. 283 // The first cancellation of c or one of its parents sets the cause. 284 // If that cancellation happened via a call to CancelCauseFunc(err), 285 // then [Cause] returns err. 286 // Otherwise Cause(c) returns the same value as c.Err(). 287 // Cause returns nil if c has not been canceled yet. 288 func Cause(c Context) error { 289 if cc, ok := c.Value(&cancelCtxKey).(*cancelCtx); ok { 290 cc.mu.Lock() 291 defer cc.mu.Unlock() 292 return cc.cause 293 } 294 // There is no cancelCtxKey value, so we know that c is 295 // not a descendant of some Context created by WithCancelCause. 296 // Therefore, there is no specific cause to return. 297 // If this is not one of the standard Context types, 298 // it might still have an error even though it won't have a cause. 299 return c.Err() 300 } 301 302 // AfterFunc arranges to call f in its own goroutine after ctx is canceled. 303 // If ctx is already canceled, AfterFunc calls f immediately in its own goroutine. 304 // 305 // Multiple calls to AfterFunc on a context operate independently; 306 // one does not replace another. 307 // 308 // Calling the returned stop function stops the association of ctx with f. 309 // It returns true if the call stopped f from being run. 310 // If stop returns false, 311 // either the context is canceled and f has been started in its own goroutine; 312 // or f was already stopped. 313 // The stop function does not wait for f to complete before returning. 314 // If the caller needs to know whether f is completed, 315 // it must coordinate with f explicitly. 316 // 317 // If ctx has a "AfterFunc(func()) func() bool" method, 318 // AfterFunc will use it to schedule the call. 319 func AfterFunc(ctx Context, f func()) (stop func() bool) { 320 a := &afterFuncCtx{ 321 f: f, 322 } 323 a.cancelCtx.propagateCancel(ctx, a) 324 return func() bool { 325 stopped := false 326 a.once.Do(func() { 327 stopped = true 328 }) 329 if stopped { 330 a.cancel(true, Canceled, nil) 331 } 332 return stopped 333 } 334 } 335 336 type afterFuncer interface { 337 AfterFunc(func()) func() bool 338 } 339 340 type afterFuncCtx struct { 341 cancelCtx 342 once sync.Once // either starts running f or stops f from running 343 f func() 344 } 345 346 func (a *afterFuncCtx) cancel(removeFromParent bool, err, cause error) { 347 a.cancelCtx.cancel(false, err, cause) 348 if removeFromParent { 349 removeChild(a.Context, a) 350 } 351 a.once.Do(func() { 352 go a.f() 353 }) 354 } 355 356 // A stopCtx is used as the parent context of a cancelCtx when 357 // an AfterFunc has been registered with the parent. 358 // It holds the stop function used to unregister the AfterFunc. 359 type stopCtx struct { 360 Context 361 stop func() bool 362 } 363 364 // goroutines counts the number of goroutines ever created; for testing. 365 var goroutines atomic.Int32 366 367 // &cancelCtxKey is the key that a cancelCtx returns itself for. 368 var cancelCtxKey int 369 370 // parentCancelCtx returns the underlying *cancelCtx for parent. 371 // It does this by looking up parent.Value(&cancelCtxKey) to find 372 // the innermost enclosing *cancelCtx and then checking whether 373 // parent.Done() matches that *cancelCtx. (If not, the *cancelCtx 374 // has been wrapped in a custom implementation providing a 375 // different done channel, in which case we should not bypass it.) 376 func parentCancelCtx(parent Context) (*cancelCtx, bool) { 377 done := parent.Done() 378 if done == closedchan || done == nil { 379 return nil, false 380 } 381 p, ok := parent.Value(&cancelCtxKey).(*cancelCtx) 382 if !ok { 383 return nil, false 384 } 385 pdone, _ := p.done.Load().(chan struct{}) 386 if pdone != done { 387 return nil, false 388 } 389 return p, true 390 } 391 392 // removeChild removes a context from its parent. 393 func removeChild(parent Context, child canceler) { 394 if s, ok := parent.(stopCtx); ok { 395 s.stop() 396 return 397 } 398 p, ok := parentCancelCtx(parent) 399 if !ok { 400 return 401 } 402 p.mu.Lock() 403 if p.children != nil { 404 delete(p.children, child) 405 } 406 p.mu.Unlock() 407 } 408 409 // A canceler is a context type that can be canceled directly. The 410 // implementations are *cancelCtx and *timerCtx. 411 type canceler interface { 412 cancel(removeFromParent bool, err, cause error) 413 Done() <-chan struct{} 414 } 415 416 // closedchan is a reusable closed channel. 417 var closedchan = make(chan struct{}) 418 419 func init() { 420 close(closedchan) 421 } 422 423 // A cancelCtx can be canceled. When canceled, it also cancels any children 424 // that implement canceler. 425 type cancelCtx struct { 426 Context 427 428 mu sync.Mutex // protects following fields 429 done atomic.Value // of chan struct{}, created lazily, closed by first cancel call 430 children map[canceler]struct{} // set to nil by the first cancel call 431 err atomic.Value // set to non-nil by the first cancel call 432 cause error // set to non-nil by the first cancel call 433 } 434 435 func (c *cancelCtx) Value(key any) any { 436 if key == &cancelCtxKey { 437 return c 438 } 439 return value(c.Context, key) 440 } 441 442 func (c *cancelCtx) Done() <-chan struct{} { 443 d := c.done.Load() 444 if d != nil { 445 return d.(chan struct{}) 446 } 447 c.mu.Lock() 448 defer c.mu.Unlock() 449 d = c.done.Load() 450 if d == nil { 451 d = make(chan struct{}) 452 c.done.Store(d) 453 } 454 return d.(chan struct{}) 455 } 456 457 func (c *cancelCtx) Err() error { 458 // An atomic load is ~5x faster than a mutex, which can matter in tight loops. 459 if err := c.err.Load(); err != nil { 460 return err.(error) 461 } 462 return nil 463 } 464 465 // propagateCancel arranges for child to be canceled when parent is. 466 // It sets the parent context of cancelCtx. 467 func (c *cancelCtx) propagateCancel(parent Context, child canceler) { 468 c.Context = parent 469 470 done := parent.Done() 471 if done == nil { 472 return // parent is never canceled 473 } 474 475 select { 476 case <-done: 477 // parent is already canceled 478 child.cancel(false, parent.Err(), Cause(parent)) 479 return 480 default: 481 } 482 483 if p, ok := parentCancelCtx(parent); ok { 484 // parent is a *cancelCtx, or derives from one. 485 p.mu.Lock() 486 if err := p.err.Load(); err != nil { 487 // parent has already been canceled 488 child.cancel(false, err.(error), p.cause) 489 } else { 490 if p.children == nil { 491 p.children = make(map[canceler]struct{}) 492 } 493 p.children[child] = struct{}{} 494 } 495 p.mu.Unlock() 496 return 497 } 498 499 if a, ok := parent.(afterFuncer); ok { 500 // parent implements an AfterFunc method. 501 c.mu.Lock() 502 stop := a.AfterFunc(func() { 503 child.cancel(false, parent.Err(), Cause(parent)) 504 }) 505 c.Context = stopCtx{ 506 Context: parent, 507 stop: stop, 508 } 509 c.mu.Unlock() 510 return 511 } 512 513 goroutines.Add(1) 514 go func() { 515 select { 516 case <-parent.Done(): 517 child.cancel(false, parent.Err(), Cause(parent)) 518 case <-child.Done(): 519 } 520 }() 521 } 522 523 type stringer interface { 524 String() string 525 } 526 527 func contextName(c Context) string { 528 if s, ok := c.(stringer); ok { 529 return s.String() 530 } 531 return reflectlite.TypeOf(c).String() 532 } 533 534 func (c *cancelCtx) String() string { 535 return contextName(c.Context) + ".WithCancel" 536 } 537 538 // cancel closes c.done, cancels each of c's children, and, if 539 // removeFromParent is true, removes c from its parent's children. 540 // cancel sets c.cause to cause if this is the first time c is canceled. 541 func (c *cancelCtx) cancel(removeFromParent bool, err, cause error) { 542 if err == nil { 543 panic("context: internal error: missing cancel error") 544 } 545 if cause == nil { 546 cause = err 547 } 548 c.mu.Lock() 549 if c.err.Load() != nil { 550 c.mu.Unlock() 551 return // already canceled 552 } 553 c.err.Store(err) 554 c.cause = cause 555 d, _ := c.done.Load().(chan struct{}) 556 if d == nil { 557 c.done.Store(closedchan) 558 } else { 559 close(d) 560 } 561 for child := range c.children { 562 // NOTE: acquiring the child's lock while holding parent's lock. 563 child.cancel(false, err, cause) 564 } 565 c.children = nil 566 c.mu.Unlock() 567 568 if removeFromParent { 569 removeChild(c.Context, c) 570 } 571 } 572 573 // WithoutCancel returns a derived context that points to the parent context 574 // and is not canceled when parent is canceled. 575 // The returned context returns no Deadline or Err, and its Done channel is nil. 576 // Calling [Cause] on the returned context returns nil. 577 func WithoutCancel(parent Context) Context { 578 if parent == nil { 579 panic("cannot create context from nil parent") 580 } 581 return withoutCancelCtx{parent} 582 } 583 584 type withoutCancelCtx struct { 585 c Context 586 } 587 588 func (withoutCancelCtx) Deadline() (deadline time.Time, ok bool) { 589 return 590 } 591 592 func (withoutCancelCtx) Done() <-chan struct{} { 593 return nil 594 } 595 596 func (withoutCancelCtx) Err() error { 597 return nil 598 } 599 600 func (c withoutCancelCtx) Value(key any) any { 601 return value(c, key) 602 } 603 604 func (c withoutCancelCtx) String() string { 605 return contextName(c.c) + ".WithoutCancel" 606 } 607 608 // WithDeadline returns a derived context that points to the parent context 609 // but has the deadline adjusted to be no later than d. If the parent's 610 // deadline is already earlier than d, WithDeadline(parent, d) is semantically 611 // equivalent to parent. The returned [Context.Done] channel is closed when 612 // the deadline expires, when the returned cancel function is called, 613 // or when the parent context's Done channel is closed, whichever happens first. 614 // 615 // Canceling this context releases resources associated with it, so code should 616 // call cancel as soon as the operations running in this [Context] complete. 617 func WithDeadline(parent Context, d time.Time) (Context, CancelFunc) { 618 return WithDeadlineCause(parent, d, nil) 619 } 620 621 // WithDeadlineCause behaves like [WithDeadline] but also sets the cause of the 622 // returned Context when the deadline is exceeded. The returned [CancelFunc] does 623 // not set the cause. 624 func WithDeadlineCause(parent Context, d time.Time, cause error) (Context, CancelFunc) { 625 if parent == nil { 626 panic("cannot create context from nil parent") 627 } 628 if cur, ok := parent.Deadline(); ok && cur.Before(d) { 629 // The current deadline is already sooner than the new one. 630 return WithCancel(parent) 631 } 632 c := &timerCtx{ 633 deadline: d, 634 } 635 c.cancelCtx.propagateCancel(parent, c) 636 dur := time.Until(d) 637 if dur <= 0 { 638 c.cancel(true, DeadlineExceeded, cause) // deadline has already passed 639 return c, func() { c.cancel(false, Canceled, nil) } 640 } 641 c.mu.Lock() 642 defer c.mu.Unlock() 643 if c.err.Load() == nil { 644 c.timer = time.AfterFunc(dur, func() { 645 c.cancel(true, DeadlineExceeded, cause) 646 }) 647 } 648 return c, func() { c.cancel(true, Canceled, nil) } 649 } 650 651 // A timerCtx carries a timer and a deadline. It embeds a cancelCtx to 652 // implement Done and Err. It implements cancel by stopping its timer then 653 // delegating to cancelCtx.cancel. 654 type timerCtx struct { 655 cancelCtx 656 timer *time.Timer // Under cancelCtx.mu. 657 658 deadline time.Time 659 } 660 661 func (c *timerCtx) Deadline() (deadline time.Time, ok bool) { 662 return c.deadline, true 663 } 664 665 func (c *timerCtx) String() string { 666 return contextName(c.cancelCtx.Context) + ".WithDeadline(" + 667 c.deadline.String() + " [" + 668 time.Until(c.deadline).String() + "])" 669 } 670 671 func (c *timerCtx) cancel(removeFromParent bool, err, cause error) { 672 c.cancelCtx.cancel(false, err, cause) 673 if removeFromParent { 674 // Remove this timerCtx from its parent cancelCtx's children. 675 removeChild(c.cancelCtx.Context, c) 676 } 677 c.mu.Lock() 678 if c.timer != nil { 679 c.timer.Stop() 680 c.timer = nil 681 } 682 c.mu.Unlock() 683 } 684 685 // WithTimeout returns WithDeadline(parent, time.Now().Add(timeout)). 686 // 687 // Canceling this context releases resources associated with it, so code should 688 // call cancel as soon as the operations running in this [Context] complete: 689 // 690 // func slowOperationWithTimeout(ctx context.Context) (Result, error) { 691 // ctx, cancel := context.WithTimeout(ctx, 100*time.Millisecond) 692 // defer cancel() // releases resources if slowOperation completes before timeout elapses 693 // return slowOperation(ctx) 694 // } 695 func WithTimeout(parent Context, timeout time.Duration) (Context, CancelFunc) { 696 return WithDeadline(parent, time.Now().Add(timeout)) 697 } 698 699 // WithTimeoutCause behaves like [WithTimeout] but also sets the cause of the 700 // returned Context when the timeout expires. The returned [CancelFunc] does 701 // not set the cause. 702 func WithTimeoutCause(parent Context, timeout time.Duration, cause error) (Context, CancelFunc) { 703 return WithDeadlineCause(parent, time.Now().Add(timeout), cause) 704 } 705 706 // WithValue returns a derived context that points to the parent Context. 707 // In the derived context, the value associated with key is val. 708 // 709 // Use context Values only for request-scoped data that transits processes and 710 // APIs, not for passing optional parameters to functions. 711 // 712 // The provided key must be comparable and should not be of type 713 // string or any other built-in type to avoid collisions between 714 // packages using context. Users of WithValue should define their own 715 // types for keys. To avoid allocating when assigning to an 716 // interface{}, context keys often have concrete type 717 // struct{}. Alternatively, exported context key variables' static 718 // type should be a pointer or interface. 719 func WithValue(parent Context, key, val any) Context { 720 if parent == nil { 721 panic("cannot create context from nil parent") 722 } 723 if key == nil { 724 panic("nil key") 725 } 726 if !reflectlite.TypeOf(key).Comparable() { 727 panic("key is not comparable") 728 } 729 return &valueCtx{parent, key, val} 730 } 731 732 // A valueCtx carries a key-value pair. It implements Value for that key and 733 // delegates all other calls to the embedded Context. 734 type valueCtx struct { 735 Context 736 key, val any 737 } 738 739 // stringify tries a bit to stringify v, without using fmt, since we don't 740 // want context depending on the unicode tables. This is only used by 741 // *valueCtx.String(). 742 func stringify(v any) string { 743 switch s := v.(type) { 744 case stringer: 745 return s.String() 746 case string: 747 return s 748 case nil: 749 return "<nil>" 750 } 751 return reflectlite.TypeOf(v).String() 752 } 753 754 func (c *valueCtx) String() string { 755 return contextName(c.Context) + ".WithValue(" + 756 stringify(c.key) + ", " + 757 stringify(c.val) + ")" 758 } 759 760 func (c *valueCtx) Value(key any) any { 761 if c.key == key { 762 return c.val 763 } 764 return value(c.Context, key) 765 } 766 767 func value(c Context, key any) any { 768 for { 769 switch ctx := c.(type) { 770 case *valueCtx: 771 if key == ctx.key { 772 return ctx.val 773 } 774 c = ctx.Context 775 case *cancelCtx: 776 if key == &cancelCtxKey { 777 return c 778 } 779 c = ctx.Context 780 case withoutCancelCtx: 781 if key == &cancelCtxKey { 782 // This implements Cause(ctx) == nil 783 // when ctx is created using WithoutCancel. 784 return nil 785 } 786 c = ctx.c 787 case *timerCtx: 788 if key == &cancelCtxKey { 789 return &ctx.cancelCtx 790 } 791 c = ctx.Context 792 case backgroundCtx, todoCtx: 793 return nil 794 default: 795 return c.Value(key) 796 } 797 } 798 } 799