9ce0b448a68ff2ad67c81904bb2d5b8a51a1f0b5
[yaz-moved-to-github.git] / odr / odr_int.c
1 /*
2  * Copyright (c) 1995, Index Data
3  * See the file LICENSE for details.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: odr_int.c,v $
7  * Revision 1.7  1995-05-16 08:50:54  quinn
8  * License, documentation, and memory fixes
9  *
10  * Revision 1.6  1995/03/17  10:17:51  quinn
11  * Added memory management.
12  *
13  * Revision 1.5  1995/03/08  12:12:25  quinn
14  * Added better error checking.
15  *
16  * Revision 1.4  1995/02/10  18:57:25  quinn
17  * More in the way of error-checking.
18  *
19  * Revision 1.3  1995/02/09  15:51:48  quinn
20  * Works better now.
21  *
22  * Revision 1.2  1995/02/07  14:13:45  quinn
23  * Bug fixes.
24  *
25  * Revision 1.1  1995/02/02  16:21:53  quinn
26  * First kick.
27  *
28  */
29
30 #include <odr.h>
31
32 /*
33  * Top level integer en/decoder.
34  * Returns 1 on success, 0 on error.
35  */
36 int odr_integer(ODR o, int **p, int opt)
37 {
38     int res, cons = 0;
39
40     if (o->error)
41         return 0;
42     if (o->t_class < 0)
43     {
44         o->t_class = ODR_UNIVERSAL;
45         o->t_tag = ODR_INTEGER;
46     }
47     if ((res = ber_tag(o, p, o->t_class, o->t_tag, &cons, opt)) < 0)
48         return 0;
49     if (!res)
50         return opt;
51     if (o->direction == ODR_PRINT)
52     {
53         fprintf(o->print, "%s%d\n", odr_indent(o), **p);
54         return 1;
55     }
56     if (cons)
57     {
58         o->error = OPROTO;
59         return 0;
60     }
61     if (o->direction == ODR_DECODE)
62         *p = odr_malloc(o, sizeof(int));
63     return ber_integer(o, *p);
64 }