// Copyright The OpenTelemetry Authors
// SPDX-License-Identifier: Apache-2.0

package trace // import "go.opentelemetry.io/otel/trace"

import 

type traceContextKeyType int

const currentSpanKey traceContextKeyType = iota

// ContextWithSpan returns a copy of parent with span set as the current Span.
func ( context.Context,  Span) context.Context {
	return context.WithValue(, currentSpanKey, )
}

// ContextWithSpanContext returns a copy of parent with sc as the current
// Span. The Span implementation that wraps sc is non-recording and performs
// no operations other than to return sc as the SpanContext from the
// SpanContext method.
func ( context.Context,  SpanContext) context.Context {
	return ContextWithSpan(, nonRecordingSpan{sc: })
}

// ContextWithRemoteSpanContext returns a copy of parent with rsc set explicitly
// as a remote SpanContext and as the current Span. The Span implementation
// that wraps rsc is non-recording and performs no operations other than to
// return rsc as the SpanContext from the SpanContext method.
func ( context.Context,  SpanContext) context.Context {
	return ContextWithSpanContext(, .WithRemote(true))
}

// SpanFromContext returns the current Span from ctx.
//
// If no Span is currently set in ctx an implementation of a Span that
// performs no operations is returned.
func ( context.Context) Span {
	if  == nil {
		return noopSpanInstance
	}
	if ,  := .Value(currentSpanKey).(Span);  {
		return 
	}
	return noopSpanInstance
}

// SpanContextFromContext returns the current Span's SpanContext.
func ( context.Context) SpanContext {
	return SpanFromContext().SpanContext()
}