2020-10-05 17:25:09 +02:00
|
|
|
// Copyright The OpenTelemetry 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.
|
|
|
|
|
2020-11-13 17:34:24 +02:00
|
|
|
package baggage // import "go.opentelemetry.io/otel/baggage"
|
2020-10-05 17:25:09 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
2021-02-18 19:59:37 +02:00
|
|
|
"go.opentelemetry.io/otel/attribute"
|
2020-10-05 17:25:09 +02:00
|
|
|
"go.opentelemetry.io/otel/internal/baggage"
|
|
|
|
)
|
|
|
|
|
2020-11-13 17:34:24 +02:00
|
|
|
// Set returns a copy of the set of baggage key-values in ctx.
|
2021-02-18 19:59:37 +02:00
|
|
|
func Set(ctx context.Context) attribute.Set {
|
2020-10-05 17:25:09 +02:00
|
|
|
// TODO (MrAlias, #1222): The underlying storage, the Map, shares many of
|
2021-02-18 19:59:37 +02:00
|
|
|
// the functional elements of the attribute.Set. These should be unified so
|
2020-10-05 17:25:09 +02:00
|
|
|
// this conversion is unnecessary and there is no performance hit calling
|
|
|
|
// this.
|
|
|
|
m := baggage.MapFromContext(ctx)
|
2021-02-18 19:59:37 +02:00
|
|
|
values := make([]attribute.KeyValue, 0, m.Len())
|
|
|
|
m.Foreach(func(kv attribute.KeyValue) bool {
|
2020-10-05 17:25:09 +02:00
|
|
|
values = append(values, kv)
|
|
|
|
return true
|
|
|
|
})
|
2021-02-18 19:59:37 +02:00
|
|
|
return attribute.NewSet(values...)
|
2020-10-05 17:25:09 +02:00
|
|
|
}
|
|
|
|
|
2020-11-13 17:34:24 +02:00
|
|
|
// Value returns the value related to key in the baggage of ctx. If no
|
2021-02-18 19:59:37 +02:00
|
|
|
// value is set, the returned attribute.Value will be an uninitialized zero-value
|
2020-10-05 17:25:09 +02:00
|
|
|
// with type INVALID.
|
2021-02-18 19:59:37 +02:00
|
|
|
func Value(ctx context.Context, key attribute.Key) attribute.Value {
|
2020-10-05 17:25:09 +02:00
|
|
|
v, _ := baggage.MapFromContext(ctx).Value(key)
|
|
|
|
return v
|
|
|
|
}
|
|
|
|
|
2020-11-13 17:34:24 +02:00
|
|
|
// ContextWithValues returns a copy of parent with pairs updated in the baggage.
|
2021-02-18 19:59:37 +02:00
|
|
|
func ContextWithValues(parent context.Context, pairs ...attribute.KeyValue) context.Context {
|
2020-10-05 17:25:09 +02:00
|
|
|
m := baggage.MapFromContext(parent).Apply(baggage.MapUpdate{
|
|
|
|
MultiKV: pairs,
|
|
|
|
})
|
|
|
|
return baggage.ContextWithMap(parent, m)
|
|
|
|
}
|
|
|
|
|
2020-11-13 17:34:24 +02:00
|
|
|
// ContextWithoutValues returns a copy of parent in which the values related
|
2020-10-05 17:25:09 +02:00
|
|
|
// to keys have been removed from the baggage.
|
2021-02-18 19:59:37 +02:00
|
|
|
func ContextWithoutValues(parent context.Context, keys ...attribute.Key) context.Context {
|
2020-10-05 17:25:09 +02:00
|
|
|
m := baggage.MapFromContext(parent).Apply(baggage.MapUpdate{
|
|
|
|
DropMultiK: keys,
|
|
|
|
})
|
|
|
|
return baggage.ContextWithMap(parent, m)
|
|
|
|
}
|
|
|
|
|
2020-11-13 17:34:24 +02:00
|
|
|
// ContextWithEmpty returns a copy of parent without baggage.
|
|
|
|
func ContextWithEmpty(parent context.Context) context.Context {
|
2020-10-05 17:25:09 +02:00
|
|
|
return baggage.ContextWithNoCorrelationData(parent)
|
|
|
|
}
|