File: keys.go

package info (click to toggle)
golang-golang-x-exp 0.0~git20231006.7918f67-2
  • links: PTS, VCS
  • area: main
  • in suites: experimental, forky, sid, trixie
  • size: 6,492 kB
  • sloc: ansic: 1,900; objc: 276; sh: 272; asm: 48; makefile: 27
file content (198 lines) | stat: -rw-r--r-- 5,578 bytes parent folder | download | duplicates (4)
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
// Copyright 2019 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package keys

import (
	"golang.org/x/exp/event"
)

// Value represents a key for untyped values.
type Value string

// From can be used to get a value from a Label.
func (k Value) From(l event.Label) interface{} { return l.Interface() }

// Of creates a new Label with this key and the supplied value.
func (k Value) Of(v interface{}) event.Label {
	return event.Value(string(k), v)
}

// Tag represents a key for tagging labels that have no value.
// These are used when the existence of the label is the entire information it
// carries, such as marking events to be of a specific kind, or from a specific
// package.
type Tag string

// New creates a new Label with this key.
func (k Tag) New() event.Label {
	return event.Label{Name: string(k)}
}

// Int represents a key
type Int string

// Of creates a new Label with this key and the supplied value.
func (k Int) Of(v int) event.Label {
	return event.Int64(string(k), int64(v))
}

// From can be used to get a value from a Label.
func (k Int) From(l event.Label) int { return int(l.Int64()) }

// Int8 represents a key
type Int8 string

// Of creates a new Label with this key and the supplied value.
func (k Int8) Of(v int8) event.Label {
	return event.Int64(string(k), int64(v))
}

// From can be used to get a value from a Label.
func (k Int8) From(l event.Label) int8 { return int8(l.Int64()) }

// Int16 represents a key
type Int16 string

// Of creates a new Label with this key and the supplied value.
func (k Int16) Of(v int16) event.Label {
	return event.Int64(string(k), int64(v))
}

// From can be used to get a value from a Label.
func (k Int16) From(l event.Label) int16 { return int16(l.Int64()) }

// Int32 represents a key
type Int32 string

// Of creates a new Label with this key and the supplied value.
func (k Int32) Of(v int32) event.Label {
	return event.Int64(string(k), int64(v))
}

// From can be used to get a value from a Label.
func (k Int32) From(l event.Label) int32 { return int32(l.Int64()) }

// Int64 represents a key
type Int64 string

// Of creates a new Label with this key and the supplied value.
func (k Int64) Of(v int64) event.Label {
	return event.Int64(string(k), v)
}

// From can be used to get a value from a Label.
func (k Int64) From(l event.Label) int64 { return l.Int64() }

// UInt represents a key
type UInt string

// Of creates a new Label with this key and the supplied value.
func (k UInt) Of(v uint) event.Label {
	return event.Uint64(string(k), uint64(v))
}

// From can be used to get a value from a Label.
func (k UInt) From(l event.Label) uint { return uint(l.Uint64()) }

// UInt8 represents a key
type UInt8 string

// Of creates a new Label with this key and the supplied value.
func (k UInt8) Of(v uint8) event.Label {
	return event.Uint64(string(k), uint64(v))
}

// From can be used to get a value from a Label.
func (k UInt8) From(l event.Label) uint8 { return uint8(l.Uint64()) }

// UInt16 represents a key
type UInt16 string

// Of creates a new Label with this key and the supplied value.
func (k UInt16) Of(v uint16) event.Label {
	return event.Uint64(string(k), uint64(v))
}

// From can be used to get a value from a Label.
func (k UInt16) From(l event.Label) uint16 { return uint16(l.Uint64()) }

// UInt32 represents a key
type UInt32 string

// Of creates a new Label with this key and the supplied value.
func (k UInt32) Of(v uint32) event.Label {
	return event.Uint64(string(k), uint64(v))
}

// From can be used to get a value from a Label.
func (k UInt32) From(l event.Label) uint32 { return uint32(l.Uint64()) }

// UInt64 represents a key
type UInt64 string

// Of creates a new Label with this key and the supplied value.
func (k UInt64) Of(v uint64) event.Label {
	return event.Uint64(string(k), v)
}

// From can be used to get a value from a Label.
func (k UInt64) From(l event.Label) uint64 { return l.Uint64() }

// Float32 represents a key
type Float32 string

// Of creates a new Label with this key and the supplied value.
func (k Float32) Of(v float32) event.Label {
	return event.Float64(string(k), float64(v))
}

// From can be used to get a value from a Label.
func (k Float32) From(l event.Label) float32 { return float32(l.Float64()) }

// Float64 represents a key
type Float64 string

// Of creates a new Label with this key and the supplied value.
func (k Float64) Of(v float64) event.Label {
	return event.Float64(string(k), v)
}

// From can be used to get a value from a Label.
func (k Float64) From(l event.Label) float64 {
	return l.Float64()
}

// String represents a key
type String string

// Of creates a new Label with this key and the supplied value.
func (k String) Of(v string) event.Label {
	return event.String(string(k), v)
}

// From can be used to get a value from a Label.
func (k String) From(l event.Label) string { return l.String() }

// Bool represents a key
type Bool string

// Of creates a new Label with this key and the supplied value.
func (k Bool) Of(v bool) event.Label {
	return event.Bool(string(k), v)
}

// From can be used to get a value from a Label.
func (k Bool) From(l event.Label) bool { return l.Bool() }

// Error represents a key
type Error string

// Of creates a new Label with this key and the supplied value.
func (k Error) Of(v error) event.Label {
	return event.Value(string(k), v)
}

// From can be used to get a value from a Label.
func (k Error) From(l event.Label) error { return l.Interface().(error) }