-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvNumber.c
More file actions
1146 lines (979 loc) · 35.5 KB
/
vNumber.c
File metadata and controls
1146 lines (979 loc) · 35.5 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
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/******************************************************
file:
vNumber.c
purpose:
python type define for DM number variables in dmPython
include:
byte/tinyint/smallint/int/integer/bigint
float/double/double precision
real
numeric/number/decimal/dec
interface:
{}
history:
Date Who RefDoc Memo
2015-6-10 wmm Created
*******************************************************/
#include "var_pub.h"
#include "Error.h"
#include "py_Dameng.h"
#include "Buffer.h"
#include "Error.h"
#include "trc.h"
//-----------------------------------------------------------------------------
// Declaration of number variable functions.
//-----------------------------------------------------------------------------
static int NumberVar_SetValue(dm_NumberVar*, unsigned, PyObject*);
static PyObject *NumberVar_GetValue(dm_NumberVar*, unsigned);
static int NumberVar_BindObjectValue(dm_NumberVar*, unsigned, dhobj, udint4);
static int DoubleVar_SetValue(dm_DoubleVar*, unsigned, PyObject*);
static PyObject *DoubleVar_GetValue(dm_DoubleVar*, unsigned);
static int DoubleVar_BindObjectValue(dm_DoubleVar*, unsigned, dhobj, udint4);
static int FloatVar_SetValue(dm_FloatVar*, unsigned, PyObject*);
static PyObject *FloatVar_GetValue(dm_FloatVar*, unsigned);
static int FloatVar_BindObjectValue(dm_FloatVar*, unsigned, dhobj, udint4);
static int NumberStrVar_SetValue(dm_NumberStrVar*, unsigned, PyObject*);
static PyObject *NumberStrVar_GetValue(dm_NumberStrVar*, unsigned);
static int NumberStrVar_BindObjectValue(dm_NumberStrVar*, unsigned, dhobj, udint4);
static int BigintVar_SetValue(dm_BigintVar*, unsigned, PyObject*);
static PyObject *BigintVar_GetValue(dm_BigintVar*, unsigned);
static int BigintVar_BindObjectValue(dm_BigintVar*, unsigned, dhobj, udint4);
static int Base64Var_SetValue(dm_Base64Var*, unsigned, PyObject*);
static PyObject *Base64Var_GetValue(dm_Base64Var*, unsigned);
static int Base64Var_BindObjectValue(dm_Base64Var*, unsigned, dhobj, udint4);
//-----------------------------------------------------------------------------
// Python type declaration
//-----------------------------------------------------------------------------
PyTypeObject g_NumberType = {
PyVarObject_HEAD_INIT(NULL, 0)
"dmPython.NUMBER", // tp_name
sizeof(dm_NumberVar), // tp_basicsize
0, // tp_itemsize
0, // 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
0, // tp_str
0, // tp_getattro
0, // tp_setattro
0, // tp_as_buffer
Py_TPFLAGS_DEFAULT, // tp_flags
0 // tp_doc
};
PyTypeObject g_BigintType = {
PyVarObject_HEAD_INIT(NULL, 0)
"dmPython.BIGINT", // tp_name
sizeof(dm_BigintVar), // tp_basicsize
0, // tp_itemsize
0, // 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
0, // tp_str
0, // tp_getattro
0, // tp_setattro
0, // tp_as_buffer
Py_TPFLAGS_DEFAULT, // tp_flags
0 // tp_doc
};
PyTypeObject g_RowIdType = {
PyVarObject_HEAD_INIT(NULL, 0)
"dmPython.ROWID", // tp_name
sizeof(dm_Base64Var), // tp_basicsize
0, // tp_itemsize
0, // 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
0, // tp_str
0, // tp_getattro
0, // tp_setattro
0, // tp_as_buffer
Py_TPFLAGS_DEFAULT, // tp_flags
0 // tp_doc
};
PyTypeObject g_BooleanType = {
PyVarObject_HEAD_INIT(NULL, 0)
"dmPython.BOOLEAN", // tp_name
sizeof(dm_NumberVar), // tp_basicsize
0, // tp_itemsize
0, // 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
0, // tp_str
0, // tp_getattro
0, // tp_setattro
0, // tp_as_buffer
Py_TPFLAGS_DEFAULT, // tp_flags
0 // tp_doc
};
PyTypeObject g_DoubleType = {
PyVarObject_HEAD_INIT(NULL, 0)
"dmPython.DOUBLE", // tp_name
sizeof(dm_DoubleVar), // tp_basicsize
0, // tp_itemsize
0, // 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
0, // tp_str
0, // tp_getattro
0, // tp_setattro
0, // tp_as_buffer
Py_TPFLAGS_DEFAULT, // tp_flags
0 // tp_doc
};
PyTypeObject g_FloatType = {
PyVarObject_HEAD_INIT(NULL, 0)
"dmPython.REAL", // tp_name
sizeof(dm_FloatVar), // tp_basicsize
0, // tp_itemsize
0, // 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
0, // tp_str
0, // tp_getattro
0, // tp_setattro
0, // tp_as_buffer
Py_TPFLAGS_DEFAULT, // tp_flags
0 // tp_doc
};
PyTypeObject g_NumberStrType = {
PyVarObject_HEAD_INIT(NULL, 0)
"dmPython.DECIMAL", // tp_name
sizeof(dm_NumberStrVar), // tp_basicsize
0, // tp_itemsize
0, // 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
0, // tp_str
0, // tp_getattro
0, // tp_setattro
0, // tp_as_buffer
Py_TPFLAGS_DEFAULT, // tp_flags
0 // tp_doc
};
//-----------------------------------------------------------------------------
// variable type declarations
//-----------------------------------------------------------------------------
dm_VarType vt_Float = {
(InitializeProc) NULL,
(FinalizeProc) NULL,
(PreDefineProc) NULL,
(PreFetchProc) NULL,
(IsNullProc) NULL,
(SetValueProc) FloatVar_SetValue,
(GetValueProc) FloatVar_GetValue,
(GetBufferSizeProc) NULL,
(BindObjectValueProc)FloatVar_BindObjectValue,
&g_FloatType, // Python type
DSQL_C_NCHAR, // c type
64, // element length
0, // is character data
0, // is variable length
1, // can be copied
1 // can be in array
};
dm_VarType vt_Double = {
(InitializeProc) NULL,
(FinalizeProc) NULL,
(PreDefineProc) NULL,
(PreFetchProc) NULL,
(IsNullProc) NULL,
(SetValueProc) DoubleVar_SetValue,
(GetValueProc) DoubleVar_GetValue,
(GetBufferSizeProc) NULL,
(BindObjectValueProc)DoubleVar_BindObjectValue,
&g_DoubleType, // Python type
DSQL_C_DOUBLE, // c type
sizeof(double), // element length
0, // is character data
0, // is variable length
1, // can be copied
1 // can be in array
};
dm_VarType vt_Bigint = {
(InitializeProc) NULL,
(FinalizeProc) NULL,
(PreDefineProc) NULL,
(PreFetchProc) NULL,
(IsNullProc) NULL,
(SetValueProc) BigintVar_SetValue,
(GetValueProc) BigintVar_GetValue,
(GetBufferSizeProc) NULL,
(BindObjectValueProc) BigintVar_BindObjectValue,
&g_BigintType, // Python type
DSQL_C_NCHAR, // C type
32, // element length,精度为19
0, // is character data
0, // is variable length
1, // can be copied
1 // can be in array
};
dm_VarType vt_Integer = {
(InitializeProc) NULL,
(FinalizeProc) NULL,
(PreDefineProc) NULL,
(PreFetchProc) NULL,
(IsNullProc) NULL,
(SetValueProc) NumberVar_SetValue,
(GetValueProc) NumberVar_GetValue,
(GetBufferSizeProc) NULL,
(BindObjectValueProc) NumberVar_BindObjectValue,
&g_NumberType, // Python type
DSQL_C_SLONG, // C type
sizeof(sdint4), // element length
0, // is character data
0, // is variable length
1, // can be copied
1 // can be in array
};
/*
dm_VarType vt_LongInteger = {
(InitializeProc) NULL,
(FinalizeProc) NULL,
(PreDefineProc) NULL,
(PreFetchProc) NULL,
(IsNullProc) NULL,
(SetValueProc) NumberVar_SetValue,
(GetValueProc) NumberVar_GetValue,
(GetBufferSizeProc) NULL,
(BindObjectValueProc)NumberVar_BindObjectValue,
&g_NumberType, // Python type
DSQL_C_SBIGINT, // c type
sizeof(sdint8), // element length
0, // is character data
0, // is variable length
1, // can be copied
1 // can be in array
};*/
dm_VarType vt_RowId = {
(InitializeProc) NULL,
(FinalizeProc) NULL,
(PreDefineProc) NULL,
(PreFetchProc) NULL,
(IsNullProc) NULL,
(SetValueProc) Base64Var_SetValue,
(GetValueProc) Base64Var_GetValue,
(GetBufferSizeProc) NULL,
(BindObjectValueProc) Base64Var_BindObjectValue,
&g_RowIdType, // Python type
DSQL_C_NCHAR, // C type
32, // element length
0, // is character data
0, // is variable length
1, // can be copied
1 // can be in array
};
dm_VarType vt_TinyInteger = {
(InitializeProc) NULL,
(FinalizeProc) NULL,
(PreDefineProc) NULL,
(PreFetchProc) NULL,
(IsNullProc) NULL,
(SetValueProc) NumberVar_SetValue,
(GetValueProc) NumberVar_GetValue,
(GetBufferSizeProc) NULL,
(BindObjectValueProc)NumberVar_BindObjectValue,
&g_NumberType, // Python type
DSQL_C_SLONG, // C type
sizeof(sdint4), // element length
0, // is character data
0, // is variable length
1, // can be copied
1 // can be in array
};
dm_VarType vt_SmallInteger = {
(InitializeProc) NULL,
(FinalizeProc) NULL,
(PreDefineProc) NULL,
(PreFetchProc) NULL,
(IsNullProc) NULL,
(SetValueProc) NumberVar_SetValue,
(GetValueProc) NumberVar_GetValue,
(GetBufferSizeProc) NULL,
(BindObjectValueProc)NumberVar_BindObjectValue,
&g_NumberType, // Python type
DSQL_C_SLONG, // C type
sizeof(sdint4), // element length
0, // is character data
0, // is variable length
1, // can be copied
1 // can be in array
};
dm_VarType vt_NumberAsString = {
(InitializeProc) NULL,
(FinalizeProc) NULL,
(PreDefineProc) NULL,
(PreFetchProc) NULL,
(IsNullProc) NULL,
(SetValueProc) NumberStrVar_SetValue,
(GetValueProc) NumberStrVar_GetValue,
(GetBufferSizeProc) NULL,
(BindObjectValueProc)NumberVar_BindObjectValue,
&g_NumberStrType, // Python type
DSQL_C_NCHAR, // C type,decimal类型以字符串形式写入
256, // element length,预留256字节空间
0, // is character data
0, // is variable length
1, // can be copied
1 // can be in array
};
dm_VarType vt_Boolean = {
(InitializeProc) NULL,
(FinalizeProc) NULL,
(PreDefineProc) NULL,
(PreFetchProc) NULL,
(IsNullProc) NULL,
(SetValueProc) NumberVar_SetValue,
(GetValueProc) NumberVar_GetValue,
(GetBufferSizeProc) NULL,
(BindObjectValueProc)NumberStrVar_BindObjectValue,
&g_BooleanType, // Python type
DSQL_C_SLONG, // C type
sizeof(sdint4), // element length
0, // is character data
0, // is variable length
1, // can be copied
1 // can be in array
};
//-----------------------------------------------------------------------------
// NumberVar_SetValueFromBoolean()
// Set the value of the variable from a Python boolean.
//-----------------------------------------------------------------------------
static
int
NumberVar_SetValueFromBoolean(
dm_NumberVar* var, // variable to set value for
unsigned pos, // array position to set
PyObject* value // value to set
)
{
char integerValue;
integerValue = (value == Py_True);
var->data[pos] = integerValue;
var->actualLength[pos] = var->type->size;
var->indicator[pos] = var->type->size;
return 0;
}
#if PY_MAJOR_VERSION < 3
//-----------------------------------------------------------------------------
// NumberVar_SetValueFromInteger()
// Set the value of the variable from a Python integer.
//-----------------------------------------------------------------------------
static
int
NumberVar_SetValueFromInteger(
dm_NumberVar* var, // variable to set value for
unsigned pos, // array position to set
PyObject* value // value to set
)
{
long integerValue;
integerValue = PyInt_AS_LONG(value);
var->data[pos] = integerValue;
var->actualLength[pos] = var->type->size;
var->indicator[pos] = var->type->size;
return 0;
}
#endif
#if PY_MAJOR_VERSION >= 3
//-----------------------------------------------------------------------------
// NumberVar_SetValueFromFloat()
// Set the value of the variable from a Python Float.
//-----------------------------------------------------------------------------
static
int
NumberVar_SetValueFromFloat(
dm_NumberVar* var, // variable to set value for
unsigned pos, // array position to set
PyObject* value // value to set
)
{
double floatValue;
floatValue = PyFloat_AS_DOUBLE(value);
var->data[pos] = floatValue;
var->actualLength[pos] = var->type->size;
var->indicator[pos] = var->type->size;
return 0;
}
#endif
//-----------------------------------------------------------------------------
// NumberVar_SetValueFromLong()
// Set the value of the variable from a Python long.
//-----------------------------------------------------------------------------
static
int
NumberVar_SetValueFromLong(
dm_NumberVar* var, // variable to set value for
unsigned pos, // array position to set
PyObject* value // value to set
)
{
long longValue;
/* 数据溢出等转换错误 */
longValue = PyLong_AsLong(value);
if (PyErr_Occurred())
{
return -1;
}
var->data[pos] = longValue;
var->actualLength[pos] = var->type->size;
var->indicator[pos] = var->type->size;
return 0;
}
//-----------------------------------------------------------------------------
// NumberVar_GetFormatAndTextFromDecimal()
// Return the text to use for the Decimal object.
//-----------------------------------------------------------------------------
static
int
NumberVar_GetFormatAndTextFromDecimal(
PyObject* tupleValue, // decimal as_tuple() value
PyObject** textObj // text string for conversion
)
{
long numDigits;
long scale;
char str_scale[256];
long sign;
long length;
char* textPtr;
char* textValue;
PyObject* digits;
long digit;
int i;
// acquire basic information from the value tuple
#if PY_MAJOR_VERSION >= 3
sign = PyLong_AsLong(PyTuple_GET_ITEM(tupleValue, 0));
#else
sign = PyInt_AsLong(PyTuple_GET_ITEM(tupleValue, 0));
#endif
if (PyErr_Occurred())
return -1;
digits = PyTuple_GET_ITEM(tupleValue, 1);
if (PyErr_Occurred())
return -1;
#if PY_MAJOR_VERSION >= 3
scale = PyLong_AsLong(PyTuple_GET_ITEM(tupleValue, 2));
#else
scale = PyInt_AsLong(PyTuple_GET_ITEM(tupleValue, 2));
#endif
if (PyErr_Occurred())
return -1;
/* decimal类型指数最大值为128 */
if (abs(scale) > 128)
{
PyErr_SetString(g_ErrorException, "data overflow");
return -1;
}
numDigits = PyTuple_GET_SIZE(digits);
// allocate memory for the string and format to use in conversion
length = numDigits + abs(scale) + 3;
textValue = PyMem_Malloc(length);
textPtr = textValue;
memset(textPtr, 0, length);
if (!textPtr)
{
PyErr_NoMemory();
return -1;
}
/* 符号位 */
if (sign)
*textPtr++ = '-';
/* digits是tuple结构,需要取出每位数字 */
for (i = 0; i < numDigits; i++)
{
#if PY_MAJOR_VERSION >= 3
digit = PyLong_AsLong(PyTuple_GetItem(digits, i));
#else
digit = PyInt_AsLong(PyTuple_GetItem(digits, i));
#endif
if (PyErr_Occurred())
{
PyMem_Free(textPtr);
return -1;
}
*textPtr++ = '0' + (char)digit;
}
/* 指数位 */
aq_sprintf(str_scale, 256, "%s%ld", "E", scale);
strcat(textValue, str_scale);
*textObj = dmString_FromAscii(textValue);
PyMem_Free(textValue);
if (!*textObj)
{
return -1;
}
return 0;
}
//-----------------------------------------------------------------------------
// NumberVar_SetValueFromDecimal()
// Set the value of the variable from a Python decimal.Decimal object.
//-----------------------------------------------------------------------------
static
int
NumberVar_SetValueFromDecimal(
dm_NumberStrVar* var, // variable to set value for
unsigned pos, // array position to set
PyObject* value // value to set
)
{
PyObject *textValue, *tupleValue;
dm_Buffer textBuffer;
tupleValue = PyObject_CallMethod(value, "as_tuple", NULL);
if (!tupleValue)
return -1;
if (NumberVar_GetFormatAndTextFromDecimal(tupleValue, &textValue) < 0)
{
Py_DECREF(tupleValue);
return -1;
}
Py_DECREF(tupleValue);
if (dmBuffer_FromObject(&textBuffer, textValue, var->environment->encoding) < 0)
return -1;
// ensure that the buffer is large enough
if (textBuffer.size > (Py_ssize_t)var->bufferSize)
{
if (dmVar_Resize((dm_Var*)var, textBuffer.numCharacters) < 0)
{
dmBuffer_Clear(&textBuffer);
return -1;
}
}
memcpy(var->data + pos * var->bufferSize, textBuffer.ptr, textBuffer.size);
var->actualLength[pos] = textBuffer.size;
var->indicator[pos] = textBuffer.size;
dmBuffer_Clear(&textBuffer);
Py_DECREF(textValue);
return 0;
}
//-----------------------------------------------------------------------------
// NumberVar_SetValue()
// Set the value of the variable.
//-----------------------------------------------------------------------------
static
int
NumberVar_SetValue(
dm_NumberVar* var, // variable to set value for
unsigned pos, // array position to set
PyObject* value // value to set
)
{
if (PyBool_Check(value))
return NumberVar_SetValueFromBoolean(var, pos, value);
#if PY_MAJOR_VERSION < 3
if (PyInt_Check(value))
return NumberVar_SetValueFromInteger(var, pos, value);
#endif
#if PY_MAJOR_VERSION >= 3
if (PyFloat_Check(value))
return NumberVar_SetValueFromFloat(var, pos, value);
#endif
if (PyLong_Check(value))
return NumberVar_SetValueFromLong(var, pos, value);
PyErr_SetString(g_ErrorException, "expecting numeric data");
return -1;
}
static
int
NumberStrVar_SetValue(
dm_NumberStrVar* var, // variable to set value for
unsigned pos, // array position to set
PyObject* value // value to set
)
{
if (PyDecimal_Check(value))
{
return NumberVar_SetValueFromDecimal(var, pos, value);
}
PyErr_SetString(g_ErrorException, "expecting decimal data");
return -1;
}
static
int
DoubleVar_SetValue(
dm_DoubleVar* var,
unsigned pos,
PyObject* value
)
{
double doubleValue;
doubleValue = PyFloat_AS_DOUBLE(value);
var->data[pos] = doubleValue;
var->actualLength[pos] = sizeof(double);
var->indicator[pos] = sizeof(double);
return 0;
}
static
int
FloatVar_SetValue(
dm_FloatVar* var,
unsigned pos,
PyObject* value
)
{
PyObject* StrValue;
dm_Buffer StrBuffer;
StrValue = PyObject_Str(value);
if (StrValue == NULL)
{
return -1;
}
if (dmBuffer_FromObject(&StrBuffer, StrValue, var->environment->encoding) < 0)
return -1;
memcpy(var->data + pos * var->bufferSize, StrBuffer.ptr, StrBuffer.size);
var->actualLength[pos] = StrBuffer.size;
var->indicator[pos] = StrBuffer.size;
dmBuffer_Clear(&StrBuffer);
Py_DECREF(StrValue);
return 0;
}
//-----------------------------------------------------------------------------
// NumberVar_GetValue()
// Returns the value stored at the given array position.
//-----------------------------------------------------------------------------
static
PyObject*
NumberVar_GetValue(
dm_NumberVar* var, // variable to determine value for
unsigned pos // array position
)
{
if (var->type == &vt_Boolean)
return PyBool_FromLong(var->data[pos]);
return PyLong_FromLong(var->data[pos]);
}
static
int
NumberVar_BindObjectValue(
dm_NumberVar* var,
unsigned pos,
dhobj hobj,
udint4 val_nth
)
{
DPIRETURN rt = DSQL_SUCCESS;
rt = dpi_set_obj_val(hobj, val_nth, var->type->cType, (dpointer)&var->data[pos], var->indicator[pos]);
if (Environment_CheckForError(var->environment, hobj, DSQL_HANDLE_OBJECT, rt,
"vCursor_BindObjectValue():dpi_set_obj_val") < 0)
{
return -1;
}
return 0;
}
static
PyObject*
NumberStrVar_GetValue(
dm_NumberStrVar* var, // variable to determine value for
unsigned pos // array position
)
{
PyObject* stringObj;
PyObject* decObj = NULL;
char* data;
char* new_data;
char* str = NULL;
data = var->data + pos * var->bufferSize;
if (var->type == &vt_NumberAsString)
{
str = strstr(data, ".");
if(str == NULL && data != NULL && var->coldesc != NULL && var->coldesc->scale > 0)
{
new_data = PyMem_Malloc(var->actualLength[pos] + 2);
strcpy(new_data, data);
strcat(new_data, ".0");
stringObj = dmString_FromEncodedString(new_data, var->actualLength[pos] + 2, var->environment->encoding);
PyMem_Free(new_data);
}
else
{
stringObj = dmString_FromEncodedString(data, var->actualLength[pos], var->environment->encoding);
}
if (!stringObj)
return NULL;
//decimal值调用python的方法,转换为decimal.Decimal对象
decObj = PyObject_CallFunctionObjArgs((PyObject*)g_decimal_type, stringObj, NULL);
Py_DECREF(stringObj);
return decObj;
}
PyErr_SetString(g_ErrorException, "expecting decimal data");
return NULL;
}
static
int
NumberStrVar_BindObjectValue(
dm_NumberStrVar* var,
unsigned pos,
dhobj hobj,
udint4 val_nth
)
{
DPIRETURN rt = DSQL_SUCCESS;
rt = dpi_set_obj_val(hobj, val_nth, var->type->cType, (dpointer)((sdbyte*)var->data + var->bufferSize * pos), var->indicator[pos]);
if (Environment_CheckForError(var->environment, hobj, DSQL_HANDLE_OBJECT, rt,
"vCursor_BindObjectValue():dpi_set_obj_val") < 0)
{
return -1;
}
return 0;
}
static
PyObject*
DoubleVar_GetValue(
dm_DoubleVar* var,
unsigned pos
)
{
double value;
value = var->data[pos];
return PyFloat_FromDouble(value);
}
static
int
DoubleVar_BindObjectValue(
dm_DoubleVar* var,
unsigned pos,
dhobj hobj,
udint4 val_nth
)
{
DPIRETURN rt = DSQL_SUCCESS;
rt = dpi_set_obj_val(hobj, val_nth, var->type->cType, (dpointer)&var->data[pos], var->indicator[pos]);
if (Environment_CheckForError(var->environment, hobj, DSQL_HANDLE_OBJECT, rt,
"vCursor_BindObjectValue():dpi_set_obj_val") < 0)
{
return -1;
}
return 0;
}
static
PyObject*
FloatVar_GetValue(
dm_FloatVar* var,
unsigned pos
)
{
PyObject* stringObj;
char* data;
data = var->data + pos * var->bufferSize;
if (var->type == &vt_Float)
{
stringObj = dmString_FromEncodedString(data, var->actualLength[pos], var->environment->encoding);
if (!stringObj)
return NULL;
#if PY_MAJOR_VERSION < 3
return PyFloat_FromString(stringObj, NULL);
#else
return PyFloat_FromString(stringObj);
#endif
}
PyErr_SetString(g_ErrorException, "expecting real data");
return NULL;
}
static
int
FloatVar_BindObjectValue(
dm_FloatVar* var,
unsigned pos,
dhobj hobj,
udint4 val_nth
)
{
DPIRETURN rt = DSQL_SUCCESS;
rt = dpi_set_obj_val(hobj, val_nth, var->type->cType, (dpointer)&var->data[pos], var->indicator[pos]);
if (Environment_CheckForError(var->environment, hobj, DSQL_HANDLE_OBJECT, rt,
"vCursor_BindObjectValue():dpi_set_obj_val") < 0)
{
return -1;
}
return 0;
}
static
int
BigintVar_SetValue(
dm_BigintVar* var, // variable to set value for
unsigned pos, // array position to set
PyObject* value // value to set
)
{
PyObject* StrValue;
dm_Buffer StrBuffer;
StrValue = PyObject_Str(value);
if (StrValue == NULL)
{
return -1;
}
if (dmBuffer_FromObject(&StrBuffer, StrValue, var->environment->encoding) < 0)
return -1;
memset(var->data + pos * var->bufferSize, 0, var->bufferSize);
memcpy(var->data + pos * var->bufferSize, StrBuffer.ptr, StrBuffer.size);
var->actualLength[pos] = StrBuffer.size;