-
Notifications
You must be signed in to change notification settings - Fork 50
/
rows.go
152 lines (126 loc) · 4.5 KB
/
rows.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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
// Copyright Sam Xie
//
// 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 otelsql
import (
"context"
"database/sql/driver"
"io"
"go.opentelemetry.io/otel/trace"
)
var (
_ driver.Rows = (*otRows)(nil)
_ driver.RowsNextResultSet = (*otRows)(nil)
_ driver.RowsColumnTypeDatabaseTypeName = (*otRows)(nil)
_ driver.RowsColumnTypeLength = (*otRows)(nil)
_ driver.RowsColumnTypeNullable = (*otRows)(nil)
_ driver.RowsColumnTypePrecisionScale = (*otRows)(nil)
)
type otRows struct {
driver.Rows
span trace.Span
cfg config
onClose func(err error)
}
func newRows(ctx context.Context, rows driver.Rows, cfg config) *otRows {
var span trace.Span
method := MethodRows
onClose := recordMetric(ctx, cfg.Instruments, cfg, method, "", nil)
if !cfg.SpanOptions.OmitRows && filterSpan(ctx, cfg.SpanOptions, method, "", nil) {
_, span = createSpan(ctx, cfg, method, false, "", nil)
}
return &otRows{
Rows: rows,
span: span,
cfg: cfg,
onClose: onClose,
}
}
// HasNextResultSet calls the implements the driver.RowsNextResultSet for otRows.
// It returns the the underlying result of HasNextResultSet from the otRows.parent
// if the parent implements driver.RowsNextResultSet.
func (r otRows) HasNextResultSet() bool {
if v, ok := r.Rows.(driver.RowsNextResultSet); ok {
return v.HasNextResultSet()
}
return false
}
// NextResultSet calls the implements the driver.RowsNextResultSet for otRows.
// It returns the the underlying result of NextResultSet from the otRows.parent
// if the parent implements driver.RowsNextResultSet.
func (r otRows) NextResultSet() error {
if v, ok := r.Rows.(driver.RowsNextResultSet); ok {
return v.NextResultSet()
}
return io.EOF
}
// ColumnTypeDatabaseTypeName calls the implements the driver.RowsColumnTypeDatabaseTypeName for otRows.
// It returns the the underlying result of ColumnTypeDatabaseTypeName from the otRows.Rows
// if the Rows implements driver.RowsColumnTypeDatabaseTypeName.
func (r otRows) ColumnTypeDatabaseTypeName(index int) string {
if v, ok := r.Rows.(driver.RowsColumnTypeDatabaseTypeName); ok {
return v.ColumnTypeDatabaseTypeName(index)
}
return ""
}
// ColumnTypeLength calls the implements the driver.RowsColumnTypeLength for otRows.
// It returns the the underlying result of ColumnTypeLength from the otRows.Rows
// if the Rows implements driver.RowsColumnTypeLength.
func (r otRows) ColumnTypeLength(index int) (length int64, ok bool) {
if v, ok := r.Rows.(driver.RowsColumnTypeLength); ok {
return v.ColumnTypeLength(index)
}
return 0, false
}
// ColumnTypeNullable calls the implements the driver.RowsColumnTypeNullable for otRows.
// It returns the the underlying result of ColumnTypeNullable from the otRows.Rows
// if the Rows implements driver.RowsColumnTypeNullable.
func (r otRows) ColumnTypeNullable(index int) (nullable, ok bool) {
if v, ok := r.Rows.(driver.RowsColumnTypeNullable); ok {
return v.ColumnTypeNullable(index)
}
return false, false
}
// ColumnTypePrecisionScale calls the implements the driver.RowsColumnTypePrecisionScale for otRows.
// It returns the the underlying result of ColumnTypePrecisionScale from the otRows.Rows
// if the Rows implements driver.RowsColumnTypePrecisionScale.
func (r otRows) ColumnTypePrecisionScale(index int) (precision, scale int64, ok bool) {
if v, ok := r.Rows.(driver.RowsColumnTypePrecisionScale); ok {
return v.ColumnTypePrecisionScale(index)
}
return 0, 0, false
}
func (r otRows) Close() (err error) {
defer func() {
if r.span != nil {
r.span.End()
}
r.onClose(err)
}()
err = r.Rows.Close()
if err != nil {
recordSpanError(r.span, r.cfg.SpanOptions, err)
}
return
}
func (r otRows) Next(dest []driver.Value) (err error) {
if r.cfg.SpanOptions.RowsNext && r.span != nil {
r.span.AddEvent(string(EventRowsNext))
}
err = r.Rows.Next(dest)
// io.EOF is not an error. It is expected to happen during iteration.
if err != nil && err != io.EOF {
recordSpanError(r.span, r.cfg.SpanOptions, err)
}
return
}