2 * Copyright (c) 1999-2003, Index Data
3 * See the file LICENSE for details.
4 * Sebastian Hammer, Adam Dickmeiss
6 * $Id: otherinfo.c,v 1.1 2003-10-27 12:21:34 adam Exp $
12 #include <yaz/otherinfo.h>
14 void yaz_oi_APDU(Z_APDU *apdu, Z_OtherInformation ***oip)
18 case Z_APDU_initRequest:
19 *oip = &apdu->u.initRequest->otherInfo;
21 case Z_APDU_searchRequest:
22 *oip = &apdu->u.searchRequest->otherInfo;
24 case Z_APDU_presentRequest:
25 *oip = &apdu->u.presentRequest->otherInfo;
27 case Z_APDU_sortRequest:
28 *oip = &apdu->u.sortRequest->otherInfo;
30 case Z_APDU_scanRequest:
31 *oip = &apdu->u.scanRequest->otherInfo;
33 case Z_APDU_extendedServicesRequest:
34 *oip = &apdu->u.extendedServicesRequest->otherInfo;
36 case Z_APDU_deleteResultSetRequest:
37 *oip = &apdu->u.deleteResultSetRequest->otherInfo;
39 case Z_APDU_initResponse:
40 *oip = &apdu->u.initResponse->otherInfo;
42 case Z_APDU_searchResponse:
43 *oip = &apdu->u.searchResponse->otherInfo;
45 case Z_APDU_presentResponse:
46 *oip = &apdu->u.presentResponse->otherInfo;
48 case Z_APDU_sortResponse:
49 *oip = &apdu->u.sortResponse->otherInfo;
51 case Z_APDU_scanResponse:
52 *oip = &apdu->u.scanResponse->otherInfo;
54 case Z_APDU_extendedServicesResponse:
55 *oip = &apdu->u.extendedServicesResponse->otherInfo;
57 case Z_APDU_deleteResultSetResponse:
58 *oip = &apdu->u.deleteResultSetResponse->otherInfo;
60 case Z_APDU_duplicateDetectionRequest:
61 *oip = &apdu->u.duplicateDetectionRequest->otherInfo;
63 case Z_APDU_duplicateDetectionResponse:
64 *oip = &apdu->u.duplicateDetectionResponse->otherInfo;
72 Z_OtherInformationUnit *yaz_oi_update (
73 Z_OtherInformation **otherInformationP, ODR odr,
74 int *oid, int categoryValue, int delete_flag)
77 Z_OtherInformation *otherInformation;
79 if (!otherInformationP)
81 otherInformation = *otherInformationP;
82 if (!otherInformation)
86 otherInformation = *otherInformationP = (Z_OtherInformation *)
87 odr_malloc (odr, sizeof(*otherInformation));
88 otherInformation->num_elements = 0;
89 otherInformation->list = 0;
91 for (i = 0; i<otherInformation->num_elements; i++)
95 if (!otherInformation->list[i]->category)
96 return otherInformation->list[i];
100 if (otherInformation->list[i]->category &&
102 *otherInformation->list[i]->category->categoryValue &&
103 !oid_oidcmp (oid, otherInformation->list[i]->category->
106 Z_OtherInformationUnit *this_list = otherInformation->list[i];
110 (otherInformation->num_elements)--;
111 while (i < otherInformation->num_elements)
113 otherInformation->list[i] =
114 otherInformation->list[i+1];
126 Z_OtherInformationUnit **newlist = (Z_OtherInformationUnit**)
127 odr_malloc(odr, (otherInformation->num_elements+1) *
129 for (i = 0; i<otherInformation->num_elements; i++)
130 newlist[i] = otherInformation->list[i];
131 otherInformation->list = newlist;
133 otherInformation->list[i] = (Z_OtherInformationUnit*)
134 odr_malloc (odr, sizeof(Z_OtherInformationUnit));
137 otherInformation->list[i]->category = (Z_InfoCategory*)
138 odr_malloc (odr, sizeof(Z_InfoCategory));
139 otherInformation->list[i]->category->categoryTypeId = (int*)
140 odr_oiddup (odr, oid);
141 otherInformation->list[i]->category->categoryValue = (int*)
142 odr_malloc (odr, sizeof(int));
143 *otherInformation->list[i]->category->categoryValue =
147 otherInformation->list[i]->category = 0;
148 otherInformation->list[i]->which = Z_OtherInfo_characterInfo;
149 otherInformation->list[i]->information.characterInfo = 0;
151 otherInformation->num_elements = i+1;
152 return otherInformation->list[i];
156 void yaz_oi_set_string_oid (
157 Z_OtherInformation **otherInformation, ODR odr,
158 int *oid, int categoryValue,
161 Z_OtherInformationUnit *oi =
162 yaz_oi_update(otherInformation, odr, oid, categoryValue, 0);
165 oi->which = Z_OtherInfo_characterInfo;
166 oi->information.characterInfo = odr_strdup (odr, str);
169 void yaz_oi_set_string_oidval (
170 Z_OtherInformation **otherInformation, ODR odr,
171 int oidval, int categoryValue,
176 ent.proto = PROTO_Z3950;
177 ent.oclass = CLASS_USERINFO;
178 ent.value = (oid_value) oidval;
179 if (!oid_ent_to_oid (&ent, oid))
181 yaz_oi_set_string_oid(otherInformation,
182 odr, oid, categoryValue, str);
185 char *yaz_oi_get_string_oid (
186 Z_OtherInformation **otherInformation,
187 int *oid, int categoryValue, int delete_flag)
189 Z_OtherInformationUnit *oi;
191 if ((oi = yaz_oi_update(otherInformation, 0, oid, 1, delete_flag)) &&
192 oi->which == Z_OtherInfo_characterInfo)
193 return oi->information.characterInfo;
197 char *yaz_oi_get_string_oidval(Z_OtherInformation **otherInformation,
198 int oidval, int categoryValue, int delete_flag)
202 ent.proto = PROTO_Z3950;
203 ent.oclass = CLASS_USERINFO;
204 ent.value = (oid_value) oidval;
206 if (!oid_ent_to_oid (&ent, oid))
208 return yaz_oi_get_string_oid (otherInformation, oid, categoryValue,