Added const modifier to some of the BER/ODR encoding routines.
[yaz-moved-to-github.git] / odr / odr_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: odr_int.c,v $
7  * Revision 1.12  1999-01-08 11:23:28  adam
8  * Added const modifier to some of the BER/ODR encoding routines.
9  *
10  * Revision 1.11  1998/02/11 11:53:34  adam
11  * Changed code so that it compiles as C++.
12  *
13  * Revision 1.10  1995/09/29 17:12:24  quinn
14  * Smallish
15  *
16  * Revision 1.9  1995/09/29  17:01:50  quinn
17  * More Windows work
18  *
19  * Revision 1.8  1995/09/27  15:02:59  quinn
20  * Modified function heads & prototypes.
21  *
22  * Revision 1.7  1995/05/16  08:50:54  quinn
23  * License, documentation, and memory fixes
24  *
25  * Revision 1.6  1995/03/17  10:17:51  quinn
26  * Added memory management.
27  *
28  * Revision 1.5  1995/03/08  12:12:25  quinn
29  * Added better error checking.
30  *
31  * Revision 1.4  1995/02/10  18:57:25  quinn
32  * More in the way of error-checking.
33  *
34  * Revision 1.3  1995/02/09  15:51:48  quinn
35  * Works better now.
36  *
37  * Revision 1.2  1995/02/07  14:13:45  quinn
38  * Bug fixes.
39  *
40  * Revision 1.1  1995/02/02  16:21:53  quinn
41  * First kick.
42  *
43  */
44
45 #include <odr.h>
46
47 /*
48  * Top level integer en/decoder.
49  * Returns 1 on success, 0 on error.
50  */
51 int odr_integer(ODR o, int **p, int opt)
52 {
53     int res, cons = 0;
54
55     if (o->error)
56         return 0;
57     if (o->t_class < 0)
58     {
59         o->t_class = ODR_UNIVERSAL;
60         o->t_tag = ODR_INTEGER;
61     }
62     if ((res = ber_tag(o, p, o->t_class, o->t_tag, &cons, opt)) < 0)
63         return 0;
64     if (!res)
65         return opt;
66     if (o->direction == ODR_PRINT)
67     {
68         fprintf(o->print, "%s%d\n", odr_indent(o), **p);
69         return 1;
70     }
71     if (cons)
72     {
73         o->error = OPROTO;
74         return 0;
75     }
76     if (o->direction == ODR_DECODE)
77         *p = (int *)odr_malloc(o, sizeof(int));
78     return ber_integer(o, *p);
79 }