Get the FREE Ultimate OpenClaw Setup Guide →

go-context

Scanned
npx machina-cli add skill cxuu/golang-skills/go-context --openclaw
Files (1)
SKILL.md
6.6 KB

Go Context Usage

context.Context carries security credentials, tracing information, deadlines, and cancellation signals across API and process boundaries. Go programs pass contexts explicitly along the entire function call chain.

Based on Go Wiki CodeReviewComments - Contexts.


Context as First Parameter

Functions that use a Context should accept it as their first parameter:

// Good: Context is first parameter
func F(ctx context.Context, /* other arguments */) error {
    // ...
}

func ProcessRequest(ctx context.Context, req *Request) (*Response, error) {
    // ...
}

This is a strong convention in Go that makes context flow visible and consistent across codebases.


Don't Store Context in Structs

Do not add a Context member to a struct type. Instead, pass ctx as a parameter to each method that needs it:

// Bad: Context stored in struct
type Worker struct {
    ctx context.Context  // Don't do this
    // ...
}

func (w *Worker) Process() error {
    // Uses w.ctx - context lifetime unclear
}
// Good: Context passed to methods
type Worker struct {
    // ...
}

func (w *Worker) Process(ctx context.Context) error {
    // Context explicitly passed - lifetime clear
}

Exception: Methods whose signature must match an interface in the standard library or a third-party library may need to work around this.


Don't Create Custom Context Types

Do not create custom Context types or use interfaces other than context.Context in function signatures:

// Bad: Custom context type
type MyContext interface {
    context.Context
    GetUserID() string
}

func Process(ctx MyContext) error { ... }
// Good: Use standard context.Context
func Process(ctx context.Context) error {
    userID := GetUserID(ctx)  // Extract from context value
    // ...
}

Where to Put Application Data

If you have application data to pass around, consider these options in order of preference:

  1. Function parameters - Most explicit and type-safe
  2. Receiver - For data that belongs to the type
  3. Globals - For truly global configuration (use sparingly)
  4. Context value - Only if it truly belongs there (request-scoped data)
// Good: Explicit parameter
func ProcessOrder(ctx context.Context, userID string, order *Order) error {
    // userID is explicit
}

// Good: Context value for request-scoped data
func ProcessOrder(ctx context.Context, order *Order) error {
    // Request ID from context is appropriate - it's request-scoped
    reqID := RequestIDFromContext(ctx)
    // ...
}

Context values are appropriate for:

  • Request IDs and trace IDs
  • Authentication/authorization info that flows with requests
  • Deadlines and cancellation signals

Context values are not appropriate for:

  • Optional function parameters
  • Data that could be passed explicitly
  • Configuration that doesn't vary per-request

Context Immutability

Contexts are immutable. It's safe to pass the same ctx to multiple calls that share the same deadline, cancellation signal, credentials, and parent trace:

// Good: Same context to multiple calls
func ProcessBatch(ctx context.Context, items []Item) error {
    for _, item := range items {
        // Safe to pass same ctx to each call
        if err := process(ctx, item); err != nil {
            return err
        }
    }
    return nil
}

// Good: Same context to concurrent calls
func ProcessConcurrently(ctx context.Context, a, b *Data) error {
    g, ctx := errgroup.WithContext(ctx)
    g.Go(func() error { return processA(ctx, a) })
    g.Go(func() error { return processB(ctx, b) })
    return g.Wait()
}

When to Use context.Background()

Use context.Background() only for functions that are never request-specific:

// Good: Main function or initialization
func main() {
    ctx := context.Background()
    if err := run(ctx); err != nil {
        log.Fatal(err)
    }
}

// Good: Top-level background task
func startBackgroundWorker() {
    ctx := context.Background()
    go worker(ctx)
}

Default to passing a Context even if you think you don't need to. Only use context.Background() directly if you have a good reason why passing a context would be a mistake:

