-
Notifications
You must be signed in to change notification settings - Fork 1
/
lob.go
257 lines (232 loc) · 6.65 KB
/
lob.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
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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
// Copyright 2019 Tamás Gulácsi
//
// SPDX-License-Identifier: UPL-1.0
package oracledb
import (
"io"
"unicode/utf8"
"unsafe"
errors "golang.org/x/xerrors"
"github.com/go-goracle/go-oracledb/internal"
)
// Lob is for reading/writing a LOB.
type Lob struct {
io.Reader
IsClob bool
}
// Hijack the underlying lob reader/writer, and
// return a DirectLob for reading/writing the lob directly.
//
// After this, the Lob is unusable!
func (lob *Lob) Hijack() (*DirectLob, error) {
if lob == nil || lob.Reader == nil {
return nil, errors.New("lob is nil")
}
lr, ok := lob.Reader.(*dpiLobReader)
if !ok {
return nil, errors.Errorf("Lob.Reader is %T, not *dpiLobReader", lob.Reader)
}
lob.Reader = nil
return &DirectLob{conn: lr.conn, dpiLob: lr.dpiLob}, nil
}
// Scan assigns a value from a database driver.
//
// The src value will be of one of the following types:
//
// int64
// float64
// bool
// []byte
// string
// time.Time
// nil - for NULL values
//
// An error should be returned if the value cannot be stored
// without loss of information.
func (dlr *dpiLobReader) Scan(src interface{}) error {
b, ok := src.([]byte)
if !ok {
return errors.Errorf("cannot convert LOB to %T", src)
}
_ = b
return nil
}
var _ = io.Reader((*dpiLobReader)(nil))
type dpiLobReader struct {
*conn
dpiLob *internal.Lob
offset, sizePlusOne uint64
finished bool
IsClob bool
}
func (dlr *dpiLobReader) Read(p []byte) (int, error) {
if dlr == nil {
return 0, errors.New("read on nil dpiLobReader")
}
if dlr.finished {
return 0, io.EOF
}
if len(p) == 0 {
return 0, nil
}
// For CLOB, sizePlusOne and offset counts the CHARACTERS!
// See https://oracle.github.io/odpi/doc/public_functions/dpiLob.html dpiLob_readBytes
if dlr.sizePlusOne == 0 {
// never read size before
if C.dpiLob_getSize(dlr.dpiLob, &dlr.sizePlusOne) == C.DPI_FAILURE {
C.dpiLob_close(dlr.dpiLob)
dlr.dpiLob = nil
return 0, errors.Errorf("getSize: %w", dlr.getError())
}
dlr.sizePlusOne++
}
n := C.uint64_t(len(p))
//fmt.Printf("%p.Read offset=%d sizePlusOne=%d n=%d\n", dlr.dpiLob, dlr.offset, dlr.sizePlusOne, n)
if dlr.offset+1 >= dlr.sizePlusOne {
return 0, io.EOF
}
if C.dpiLob_readBytes(dlr.dpiLob, dlr.offset+1, n, (*C.char)(unsafe.Pointer(&p[0])), &n) == C.DPI_FAILURE {
C.dpiLob_close(dlr.dpiLob)
dlr.dpiLob = nil
err := dlr.getError()
if dlr.finished = err.(interface{ Code() int }).Code() == 1403; dlr.finished {
dlr.offset += n
return int(n), io.EOF
}
return int(n), errors.Errorf("lob=%p offset=%d n=%d: %w", dlr.dpiLob, dlr.offset, len(p), err)
}
//fmt.Printf("read %d\n", n)
if dlr.IsClob {
dlr.offset += C.uint64_t(utf8.RuneCount(p[:n]))
} else {
dlr.offset += n
}
var err error
if n == 0 || dlr.offset+1 >= dlr.sizePlusOne {
C.dpiLob_close(dlr.dpiLob)
dlr.dpiLob = nil
dlr.finished = true
err = io.EOF
}
return int(n), err
}
type dpiLobWriter struct {
*conn
dpiLob *C.dpiLob
offset C.uint64_t
opened bool
isClob bool
}
func (dlw *dpiLobWriter) Write(p []byte) (int, error) {
lob := dlw.dpiLob
if !dlw.opened {
//fmt.Printf("open %p\n", lob)
if C.dpiLob_openResource(lob) == C.DPI_FAILURE {
return 0, errors.Errorf("openResources(%p): %w", lob, dlw.getError())
}
dlw.opened = true
}
n := C.uint64_t(len(p))
if C.dpiLob_writeBytes(lob, dlw.offset+1, (*C.char)(unsafe.Pointer(&p[0])), n) == C.DPI_FAILURE {
err := errors.Errorf("writeBytes(%p, offset=%d, data=%d): %w", lob, dlw.offset, n, dlw.getError())
dlw.dpiLob = nil
C.dpiLob_closeResource(lob)
return 0, err
}
//fmt.Printf("written %q into %p@%d\n", p[:n], lob, dlw.offset)
dlw.offset += n
return int(n), nil
}
func (dlw *dpiLobWriter) Close() error {
if dlw == nil || dlw.dpiLob == nil {
return nil
}
lob := dlw.dpiLob
dlw.dpiLob = nil
//C.dpiLob_flushBuffer(lob)
if C.dpiLob_closeResource(lob) == C.DPI_FAILURE {
err := dlw.getError()
if ec, ok := err.(interface{ Code() int }); ok && !dlw.opened && ec.Code() == 22289 { // cannot perform %s operation on an unopened file or LOB
return nil
}
return errors.Errorf("closeResource(%p): %w", lob, err)
}
return nil
}
// DirectLob holds a Lob and allows direct (Read/WriteAt, not streaming Read/Write) operations on it.
type DirectLob struct {
conn *conn
dpiLob *C.dpiLob
opened bool
}
var _ = io.ReaderAt((*DirectLob)(nil))
var _ = io.WriterAt((*DirectLob)(nil))
// NewTempLob returns a temporary LOB as DirectLob.
func (c *conn) NewTempLob(isClob bool) (*DirectLob, error) {
typ := C.uint(C.DPI_ORACLE_TYPE_BLOB)
if isClob {
typ = C.DPI_ORACLE_TYPE_CLOB
}
lob := DirectLob{conn: c}
if C.dpiConn_newTempLob(c.dpiConn, typ, &lob.dpiLob) == C.DPI_FAILURE {
return nil, errors.Errorf("newTempLob: %w", c.getError())
}
return &lob, nil
}
// Close the Lob.
func (dl *DirectLob) Close() error {
if !dl.opened {
return nil
}
dl.opened = false
if C.dpiLob_closeResource(dl.dpiLob) == C.DPI_FAILURE {
return errors.Errorf("closeResource: %w", dl.conn.getError())
}
return nil
}
// Size returns the size of the LOB.
func (dl *DirectLob) Size() (int64, error) {
var n C.uint64_t
if C.dpiLob_getSize(dl.dpiLob, &n) == C.DPI_FAILURE {
return int64(n), errors.Errorf("getSize: %w", dl.conn.getError())
}
return int64(n), nil
}
// Trim the LOB to the given size.
func (dl *DirectLob) Trim(size int64) error {
if C.dpiLob_trim(dl.dpiLob, C.uint64_t(size)) == C.DPI_FAILURE {
return errors.Errorf("trim: %w", dl.conn.getError())
}
return nil
}
// Set the contents of the LOB to the given byte slice.
// The LOB is cleared first.
func (dl *DirectLob) Set(p []byte) error {
if C.dpiLob_setFromBytes(dl.dpiLob, (*C.char)(unsafe.Pointer(&p[0])), C.uint64_t(len(p))) == C.DPI_FAILURE {
return errors.Errorf("setFromBytes: %w", dl.conn.getError())
}
return nil
}
// ReadAt reads at most len(p) bytes into p at offset.
func (dl *DirectLob) ReadAt(p []byte, offset int64) (int, error) {
n := C.uint64_t(len(p))
if C.dpiLob_readBytes(dl.dpiLob, C.uint64_t(offset)+1, n, (*C.char)(unsafe.Pointer(&p[0])), &n) == C.DPI_FAILURE {
return int(n), errors.Errorf("readBytes: %w", dl.conn.getError())
}
return int(n), nil
}
// WriteAt writes p starting at offset.
func (dl *DirectLob) WriteAt(p []byte, offset int64) (int, error) {
if !dl.opened {
//fmt.Printf("open %p\n", lob)
if C.dpiLob_openResource(dl.dpiLob) == C.DPI_FAILURE {
return 0, errors.Errorf("openResources(%p): %w", dl.dpiLob, dl.conn.getError())
}
dl.opened = true
}
n := C.uint64_t(len(p))
if C.dpiLob_writeBytes(dl.dpiLob, C.uint64_t(offset)+1, (*C.char)(unsafe.Pointer(&p[0])), n) == C.DPI_FAILURE {
return int(n), errors.Errorf("writeBytes: %w", dl.conn.getError())
}
return int(n), nil
}