-
-
Notifications
You must be signed in to change notification settings - Fork 271
Expand file tree
/
Copy pathutl.cpp
More file actions
2216 lines (1906 loc) · 50.8 KB
/
Copy pathutl.cpp
File metadata and controls
2216 lines (1906 loc) · 50.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
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
/*
* PROGRAM: JRD Access Method
* MODULE: utl.cpp
* DESCRIPTION: User callable routines
*
* The contents of this file are subject to the Interbase Public
* License Version 1.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy
* of the License at http://www.Inprise.com/IPL.html
*
* Software distributed under the License is distributed on an
* "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express
* or implied. See the License for the specific language governing
* rights and limitations under the License.
*
* The Original Code was created by Inprise Corporation
* and its predecessors. Portions created by Inprise Corporation are
* Copyright (C) Inprise Corporation.
*
* All Rights Reserved.
* Contributor(s): ______________________________________.
*
* 2001.06.14 Claudio Valderrama: isc_set_path() will append slash if missing,
* so ISC_PATH environment variable won't fail for this cause.
* 2002.02.15 Sean Leyne - Code Cleanup is required of obsolete "EPSON", "XENIX" ports
* 2002.02.15 Sean Leyne - Code Cleanup, removed obsolete "Apollo" port
* 23-Feb-2002 Dmitry Yemanov - Events wildcarding
*
* 2002.10.27 Sean Leyne - Completed removal of obsolete "DG_X86" port
* 2002.10.27 Sean Leyne - Code Cleanup, removed obsolete "UNIXWARE" port
* 2002.10.27 Sean Leyne - Code Cleanup, removed obsolete "Ultrix" port
* 2002.10.27 Sean Leyne - Code Cleanup, removed obsolete "Ultrix/MIPS" port
*
* 2002.10.28 Sean Leyne - Code cleanup, removed obsolete "MPEXL" port
*
* 2002.10.29 Sean Leyne - Removed obsolete "Netware" port
*
* 2002.10.30 Sean Leyne - Removed support for obsolete "PC_PLATFORM" define
*
*/
#include "firebird.h"
#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "../jrd/common.h"
#include "../jrd/license.h"
#include <stdarg.h>
//#include "../common/classes/timestamp.h"
#include "../jrd/gdsassert.h"
#include "../jrd/ibase.h"
#include "../jrd/msg.h"
#include "../jrd/event.h"
#include "../jrd/gds_proto.h"
#include "../jrd/utl_proto.h"
#include "../jrd/constants.h"
#include "../common/classes/ClumpletWriter.h"
#include "../common/utils_proto.h"
#include "../common/classes/MetaName.h"
#include "../common/classes/TempFile.h"
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include <sys/types.h>
#include <sys/stat.h>
#if defined(WIN_NT)
#include <io.h> // mktemp, unlink ..
#include <process.h>
#endif
#ifdef HAVE_SYS_FILE_H
#include <sys/file.h>
#endif
// Bug 7119 - BLOB_load will open external file for read in BINARY mode.
#ifdef WIN_NT
static const char* const FOPEN_READ_TYPE = "rb";
static const char* const FOPEN_WRITE_TYPE = "wb";
static const char* const FOPEN_READ_TYPE_TEXT = "rt";
static const char* const FOPEN_WRITE_TYPE_TEXT = "wt";
#else
static const char* const FOPEN_READ_TYPE = "r";
static const char* const FOPEN_WRITE_TYPE = "w";
static const char* const FOPEN_READ_TYPE_TEXT = FOPEN_READ_TYPE;
static const char* const FOPEN_WRITE_TYPE_TEXT = FOPEN_WRITE_TYPE;
#endif
#define LOWER7(c) ( (c >= 'A' && c<= 'Z') ? c + 'a' - 'A': c )
// Blob stream stuff
const int BSTR_input = 0;
const int BSTR_output = 1;
const int BSTR_alloc = 2;
static int dump(ISC_QUAD*, FB_API_HANDLE, FB_API_HANDLE, FILE*);
static int edit(ISC_QUAD*, FB_API_HANDLE, FB_API_HANDLE, SSHORT, const SCHAR*);
static int get_ods_version(FB_API_HANDLE*, USHORT*, USHORT*);
static void isc_expand_dpb_internal(const UCHAR** dpb, SSHORT* dpb_size, ...);
static int load(ISC_QUAD*, FB_API_HANDLE, FB_API_HANDLE, FILE*);
// Blob info stuff
static const char blob_items[] =
{
isc_info_blob_max_segment, isc_info_blob_num_segments,
isc_info_blob_total_length
};
// gds__version stuff
static const char info[] =
{ isc_info_firebird_version, isc_info_implementation, isc_info_end };
static const char ods_info[] =
{ isc_info_ods_version, isc_info_ods_minor_version, isc_info_end };
static const TEXT* const impl_class[] =
{
NULL, // 0
"access method", // 1
"Y-valve", // 2
"remote interface", // 3
"remote server", // 4
NULL, // 5
NULL, // 6
"pipe interface", // 7
"pipe server", // 8
"central interface", // 9
"central server", // 10
"gateway", // 11
"classic server", // 12
"super server" // 13
};
static const TEXT* const impl_implementation[] =
{
NULL, // 0
"Rdb/VMS", // 1
"Rdb/ELN target", // 2
"Rdb/ELN development", // 3
"Rdb/VMS Y", // 4
"Rdb/ELN Y", // 5
"JRI", // 6
"JSV", // 7
NULL, // 8
NULL, // 9
NULL, // "Firebird/apollo", // 10
NULL, // "Firebird/ultrix", // 11
"Firebird/vms", // 12
"Firebird/sun", // 13
NULL, // "Firebird/OS2", // 14
NULL, // 15
NULL, // 16
NULL, // 17
NULL, // 18
NULL, // 19
NULL, // 20
NULL, // 21
NULL, // 22
NULL, // 23
NULL, // 24
NULL, // "Firebird/apollo", // 25
NULL, // "Firebird/ultrix", // 26
"Firebird/vms", // 27
"Firebird/sun", // 28
NULL, // "Firebird/OS2", // 29
"Firebird/sun4", // 30
"Firebird/hpux", // 31
"Firebird/sun386", // 32
"Firebird:ORACLE/vms", // 33
NULL, // "Firebird/mac/aux", // 34
"Firebird/ibm/aix", // 35
NULL, // "Firebird/mips/ultrix", // 36
NULL, // "Firebird/xenix", // 37
NULL, // "Firebird/AViiON", // 38
NULL, // "Firebird/hp/mpexl", // 39
NULL, // "Firebird/hp/ux300", // 40
NULL, // "Firebird/sgi", // 41
"Firebird/sco/unix", // 42
NULL, // "Firebird/Cray", // 43
NULL, // "Firebird/imp", // 44
NULL, // "Firebird/delta", // 45
NULL, // "Firebird/NeXT", // 46
NULL, // "Firebird/DOS", // 47
NULL, // "Firebird/m88k", // 48
NULL, // "Firebird/UNIXWARE", // 49
"Firebird/x86/Windows NT", // 50
NULL, // "Firebird/epson", // 51
NULL, // "Firebird/DEC/OSF", // 52
"Firebird/Alpha/OpenVMS", // 53
NULL, // "Firebird/NetWare", // 54
"Firebird/Windows", // 55
NULL, // "Firebird/NCR3000", // 56
NULL, // "Firebird/PPC/Windows NT", // 57
NULL, // "Firebird/DG_X86", // 58
"Firebird/SCO_SV Intel", // 59 // 5.5 SCO Port
"Firebird/linux Intel", // 60
"Firebird/FreeBSD/i386", // 61
"Firebird/NetBSD/i386", // 62
"Firebird/Darwin/PowerPC", // 63
"Firebird/SINIX-Z", // 64
"Firebird/linux Sparc", // 65
"Firebird/linux AMD64", // 66
"Firebird/FreeBSD/amd64", // 67
"Firebird/x86-64/Windows NT", // 68
"Firebird/linux PowerPC", // 69
"Firebird/Darwin/Intel", // 70
"Firebird/linux MIPSEL", // 71
"Firebird/linux MIPS", // 72
"Firebird/Darwin/Intel64", // 73
"Firebird/sun/amd64", // 74
"Firebird/linux ARM", // 75
"Firebird/linux IA64", // 76
"Firebird/Darwin/PowerPC64", // 77
"Firebird/linux s390x", // 78
"Firebird/linux s390", // 79
"Firebird/linux SH", // 80
"Firebird/linux SHEB", // 81
"Firebird/linux HPPA", // 82
"Firebird/linux ALPHA", // 83
"Firebird/linux ARM64", // 84
"Firebird/linux PPC64EL", // 85
"Firebird/linux M68K" // 86
};
#if (defined SOLARIS ) || (defined __cplusplus)
extern "C" {
#endif
// Avoid C++ linkage API functions
int API_ROUTINE gds__blob_size(FB_API_HANDLE* b, SLONG* size, SLONG* seg_count, SLONG* max_seg)
{
/**************************************
*
* g d s _ $ b l o b _ s i z e
*
**************************************
*
* Functional description
* Get the size, number of segments, and max
* segment length of a blob. Return TRUE
* if it happens to succeed.
*
**************************************/
ISC_STATUS_ARRAY status_vector;
SCHAR buffer[64];
if (isc_blob_info(status_vector, b, sizeof(blob_items), blob_items, sizeof(buffer), buffer))
{
isc_print_status(status_vector);
return FALSE;
}
const UCHAR* p = reinterpret_cast<UCHAR*>(buffer);
UCHAR item;
while ((item = *p++) != isc_info_end)
{
const USHORT l = gds__vax_integer(p, 2);
p += 2;
const SLONG n = gds__vax_integer(p, l);
p += l;
switch (item)
{
case isc_info_blob_max_segment:
if (max_seg)
*max_seg = n;
break;
case isc_info_blob_num_segments:
if (seg_count)
*seg_count = n;
break;
case isc_info_blob_total_length:
if (size)
*size = n;
break;
default:
return FALSE;
}
}
return TRUE;
}
// 17 May 2001 - isc_expand_dpb is DEPRECATED
void API_ROUTINE_VARARG isc_expand_dpb(SCHAR** dpb, SSHORT* dpb_size, ...)
{
/**************************************
*
* i s c _ e x p a n d _ d p b
*
**************************************
*
* Functional description
* Extend a database parameter block dynamically
* to include runtime info. Generated
* by gpre to provide host variable support for
* READY statement options.
* This expects the list of variable args
* to be zero terminated.
*
* Note: dpb_size is signed short only for compatibility
* with other calls (isc_attach_database) that take a dpb length.
*
* TMN: Note: According to Ann Harrison:
* That routine should be deprecated. It doesn't do what it
* should, and does do things it shouldn't, and is harder to
* use than the natural alternative.
*
**************************************/
SSHORT length;
UCHAR* p = NULL;
const char* q;
va_list args;
USHORT type;
UCHAR* new_dpb;
// calculate length of database parameter block, setting initial length to include version
SSHORT new_dpb_length;
if (!*dpb || !(new_dpb_length = *dpb_size))
{
new_dpb_length = 1;
}
va_start(args, dpb_size);
while (type = va_arg(args, int))
{
switch (type)
{
case isc_dpb_user_name:
case isc_dpb_password:
case isc_dpb_sql_role_name:
case isc_dpb_lc_messages:
case isc_dpb_lc_ctype:
case isc_dpb_reserved:
q = va_arg(args, char*);
if (q)
{
length = strlen(q);
new_dpb_length += 2 + length;
}
break;
default:
va_arg(args, int);
break;
}
}
va_end(args);
// if items have been added, allocate space
// for the new dpb and copy the old one over
if (new_dpb_length > *dpb_size)
{
// Note: gds__free done by GPRE generated code
new_dpb = (UCHAR*) gds__alloc((SLONG)(sizeof(UCHAR) * new_dpb_length));
p = new_dpb;
// FREE: done by client process in GPRE generated code
if (!new_dpb)
{
// NOMEM: don't trash existing dpb
DEV_REPORT("isc_extend_dpb: out of memory");
return; // NOMEM: not really handled
}
q = *dpb;
for (length = *dpb_size; length; length--)
{
*p++ = *q++;
}
}
else
{
// CVC: Notice this case is new_dpb_length <= *dpb_size, but since
// we have new_dpb_length = MAX(*dpb_size, 1) our case is reduced
// to new_dpb_length == *dpb_size. Therefore, this code is a waste
// of time, since the function didn't find any param to add and thus,
// the loop below won't find anything worth adding either.
// Notice, too that the original input dpb is used, yet the pointer "p"
// is positioned exactly at the end, so if something was added at the
// tail, it would be a memory failure, unless the caller lies and is
// always passing a dpb bigger than *dpb_size.
new_dpb = reinterpret_cast<UCHAR*>(*dpb);
p = new_dpb + *dpb_size;
}
if (!*dpb_size)
*p++ = isc_dpb_version1;
// copy in the new runtime items
va_start(args, dpb_size);
while (type = va_arg(args, int))
{
switch (type)
{
case isc_dpb_user_name:
case isc_dpb_password:
case isc_dpb_sql_role_name:
case isc_dpb_lc_messages:
case isc_dpb_lc_ctype:
case isc_dpb_reserved:
q = va_arg(args, char*);
if (q)
{
length = strlen(q);
fb_assert(type <= CHAR_MAX);
*p++ = (UCHAR) type;
fb_assert(length <= CHAR_MAX);
*p++ = (UCHAR) length;
while (length--)
*p++ = *q++;
}
break;
default:
va_arg(args, int);
break;
}
}
va_end(args);
*dpb_size = p - new_dpb;
*dpb = reinterpret_cast<SCHAR*>(new_dpb);
}
int API_ROUTINE isc_modify_dpb(SCHAR** dpb,
SSHORT* dpb_size,
USHORT type,
const SCHAR* str,
SSHORT str_len)
{
/**************************************
*
* i s c _ m o d i f y _ d p b
*
**************************************
* CVC: This is exactly the same logic as isc_expand_dpb, but for one param.
* However, the difference is that when presented with a dpb type it that's
* unknown, it returns FB_FAILURE immediately. In contrast, isc_expand_dpb
* doesn't complain and instead treats those as integers and tries to skip
* them, hoping to sync in the next iteration.
*
* Functional description
* Extend a database parameter block dynamically
* to include runtime info. Generated
* by gpre to provide host variable support for
* READY statement options.
* This expects one arg at a time.
* the length of the string is passed by the caller and hence
* is not expected to be null terminated.
* this call is a variation of isc_expand_dpb without a variable
* arg parameters.
* Instead, this function is called recursively
* Alternatively, this can have a parameter list with all possible
* parameters either nulled or with proper value and type.
*
* **** This can be modified to be so at a later date, making sure
* **** all callers follow the same convention
*
* Note: dpb_size is signed short only for compatibility
* with other calls (isc_attach_database) that take a dpb length.
*
**************************************/
// calculate length of database parameter block, setting initial length to include version
SSHORT new_dpb_length;
if (!*dpb || !(new_dpb_length = *dpb_size))
{
new_dpb_length = 1;
}
switch (type)
{
case isc_dpb_user_name:
case isc_dpb_password:
case isc_dpb_sql_role_name:
case isc_dpb_lc_messages:
case isc_dpb_lc_ctype:
case isc_dpb_reserved:
new_dpb_length += 2 + str_len;
break;
default:
return FB_FAILURE;
}
// if items have been added, allocate space
// for the new dpb and copy the old one over
UCHAR* new_dpb;
if (new_dpb_length > *dpb_size)
{
// Note: gds__free done by GPRE generated code
new_dpb = (UCHAR*) gds__alloc((SLONG)(sizeof(UCHAR) * new_dpb_length));
// FREE: done by client process in GPRE generated code
if (!new_dpb)
{
// NOMEM: don't trash existing dpb
DEV_REPORT("isc_extend_dpb: out of memory");
return FB_FAILURE; // NOMEM: not really handled
}
memcpy(new_dpb, *dpb, *dpb_size);
}
else
new_dpb = reinterpret_cast<UCHAR*>(*dpb);
UCHAR* p = new_dpb + *dpb_size;
if (!*dpb_size)
{
*p++ = isc_dpb_version1;
}
// copy in the new runtime items
switch (type)
{
case isc_dpb_user_name:
case isc_dpb_password:
case isc_dpb_sql_role_name:
case isc_dpb_lc_messages:
case isc_dpb_lc_ctype:
case isc_dpb_reserved:
{
const UCHAR* q = reinterpret_cast<const UCHAR*>(str);
if (q)
{
SSHORT length = str_len;
fb_assert(type <= MAX_UCHAR);
*p++ = (UCHAR) type;
fb_assert(length <= MAX_UCHAR);
*p++ = (UCHAR) length;
while (length--)
{
*p++ = *q++;
}
}
break;
}
default:
return FB_FAILURE;
}
*dpb_size = p - new_dpb;
*dpb = (SCHAR*) new_dpb;
return FB_SUCCESS;
}
#if defined(UNIX) || defined(WIN_NT)
int API_ROUTINE gds__edit(const TEXT* file_name, USHORT /*type*/)
{
/**************************************
*
* g d s _ $ e d i t
*
**************************************
*
* Functional description
* Edit a file.
*
**************************************/
Firebird::string editor;
#ifndef WIN_NT
if (!fb_utils::readenv("VISUAL", editor) && !fb_utils::readenv("EDITOR", editor))
editor = "vi";
#else
if (!fb_utils::readenv("EDITOR", editor))
editor = "Notepad";
#endif
struct stat before;
stat(file_name, &before);
// The path of the editor + the path of the file + quotes + one space.
// We aren't using quotes around the editor for now.
TEXT buffer[MAXPATHLEN * 2 + 5];
fb_utils::snprintf(buffer, sizeof(buffer), "%s \"%s\"", editor.c_str(), file_name);
system(buffer);
struct stat after;
stat(file_name, &after);
return (before.st_mtime != after.st_mtime || before.st_size != after.st_size);
}
#endif
SLONG API_ROUTINE gds__event_block(UCHAR** event_buffer, UCHAR** result_buffer, USHORT count, ...)
{
/**************************************
*
* g d s _ $ e v e n t _ b l o c k
*
**************************************
*
* Functional description
* Create an initialized event parameter block from a
* variable number of input arguments.
* Return the size of the block.
*
* Return 0 as the size if the event parameter block cannot be
* created for any reason.
*
**************************************/
UCHAR* p;
SCHAR* q;
SLONG length;
va_list ptr;
USHORT i;
va_start(ptr, count);
// calculate length of event parameter block,
// setting initial length to include version
// and counts for each argument
length = 1;
i = count;
while (i--)
{
q = va_arg(ptr, SCHAR*);
length += strlen(q) + 5;
}
p = *event_buffer = (UCHAR*) gds__alloc((SLONG) (sizeof(UCHAR) * length));
// FREE: unknown
if (!*event_buffer) // NOMEM:
return 0;
*result_buffer = (UCHAR*) gds__alloc((SLONG) (sizeof(UCHAR) * length));
// FREE: unknown
if (!*result_buffer)
{
// NOMEM:
gds__free(*event_buffer);
*event_buffer = NULL;
return 0;
}
#ifdef DEBUG_GDS_ALLOC
// I can't find anywhere these items are freed
// 1994-October-25 David Schnepper
gds_alloc_flag_unfreed((void*) *event_buffer);
gds_alloc_flag_unfreed((void*) *result_buffer);
#endif // DEBUG_GDS_ALLOC
// initialize the block with event names and counts
*p++ = EPB_version1;
va_start(ptr, count);
i = count;
while (i--)
{
q = va_arg(ptr, SCHAR*);
// Strip trailing blanks from string
const SCHAR* end = q + strlen(q);
while (--end >= q && *end == ' ')
; // empty loop
*p++ = end - q + 1;
while (q <= end)
*p++ = *q++;
*p++ = 0;
*p++ = 0;
*p++ = 0;
*p++ = 0;
}
return p - *event_buffer;
}
USHORT API_ROUTINE gds__event_block_a(SCHAR** event_buffer,
SCHAR** result_buffer,
SSHORT count,
SCHAR** name_buffer)
{
/**************************************
*
* g d s _ $ e v e n t _ b l o c k _ a
*
**************************************
*
* Functional description
* Create an initialized event parameter block from a
* vector of input arguments. (Ada needs this)
* Assume all strings are 31 characters long.
* Return the size of the block.
*
**************************************/
const int MAX_NAME_LENGTH = 31;
// calculate length of event parameter block,
// setting initial length to include version
// and counts for each argument
USHORT i = count;
const SCHAR* const* nb = name_buffer;
SLONG length = 0;
while (i--)
{
const SCHAR* q = *nb++;
// Strip trailing blanks from string
const SCHAR* end = q + MAX_NAME_LENGTH;
while (--end >= q && *end == ' '); // null body
length += end - q + 1 + 5;
}
i = count;
SCHAR* p = *event_buffer = (SCHAR*) gds__alloc((SLONG) (sizeof(SCHAR) * length));
// FREE: unknown
if (!*event_buffer) // NOMEM:
return 0;
*result_buffer = (SCHAR*) gds__alloc((SLONG) (sizeof(SCHAR) * length));
// FREE: unknown
if (!*result_buffer)
{
// NOMEM:
gds__free(*event_buffer);
*event_buffer = NULL;
return 0;
}
#ifdef DEBUG_GDS_ALLOC
// I can't find anywhere these items are freed
// 1994-October-25 David Schnepper
gds_alloc_flag_unfreed((void*) *event_buffer);
gds_alloc_flag_unfreed((void*) *result_buffer);
#endif // DEBUG_GDS_ALLOC
*p++ = EPB_version1;
nb = name_buffer;
while (i--)
{
const SCHAR* q = *nb++;
// Strip trailing blanks from string
const SCHAR* end = q + MAX_NAME_LENGTH;
while (--end >= q && *end == ' ')
; // null body
*p++ = end - q + 1;
while (q <= end)
*p++ = *q++;
*p++ = 0;
*p++ = 0;
*p++ = 0;
*p++ = 0;
}
return (p - *event_buffer);
}
void API_ROUTINE gds__event_block_s(SCHAR** event_buffer,
SCHAR** result_buffer,
SSHORT count,
SCHAR** name_buffer,
SSHORT* return_count)
{
/**************************************
*
* g d s _ $ e v e n t _ b l o c k _ s
*
**************************************
*
* Functional description
* THIS IS THE COBOL VERSION of gds__event_block_a for Cobols
* that don't permit return values.
*
**************************************/
*return_count = gds__event_block_a(event_buffer, result_buffer, count, name_buffer);
}
void API_ROUTINE isc_event_counts(ULONG* result_vector,
SSHORT buffer_length,
UCHAR* event_buffer,
const UCHAR* result_buffer)
{
/**************************************
*
* g d s _ $ e v e n t _ c o u n t s
*
**************************************
*
* Functional description
* Get the delta between two events in an event
* parameter block. Used to update gds_events
* for GPRE support of events.
*
**************************************/
ULONG* vec = result_vector;
const UCHAR* p = event_buffer;
const UCHAR* q = result_buffer;
USHORT length = buffer_length;
const UCHAR* const end = p + length;
// analyze the event blocks, getting the delta for each event
p++;
q++;
while (p < end)
{
// skip over the event name
const USHORT i = (USHORT)* p++;
p += i;
q += i + 1;
// get the change in count
const ULONG initial_count = gds__vax_integer(p, sizeof(SLONG));
p += sizeof(SLONG);
const ULONG new_count = gds__vax_integer(q, sizeof(SLONG));
q += sizeof(SLONG);
*vec++ = new_count - initial_count;
}
// copy over the result to the initial block to prepare
// for the next call to gds__event_wait
memcpy(event_buffer, result_buffer, length);
}
void API_ROUTINE isc_get_client_version(SCHAR* buffer)
{
/**************************************
*
* g d s _ $ g e t _ c l i e n t _ v e r s i o n
*
**************************************
*
* Functional description
*
**************************************/
if (buffer)
strcpy(buffer, ISC_VERSION);
}
int API_ROUTINE isc_get_client_major_version()
{
/**************************************
*
* g d s _ $ g e t _ c l i e n t _ m a j o r _ v e r s i o n
*
**************************************
*
* Functional description
*
**************************************/
return atoi(ISC_MAJOR_VER);
}
int API_ROUTINE isc_get_client_minor_version()
{
/**************************************
*
* g d s _ $ g e t _ c l i e n t _ m i n o r _ v e r s i o n
*
**************************************
*
* Functional description
*
**************************************/
return atoi(ISC_MINOR_VER);
}
void API_ROUTINE gds__map_blobs(int* /*handle1*/, int* /*handle2*/)
{
/**************************************
*
* g d s _ $ m a p _ b l o b s
*
**************************************
*
* Functional description
* Deprecated API function.
*
**************************************/
}
void API_ROUTINE isc_set_debug(int /*value*/)
{
/**************************************
*
* G D S _ S E T _ D E B U G
*
**************************************
*
* Functional description
* Set debugging mode, whatever that may mean.
*
**************************************/
#pragma FB_COMPILER_MESSAGE("Empty function?!")
}
void API_ROUTINE isc_set_login(const UCHAR** dpb, SSHORT* dpb_size)
{
/**************************************
*
* i s c _ s e t _ l o g i n
*
**************************************
*
* Functional description
* Pickup any ISC_USER and ISC_PASSWORD
* environment variables, and stuff them
* into the dpb (if there is no user name
* or password already referenced).
*
**************************************/
#ifndef SUPERSERVER
// look for the environment variables
Firebird::string username, password;
if (!fb_utils::readenv(ISC_USER, username) && !fb_utils::readenv(ISC_PASSWORD, password))
return;
// figure out whether the username or password have already been specified
bool user_seen = false, password_seen = false;
if (*dpb && *dpb_size)
{
const UCHAR* p = *dpb;
for (const UCHAR* const end_dpb = p + *dpb_size; p < end_dpb;)
{
const int item = *p++;
switch (item)
{
case isc_dpb_version1:
continue;
case isc_dpb_sys_user_name:
case isc_dpb_user_name:
user_seen = true;
break;
case isc_dpb_password:
case isc_dpb_password_enc:
password_seen = true;
break;
}
// get the length and increment past the parameter.
const USHORT l = *p++;
p += l;
}
}
if (username.length() && !user_seen)
{
if (password.length() && !password_seen)