Furhter work on UNIverse resource report.
[yaz-moved-to-github.git] / asn / prt-ext.c
1 /*
2  * Copyright (c) 1995-1998, Index Data.
3  * See the file LICENSE for details.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: prt-ext.c,v $
7  * Revision 1.18  1998-03-31 11:07:44  adam
8  * Furhter work on UNIverse resource report.
9  * Added Extended Services handling in frontend server.
10  *
11  * Revision 1.17  1998/03/20 14:46:06  adam
12  * Added UNIverse Resource Reports.
13  *
14  * Revision 1.16  1998/02/11 11:53:32  adam
15  * Changed code so that it compiles as C++.
16  *
17  * Revision 1.15  1998/02/10 15:31:46  adam
18  * Implemented date and time structure. Changed the Update Extended
19  * Service.
20  *
21  * Revision 1.14  1998/01/05 09:04:57  adam
22  * Fixed bugs in encoders/decoders - Not operator (!) missing.
23  *
24  * Revision 1.13  1997/05/14 06:53:22  adam
25  * C++ support.
26  *
27  * Revision 1.12  1997/04/30 08:52:02  quinn
28  * Null
29  *
30  * Revision 1.11  1996/10/10  12:35:13  quinn
31  * Added Update extended service.
32  *
33  * Revision 1.10  1996/10/09  15:54:55  quinn
34  * Added SearchInfoReport
35  *
36  * Revision 1.9  1996/06/10  08:53:36  quinn
37  * Added Summary,OPAC,ResourceReport
38  *
39  * Revision 1.8  1996/02/20  12:51:44  quinn
40  * Completed SCAN. Fixed problems with EXTERNAL.
41  *
42  * Revision 1.7  1995/10/12  10:34:38  quinn
43  * Added Espec-1.
44  *
45  * Revision 1.6  1995/09/29  17:11:55  quinn
46  * Smallish
47  *
48  * Revision 1.5  1995/09/27  15:02:42  quinn
49  * Modified function heads & prototypes.
50  *
51  * Revision 1.4  1995/08/29  11:17:16  quinn
52  * *** empty log message ***
53  *
54  * Revision 1.3  1995/08/21  09:10:18  quinn
55  * Smallish fixes to suppport new formats.
56  *
57  * Revision 1.2  1995/08/17  12:45:00  quinn
58  * Fixed minor problems with GRS-1. Added support in c&s.
59  *
60  * Revision 1.1  1995/08/15  13:37:41  quinn
61  * Improved EXTERNAL
62  *
63  *
64  */
65
66 #include <proto.h>
67
68 /*
69  * The table below should be moved to the ODR structure itself and
70  * be an image of the association context: To help
71  * map indirect references when they show up. 
72  */
73 static Z_ext_typeent type_table[] =
74 {
75     {VAL_SUTRS, Z_External_sutrs, (Odr_fun) z_SUTRS},
76     {VAL_EXPLAIN, Z_External_explainRecord, (Odr_fun)z_ExplainRecord},
77     {VAL_RESOURCE1, Z_External_resourceReport1, (Odr_fun)z_ResourceReport1},
78     {VAL_RESOURCE2, Z_External_resourceReport2, (Odr_fun)z_ResourceReport2},
79     {VAL_PROMPT1, Z_External_promptObject1, (Odr_fun)z_PromptObject1 },
80     {VAL_GRS1, Z_External_grs1, (Odr_fun)z_GenericRecord},
81     {VAL_EXTENDED, Z_External_extendedService, (Odr_fun)z_TaskPackage},
82     {VAL_ITEMORDER, Z_External_itemOrder, (Odr_fun)z_ItemOrder},
83     {VAL_DIAG1, Z_External_diag1, (Odr_fun)z_DiagnosticFormat},
84     {VAL_ESPEC1, Z_External_espec1, (Odr_fun)z_Espec1},
85     {VAL_SUMMARY, Z_External_summary, (Odr_fun)z_BriefBib},
86     {VAL_OPAC, Z_External_OPAC, (Odr_fun)z_OPACRecord},
87     {VAL_SEARCHRES1, Z_External_searchResult1, (Odr_fun)z_SearchInfoReport},
88     {VAL_DBUPDATE, Z_External_update, (Odr_fun)z_IUUpdate},
89     {VAL_DATETIME, Z_External_dateTime, (Odr_fun)z_DateTime},
90     {VAL_UNIVERSE_REPORT, Z_External_universeReport, (Odr_fun)z_UniverseReport},
91     {VAL_NONE, 0, 0}
92 };
93
94 Z_ext_typeent *z_ext_getentbyref(oid_value val)
95 {
96     Z_ext_typeent *i;
97
98     for (i = type_table; i->dref != VAL_NONE; i++)
99         if (i->dref == val)
100             return i;
101     return 0;
102 }
103
104 int z_External(ODR o, Z_External **p, int opt)
105 {
106     oident *oid;
107     Z_ext_typeent *type;
108
109     static Odr_arm arm[] =
110     {
111         {ODR_EXPLICIT, ODR_CONTEXT, 0, Z_External_single, (Odr_fun)odr_any},
112         {ODR_IMPLICIT, ODR_CONTEXT, 1, Z_External_octet, (Odr_fun)odr_octetstring},
113         {ODR_IMPLICIT, ODR_CONTEXT, 2, Z_External_arbitrary, (Odr_fun)odr_bitstring},
114
115         {ODR_EXPLICIT, ODR_CONTEXT, 0, Z_External_sutrs, (Odr_fun)z_SUTRS},
116         {ODR_EXPLICIT, ODR_CONTEXT, 0, Z_External_explainRecord,
117             (Odr_fun)z_ExplainRecord},
118         {ODR_EXPLICIT, ODR_CONTEXT, 0, Z_External_resourceReport1,
119             (Odr_fun)z_ResourceReport1},
120         {ODR_EXPLICIT, ODR_CONTEXT, 0, Z_External_resourceReport2,
121             (Odr_fun)z_ResourceReport2},
122         {ODR_EXPLICIT, ODR_CONTEXT, 0, Z_External_promptObject1,
123             (Odr_fun)z_PromptObject1},
124         {ODR_EXPLICIT, ODR_CONTEXT, 0, Z_External_grs1, (Odr_fun)z_GenericRecord},
125         {ODR_EXPLICIT, ODR_CONTEXT, 0, Z_External_extendedService,
126             (Odr_fun)z_TaskPackage},
127         {ODR_EXPLICIT, ODR_CONTEXT, 0, Z_External_itemOrder, (Odr_fun)z_ItemOrder},
128         {ODR_EXPLICIT, ODR_CONTEXT, 0, Z_External_diag1, (Odr_fun)z_DiagnosticFormat},
129         {ODR_EXPLICIT, ODR_CONTEXT, 0, Z_External_espec1, (Odr_fun)z_Espec1},
130         {ODR_EXPLICIT, ODR_CONTEXT, 0, Z_External_summary, (Odr_fun)z_BriefBib},
131         {ODR_EXPLICIT, ODR_CONTEXT, 0, Z_External_OPAC, (Odr_fun)z_OPACRecord},
132         {ODR_EXPLICIT, ODR_CONTEXT, 0, Z_External_searchResult1,
133             (Odr_fun)z_SearchInfoReport},
134         {ODR_EXPLICIT, ODR_CONTEXT, 0, Z_External_update, (Odr_fun)z_IUUpdate},
135         {ODR_EXPLICIT, ODR_CONTEXT, 0, Z_External_dateTime, (Odr_fun)z_DateTime},
136         {ODR_EXPLICIT, ODR_CONTEXT, 0, Z_External_universeReport,
137          (Odr_fun)z_UniverseReport},
138         {-1, -1, -1, -1, 0}
139     };
140
141     odr_implicit_settag(o, ODR_UNIVERSAL, ODR_EXTERNAL);
142     if (!odr_sequence_begin(o, p, sizeof(**p)))
143         return opt && odr_ok(o);
144     if (!(odr_oid(o, &(*p)->direct_reference, 1) &&
145         odr_integer(o, &(*p)->indirect_reference, 1) &&
146         odr_graphicstring(o, &(*p)->descriptor, 1)))
147         return 0;
148     /*
149      * Do we know this beast?
150      */
151     if (o->direction == ODR_DECODE && (*p)->direct_reference &&
152         (oid = oid_getentbyoid((*p)->direct_reference)) &&
153         (type = z_ext_getentbyref(oid->value)))
154     {
155         int zclass, tag, cons;
156
157         /*
158          * We know it. If it's represented as an ASN.1 type, bias the CHOICE.
159          */
160         if (!odr_peektag(o, &zclass, &tag, &cons))
161             return opt && odr_ok(o);
162         if (zclass == ODR_CONTEXT && tag == 0 && cons == 1)
163             odr_choice_bias(o, type->what);
164     }
165     return
166         odr_choice(o, arm, &(*p)->u, &(*p)->which) &&
167         odr_sequence_end(o);
168 }