-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathexBfile.c
More file actions
486 lines (420 loc) · 14.8 KB
/
exBfile.c
File metadata and controls
486 lines (420 loc) · 14.8 KB
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
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
/******************************************************
file:
exBfile.c
purpose:
python type define for DM BFILE variables in dmPython.just be used to col description
interface:
{}
history:
Date Who RefDoc Memo
2017-8-17 Caichichi Created
*******************************************************/
#include "Buffer.h"
#include "Error.h"
#include "var_pub.h"
static
void
exBFileVar_Free(
dm_ExternalBFile* self // variable to free
);
static
PyObject*
exBFileVar_Str(
dm_ExternalBFile* var // variable to return the string for
);
static
PyObject*
exBFileVar_Size(
dm_ExternalBFile* var // variable to return the size of
);
static
int
exBFileVar_InternalSize(
dm_ExternalBFile* var // variable to return the size of
);
static
PyObject*
exBFileVar_Read(
dm_ExternalBFile* var, // variable to return the size of
PyObject* args, // arguments
PyObject* keywordArgs // keyword arguments
);
static
PyObject*
exBFileVar_Value(
dm_ExternalBFile* self, // variable to return the size of
int offset, // offset into LOB
slength amount // amount to read from LOB(IN/OUT)
);
//-----------------------------------------------------------------------------
// declaration of methods for Python type "g_BFileVarMethods"
//-----------------------------------------------------------------------------
static PyMethodDef g_ExternalBFileVarMethods[] = {
{ "size", (PyCFunction) exBFileVar_Size, METH_NOARGS },
{ "read", (PyCFunction) exBFileVar_Read, METH_VARARGS | METH_KEYWORDS },
//{ "write", (PyCFunction) exLobVar_Write, METH_VARARGS | METH_KEYWORDS },
//{ "truncate", (PyCFunction) exLobVar_Truncate, METH_VARARGS | METH_KEYWORDS },
//{ "__reduce__", (PyCFunction) exLobVar_Reduce, METH_NOARGS },
{ NULL, NULL }
};
//-----------------------------------------------------------------------------
// Python type declaration
//-----------------------------------------------------------------------------
PyTypeObject g_exBFileVarType = {
PyVarObject_HEAD_INIT(NULL, 0)
"dmPython.BFILE", // tp_name
sizeof(dm_ExternalBFile), // tp_basicsize
0, // tp_itemsize
(destructor) exBFileVar_Free, // tp_dealloc
0, // tp_print
0, // tp_getattr
0, // tp_setattr
0, // tp_compare
0, // tp_repr
0, // tp_as_number
0, // tp_as_sequence
0, // tp_as_mapping
0, // tp_hash
0, // tp_call
(reprfunc) exBFileVar_Str, // tp_str
0, // tp_getattro
0, // tp_setattro
0, // tp_as_buffer
Py_TPFLAGS_DEFAULT, // tp_flags
0, // tp_doc
0, // tp_traverse
0, // tp_clear
0, // tp_richcompare
0, // tp_weaklistoffset
0, // tp_iter
0, // tp_iternext
g_ExternalBFileVarMethods, // tp_methods
0, // tp_members
0, // tp_getset
0, // tp_base
0, // tp_dict
0, // tp_descr_get
0, // tp_descr_set
0, // tp_dictoffset
0, // tp_init
0, // tp_alloc
0, // tp_new
0, // tp_free
0, // tp_is_gc
0 // tp_bases
};
//-----------------------------------------------------------------------------
// exBFileVar_Free()
// Free an external BFile variable.
//-----------------------------------------------------------------------------
static
void
exBFileVar_Free(
dm_ExternalBFile* self // variable to free
)
{
DPIRETURN rt;
dhstmt stmt = NULL;
dm_BFileVar* var;
udint4 i;
var = self->BFileVar;
var->pos = self->pos;
if(self->BFileVar->connection != NULL && self->BFileVar->connection->isConnected == 1)
{
//close bfile handle begin
rt = dpi_alloc_stmt(var->connection->hcon, &stmt);
if (Environment_CheckForError(var->environment, var->connection->hcon, DSQL_HANDLE_DBC, rt,
"exBFileVar_Free():dpi_alloc_stmt") < 0)
{
goto fun_end;
}
//use DBMS_LOB package function to close bfile handle
rt = dpi_prepare(stmt, "DBMS_LOB.FILECLOSE(?)");
if (Environment_CheckForError(var->environment, stmt, DSQL_HANDLE_STMT, rt,
"exBFileVar_Free():dpi_bfile_construct") < 0)
{
goto fun_end;
}
//bind parameter
rt = dpi_bind_param(stmt, 1, DSQL_PARAM_INPUT_OUTPUT, DSQL_C_BFILE, DSQL_BFILE, 512, 6, &((dhbfile*)var->data)[var->pos], sizeof(dhbfile), NULL);
if (Environment_CheckForError(var->environment, stmt, DSQL_HANDLE_STMT, rt,
"exBFileVar_Free():dpi_bfile_construct") < 0)
{
goto fun_end;
}
//dpi execute
rt = dpi_exec(stmt);
if (Environment_CheckForError(var->environment, stmt, DSQL_HANDLE_STMT, rt,
"exBFileVar_Free():dpi_bfile_construct") < 0)
{
goto fun_end;
}
//free statement handle
rt = dpi_free_stmt(stmt);
if (Environment_CheckForError(var->environment, stmt, DSQL_HANDLE_STMT, rt,
"exBFileVar_Free():dpi_free_stmt") < 0)
{
goto fun_end;
}
}
//close bfile handle end
if(var->data != NULL)
{
for (i = 0; i < var->allocatedElements; i++)
{
/** 通过exLob赋值的LOB句柄不预释放 **/
if (((dhbfile*)var->data)[i] != NULL)
{
dpi_free_bfile(((dhbfile*)var->data)[i]);
}
((dhbfile*)var->data)[i] = NULL;
}
}
fun_end:
//clear references
Py_CLEAR(self->BFileVar);
Py_TYPE(self)->tp_free((PyObject*) self);
}
//-----------------------------------------------------------------------------
// exBFileVar_Verify()
// Verify that the external LOB var is still valid.
//-----------------------------------------------------------------------------
static
int
exBFileVar_Verify(
dm_ExternalBFile* var // variable to verify
)
{
dm_BFileVar* bfile_var = var->BFileVar;
/** 连接断开,lob句柄无效;cursor关闭,bfile句柄操作可能会报错,此处增加校验 **/
if (bfile_var->connection->isConnected <= 0)
{
PyErr_SetString(PyExc_ValueError,
"The related cursor or connection is closed");
return -1;
}
return 0;
}
static
PyObject*
exBFileVar_Str(
dm_ExternalBFile* var // variable to return the string for
)
{
PyObject* result;
slength amount = 1000;
if (exBFileVar_Verify(var) < 0)
return NULL;
result = exBFileVar_Value(var, 1, amount);
if (result == NULL)
return NULL;
return result;
}
//-----------------------------------------------------------------------------
// exLobVar_Size()
// Return the size of the data in the LOB variable.
//-----------------------------------------------------------------------------
static
PyObject*
exBFileVar_Size(
dm_ExternalBFile* var // variable to return the size of
)
{
int length;
if (exBFileVar_Verify(var) < 0)
return NULL;
length = exBFileVar_InternalSize(var);
if (length < 0)
return NULL;
#if PY_MAJOR_VERSION < 3
return PyInt_FromLong(length);
#else
return PyLong_FromLong(length);
#endif
}
//-----------------------------------------------------------------------------
// exBFileVar_InternalSize()
// Return the size of the BFILE variable for internal comsumption.
//-----------------------------------------------------------------------------
static
int
exBFileVar_InternalSize(
dm_ExternalBFile* self // variable to return the size of
)
{
dm_BFileVar* var;
DPIRETURN rt;
dhstmt stmt = NULL;
slength length = 0;
var = self->BFileVar;
var->pos = self->pos;
rt = dpi_alloc_stmt(var->connection->hcon, &stmt);
if (Environment_CheckForError(var->environment, var->connection->hcon, DSQL_HANDLE_DBC, rt,
"exBFileVar_InternalSize():dpi_alloc_stmt") < 0)
{
return -1;
}
rt = dpi_prepare(stmt, "SELECT DBMS_LOB.GETLENGTH(?)");
if (Environment_CheckForError(var->environment, stmt, DSQL_HANDLE_STMT, rt,
"exBFileVar_InternalSize():dpi_prepare") < 0)
{
return -1;
}
rt = dpi_bind_param(stmt, 1, DSQL_PARAM_INPUT, DSQL_C_BFILE, DSQL_BFILE, 512, 6, &((dhbfile*)var->data)[var->pos], sizeof(dhbfile), NULL);
if (Environment_CheckForError(var->environment, stmt, DSQL_HANDLE_STMT, rt,
"exBFileVar_InternalSize():dpi_bind_param") < 0)
{
return -1;
}
rt = dpi_exec(stmt);
if (Environment_CheckForError(var->environment, stmt, DSQL_HANDLE_STMT, rt,
"exBFileVar_InternalSize():dpi_exec") < 0)
{
return -1;
}
rt = dpi_fetch(stmt, NULL);
if (Environment_CheckForError(var->environment, stmt, DSQL_HANDLE_STMT, rt,
"exBFileVar_InternalSize():dpi_fetch") < 0)
{
return -1;
}
rt = dpi_get_data(stmt, 1, DSQL_C_ULONG, &length, sizeof(slength), NULL);
if (Environment_CheckForError(var->environment, stmt, DSQL_HANDLE_STMT, rt,
"exBFileVar_InternalSize():dpi_get_data") < 0)
{
return -1;
}
rt = dpi_free_stmt(stmt);
if (Environment_CheckForError(var->environment, stmt, DSQL_HANDLE_STMT, rt,
"exBFileVar_InternalSize():dpi_free_stmt") < 0)
{
return -1;
}
return length;
}
//-----------------------------------------------------------------------------
// exLobVar_Value()
// Return a portion (or all) of the data in the external LOB variable.
//-----------------------------------------------------------------------------
static
PyObject*
exBFileVar_Value(
dm_ExternalBFile* self, // variable to return the size of
int offset, // offset into LOB
slength amount // amount to read from LOB(IN/OUT)
)
{
dm_BFileVar* var;
DPIRETURN rt;
slength bufferSize;
PyObject* result = NULL;
sdbyte* buffer;
udint8 data_get = 0;
dhstmt stmt = NULL;
var = self->BFileVar;
var->pos = self->pos;
rt = dpi_alloc_stmt(var->connection->hcon, &stmt);
if (Environment_CheckForError(var->environment, var->connection->hcon, DSQL_HANDLE_DBC, rt,
"exBFileVar_Read():dpi_alloc_stmt") < 0)
{
return NULL;
}
rt = dpi_prepare(stmt, "DBMS_LOB.FILEOPEN(?)");
if (Environment_CheckForError(var->environment, stmt, DSQL_HANDLE_STMT, rt,
"exBFileVar_Read():dpi_bfile_construct") < 0)
{
return NULL;
}
rt = dpi_bind_param(stmt, 1, DSQL_PARAM_INPUT_OUTPUT, DSQL_C_BFILE, DSQL_BFILE, 512, 6, &((dhbfile*)var->data)[var->pos], sizeof(dhbfile), NULL);
if (Environment_CheckForError(var->environment, stmt, DSQL_HANDLE_STMT, rt,
"exBFileVar_Read():dpi_bfile_construct") < 0)
{
return NULL;
}
rt = dpi_exec(stmt);
if (Environment_CheckForError(var->environment, stmt, DSQL_HANDLE_STMT, rt,
"exBFileVar_Read():dpi_bfile_construct") < 0)
{
return NULL;
}
bufferSize = amount;
// create a string for retrieving the value
buffer = (sdbyte*) PyMem_Malloc(bufferSize + 1);
if (!buffer)
return PyErr_NoMemory();
memset(buffer, 0, bufferSize + 1);
rt = dpi_bfile_read(((dhbfile*)var->data)[var->pos], offset, DSQL_C_BINARY, amount, buffer, bufferSize, &data_get);
if (Environment_CheckForError(var->environment, ((dhbfile*)var->data)[var->pos], DSQL_HANDLE_BFILE, rt,
"exBFileVar_Read():dpi_bfile_read") < 0)
{
goto fun_end;
}
result = PyBytes_FromStringAndSize(buffer, data_get);
fun_end:
PyMem_Free(buffer);
rt = dpi_free_stmt(stmt);
if (Environment_CheckForError(var->environment, stmt, DSQL_HANDLE_STMT, rt,
"exBFileVar_Read():dpi_free_stmt") < 0)
{
return 0;
}
return result;
}
//-----------------------------------------------------------------------------
// exBFileVar_Read()
// Return a portion (or all) of the data in the BFILE variable.
//-----------------------------------------------------------------------------
static
PyObject*
exBFileVar_Read(
dm_ExternalBFile* self, // variable to return the size of
PyObject* args, // arguments
PyObject* keywordArgs // keyword arguments
)
{
dm_BFileVar* var;
static char *keywordList[] = { "offset", "amount", NULL };
int offset, amount;
var = self->BFileVar;
var->pos = self->pos;
// offset and amount are expected, both optional
offset = amount = -1;
if (!PyArg_ParseTupleAndKeywords(args, keywordArgs, "|ii", keywordList,
&offset, &amount))
return NULL;
if (offset <= 0)
{
offset = 1;
}
if (amount < 0)
{
amount = exBFileVar_InternalSize(self);
if (amount < 0)
{
return NULL;
}
amount = amount - offset + 1;
if (amount <= 0)
{
amount = 1;
}
}
if (exBFileVar_Verify(self) < 0)
return NULL;
return exBFileVar_Value(self, offset, amount);
}
PyObject*
exBFileVar_NEW(
dm_BFileVar* var, // variable to determine value for
unsigned pos // array position
)
{
dm_ExternalBFile* self;
self = (dm_ExternalBFile*)g_exBFileVarType.tp_alloc(&g_exBFileVarType, 0);
if (!self)
return NULL;
self->pos = pos;
Py_INCREF(var);
self->BFileVar = var;
return (PyObject*) self;
}