github.com/facebookincubator/go-belt@v0.0.0-20230703220935-39cd348f1a38/tool/experimental/errmon/ctx.go (about) 1 // Copyright 2022 Meta Platforms, Inc. and affiliates. 2 // 3 // Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 4 // 5 // 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 6 // 7 // 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 8 // 9 // 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. 10 // 11 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 12 13 package errmon 14 15 import ( 16 "context" 17 18 "github.com/facebookincubator/go-belt" 19 ) 20 21 // FromCtx returns an ErrorMonitor given a context. 22 // 23 // Returns the Default ErrorMonitor if one is not set. 24 func FromCtx(ctx context.Context) ErrorMonitor { 25 return FromBelt(belt.CtxBelt(ctx)) 26 } 27 28 // CtxWithErrorMonitor returns a context with an ErrorMonitor added. 29 func CtxWithErrorMonitor(ctx context.Context, errMon ErrorMonitor) context.Context { 30 return belt.WithTool(ctx, ToolID, errMon) 31 } 32 33 // ObserveErrorCtx calls ObserveError method of an ErrorMonitor in the given context. 34 // 35 // If one at any moment in the code has an error they want to report about if it is not nil, 36 // they can just use this function. 37 // 38 // For example: 39 // 40 // _, err := writer.Write(b) 41 // errmon.ObserveErrorCtx(ctx, err) 42 func ObserveErrorCtx(ctx context.Context, err error) *Event { 43 belt := belt.CtxBelt(ctx) 44 return FromBelt(belt).ObserveError(belt, err) 45 } 46 47 // ObserveRecoverCtx calls ObserveRecover method of an ErrorMonitor in the given context. 48 // 49 // If one at any moment in the code has a potential panic they want to report about, 50 // they can just use this function. 51 // 52 // For example one may add this to a beginning of a function: 53 // 54 // defer func() { errmon.ObserveRecoverCtx(ctx, recover()) }() 55 // 56 // See also: https://go.dev/ref/spec#Handling_panics 57 func ObserveRecoverCtx(ctx context.Context, recoverResult any) *Event { 58 belt := belt.CtxBelt(ctx) 59 return FromBelt(belt).ObserveRecover(belt, recoverResult) 60 }