Updated information about YAZ.
[yaz-moved-to-github.git] / odr / ber_int.c
1 /*
2  * Copyright (c) 1995-1999, Index Data
3  * See the file LICENSE for details.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: ber_int.c,v $
7  * Revision 1.15  1999-11-30 13:47:11  adam
8  * Improved installation. Moved header files to include/yaz.
9  *
10  * Revision 1.14  1999/05/26 07:49:35  adam
11  * C++ compilation.
12  *
13  * Revision 1.13  1999/01/08 11:23:22  adam
14  * Added const modifier to some of the BER/ODR encoding routines.
15  *
16  * Revision 1.12  1996/07/06 19:58:33  quinn
17  * System headerfiles gathered in yconfig
18  *
19  * Revision 1.11  1995/09/29  17:12:16  quinn
20  * Smallish
21  *
22  * Revision 1.10  1995/09/29  17:01:50  quinn
23  * More Windows work
24  *
25  * Revision 1.9  1995/09/28  10:12:39  quinn
26  * Windows-support changes
27  *
28  * Revision 1.8  1995/09/27  15:02:55  quinn
29  * Modified function heads & prototypes.
30  *
31  * Revision 1.7  1995/05/16  08:50:44  quinn
32  * License, documentation, and memory fixes
33  *
34  * Revision 1.6  1995/04/18  08:15:14  quinn
35  * Added dynamic memory allocation on encoding (whew). Code is now somewhat
36  * neater. We'll make the same change for decoding one day.
37  *
38  * Revision 1.5  1995/03/27  15:01:44  quinn
39  * Added include of sys/types to further portability
40  *
41  * Revision 1.4  1995/03/08  12:12:07  quinn
42  * Added better error checking.
43  *
44  * Revision 1.3  1995/02/09  15:51:46  quinn
45  * Works better now.
46  *
47  * Revision 1.2  1995/02/07  17:52:58  quinn
48  * A damn mess, but now things work, I think.
49  *
50  * Revision 1.1  1995/02/02  16:21:52  quinn
51  * First kick.
52  *
53  */
54
55 #include <string.h>
56
57 #define YNETINCLUDE
58
59 #include <yaz/odr.h>
60
61 static int ber_encinteger(ODR o, int val);
62 static int ber_decinteger(const unsigned char *buf, int *val);
63
64 int ber_integer(ODR o, int *val)
65 {
66     int res;
67
68     switch (o->direction)
69     {
70         case ODR_DECODE:
71             if ((res = ber_decinteger(o->bp, val)) <= 0)
72             {
73                 o->error = OPROTO;
74                 return 0;
75             }
76             o->bp += res;
77             o->left -= res;
78             return 1;
79         case ODR_ENCODE:
80             if ((res = ber_encinteger(o, *val)) < 0)
81                 return 0;
82             return 1;
83         case ODR_PRINT: return 1;
84         default: o->error = OOTHER;  return 0;
85     }
86 }
87
88 /*
89  * Returns: number of bytes written or -1 for error (out of bounds).
90  */
91 int ber_encinteger(ODR o, int val)
92 {
93     int lenpos;
94     int a, len;
95     union { int i; unsigned char c[sizeof(int)]; } tmp;
96
97     lenpos = odr_tell(o);
98     if (odr_putc(o, 0) < 0)  /* dummy */
99         return -1;
100     tmp.i = htonl(val);   /* ensure that that we're big-endian */
101     for (a = 0; a < (int) sizeof(int) - 1; a++)  /* skip superfluous octets */
102         if (!((tmp.c[a] == 0 && !(tmp.c[a+1] & 0X80)) ||
103             (tmp.c[a] == 0XFF && (tmp.c[a+1] & 0X80))))
104             break;
105     len = sizeof(int) - a;
106     if (odr_write(o, (unsigned char*) tmp.c + a, len) < 0)
107         return -1;
108     odr_seek(o, ODR_S_SET, lenpos);
109     if (ber_enclen(o, len, 1, 1) != 1)
110         return -1;
111     odr_seek(o, ODR_S_END, 0);
112 #ifdef ODR_DEBUG
113     fprintf(stderr, "[val=%d]", val);
114 #endif
115     return 0;
116 }
117
118 /*
119  * Returns: Number of bytes read or 0 if no match, -1 if error.
120  */
121 int ber_decinteger(const unsigned char *buf, int *val)
122 {
123     const unsigned char *b = buf;
124     unsigned char fill;
125     int res, len, remains;
126     union { int i; unsigned char c[sizeof(int)]; } tmp;
127
128     if ((res = ber_declen(b, &len)) < 0)
129         return -1;
130     if (len > (int) sizeof(int))    /* let's be reasonable, here */
131         return -1;
132     b+= res;
133
134     remains = sizeof(int) - len;
135     memcpy(tmp.c + remains, b, len);
136     if (*b & 0X80)
137         fill = 0XFF;
138     else
139         fill = 0X00;
140     memset(tmp.c, fill, remains);
141     *val = ntohl(tmp.i);
142
143     b += len;
144 #ifdef ODR_DEBUG
145     fprintf(stderr, "[val=%d]", *val);
146 #endif
147     return b - buf;
148 }