-
Notifications
You must be signed in to change notification settings - Fork 12
/
logging.go
138 lines (116 loc) · 5.01 KB
/
logging.go
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
// Copyright 2022-2024, Pulumi Corporation.
//
// 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.
package provider
import (
"context"
"fmt"
"log/slog"
pprovider "github.com/pulumi/pulumi/pkg/v3/resource/provider"
"github.com/pulumi/pulumi/sdk/v3/go/common/diag"
"github.com/pulumi/pulumi/sdk/v3/go/common/resource"
"github.com/pulumi/pulumi-go-provider/internal/key"
)
// Logger provides methods for user visible logging.
//
// Log info will be associated with the URN passed if any.
type Logger struct {
ctx context.Context
inner logSink
urn resource.URN
}
// Debug logs a debug message visible to the user.
func (l Logger) Debug(msg string) { l.inner.Log(l.ctx, l.urn, diag.Debug, msg) }
// Debugf logs a debug message visible to the user, formatting it with [fmt.Sprintf].
func (l Logger) Debugf(msg string, a ...any) { l.Debug(fmt.Sprintf(msg, a...)) }
// DebugStatus logs a debug message visible to the user.
//
// The message will only be displayed while it is the latest message.
func (l Logger) DebugStatus(msg string) { l.inner.LogStatus(l.ctx, l.urn, diag.Debug, msg) }
// DebugStatusf logs a debug message visible to the user, formatting it with [fmt.Sprintf].
//
// The message will only be displayed while it is the latest message.
func (l Logger) DebugStatusf(msg string, a ...any) { l.DebugStatus(fmt.Sprintf(msg, a...)) }
func (l Logger) Info(msg string) { l.inner.Log(l.ctx, l.urn, diag.Info, msg) }
func (l Logger) Infof(msg string, a ...any) { l.Info(fmt.Sprintf(msg, a...)) }
func (l Logger) InfoStatus(msg string) { l.inner.LogStatus(l.ctx, l.urn, diag.Info, msg) }
func (l Logger) InfoStatusf(msg string, a ...any) { l.InfoStatus(fmt.Sprintf(msg, a...)) }
func (l Logger) Warning(msg string) { l.inner.Log(l.ctx, l.urn, diag.Warning, msg) }
func (l Logger) Warningf(msg string, a ...any) { l.Warning(fmt.Sprintf(msg, a...)) }
func (l Logger) WarningStatus(msg string) { l.inner.LogStatus(l.ctx, l.urn, diag.Warning, msg) }
func (l Logger) WarningStatusf(msg string, a ...any) { l.WarningStatus(fmt.Sprintf(msg, a...)) }
func (l Logger) Error(msg string) { l.inner.Log(l.ctx, l.urn, diag.Error, msg) }
func (l Logger) Errorf(msg string, a ...any) { l.Error(fmt.Sprintf(msg, a...)) }
func (l Logger) ErrorStatus(msg string) { l.inner.LogStatus(l.ctx, l.urn, diag.Error, msg) }
func (l Logger) ErrorStatusf(msg string, a ...any) { l.ErrorStatus(fmt.Sprintf(msg, a...)) }
type logSink interface {
// Log logs a global message, including errors and warnings.
Log(context.Context, resource.URN, diag.Severity, string)
// LogStatus logs a global status message, including errors and warnings. Status messages will
// appear in the `Info` column of the progress display, but not in the final output.
LogStatus(context.Context, resource.URN, diag.Severity, string)
}
func GetLogger(ctx context.Context) Logger {
var (
sink logSink = slogSink{}
urn resource.URN
)
if v := ctx.Value(key.Logger); v != nil {
sink = v.(logSink)
}
if v := ctx.Value(key.URN); v != nil {
urn = v.(resource.URN)
}
return Logger{ctx, sink, urn}
}
var (
_ logSink = (*hostSink)(nil)
_ logSink = (*slogSink)(nil)
)
type hostSink struct{ host *pprovider.HostClient }
func (h hostSink) Log(ctx context.Context, urn resource.URN, severity diag.Severity, msg string) {
err := h.host.Log(ctx, severity, urn, msg)
if err != nil {
slog := slog.Default().With("hostLogFailed", err.Error())
slogSink{}.log(ctx, slog, urn, severity, msg)
}
}
func (h hostSink) LogStatus(ctx context.Context, urn resource.URN, severity diag.Severity, msg string) {
err := h.host.LogStatus(ctx, severity, urn, msg)
if err != nil {
slog := slog.Default().With(
"hostLogFailed", err.Error(),
"kind", "status",
)
slogSink{}.log(ctx, slog, urn, severity, msg)
}
}
type slogSink struct{}
func (slogSink) log(ctx context.Context, slog *slog.Logger, urn resource.URN, severity diag.Severity, msg string) {
log := slog.InfoContext // We default to Info as the log level
switch severity {
case diag.Debug:
log = slog.DebugContext
case diag.Warning:
log = slog.WarnContext
case diag.Error:
log = slog.ErrorContext
}
log(ctx, msg, "urn", string(urn))
}
func (s slogSink) Log(ctx context.Context, urn resource.URN, severity diag.Severity, msg string) {
s.log(ctx, slog.Default(), urn, severity, msg)
}
func (s slogSink) LogStatus(ctx context.Context, urn resource.URN, severity diag.Severity, msg string) {
s.log(ctx, slog.Default().With("kind", "status"), urn, severity, msg)
}