1// Copyright (c) 2016 Uber Technologies, Inc.
2//
3// Permission is hereby granted, free of charge, to any person obtaining a copy
4// of this software and associated documentation files (the "Software"), to deal
5// in the Software without restriction, including without limitation the rights
6// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7// copies of the Software, and to permit persons to whom the Software is
8// furnished to do so, subject to the following conditions:
9//
10// The above copyright notice and this permission notice shall be included in
11// all copies or substantial portions of the Software.
12//
13// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19// THE SOFTWARE.
20
21package zap
22
23import (
24	"fmt"
25	"math"
26	"time"
27
28	"go.uber.org/zap/zapcore"
29)
30
31// Field is an alias for Field. Aliasing this type dramatically
32// improves the navigability of this package's API documentation.
33type Field = zapcore.Field
34
35var (
36	_minTimeInt64 = time.Unix(0, math.MinInt64)
37	_maxTimeInt64 = time.Unix(0, math.MaxInt64)
38)
39
40// Skip constructs a no-op field, which is often useful when handling invalid
41// inputs in other Field constructors.
42func Skip() Field {
43	return Field{Type: zapcore.SkipType}
44}
45
46// nilField returns a field which will marshal explicitly as nil. See motivation
47// in https://github.com/uber-go/zap/issues/753 . If we ever make breaking
48// changes and add zapcore.NilType and zapcore.ObjectEncoder.AddNil, the
49// implementation here should be changed to reflect that.
50func nilField(key string) Field { return Reflect(key, nil) }
51
52// Binary constructs a field that carries an opaque binary blob.
53//
54// Binary data is serialized in an encoding-appropriate format. For example,
55// zap's JSON encoder base64-encodes binary blobs. To log UTF-8 encoded text,
56// use ByteString.
57func Binary(key string, val []byte) Field {
58	return Field{Key: key, Type: zapcore.BinaryType, Interface: val}
59}
60
61// Bool constructs a field that carries a bool.
62func Bool(key string, val bool) Field {
63	var ival int64
64	if val {
65		ival = 1
66	}
67	return Field{Key: key, Type: zapcore.BoolType, Integer: ival}
68}
69
70// Boolp constructs a field that carries a *bool. The returned Field will safely
71// and explicitly represent `nil` when appropriate.
72func Boolp(key string, val *bool) Field {
73	if val == nil {
74		return nilField(key)
75	}
76	return Bool(key, *val)
77}
78
79// ByteString constructs a field that carries UTF-8 encoded text as a []byte.
80// To log opaque binary blobs (which aren't necessarily valid UTF-8), use
81// Binary.
82func ByteString(key string, val []byte) Field {
83	return Field{Key: key, Type: zapcore.ByteStringType, Interface: val}
84}
85
86// Complex128 constructs a field that carries a complex number. Unlike most
87// numeric fields, this costs an allocation (to convert the complex128 to
88// interface{}).
89func Complex128(key string, val complex128) Field {
90	return Field{Key: key, Type: zapcore.Complex128Type, Interface: val}
91}
92
93// Complex128p constructs a field that carries a *complex128. The returned Field will safely
94// and explicitly represent `nil` when appropriate.
95func Complex128p(key string, val *complex128) Field {
96	if val == nil {
97		return nilField(key)
98	}
99	return Complex128(key, *val)
100}
101
102// Complex64 constructs a field that carries a complex number. Unlike most
103// numeric fields, this costs an allocation (to convert the complex64 to
104// interface{}).
105func Complex64(key string, val complex64) Field {
106	return Field{Key: key, Type: zapcore.Complex64Type, Interface: val}
107}
108
109// Complex64p constructs a field that carries a *complex64. The returned Field will safely
110// and explicitly represent `nil` when appropriate.
111func Complex64p(key string, val *complex64) Field {
112	if val == nil {
113		return nilField(key)
114	}
115	return Complex64(key, *val)
116}
117
118// Float64 constructs a field that carries a float64. The way the
119// floating-point value is represented is encoder-dependent, so marshaling is
120// necessarily lazy.
121func Float64(key string, val float64) Field {
122	return Field{Key: key, Type: zapcore.Float64Type, Integer: int64(math.Float64bits(val))}
123}
124
125// Float64p constructs a field that carries a *float64. The returned Field will safely
126// and explicitly represent `nil` when appropriate.
127func Float64p(key string, val *float64) Field {
128	if val == nil {
129		return nilField(key)
130	}
131	return Float64(key, *val)
132}
133
134// Float32 constructs a field that carries a float32. The way the
135// floating-point value is represented is encoder-dependent, so marshaling is
136// necessarily lazy.
137func Float32(key string, val float32) Field {
138	return Field{Key: key, Type: zapcore.Float32Type, Integer: int64(math.Float32bits(val))}
139}
140
141// Float32p constructs a field that carries a *float32. The returned Field will safely
142// and explicitly represent `nil` when appropriate.
143func Float32p(key string, val *float32) Field {
144	if val == nil {
145		return nilField(key)
146	}
147	return Float32(key, *val)
148}
149
150// Int constructs a field with the given key and value.
151func Int(key string, val int) Field {
152	return Int64(key, int64(val))
153}
154
155// Intp constructs a field that carries a *int. The returned Field will safely
156// and explicitly represent `nil` when appropriate.
157func Intp(key string, val *int) Field {
158	if val == nil {
159		return nilField(key)
160	}
161	return Int(key, *val)
162}
163
164// Int64 constructs a field with the given key and value.
165func Int64(key string, val int64) Field {
166	return Field{Key: key, Type: zapcore.Int64Type, Integer: val}
167}
168
169// Int64p constructs a field that carries a *int64. The returned Field will safely
170// and explicitly represent `nil` when appropriate.
171func Int64p(key string, val *int64) Field {
172	if val == nil {
173		return nilField(key)
174	}
175	return Int64(key, *val)
176}
177
178// Int32 constructs a field with the given key and value.
179func Int32(key string, val int32) Field {
180	return Field{Key: key, Type: zapcore.Int32Type, Integer: int64(val)}
181}
182
183// Int32p constructs a field that carries a *int32. The returned Field will safely
184// and explicitly represent `nil` when appropriate.
185func Int32p(key string, val *int32) Field {
186	if val == nil {
187		return nilField(key)
188	}
189	return Int32(key, *val)
190}
191
192// Int16 constructs a field with the given key and value.
193func Int16(key string, val int16) Field {
194	return Field{Key: key, Type: zapcore.Int16Type, Integer: int64(val)}
195}
196
197// Int16p constructs a field that carries a *int16. The returned Field will safely
198// and explicitly represent `nil` when appropriate.
199func Int16p(key string, val *int16) Field {
200	if val == nil {
201		return nilField(key)
202	}
203	return Int16(key, *val)
204}
205
206// Int8 constructs a field with the given key and value.
207func Int8(key string, val int8) Field {
208	return Field{Key: key, Type: zapcore.Int8Type, Integer: int64(val)}
209}
210
211// Int8p constructs a field that carries a *int8. The returned Field will safely
212// and explicitly represent `nil` when appropriate.
213func Int8p(key string, val *int8) Field {
214	if val == nil {
215		return nilField(key)
216	}
217	return Int8(key, *val)
218}
219
220// String constructs a field with the given key and value.
221func String(key string, val string) Field {
222	return Field{Key: key, Type: zapcore.StringType, String: val}
223}
224
225// Stringp constructs a field that carries a *string. The returned Field will safely
226// and explicitly represent `nil` when appropriate.
227func Stringp(key string, val *string) Field {
228	if val == nil {
229		return nilField(key)
230	}
231	return String(key, *val)
232}
233
234// Uint constructs a field with the given key and value.
235func Uint(key string, val uint) Field {
236	return Uint64(key, uint64(val))
237}
238
239// Uintp constructs a field that carries a *uint. The returned Field will safely
240// and explicitly represent `nil` when appropriate.
241func Uintp(key string, val *uint) Field {
242	if val == nil {
243		return nilField(key)
244	}
245	return Uint(key, *val)
246}
247
248// Uint64 constructs a field with the given key and value.
249func Uint64(key string, val uint64) Field {
250	return Field{Key: key, Type: zapcore.Uint64Type, Integer: int64(val)}
251}
252
253// Uint64p constructs a field that carries a *uint64. The returned Field will safely
254// and explicitly represent `nil` when appropriate.
255func Uint64p(key string, val *uint64) Field {
256	if val == nil {
257		return nilField(key)
258	}
259	return Uint64(key, *val)
260}
261
262// Uint32 constructs a field with the given key and value.
263func Uint32(key string, val uint32) Field {
264	return Field{Key: key, Type: zapcore.Uint32Type, Integer: int64(val)}
265}
266
267// Uint32p constructs a field that carries a *uint32. The returned Field will safely
268// and explicitly represent `nil` when appropriate.
269func Uint32p(key string, val *uint32) Field {
270	if val == nil {
271		return nilField(key)
272	}
273	return Uint32(key, *val)
274}
275
276// Uint16 constructs a field with the given key and value.
277func Uint16(key string, val uint16) Field {
278	return Field{Key: key, Type: zapcore.Uint16Type, Integer: int64(val)}
279}
280
281// Uint16p constructs a field that carries a *uint16. The returned Field will safely
282// and explicitly represent `nil` when appropriate.
283func Uint16p(key string, val *uint16) Field {
284	if val == nil {
285		return nilField(key)
286	}
287	return Uint16(key, *val)
288}
289
290// Uint8 constructs a field with the given key and value.
291func Uint8(key string, val uint8) Field {
292	return Field{Key: key, Type: zapcore.Uint8Type, Integer: int64(val)}
293}
294
295// Uint8p constructs a field that carries a *uint8. The returned Field will safely
296// and explicitly represent `nil` when appropriate.
297func Uint8p(key string, val *uint8) Field {
298	if val == nil {
299		return nilField(key)
300	}
301	return Uint8(key, *val)
302}
303
304// Uintptr constructs a field with the given key and value.
305func Uintptr(key string, val uintptr) Field {
306	return Field{Key: key, Type: zapcore.UintptrType, Integer: int64(val)}
307}
308
309// Uintptrp constructs a field that carries a *uintptr. The returned Field will safely
310// and explicitly represent `nil` when appropriate.
311func Uintptrp(key string, val *uintptr) Field {
312	if val == nil {
313		return nilField(key)
314	}
315	return Uintptr(key, *val)
316}
317
318// Reflect constructs a field with the given key and an arbitrary object. It uses
319// an encoding-appropriate, reflection-based function to lazily serialize nearly
320// any object into the logging context, but it's relatively slow and
321// allocation-heavy. Outside tests, Any is always a better choice.
322//
323// If encoding fails (e.g., trying to serialize a map[int]string to JSON), Reflect
324// includes the error message in the final log output.
325func Reflect(key string, val interface{}) Field {
326	return Field{Key: key, Type: zapcore.ReflectType, Interface: val}
327}
328
329// Namespace creates a named, isolated scope within the logger's context. All
330// subsequent fields will be added to the new namespace.
331//
332// This helps prevent key collisions when injecting loggers into sub-components
333// or third-party libraries.
334func Namespace(key string) Field {
335	return Field{Key: key, Type: zapcore.NamespaceType}
336}
337
338// Stringer constructs a field with the given key and the output of the value's
339// String method. The Stringer's String method is called lazily.
340func Stringer(key string, val fmt.Stringer) Field {
341	return Field{Key: key, Type: zapcore.StringerType, Interface: val}
342}
343
344// Time constructs a Field with the given key and value. The encoder
345// controls how the time is serialized.
346func Time(key string, val time.Time) Field {
347	if val.Before(_minTimeInt64) || val.After(_maxTimeInt64) {
348		return Field{Key: key, Type: zapcore.TimeFullType, Interface: val}
349	}
350	return Field{Key: key, Type: zapcore.TimeType, Integer: val.UnixNano(), Interface: val.Location()}
351}
352
353// Timep constructs a field that carries a *time.Time. The returned Field will safely
354// and explicitly represent `nil` when appropriate.
355func Timep(key string, val *time.Time) Field {
356	if val == nil {
357		return nilField(key)
358	}
359	return Time(key, *val)
360}
361
362// Stack constructs a field that stores a stacktrace of the current goroutine
363// under provided key. Keep in mind that taking a stacktrace is eager and
364// expensive (relatively speaking); this function both makes an allocation and
365// takes about two microseconds.
366func Stack(key string) Field {
367	return StackSkip(key, 1) // skip Stack
368}
369
370// StackSkip constructs a field similarly to Stack, but also skips the given
371// number of frames from the top of the stacktrace.
372func StackSkip(key string, skip int) Field {
373	// Returning the stacktrace as a string costs an allocation, but saves us
374	// from expanding the zapcore.Field union struct to include a byte slice. Since
375	// taking a stacktrace is already so expensive (~10us), the extra allocation
376	// is okay.
377	return String(key, takeStacktrace(skip+1)) // skip StackSkip
378}
379
380// Duration constructs a field with the given key and value. The encoder
381// controls how the duration is serialized.
382func Duration(key string, val time.Duration) Field {
383	return Field{Key: key, Type: zapcore.DurationType, Integer: int64(val)}
384}
385
386// Durationp constructs a field that carries a *time.Duration. The returned Field will safely
387// and explicitly represent `nil` when appropriate.
388func Durationp(key string, val *time.Duration) Field {
389	if val == nil {
390		return nilField(key)
391	}
392	return Duration(key, *val)
393}
394
395// Object constructs a field with the given key and ObjectMarshaler. It
396// provides a flexible, but still type-safe and efficient, way to add map- or
397// struct-like user-defined types to the logging context. The struct's
398// MarshalLogObject method is called lazily.
399func Object(key string, val zapcore.ObjectMarshaler) Field {
400	return Field{Key: key, Type: zapcore.ObjectMarshalerType, Interface: val}
401}
402
403// Any takes a key and an arbitrary value and chooses the best way to represent
404// them as a field, falling back to a reflection-based approach only if
405// necessary.
406//
407// Since byte/uint8 and rune/int32 are aliases, Any can't differentiate between
408// them. To minimize surprises, []byte values are treated as binary blobs, byte
409// values are treated as uint8, and runes are always treated as integers.
410func Any(key string, value interface{}) Field {
411	switch val := value.(type) {
412	case zapcore.ObjectMarshaler:
413		return Object(key, val)
414	case zapcore.ArrayMarshaler:
415		return Array(key, val)
416	case bool:
417		return Bool(key, val)
418	case *bool:
419		return Boolp(key, val)
420	case []bool:
421		return Bools(key, val)
422	case complex128:
423		return Complex128(key, val)
424	case *complex128:
425		return Complex128p(key, val)
426	case []complex128:
427		return Complex128s(key, val)
428	case complex64:
429		return Complex64(key, val)
430	case *complex64:
431		return Complex64p(key, val)
432	case []complex64:
433		return Complex64s(key, val)
434	case float64:
435		return Float64(key, val)
436	case *float64:
437		return Float64p(key, val)
438	case []float64:
439		return Float64s(key, val)
440	case float32:
441		return Float32(key, val)
442	case *float32:
443		return Float32p(key, val)
444	case []float32:
445		return Float32s(key, val)
446	case int:
447		return Int(key, val)
448	case *int:
449		return Intp(key, val)
450	case []int:
451		return Ints(key, val)
452	case int64:
453		return Int64(key, val)
454	case *int64:
455		return Int64p(key, val)
456	case []int64:
457		return Int64s(key, val)
458	case int32:
459		return Int32(key, val)
460	case *int32:
461		return Int32p(key, val)
462	case []int32:
463		return Int32s(key, val)
464	case int16:
465		return Int16(key, val)
466	case *int16:
467		return Int16p(key, val)
468	case []int16:
469		return Int16s(key, val)
470	case int8:
471		return Int8(key, val)
472	case *int8:
473		return Int8p(key, val)
474	case []int8:
475		return Int8s(key, val)
476	case string:
477		return String(key, val)
478	case *string:
479		return Stringp(key, val)
480	case []string:
481		return Strings(key, val)
482	case uint:
483		return Uint(key, val)
484	case *uint:
485		return Uintp(key, val)
486	case []uint:
487		return Uints(key, val)
488	case uint64:
489		return Uint64(key, val)
490	case *uint64:
491		return Uint64p(key, val)
492	case []uint64:
493		return Uint64s(key, val)
494	case uint32:
495		return Uint32(key, val)
496	case *uint32:
497		return Uint32p(key, val)
498	case []uint32:
499		return Uint32s(key, val)
500	case uint16:
501		return Uint16(key, val)
502	case *uint16:
503		return Uint16p(key, val)
504	case []uint16:
505		return Uint16s(key, val)
506	case uint8:
507		return Uint8(key, val)
508	case *uint8:
509		return Uint8p(key, val)
510	case []byte:
511		return Binary(key, val)
512	case uintptr:
513		return Uintptr(key, val)
514	case *uintptr:
515		return Uintptrp(key, val)
516	case []uintptr:
517		return Uintptrs(key, val)
518	case time.Time:
519		return Time(key, val)
520	case *time.Time:
521		return Timep(key, val)
522	case []time.Time:
523		return Times(key, val)
524	case time.Duration:
525		return Duration(key, val)
526	case *time.Duration:
527		return Durationp(key, val)
528	case []time.Duration:
529		return Durations(key, val)
530	case error:
531		return NamedError(key, val)
532	case []error:
533		return Errors(key, val)
534	case fmt.Stringer:
535		return Stringer(key, val)
536	default:
537		return Reflect(key, val)
538	}
539}
540