.gitignore: Ignore `auto-version' script.
[u/mdw/catacomb] / mpint.c
CommitLineData
70b904c5 1/* -*-c-*-
2 *
b817bfc6 3 * $Id: mpint.c,v 1.4 2004/04/08 01:36:15 mdw Exp $
70b904c5 4 *
5 * Conversion between MPs and standard C integers
6 *
7 * (c) 1999 Straylight/Edgeware
8 */
9
45c0fd36 10/*----- Licensing notice --------------------------------------------------*
70b904c5 11 *
12 * This file is part of Catacomb.
13 *
14 * Catacomb is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU Library General Public License as
16 * published by the Free Software Foundation; either version 2 of the
17 * License, or (at your option) any later version.
45c0fd36 18 *
70b904c5 19 * Catacomb is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU Library General Public License for more details.
45c0fd36 23 *
70b904c5 24 * You should have received a copy of the GNU Library General Public
25 * License along with Catacomb; if not, write to the Free
26 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
27 * MA 02111-1307, USA.
28 */
29
70b904c5 30/*----- Header files ------------------------------------------------------*/
31
32#include "mpint.h"
33
34/*----- Main code ---------------------------------------------------------*/
35
36/* --- Conversion from C integers --- */
37
38#define FROM(name, type) \
39 mp *mp_from##name(mp *d, type i) { \
40 MP_FROMINT(d, type, i); \
41 return (d); \
42 }
43
44FROM(short, short)
45FROM(ushort, unsigned short)
46FROM(int, int)
47FROM(uint, unsigned)
92c2a290 48FROM(uint32, uint32)
70b904c5 49FROM(long, long)
50FROM(ulong, unsigned long)
51
52#undef FROM
53
54/* --- Conversion to C integers --- */
55
56#define TO(name, type, max) \
57 type mp_to##name(const mp *m) \
58 { \
59 type i; \
60 MP_TOINT(m, type, max, i); \
61 return (i); \
62 }
63
64TO(short, short, SHRT_MAX)
65TO(ushort, unsigned short, USHRT_MAX)
66TO(int, int, INT_MAX)
67TO(uint, unsigned, UINT_MAX)
92c2a290 68TO(uint32, uint32, 0xffffffff)
70b904c5 69TO(long, long, LONG_MAX)
70TO(ulong, unsigned long, ULONG_MAX)
71
72#undef TO
73
74/*----- Test rig ----------------------------------------------------------*/
75
76#ifdef TEST_RIG
77
78#include <mLib/testrig.h>
79
80static int fromuint(dstr *v)
81{
92c2a290 82 unsigned long i = *(unsigned long *)v[0].buf;
70b904c5 83 mp *m = *(mp **)v[1].buf;
84 mp *d = mp_fromuint(MP_NEW, i);
85 int ok = 1;
86
22bab86c 87 if (!MP_EQ(d, m)) {
70b904c5 88 fputs("\n*** fromint failed.\n", stderr);
92c2a290 89 fprintf(stderr, "i = %lu", i);
70b904c5 90 fputs("\nexpect = ", stderr); mp_writefile(m, stderr, 10);
91 fputs("\nresult = ", stderr); mp_writefile(d, stderr, 10);
92 fputc('\n', stderr);
93 ok = 0;
94 }
95
96 mp_drop(m);
97 mp_drop(d);
92c2a290 98 assert(mparena_count(MPARENA_GLOBAL) == 0);
70b904c5 99 return (ok);
100}
101
102static int fromint(dstr *v)
103{
92c2a290 104 long i = *(long *)v[0].buf;
70b904c5 105 mp *m = *(mp **)v[1].buf;
106 mp *d = mp_fromint(MP_NEW, i);
107 int ok = 1;
108
22bab86c 109 if (!MP_EQ(d, m)) {
70b904c5 110 fputs("\n*** fromint failed.\n", stderr);
92c2a290 111 fprintf(stderr, "i = %li", i);
70b904c5 112 fputs("\nexpect = ", stderr); mp_writefile(m, stderr, 10);
113 fputs("\nresult = ", stderr); mp_writefile(d, stderr, 10);
114 fputc('\n', stderr);
115 ok = 0;
116 }
117
118 mp_drop(m);
119 mp_drop(d);
92c2a290 120 assert(mparena_count(MPARENA_GLOBAL) == 0);
70b904c5 121 return (ok);
122}
123
124static int touint(dstr *v)
125{
126 mp *m = *(mp **)v[0].buf;
92c2a290 127 unsigned long i = *(unsigned long *)v[1].buf;
70b904c5 128 unsigned j = mp_touint(m);
129 int ok = 1;
130
908ebb29 131 if ((unsigned)i != j) {
70b904c5 132 fputs("\n*** touint failed.\n", stderr);
133 fputs("m = ", stderr); mp_writefile(m, stderr, 10);
92c2a290 134 fprintf(stderr, "\nexpect = %lu; result = %u\n", i, j);
70b904c5 135 ok = 0;
136 }
137
138 mp_drop(m);
92c2a290 139 assert(mparena_count(MPARENA_GLOBAL) == 0);
70b904c5 140 return (ok);
141}
142
143static int toint(dstr *v)
144{
145 mp *m = *(mp **)v[0].buf;
92c2a290 146 long i = *(long *)v[1].buf;
70b904c5 147 int j = mp_toint(m);
148 int ok = 1;
149
150 if (i != j) {
151 fputs("\n*** toint failed.\n", stderr);
152 fputs("m = ", stderr); mp_writefile(m, stderr, 10);
92c2a290 153 fprintf(stderr, "\nexpect = %li; result = %i\n", i, j);
70b904c5 154 ok = 0;
155 }
156
157 mp_drop(m);
92c2a290 158 assert(mparena_count(MPARENA_GLOBAL) == 0);
70b904c5 159 return (ok);
160}
161
162static test_chunk tests[] = {
92c2a290 163 { "fromuint", fromuint, { &type_ulong, &type_mp, 0 } },
164 { "fromint", fromint, { &type_long, &type_mp, 0 } },
165 { "touint", touint, { &type_mp, &type_ulong, 0 } },
166 { "toint", toint, { &type_mp, &type_long, 0 } },
70b904c5 167 { 0, 0, { 0 } }
168};
169
170int main(int argc, char *argv[])
171{
172 sub_init();
173 test_run(argc, argv, tests, SRCDIR "/tests/mpint");
174 return (0);
175}
176
177#endif
178
179/*----- That's all, folks -------------------------------------------------*/