forked from CUBRID/cubrid-odbc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
odbc.c
412 lines (362 loc) · 14.2 KB
/
odbc.c
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
/*
* Copyright (C) 2008 Search Solution Corporation. All rights reserved by Search Solution.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* - Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* - Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* - Neither the name of the <ORGANIZATION> nor the names of its contributors
* may be used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
* OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
* OF SUCH DAMAGE.
*
*/
#include <windows.h>
#include <stdio.h>
#include "odbc_portable.h"
#include "odbcinst.h"
#include "odbc_resource.h"
#include "odbc_connection.h"
#include "odbc_util.h"
PUBLIC INT_PTR CALLBACK
ConfigDSNDlgProc (HWND hwndParent, UINT message, WPARAM wParam,
LPARAM lParam);
PRIVATE BOOL FAR PASCAL AddDSNProc (HWND hwndParent);
/************************************************************************
* name: ConfigDriver
* arguments:
* returns/side-effects:
* description:
* SQLConfigDriver에 대한 driver-specific routine이다.
* 현재 ODBC Driver 3.51 for CUBRID에서 내부적으로
* 수행하는 routine은 존재하지 않는다.
* NOTE:
* INTERFACE는 ODBCINST.h에 정의되어 있다.
************************************************************************/
ODBC_INTERFACE INSTAPI
ConfigDriver (HWND hwndParent,
WORD fRequest,
LPCSTR lpszDriver,
LPCSTR lpszArgs, LPSTR lpszMsg, WORD cbMsgMax, WORD * pcbMsgOut)
{
OutputDebugString ("ConfigDriver called\n");
return TRUE;
}
/************************************************************************
* name: AddDSNProcByParam
* arguments:
* returns/side-effects:
* description:
* NOTE:
* add dsn(app)
************************************************************************/
PRIVATE BOOL FAR PASCAL
AddDSNProcByParam (CUBRIDDSNItem* pDsn_item)
{
BOOL rc;
CUBRIDDSNItem dsn_item = *pDsn_item;
rc = SQLWriteDSNToIni (dsn_item.dsn, dsn_item.driver);
if (rc == FALSE)
{
return FALSE;
}
SQLWritePrivateProfileString (dsn_item.dsn, KEYWORD_DBNAME,
dsn_item.db_name, "ODBC.INI");
SQLWritePrivateProfileString (dsn_item.dsn, KEYWORD_DESCRIPTION,
dsn_item.description, "ODBC.INI");
SQLWritePrivateProfileString (dsn_item.dsn, KEYWORD_USER, dsn_item.user,
"ODBC.INI");
SQLWritePrivateProfileString (dsn_item.dsn, KEYWORD_PASSWORD,
dsn_item.password, "ODBC.INI");
SQLWritePrivateProfileString (dsn_item.dsn, KEYWORD_SERVER,
dsn_item.server, "ODBC.INI");
SQLWritePrivateProfileString (dsn_item.dsn, KEYWORD_PORT, dsn_item.port,
"ODBC.INI");
SQLWritePrivateProfileString (dsn_item.dsn, KEYWORD_FETCH_SIZE,
dsn_item.fetch_size, "ODBC.INI");
SQLWritePrivateProfileString (dsn_item.dsn, KEYWORD_CHARSET,
dsn_item.charset, "ODBC.INI");
return (TRUE);
}
/************************************************************************
* name: Odbc_strncpy
* arguments:
* returns/side-effects:NULL
* description:
* NOTE:
* strncpy
************************************************************************/
void Odbc_strncpy(char* dst,const char* src,int size)
{
if(src == NULL)
return;
strncpy(dst,src,size);
}
/************************************************************************
* name: ConfigDSN
* arguments:
* returns/side-effects:
* description:
* NOTE:
* INTERFACE는 ODBCINST.h에 정의되어 있다.
************************************************************************/
ODBC_INTERFACE INSTAPI
ConfigDSN (HWND hwndParent,
WORD fRequest, LPCSTR lpszDriver, LPCSTR lpszAttributes)
{
UWORD wConfigMode;
INT_PTR dlgrc;
CUBRIDDSNItem dsn_item;
const char *pt;
int rc =0;
char ConnStrIn[4096] = {0};
char *ptemp;
OutputDebugString ("ConfigDSN called\n");
switch (fRequest)
{
case ODBC_ADD_DSN:
memset (&dsn_item, 0, sizeof (CUBRIDDSNItem));
if(hwndParent){
sprintf (dsn_item.driver, "%s", lpszDriver);
sprintf (dsn_item.fetch_size, "%d", 100);
dlgrc = DialogBoxParam (hInstance, (LPCTSTR) IDD_CONFIGDSN, hwndParent,
ConfigDSNDlgProc, (LPARAM) & dsn_item);
if (dlgrc < 0)
return FALSE;
}
else{
// with ';'
sprintf (dsn_item.driver, "%s", lpszDriver);
memcpy(ConnStrIn,lpszAttributes,strlen(lpszAttributes));
for (ptemp = ConnStrIn; *ptemp != '\0'; ++ptemp)
{
if (*ptemp == ';') // connection string delimiter
*ptemp = '\0';
}
Odbc_strncpy(dsn_item.dsn,element_value_by_key (ConnStrIn, KEYWORD_DSN),ITEMBUFLEN);
Odbc_strncpy(dsn_item.user , element_value_by_key (ConnStrIn, KEYWORD_USER),ITEMBUFLEN);
Odbc_strncpy(dsn_item.password ,element_value_by_key (ConnStrIn, KEYWORD_PASSWORD),ITEMBUFLEN);
Odbc_strncpy(dsn_item.fetch_size , element_value_by_key (ConnStrIn, KEYWORD_FETCH_SIZE),ITEMBUFLEN);
Odbc_strncpy(dsn_item.port , element_value_by_key (ConnStrIn, KEYWORD_PORT),ITEMBUFLEN);
Odbc_strncpy(dsn_item.server , element_value_by_key (ConnStrIn, KEYWORD_SERVER),ITEMBUFLEN);
Odbc_strncpy(dsn_item.save_file , element_value_by_key (ConnStrIn, KEYWORD_SAVEFILE),ITEMBUFLEN);
Odbc_strncpy(dsn_item.charset , element_value_by_key (ConnStrIn, KEYWORD_CHARSET),ITEMBUFLEN);
Odbc_strncpy(dsn_item.db_name , element_value_by_key (ConnStrIn, KEYWORD_DBNAME),ITEMBUFLEN);
Odbc_strncpy(dsn_item.description , element_value_by_key (ConnStrIn, KEYWORD_DESCRIPTION),ITEMBUFLEN);
rc = AddDSNProcByParam(&dsn_item);
if(rc != TRUE)
return rc;
}
break;
case ODBC_CONFIG_DSN:
memset (&dsn_item, 0, sizeof (CUBRIDDSNItem));
sprintf (dsn_item.driver, "%s", lpszDriver);
pt = element_value_by_key (lpszAttributes, KEYWORD_DSN);
if (pt == NULL)
{
SQLPostInstallerError (ODBC_ERROR_INVALID_KEYWORD_VALUE, NULL);
return (FALSE);
}
sprintf (dsn_item.dsn, "%s", pt);
SQLGetPrivateProfileString (dsn_item.dsn, KEYWORD_DESCRIPTION,
"Not Found Field", dsn_item.description,
ITEMBUFLEN, "ODBC.INI");
SQLGetPrivateProfileString (dsn_item.dsn, KEYWORD_DBNAME,
"Not Found Field", dsn_item.db_name,
ITEMBUFLEN, "ODBC.INI");
SQLGetPrivateProfileString (dsn_item.dsn, KEYWORD_USER,
"Not Found Field", dsn_item.user,
ITEMBUFLEN, "ODBC.INI");
SQLGetPrivateProfileString (dsn_item.dsn, KEYWORD_PASSWORD,
"Not Found Field", dsn_item.password,
ITEMBUFLEN, "ODBC.INI");
SQLGetPrivateProfileString (dsn_item.dsn, KEYWORD_SERVER,
"Not Found Field", dsn_item.server,
ITEMBUFLEN, "ODBC.INI");
SQLGetPrivateProfileString (dsn_item.dsn, KEYWORD_PORT,
"Not Found Field", dsn_item.port,
ITEMBUFLEN, "ODBC.INI");
SQLGetPrivateProfileString (dsn_item.dsn, KEYWORD_FETCH_SIZE,
"Not Found Field", dsn_item.fetch_size,
ITEMBUFLEN, "ODBC.INI");
SQLGetPrivateProfileString (dsn_item.dsn, KEYWORD_CHARSET,
"Not Found Field", dsn_item.charset,
ITEMBUFLEN, "ODBC.INI");
dlgrc =
DialogBoxParam (hInstance, (LPCTSTR) IDD_CONFIGDSN, hwndParent,
ConfigDSNDlgProc, (LPARAM) & dsn_item);
if (dlgrc < 0)
return FALSE;
break;
case ODBC_REMOVE_DSN:
pt = element_value_by_key (lpszAttributes, KEYWORD_DSN);
if (pt == NULL)
{
SQLPostInstallerError (ODBC_ERROR_INVALID_KEYWORD_VALUE, NULL);
return (FALSE);
}
SQLRemoveDSNFromIni (pt);
break;
default:
SQLPostInstallerError (ODBC_ERROR_INVALID_REQUEST_TYPE, NULL);
return FALSE;
}
SQLGetConfigMode (&wConfigMode);
return TRUE;
}
/************************************************************************
* name: ConfigDSNDlgProc
* arguments:
* returns/side-effects:
* description:
* SQLDriverConnect시 사용되는 dialog box를 띄운다.
* NOTE:
************************************************************************/
PUBLIC INT_PTR CALLBACK
ConfigDSNDlgProc (HWND hwndParent, UINT message, WPARAM wParam, LPARAM lParam)
{
CUBRIDDSNItem *ptDSNItem;
BOOL rc;
HWND hCtrlDSN;
char ibuf[32];
switch (message)
{
HCURSOR hOldCursor; // Default Cursor Shape
case WM_INITDIALOG:
hOldCursor = SetCursor (LoadCursor ((HINSTANCE) NULL, IDC_WAIT));
ptDSNItem = (CUBRIDDSNItem *) lParam;
hCtrlDSN = GetDlgItem (hwndParent, IDC_DSN);
if (ptDSNItem->save_file[0] != '\0')
{ // FILEDSN
SetDlgItemText (hwndParent, IDC_DSN, "");
SetDlgItemText (hwndParent, IDC_SAVE_FILE, ptDSNItem->save_file);
EnableWindow (hCtrlDSN, FALSE);
}
else
{
SetDlgItemText (hwndParent, IDC_DSN, ptDSNItem->dsn);
SetDlgItemText (hwndParent, IDC_SAVE_FILE, "");
}
SetDlgItemText (hwndParent, IDC_DRIVER, ptDSNItem->driver);
SetDlgItemText (hwndParent, IDC_DESCRIPTION, ptDSNItem->description);
SetDlgItemText (hwndParent, IDC_DBNAME, ptDSNItem->db_name);
SetDlgItemText (hwndParent, IDC_DBUSER, ptDSNItem->user);
SetDlgItemText (hwndParent, IDC_PASSWORD, ptDSNItem->password);
SetDlgItemText (hwndParent, IDC_SERVER, ptDSNItem->server);
SetDlgItemText (hwndParent, IDC_PORT, ptDSNItem->port);
SetDlgItemText (hwndParent, IDC_FETCH_SIZE, ptDSNItem->fetch_size);
SetDlgItemText (hwndParent, IDC_CHARSET, ptDSNItem->charset);
sprintf (ibuf, "%p", ptDSNItem);
SetDlgItemText (hwndParent, IDC_PT_DSNITEM, ibuf);
/*
DisplayDatabases(GetDlgItem(hwndParent, IDCOMBO_DATASOURCE));
*/
SetCursor (hOldCursor);
break;
case WM_COMMAND:
switch (LOWORD (wParam))
{
case IDOK: // make a connection using the supplied values
hOldCursor = SetCursor (LoadCursor ((HINSTANCE) NULL, IDC_WAIT));
GetDlgItemText (hwndParent, IDC_PT_DSNITEM, ibuf, sizeof (ibuf));
sscanf (ibuf, "%p", &ptDSNItem);
GetDlgItemText (hwndParent, IDC_DBNAME, ptDSNItem->db_name,
ITEMBUFLEN);
GetDlgItemText (hwndParent, IDC_DESCRIPTION, ptDSNItem->description,
ITEMBUFLEN * 2);
GetDlgItemText (hwndParent, IDC_DBUSER, ptDSNItem->user,
ITEMBUFLEN);
GetDlgItemText (hwndParent, IDC_PASSWORD, ptDSNItem->password,
ITEMBUFLEN);
GetDlgItemText (hwndParent, IDC_SERVER, ptDSNItem->server,
ITEMBUFLEN);
GetDlgItemText (hwndParent, IDC_PORT, ptDSNItem->port, ITEMBUFLEN);
GetDlgItemText (hwndParent, IDC_FETCH_SIZE, ptDSNItem->fetch_size,
ITEMBUFLEN);
GetDlgItemText (hwndParent, IDC_CHARSET, ptDSNItem->charset,
ITEMBUFLEN);
rc = EndDialog (hwndParent, AddDSNProc (hwndParent));
SetCursor (hOldCursor);
return rc;
case IDCANCEL:
EndDialog (hwndParent, FALSE);
break;
default:
return (FALSE);
}
break;
default:
return (FALSE);
}
return (TRUE);
}
/*
* AddDSNProc
* - FILEDSN은 SQLDriverConnect의 out connection string
* 에 의해서 생성, 수정된다. 그 외의 추과과정은 필요없다.
*/
PRIVATE BOOL FAR PASCAL
AddDSNProc (HWND hwndParent)
{
BOOL rc;
CUBRIDDSNItem dsn_item;
memset (&dsn_item, 0, sizeof (dsn_item));
GetDlgItemText (hwndParent, IDC_SAVE_FILE, dsn_item.save_file,
sizeof (dsn_item.save_file));
if (dsn_item.save_file[0] == '\0')
{
// User DSN, or system DSN
GetDlgItemText (hwndParent, IDC_DRIVER, dsn_item.driver, ITEMBUFLEN);
GetDlgItemText (hwndParent, IDC_DSN, dsn_item.dsn, ITEMBUFLEN);
GetDlgItemText (hwndParent, IDC_DESCRIPTION, dsn_item.description,
sizeof (dsn_item.description));
GetDlgItemText (hwndParent, IDC_DBNAME, dsn_item.db_name, ITEMBUFLEN);
GetDlgItemText (hwndParent, IDC_DBUSER, dsn_item.user, ITEMBUFLEN);
GetDlgItemText (hwndParent, IDC_PASSWORD, dsn_item.password,
ITEMBUFLEN);
GetDlgItemText (hwndParent, IDC_SERVER, dsn_item.server, ITEMBUFLEN);
GetDlgItemText (hwndParent, IDC_PORT, dsn_item.port, ITEMBUFLEN);
GetDlgItemText (hwndParent, IDC_FETCH_SIZE, dsn_item.fetch_size,
ITEMBUFLEN);
GetDlgItemText (hwndParent, IDC_CHARSET, dsn_item.charset,
ITEMBUFLEN);
rc = SQLWriteDSNToIni (dsn_item.dsn, dsn_item.driver);
if (rc == FALSE)
{
return FALSE;
}
SQLWritePrivateProfileString (dsn_item.dsn, KEYWORD_DBNAME,
dsn_item.db_name, "ODBC.INI");
SQLWritePrivateProfileString (dsn_item.dsn, KEYWORD_DESCRIPTION,
dsn_item.description, "ODBC.INI");
SQLWritePrivateProfileString (dsn_item.dsn, KEYWORD_USER, dsn_item.user,
"ODBC.INI");
SQLWritePrivateProfileString (dsn_item.dsn, KEYWORD_PASSWORD,
dsn_item.password, "ODBC.INI");
SQLWritePrivateProfileString (dsn_item.dsn, KEYWORD_SERVER,
dsn_item.server, "ODBC.INI");
SQLWritePrivateProfileString (dsn_item.dsn, KEYWORD_PORT, dsn_item.port,
"ODBC.INI");
SQLWritePrivateProfileString (dsn_item.dsn, KEYWORD_FETCH_SIZE,
dsn_item.fetch_size, "ODBC.INI");
SQLWritePrivateProfileString (dsn_item.dsn, KEYWORD_CHARSET,
dsn_item.charset, "ODBC.INI");
}
return (TRUE);
}