// Prefer: Accept context even for "simple" operations
func LoadConfig(ctx context.Context) (*Config, error) {
    // Even if not using ctx now, accepting it allows future
    // additions without API changes
}

Common Patterns

Deriving Contexts

// Add timeout
ctx, cancel := context.WithTimeout(ctx, 5*time.Second)
defer cancel()

// Add cancellation
ctx, cancel := context.WithCancel(ctx)
defer cancel()

// Add deadline
ctx, cancel := context.WithDeadline(ctx, time.Now().Add(time.Hour))
defer cancel()

// Add value (use sparingly)
ctx = context.WithValue(ctx, requestIDKey, reqID)

Checking Cancellation

func LongRunningOperation(ctx context.Context) error {
    for {
        select {
        case <-ctx.Done():
            return ctx.Err()
        default:
            // Do work
        }
    }
}

Respecting Cancellation in HTTP Handlers

func handler(w http.ResponseWriter, r *http.Request) {
    ctx := r.Context()
    
    result, err := slowOperation(ctx)
    if err != nil {
        if errors.Is(err, context.Canceled) {
            // Client disconnected
            return
        }
        http.Error(w, err.Error(), http.StatusInternalServerError)
        return
    }
    
    json.NewEncoder(w).Encode(result)
}

Quick Reference

PatternGuidance
Parameter positionAlways first: func F(ctx context.Context, ...)
Struct storageDon't store in structs; pass to methods
Custom typesDon't create; use context.Context interface
Application dataPrefer parameters > receiver > globals > context values
Request-scoped dataAppropriate for context values
Sharing contextSafe - contexts are immutable
context.Background()Only for non-request-specific code
DefaultPass context even if you think you don't need it

See Also

  • go-concurrency: Goroutine patterns, cancellation, and coordination
  • go-error-handling: Handling context cancellation errors
  • go-interfaces: Interface design patterns for context-accepting APIs

Source

git clone https://github.com/cxuu/golang-skills/blob/main/skills/go-context/SKILL.mdView on GitHub

Overview

Go's context.Context carries deadlines, cancellation signals, and request-scoped values across API boundaries. This guide covers best practices like placing context as the first parameter, avoiding embedding it in structs or creating custom types, and propagating it through the call chain to manage cancellation and deadlines.

How This Skill Works

Context is passed as a function parameter (preferably the first one) and is immutable, allowing safe sharing across calls and goroutines. Use derived contexts (WithCancel, WithDeadline, WithTimeout) to control lifetimes, while extracting request-scoped values from the context when needed and propagating the same context downstream.

When to Use It

  • When you need request-scoped data like trace IDs or auth info that travels with a request
  • When you must support cancellation of long-running operations
  • When you want to enforce deadlines on outbound calls or tasks
  • When propagating security credentials or tracing through API boundaries
  • When passing control flow through multiple layers and goroutines

Quick Start

  1. Step 1: Accept ctx as the first parameter in exported functions
  2. Step 2: Use ctx for cancellation and deadlines when making calls (e.g., HTTP requests)
  3. Step 3: Thread ctx through your call chain and goroutines, and retrieve/request-scoped values safely

Best Practices

  • Make context.Context the first parameter of exported functions
  • Do not store context.Context in structs; pass ctx explicitly to methods
  • Avoid defining custom context types or interfaces beyond context.Context
  • Only put request-scoped or lifecycle data in the context; avoid optional params
  • Propagate the same ctx through downstream calls and goroutines, using errgroup where appropriate

Example Use Cases

  • HTTP handlers pass the incoming context to downstream services and log the request ID from the context
  • A worker processes jobs by taking ctx as a parameter and respecting cancellation
  • Use a helper like RequestIDFromContext(ctx) to log per-request identifiers
  • Wrap a series of calls with errgroup.WithContext to propagate cancellation across goroutines
  • Avoid storing context in a struct; pass ctx to methods that need it

Frequently Asked Questions

Add this skill to your agents
Sponsor this space

Reach thousands of developers