Explore Enterprise Education Gitee Premium Gitee AI AI teammates
Fetch the repository succeeded.
Create your Gitee Account
Explore and code with more than 14 million developers,Free private repositories !:)
Sign up
Already have an account? Sign in
文件
main
Branches (1)
main
main
Branches (1)
main
Clone or Download
Clone/Download
Prompt
To download the code, please copy the following command and execute it in the terminal
To ensure that your submitted code identity is correctly recognized by Gitee, please execute the following command.
When using the SSH protocol for the first time to clone or push code, follow the prompts below to complete the SSH configuration.
1 Generate RSA keys.
2 Obtain the content of the RSA public key and configure it in SSH Public Keys
To use SVN on Gitee, please visit the usage guide
When using the HTTPS protocol, the command line will prompt for account and password verification as follows. For security reasons, Gitee recommends configure and use personal access tokens instead of login passwords for cloning, pushing, and other operations.
Username for 'https://gitee.com': userName
Password for 'https://userName@gitee.com': # Private Token
main
Branches (1)
main
dmPython
/
vString.c
dmPython
/
vString.c
vString.c 18.00 KB
Copy Edit Raw Blame History
Meiwn authored 2025年06月24日 09:56 +08:00 . first commit
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
/******************************************************
file:
vString.c
purpose:
python type define for DM char/varchar/binary/varbinary variables in dmPython
interface:
{}
history:
Date Who RefDoc Memo
2015年6月9日 wmm Created
*******************************************************/
#include "var_pub.h"
#include "Error.h"
#include "py_Dameng.h"
#include "Buffer.h"
//-----------------------------------------------------------------------------
// Declaration of string variable functions.
//-----------------------------------------------------------------------------
static int StringVar_Initialize(dm_StringVar*);
static int StringVar_SetValue(dm_StringVar*, unsigned, PyObject*);
static PyObject *StringVar_GetValue(dm_StringVar*, unsigned);
#if PY_MAJOR_VERSION < 3
static int StringVar_PostDefine(dm_StringVar*);
#endif
static udint4 StringVar_GetBufferSize(dm_StringVar*);
static int StringVar_BindObjectValue(dm_StringVar*, unsigned, dhobj, udint4);
//-----------------------------------------------------------------------------
// Python type declarations
//-----------------------------------------------------------------------------
PyTypeObject g_StringType = {
PyVarObject_HEAD_INIT(NULL, 0)
"dmPython.STRING", // tp_name
sizeof(dm_StringVar), // 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
};
#if PY_MAJOR_VERSION < 3
PyTypeObject g_UnicodeStrType = {
PyVarObject_HEAD_INIT(NULL, 0)
"dmPython.UNICODE_STRING", // tp_name
sizeof(dm_StringVar), // 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
};
#endif
PyTypeObject g_FixedCharType = {
PyVarObject_HEAD_INIT(NULL, 0)
"dmPython.FIXED_STRING", // tp_name
sizeof(dm_StringVar), // 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
};
#if PY_MAJOR_VERSION < 3
PyTypeObject g_FixedUnicodeCharType = {
PyVarObject_HEAD_INIT(NULL, 0)
"dmPython.FIXED_UNICODE_STRING", // tp_name
sizeof(dm_StringVar), // 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
};
#endif
PyTypeObject g_BinaryType = {
PyVarObject_HEAD_INIT(NULL, 0)
"dmPython.BINARY", // tp_name
sizeof(dm_StringVar), // 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_FixedBinaryType = {
PyVarObject_HEAD_INIT(NULL, 0)
"dmPython.FIXED_BINARY", // tp_name
sizeof(dm_StringVar), // 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_String = {
(InitializeProc) NULL,
(FinalizeProc) NULL,
(PreDefineProc) NULL,
(PreFetchProc) NULL,
(IsNullProc) NULL,
(SetValueProc) StringVar_SetValue,
(GetValueProc) StringVar_GetValue,
(GetBufferSizeProc) StringVar_GetBufferSize,
(BindObjectValueProc)StringVar_BindObjectValue,
&g_StringType, // Python type
DSQL_C_NCHAR, // c type
MAX_STRING_CHARS, // element length (default)
1, // is character data
1, // is variable length
1, // can be copied
1 // can be in array
};
#if PY_MAJOR_VERSION < 3
dm_VarType vt_UnicodeString = {
(InitializeProc) NULL,
(FinalizeProc) NULL,
(PreDefineProc) NULL,
(PreFetchProc) NULL,
(IsNullProc) NULL,
(SetValueProc) StringVar_SetValue,
(GetValueProc) StringVar_GetValue,
(GetBufferSizeProc) StringVar_GetBufferSize,
(BindObjectValueProc)StringVar_BindObjectValue,
&g_UnicodeStrType, // Python type
DSQL_C_NCHAR,
MAX_STRING_CHARS, // element length (default)
1, // is character data
1, // is variable length
1, // can be copied
1 // can be in array
};
#endif
dm_VarType vt_FixedChar = {
(InitializeProc) NULL,
(FinalizeProc) NULL,
(PreDefineProc) NULL,
(PreFetchProc) NULL,
(IsNullProc) NULL,
(SetValueProc) StringVar_SetValue,
(GetValueProc) StringVar_GetValue,
(GetBufferSizeProc) StringVar_GetBufferSize,
(BindObjectValueProc)StringVar_BindObjectValue,
&g_FixedCharType, // Python type
DSQL_C_NCHAR, // c type
2000, // element length (default)
1, // is character data
0, // is variable length
1, // can be copied
1 // can be in array
};
#if PY_MAJOR_VERSION < 3
dm_VarType vt_FixedUnicodeChar = {
(InitializeProc) NULL,
(FinalizeProc) NULL,
(PreDefineProc) NULL,
(PreFetchProc) NULL,
(IsNullProc) NULL,
(SetValueProc) StringVar_SetValue,
(GetValueProc) StringVar_GetValue,
(GetBufferSizeProc) StringVar_GetBufferSize,
(BindObjectValueProc)StringVar_BindObjectValue,
&g_FixedUnicodeCharType, // Python type
DSQL_C_NCHAR,
2000, // element length (default)
1, // is character data
0, // is variable length
1, // can be copied
1 // can be in array
};
#endif
/*
static dm_VarType vt_Rowid = {
(InitializeProc) StringVar_Initialize,
(FinalizeProc) NULL,
(PreDefineProc) NULL,
(PostDefineProc) NULL,
(PreFetchProc) NULL,
(IsNullProc) NULL,
(SetValueProc) StringVar_SetValue,
(GetValueProc) StringVar_GetValue,
(GetBufferSizeProc) StringVar_GetBufferSize,
&g_RowidVarType, // Python type
SQLT_CHR, // Oracle type
SQLCS_IMPLICIT, // charset form
18, // element length (default)
1, // is character data
0, // is variable length
1, // can be copied
1 // can be in array
};*/
dm_VarType vt_Binary = {
(InitializeProc) NULL,
(FinalizeProc) NULL,
(PreDefineProc) NULL,
(PreFetchProc) NULL,
(IsNullProc) NULL,
(SetValueProc) StringVar_SetValue,
(GetValueProc) StringVar_GetValue,
(GetBufferSizeProc) NULL,
(BindObjectValueProc)StringVar_BindObjectValue,
&g_BinaryType, // Python type
DSQL_C_BINARY, // c type
MAX_BINARY_BYTES, // element length (default)
0, // is character data
1, // is variable length
1, // can be copied
1 // can be in array
};
dm_VarType vt_FixedBinary = {
(InitializeProc) NULL,
(FinalizeProc) NULL,
(PreDefineProc) NULL,
(PreFetchProc) NULL,
(IsNullProc) NULL,
(SetValueProc) StringVar_SetValue,
(GetValueProc) StringVar_GetValue,
(GetBufferSizeProc) NULL,
(BindObjectValueProc)StringVar_BindObjectValue,
&g_FixedBinaryType, // Python type
DSQL_C_BINARY, // c type
2000, // element length (default)
0, // is character data
0, // is variable length
1, // can be copied
1 // can be in array
};
//-----------------------------------------------------------------------------
// StringVar_Initialize()
// Initialize the variable. dmVar_new里面会有alloc
//-----------------------------------------------------------------------------
/*
static
int
StringVar_Initialize(
dm_StringVar* var // variable to initialize
)
{
var->actualLength = (slength*) PyMem_Malloc(var->allocatedElements * sizeof(slength));
if (!var->actualLength)
{
PyErr_NoMemory();
return -1;
}
return 0;
}
*/
//-----------------------------------------------------------------------------
// StringVar_SetValue()
// Set the value of the variable.
//-----------------------------------------------------------------------------
static
int
StringVar_SetValue(
dm_StringVar* var, // variable to set value for
unsigned pos, // array position to set
PyObject* value // value to set
)
{
dm_Buffer buffer;
// populate the buffer and confirm the maximum size is not exceeded
if (dmBuffer_FromObject(&buffer, value, var->environment->encoding) < 0)
return -1;
if (var->type->isCharacterData && buffer.numCharacters > MAX_STRING_CHARS)
{
dmBuffer_Clear(&buffer);
PyErr_SetString(PyExc_ValueError, "string data too large");
return -1;
}
else if (!var->type->isCharacterData && buffer.size > MAX_BINARY_BYTES)
{
dmBuffer_Clear(&buffer);
PyErr_SetString(PyExc_ValueError, "binary data too large");
return -1;
}
// ensure that the buffer is large enough
if (buffer.size > (Py_ssize_t)var->bufferSize)
{
if (dmVar_Resize( (dm_Var*) var, buffer.numCharacters) < 0)
{
dmBuffer_Clear(&buffer);
return -1;
}
}
// keep a copy of the string
var->indicator[pos] = (slength)buffer.size;
var->actualLength[pos] = (slength)buffer.size;
if (buffer.size)
{
memcpy(var->data + var->bufferSize * pos, buffer.ptr, buffer.size);
}
dmBuffer_Clear(&buffer);
return 0;
}
//-----------------------------------------------------------------------------
// StringVar_GetValue()
// Returns the value stored at the given array position.
//-----------------------------------------------------------------------------
static
PyObject*
StringVar_GetValue(
dm_StringVar* var, // variable to determine value for
unsigned pos // array position
)
{
char* data;
data = var->data + pos * var->bufferSize;
if (var->type == &vt_Binary || var->type == &vt_FixedBinary)
return PyBytes_FromStringAndSize(data, var->actualLength[pos]);
/* 取到的值按照当前encoding直接返回,不管是否为unicode串 */
return dmString_FromEncodedString(data, var->actualLength[pos], var->environment->encoding);
}
#if PY_MAJOR_VERSION < 3
//-----------------------------------------------------------------------------
// StringVar_PostDefine()
// Set the character set information when values are fetched from this
// variable.
//-----------------------------------------------------------------------------
static
int
StringVar_PostDefine(
dm_StringVar* var
)
{
/*
sword status;
//DSQL_ATTR_SQL_CHARSET
status = OCIAttrSet(var->defineHandle, OCI_HTYPE_DEFINE,
&var->type->charsetForm, 0, OCI_ATTR_CHARSET_FORM,
var->environment->errorHandle);
if (Environment_CheckForError(var->environment, status,
"StringVar_PostDefine(): setting charset form") < 0)
return -1;
*/
return 0;
}
#endif
//-----------------------------------------------------------------------------
// StringVar_GetBufferSize()
// Returns the buffer size to use for the variable.
//-----------------------------------------------------------------------------
static udint4 StringVar_GetBufferSize(
dm_StringVar* self) // variable to get buffer size for
{
if (self->type->isCharacterData)
return self->size * self->environment->maxBytesPerCharacter;
return self->size;
}
static
int
StringVar_BindObjectValue(
dm_StringVar* 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;
}
Loading...
Report
Report success
We will send you the feedback within 2 working days through the letter!
Please fill in the reason for the report carefully. Provide as detailed a description as possible.
Please select a report type
Cancel
Send
误判申诉

此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。

如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。

取消
提交

About

该仓库主要提供了支持python连接达梦数据库的python库
No labels
unknown license
unknown open source license
Cancel

Releases

No release

Contributors

All

Language(Optional)

Activities

can not load any more
Edit
About
Homepage
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/DamengDB/dmPython.git
git@gitee.com:DamengDB/dmPython.git
DamengDB
dmPython
dmPython
main
Going to Help Center

Search

Comment
Repository Report
Back to the top
Login prompt
This operation requires login to the code cloud account. Please log in before operating.
Go to login
No account. Register

AltStyle によって変換されたページ (->オリジナル) /