19 Star 33 Fork 26

openLooKeng / hetu-odbc-driver

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
ma_environment.c 4.56 KB
一键复制 编辑 原始数据 按行查看 历史
wangmingyue 提交于 2020-06-29 21:58 . openlookeng first commit
/************************************************************************************
Copyright (C) 2013,2016 MariaDB Corporation AB
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; if not see <http://www.gnu.org/licenses>
or write to the Free Software Foundation, Inc.,
51 Franklin St., Fifth Floor, Boston, MA 02110, USA
*************************************************************************************/
#include <ma_odbc.h>
extern Client_Charset utf8;
extern MARIADB_CHARSET_INFO* DmUnicodeCs;
extern MARIADB_CHARSET_INFO dummyUtf32le;
Client_Charset SourceAnsiCs= {0, 0}; /* Basically it should be initialized with 0 anyway */
MARIADB_CHARSET_INFO * mysql_find_charset_name(const char *name);
#ifdef _WIN32
# pragma comment(lib, "ws2_32.lib")
#endif
static my_bool little_endian()
{
int x= 1;
char *c= (char*)&x;
return *c;
}
/* {{{ MADB_EnvFree */
SQLRETURN MADB_EnvFree(MADB_Env *Env)
{
if (!Env)
return SQL_ERROR;
DeleteCriticalSection(&Env->cs);
free(Env);
#ifdef _WIN32
WSACleanup();
#endif
return SQL_SUCCESS;
}
/* }}} */
const char* GetDefaultLogDir();
int GetSourceAnsiCs(Client_Charset *cc);
/* {{{ MADB_EnvInit */
MADB_Env *MADB_EnvInit()
{
MADB_Env *Env= NULL;
#ifdef _WIN32
/* Since we can't determine if WSAStartup has been called, we need
to call it again
*/
WORD VersionRequested;
int err;
WSADATA WsaData;
/* if possible use latest supported version (2.2) */
const unsigned int MajorVersion=2,
MinorVersion=2;
VersionRequested= MAKEWORD(MajorVersion, MinorVersion);
/* Load WinSock library */
if ((err= WSAStartup(VersionRequested, &WsaData)))
{
/* todo: optional debug output */
return Env;
}
/* make sure 2.2 or higher is supported */
if ((LOBYTE(WsaData.wVersion) * 10 + HIBYTE(WsaData.wVersion)) < 22)
{
/* todo: optional debug output */
goto cleanup;
}
#endif
mysql_library_init(0, NULL, NULL);
if (!(Env= (MADB_Env *)MADB_CALLOC(sizeof(MADB_Env))))
{
/* todo: optional debug output */
goto cleanup;
}
MADB_PutErrorPrefix(NULL, &Env->Error);
InitializeCriticalSection(&Env->cs);
Env->OdbcVersion= SQL_OV_ODBC3;
/* This is probably is better todo with thread_once */
if (DmUnicodeCs == NULL)
{
if (sizeof(SQLWCHAR) == 2)
{
DmUnicodeCs= mariadb_get_charset_by_name(little_endian() ? "utf16le" : "utf16");
}
else
{
DmUnicodeCs= little_endian() ? &dummyUtf32le : mariadb_get_charset_by_name("utf32");
}
}
utf8.cs_info= mariadb_get_charset_by_name("utf8mb4");
GetDefaultLogDir();
GetSourceAnsiCs(&SourceAnsiCs);
cleanup:
#ifdef _WIN32
if (!Env)
WSACleanup();
#endif
return Env;
}
/* }}} */
/* {{{ MADB_EnvSetAttr */
SQLRETURN MADB_EnvSetAttr(MADB_Env* Env, SQLINTEGER Attribute, SQLPOINTER ValuePtr, SQLINTEGER StringLength)
{
MADB_CLEAR_ERROR(&Env->Error);
switch (Attribute) {
case SQL_ATTR_ODBC_VERSION:
if (Env->Dbcs)
{
MADB_SetError(&Env->Error, MADB_ERR_HYC00, NULL, 0);
return Env->Error.ReturnValue;
}
Env->OdbcVersion= (SQLINTEGER)(SQLLEN)ValuePtr;
break;
case SQL_ATTR_OUTPUT_NTS:
if ((SQLINTEGER)(SQLLEN)ValuePtr != SQL_TRUE)
MADB_SetError(&Env->Error, MADB_ERR_S1C00, NULL, 0);
break;
default:
MADB_SetError(&Env->Error, MADB_ERR_HYC00, NULL, 0);
break;
}
// LeaveCriticalSection(&Env->cs);
return Env->Error.ReturnValue;
}
/* }}} */
/* {{{ MADB_EnvGetAttr */
SQLRETURN MADB_EnvGetAttr(MADB_Env *Env, SQLINTEGER Attribute, SQLPOINTER ValuePtr, SQLINTEGER BufferLength,
SQLINTEGER *StringLengthPtr)
{
MADB_CLEAR_ERROR(&Env->Error);
switch (Attribute) {
case SQL_ATTR_CONNECTION_POOLING:
*(SQLUINTEGER *)ValuePtr = SQL_CP_OFF;
break;
case SQL_ATTR_ODBC_VERSION:
*(SQLINTEGER *)ValuePtr= Env->OdbcVersion;
break;
case SQL_ATTR_OUTPUT_NTS:
*(SQLINTEGER *)ValuePtr= SQL_TRUE;
break;
default:
MADB_SetError(&Env->Error, MADB_ERR_HYC00, NULL, 0);
break;
}
return Env->Error.ReturnValue;
}
/* }}} */
C
1
https://gitee.com/openlookeng/hetu-odbc-driver.git
git@gitee.com:openlookeng/hetu-odbc-driver.git
openlookeng
hetu-odbc-driver
hetu-odbc-driver
master

搜索帮助