Age Owner Branch data TLA Line data Source code
1 : : #include <stdio.h>
2 : : #include <stdlib.h>
3 : : #include <pgtypes_numeric.h>
4 : : #include <pgtypes_error.h>
5 : : #include <decimal.h>
6 : : #include <sqltypes.h>
7 : :
8 : : exec sql include ../regression;
9 : :
10 : : exec sql include ../printf_hack;
11 : :
12 : :
13 : : /*
14 : : TODO:
15 : : deccmp => DECUNKNOWN
16 : : decimal point: , and/or . ?
17 : : ECPG_INFORMIX_BAD_EXPONENT ?
18 : : */
19 : :
20 : : char* decs[] = { "2E394", "-2", ".794", "3.44", "592.49E21", "-32.84e4",
21 : : "2E-394", ".1E-2", "+.0", "-592.49E-07", "+32.84e-4",
22 : : ".500001", "-.5000001",
23 : : "1234567890123456789012345678.91", /* 30 digits should fit
24 : : into decimal */
25 : : "1234567890123456789012345678.921", /* 31 digits should NOT
26 : : fit into decimal */
27 : : "not a number",
28 : : NULL};
29 : :
30 : :
31 : : static void
32 : : check_errno(void);
33 : :
34 : : #define BUFSIZE 200
35 : :
36 : : int
6963 meskes@postgresql.or 37 :CBC 1 : main(void)
38 : : {
39 : : decimal *dec, *din;
40 : : char buf[BUFSIZE];
41 : : long l;
42 : 1 : int i, j, k, q, r, count = 0;
43 : : double dbl;
44 : 1 : decimal **decarr = (decimal **) calloc(1, sizeof(decimal));
45 : :
46 : 1 : ECPGdebug(1, stderr);
47 : :
48 [ + + ]: 17 : for (i = 0; decs[i]; i++)
49 : : {
50 : 16 : dec = PGTYPESdecimal_new();
51 : 16 : r = deccvasc(decs[i], strlen(decs[i]), dec);
52 [ + + ]: 16 : if (r)
53 : : {
54 : 2 : check_errno();
55 : 2 : printf("dec[%d,0]: r: %d\n", i, r);
5500 56 : 2 : PGTYPESdecimal_free(dec);
6963 57 : 2 : continue;
58 : : }
59 : 14 : decarr = realloc(decarr, sizeof(decimal *) * (count + 1));
60 : 14 : decarr[count++] = dec;
61 : :
62 : 14 : r = dectoasc(dec, buf, BUFSIZE-1, -1);
63 [ + + ]: 14 : if (r < 0) check_errno();
64 : 14 : printf("dec[%d,1]: r: %d, %s\n", i, r, buf);
65 : :
66 : 14 : r = dectoasc(dec, buf, BUFSIZE-1, 0);
67 [ + + ]: 14 : if (r < 0) check_errno();
68 : 14 : printf("dec[%d,2]: r: %d, %s\n", i, r, buf);
69 : 14 : r = dectoasc(dec, buf, BUFSIZE-1, 1);
70 [ + + ]: 14 : if (r < 0) check_errno();
71 : 14 : printf("dec[%d,3]: r: %d, %s\n", i, r, buf);
72 : 14 : r = dectoasc(dec, buf, BUFSIZE-1, 2);
73 [ + + ]: 14 : if (r < 0) check_errno();
74 : 14 : printf("dec[%d,4]: r: %d, %s\n", i, r, buf);
75 : :
76 : 14 : din = PGTYPESdecimal_new();
77 : 14 : r = dectoasc(din, buf, BUFSIZE-1, 2);
78 [ - + ]: 14 : if (r < 0) check_errno();
79 : 14 : printf("dec[%d,5]: r: %d, %s\n", i, r, buf);
80 : :
81 : 14 : r = dectolong(dec, &l);
82 [ + + ]: 14 : if (r) check_errno();
83 [ + + ]: 14 : printf("dec[%d,6]: %ld (r: %d)\n", i, r?0L:l, r);
84 [ + + ]: 14 : if (r == 0)
85 : : {
86 : 11 : r = deccvlong(l, din);
87 [ - + ]: 11 : if (r) check_errno();
88 : 11 : dectoasc(din, buf, BUFSIZE-1, 2);
89 : 11 : q = deccmp(dec, din);
90 : 11 : printf("dec[%d,7]: %s (r: %d - cmp: %d)\n", i, buf, r, q);
91 : : }
92 : :
93 : 14 : r = dectoint(dec, &k);
94 [ + + ]: 14 : if (r) check_errno();
95 [ + + ]: 14 : printf("dec[%d,8]: %d (r: %d)\n", i, r?0:k, r);
96 [ + + ]: 14 : if (r == 0)
97 : : {
98 : 11 : r = deccvint(k, din);
99 [ - + ]: 11 : if (r) check_errno();
100 : 11 : dectoasc(din, buf, BUFSIZE-1, 2);
101 : 11 : q = deccmp(dec, din);
102 : 11 : printf("dec[%d,9]: %s (r: %d - cmp: %d)\n", i, buf, r, q);
103 : : }
104 : :
6800 105 [ + + ]: 14 : if (i != 6)
106 : : {
107 : : /* underflow does not work reliable on several archs, so not testing it here */
108 : : /* this is a libc problem since we only call strtod() */
109 : 13 : r = dectodbl(dec, &dbl);
110 [ + + ]: 13 : if (r) check_errno();
2522 tgl@sss.pgh.pa.us 111 : 13 : printf("dec[%d,10]: ", i);
112 [ + + ]: 13 : print_double(r ? 0.0 : dbl);
113 : 13 : printf(" (r: %d)\n", r);
114 : : }
115 : :
6963 meskes@postgresql.or 116 : 14 : PGTYPESdecimal_free(din);
117 : 14 : printf("\n");
118 : : }
119 : :
120 : : /* add a NULL value */
121 : 1 : dec = PGTYPESdecimal_new();
122 : 1 : decarr = realloc(decarr, sizeof(decimal *) * (count + 1));
123 : 1 : decarr[count++] = dec;
124 : :
125 : 1 : rsetnull(CDECIMALTYPE, (char *) decarr[count-1]);
126 [ + - ]: 1 : printf("dec[%d]: %sNULL\n", count-1,
127 : 1 : risnull(CDECIMALTYPE, (char *) decarr[count-1]) ? "" : "NOT ");
128 [ - + ]: 1 : printf("dec[0]: %sNULL\n",
129 : 1 : risnull(CDECIMALTYPE, (char *) decarr[0]) ? "" : "NOT ");
130 : :
131 : 1 : r = dectoasc(decarr[3], buf, -1, -1);
132 : 1 : check_errno(); printf("dectoasc with len == -1: r: %d\n", r);
133 : 1 : r = dectoasc(decarr[3], buf, 0, -1);
134 : 1 : check_errno(); printf("dectoasc with len == 0: r: %d\n", r);
135 : :
136 [ + + ]: 16 : for (i = 0; i < count; i++)
137 : : {
138 [ + + ]: 240 : for (j = 0; j < count; j++)
139 : : {
140 : : decimal a, s, m, d;
141 : : int c;
142 : 225 : c = deccmp(decarr[i], decarr[j]);
143 : 225 : printf("dec[c,%d,%d]: %d\n", i, j, c);
144 : :
145 : : /*
146 : : * decarr[count-1] is risnull(), which makes these functions
147 : : * return 0 without changing the output parameter. Make that
148 : : * clear by initializing each output parameter.
149 : : */
225 noah@leadboat.com 150 : 225 : deccvint(7654321, &a);
151 : 225 : deccvint(7654321, &s);
152 : 225 : deccvint(7654321, &m);
153 : 225 : deccvint(7654321, &d);
154 : :
6963 meskes@postgresql.or 155 : 225 : r = decadd(decarr[i], decarr[j], &a);
156 [ + + ]: 225 : if (r)
157 : : {
158 : 62 : check_errno();
159 : 62 : printf("r: %d\n", r);
160 : : }
161 : : else
162 : : {
163 : 163 : dectoasc(&a, buf, BUFSIZE-1, -1);
164 : 163 : printf("dec[a,%d,%d]: %s\n", i, j, buf);
165 : : }
166 : :
167 : 225 : r = decsub(decarr[i], decarr[j], &s);
168 [ - + ]: 225 : if (r)
169 : : {
6963 meskes@postgresql.or 170 :UBC 0 : check_errno();
171 : 0 : printf("r: %d\n", r);
172 : : }
173 : : else
174 : : {
6963 meskes@postgresql.or 175 :CBC 225 : dectoasc(&s, buf, BUFSIZE-1, -1);
176 : 225 : printf("dec[s,%d,%d]: %s\n", i, j, buf);
177 : : }
178 : :
179 : 225 : r = decmul(decarr[i], decarr[j], &m);
180 [ - + ]: 225 : if (r)
181 : : {
6963 meskes@postgresql.or 182 :UBC 0 : check_errno();
183 : 0 : printf("r: %d\n", r);
184 : : }
185 : : else
186 : : {
6963 meskes@postgresql.or 187 :CBC 225 : dectoasc(&m, buf, BUFSIZE-1, -1);
188 : 225 : printf("dec[m,%d,%d]: %s\n", i, j, buf);
189 : : }
190 : :
191 : 225 : r = decdiv(decarr[i], decarr[j], &d);
192 [ + + ]: 225 : if (r)
193 : : {
194 : 14 : check_errno();
195 : 14 : printf("r: %d\n", r);
196 : : }
197 : : else
198 : : {
199 : 211 : dectoasc(&d, buf, BUFSIZE-1, -1);
200 : 211 : printf("dec[d,%d,%d]: %s\n", i, j, buf);
201 : : }
202 : : }
203 : : }
204 : :
205 [ + + ]: 16 : for (i = 0; i < count; i++)
206 : : {
207 : 15 : dectoasc(decarr[i], buf, BUFSIZE-1, -1);
208 : 15 : printf("%d: %s\n", i, buf);
209 : :
5500 210 : 15 : PGTYPESdecimal_free(decarr[i]);
211 : : }
212 : 1 : free(decarr);
213 : :
2943 peter_e@gmx.net 214 : 1 : return 0;
215 : : }
216 : :
217 : : static void
6963 meskes@postgresql.or 218 : 92 : check_errno(void)
219 : : {
220 [ + - - + : 92 : switch(errno)
- + + - ]
221 : : {
222 : 5 : case 0:
223 : 5 : printf("(no errno set) - ");
224 : 5 : break;
6963 meskes@postgresql.or 225 :UBC 0 : case ECPG_INFORMIX_NUM_OVERFLOW:
226 : 0 : printf("(errno == ECPG_INFORMIX_NUM_OVERFLOW) - ");
227 : 0 : break;
228 : 0 : case ECPG_INFORMIX_NUM_UNDERFLOW:
229 : 0 : printf("(errno == ECPG_INFORMIX_NUM_UNDERFLOW) - ");
230 : 0 : break;
6963 meskes@postgresql.or 231 :CBC 70 : case PGTYPES_NUM_OVERFLOW:
232 : 70 : printf("(errno == PGTYPES_NUM_OVERFLOW) - ");
233 : 70 : break;
6963 meskes@postgresql.or 234 :UBC 0 : case PGTYPES_NUM_UNDERFLOW:
235 : 0 : printf("(errno == PGTYPES_NUM_UNDERFLOW) - ");
236 : 0 : break;
6963 meskes@postgresql.or 237 :CBC 3 : case PGTYPES_NUM_BAD_NUMERIC:
238 : 3 : printf("(errno == PGTYPES_NUM_BAD_NUMERIC) - ");
239 : 3 : break;
240 : 14 : case PGTYPES_NUM_DIVIDE_ZERO:
241 : 14 : printf("(errno == PGTYPES_NUM_DIVIDE_ZERO) - ");
242 : 14 : break;
6963 meskes@postgresql.or 243 :UBC 0 : default:
244 : 0 : printf("(unknown errno (%d))\n", errno);
245 : 0 : printf("(libc: (%s)) ", strerror(errno));
246 : 0 : break;
247 : : }
6963 meskes@postgresql.or 248 :CBC 92 : }
|