Changed code so that it compiles as C++.
[yaz-moved-to-github.git] / odr / odr_choice.c
1 /*
2  * Copyright (c) 1995, Index Data
3  * See the file LICENSE for details.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: odr_choice.c,v $
7  * Revision 1.15  1998-02-11 11:53:34  adam
8  * Changed code so that it compiles as C++.
9  *
10  * Revision 1.14  1997/05/14 06:53:57  adam
11  * C++ support.
12  *
13  * Revision 1.13  1997/04/30 08:52:10  quinn
14  * Null
15  *
16  * Revision 1.12  1996/10/08  12:58:17  adam
17  * New ODR function, odr_choice_enable_bias, to control behaviour of
18  * odr_choice_bias.
19  *
20  * Revision 1.11  1995/09/29  17:12:23  quinn
21  * Smallish
22  *
23  * Revision 1.10  1995/09/27  15:02:58  quinn
24  * Modified function heads & prototypes.
25  *
26  * Revision 1.9  1995/08/15  12:00:23  quinn
27  * Updated External
28  *
29  * Revision 1.8  1995/06/19  17:01:51  quinn
30  * This should bring us in sync with the version distributed as 1.0b
31  *
32  * Revision 1.7  1995/06/19  13:06:50  quinn
33  * Fixed simple bug in the code to handle untagged choice elements.
34  *
35  * Revision 1.6  1995/05/16  08:50:53  quinn
36  * License, documentation, and memory fixes
37  *
38  * Revision 1.5  1995/03/18  12:16:31  quinn
39  * Minor changes.
40  *
41  * Revision 1.4  1995/03/14  16:59:38  quinn
42  * Added odr_constructed_more check
43  *
44  * Revision 1.3  1995/03/08  12:12:22  quinn
45  * Added better error checking.
46  *
47  * Revision 1.2  1995/02/09  15:51:48  quinn
48  * Works better now.
49  *
50  * Revision 1.1  1995/02/07  17:52:59  quinn
51  * A damn mess, but now things work, I think.
52  *
53  */
54
55 #include <odr.h>
56
57 int odr_choice(ODR o, Odr_arm arm[], void *p, void *whichp)
58 {
59     int i, cl = -1, tg, cn, *which = (int *)whichp, bias = o->choice_bias;
60
61     if (o->error)
62         return 0;
63     if (o->direction != ODR_DECODE && !*(char**)p)
64         return 0;
65     o->choice_bias = -1;
66     for (i = 0; arm[i].fun; i++)
67     {
68         if (o->direction == ODR_DECODE)
69         {
70             if (bias >= 0 && bias != arm[i].which)
71                 continue;
72             *which = arm[i].which;
73         }
74         else if (*which != arm[i].which)
75             continue;
76
77         if (arm[i].tagmode != ODR_NONE)
78         {
79             if (o->direction == ODR_DECODE && cl < 0)
80             {
81                 if (o->stackp > -1 && !odr_constructed_more(o))
82                     return 0;
83                 if (ber_dectag(o->bp, &cl, &tg, &cn) <= 0)
84                     return 0;
85             }
86             else if (o->direction != ODR_DECODE)
87             {
88                 cl = arm[i].zclass;
89                 tg = arm[i].tag;
90             }
91             if (tg == arm[i].tag && cl == arm[i].zclass)
92             {
93                 if (arm[i].tagmode == ODR_IMPLICIT)
94                 {
95                     odr_implicit_settag(o, cl, tg);
96                     return (*arm[i].fun)(o, (char **)p, 0);
97                 }
98                 /* explicit */
99                 if (!odr_constructed_begin(o, p, cl, tg))
100                     return 0;
101                 return (*arm[i].fun)(o, (char **)p, 0) &&
102                     odr_constructed_end(o);
103             }
104         }
105         else  /* no tagging. Have to poll type */
106         {
107             if ((*arm[i].fun)(o, (char **)p, 1) && *(char**)p)
108                 return 1;
109         }
110     }
111     *which = -1;
112     *(char*)p = 0;
113     return 0;
114 }
115
116 void odr_choice_bias(ODR o, int what)
117 {
118     if (o->enable_bias)
119         o->choice_bias = what;
120 }
121
122 void odr_choice_enable_bias (ODR o, int mode)
123 {
124     o->enable_bias = mode;
125 }