Add version 0.5.0
[ric-plt/submgr.git] / e2ap / lib / SuccessfulOutcomeE2.c
1 /*
2  * Generated by asn1c-0.9.29 (http://lionet.info/asn1c)
3  * From ASN.1 module "E2AP-PDU-Descriptions"
4  *      found in "Spec/e2ap-v031ex.asn"
5  *      `asn1c -fcompound-names -fno-include-deps -findirect-choice -gen-PER`
6  */
7
8 #include "SuccessfulOutcomeE2.h"
9
10 static const long asn_VAL_1_id_ricSubscription = 201;
11 static const long asn_VAL_1_reject = 0;
12 static const long asn_VAL_2_id_ricSubscriptionDelete = 202;
13 static const long asn_VAL_2_reject = 0;
14 static const long asn_VAL_3_id_ricServiceUpdate = 203;
15 static const long asn_VAL_3_reject = 0;
16 static const long asn_VAL_4_id_ricControl = 204;
17 static const long asn_VAL_4_reject = 0;
18 static const long asn_VAL_5_id_ricIndication = 205;
19 static const long asn_VAL_5_ignore = 1;
20 static const long asn_VAL_6_id_ricServiceQuery = 206;
21 static const long asn_VAL_6_ignore = 1;
22 static const asn_ioc_cell_t asn_IOS_E2AP_ELEMENTARY_PROCEDURES_1_rows[] = {
23         { "&InitiatingMessage", aioc__type, &asn_DEF_RICsubscriptionRequest },
24         { "&SuccessfulOutcome", aioc__type, &asn_DEF_RICsubscriptionResponse },
25         { "&UnsuccessfulOutcome", aioc__type, &asn_DEF_RICsubscriptionFailure },
26         { "&procedureCode", aioc__value, &asn_DEF_ProcedureCode, &asn_VAL_1_id_ricSubscription },
27         { "&criticality", aioc__value, &asn_DEF_Criticality, &asn_VAL_1_reject },
28         { "&InitiatingMessage", aioc__type, &asn_DEF_RICsubscriptionDeleteRequest },
29         { "&SuccessfulOutcome", aioc__type, &asn_DEF_RICsubscriptionDeleteResponse },
30         { "&UnsuccessfulOutcome", aioc__type, &asn_DEF_RICsubscriptionDeleteFailure },
31         { "&procedureCode", aioc__value, &asn_DEF_ProcedureCode, &asn_VAL_2_id_ricSubscriptionDelete },
32         { "&criticality", aioc__value, &asn_DEF_Criticality, &asn_VAL_2_reject },
33         { "&InitiatingMessage", aioc__type, &asn_DEF_RICserviceUpdate },
34         { "&SuccessfulOutcome", aioc__type, &asn_DEF_RICserviceUpdateAcknowledge },
35         { "&UnsuccessfulOutcome", aioc__type, &asn_DEF_RICserviceUpdateFailure },
36         { "&procedureCode", aioc__value, &asn_DEF_ProcedureCode, &asn_VAL_3_id_ricServiceUpdate },
37         { "&criticality", aioc__value, &asn_DEF_Criticality, &asn_VAL_3_reject },
38         { "&InitiatingMessage", aioc__type, &asn_DEF_RICcontrolRequest },
39         { "&SuccessfulOutcome", aioc__type, &asn_DEF_RICcontrolAcknowledge },
40         { "&UnsuccessfulOutcome", aioc__type, &asn_DEF_RICcontrolFailure },
41         { "&procedureCode", aioc__value, &asn_DEF_ProcedureCode, &asn_VAL_4_id_ricControl },
42         { "&criticality", aioc__value, &asn_DEF_Criticality, &asn_VAL_4_reject },
43         { "&InitiatingMessage", aioc__type, &asn_DEF_RICindication },
44         { "&SuccessfulOutcome",  },
45         { "&UnsuccessfulOutcome",  },
46         { "&procedureCode", aioc__value, &asn_DEF_ProcedureCode, &asn_VAL_5_id_ricIndication },
47         { "&criticality", aioc__value, &asn_DEF_Criticality, &asn_VAL_5_ignore },
48         { "&InitiatingMessage", aioc__type, &asn_DEF_RICserviceQuery },
49         { "&SuccessfulOutcome",  },
50         { "&UnsuccessfulOutcome",  },
51         { "&procedureCode", aioc__value, &asn_DEF_ProcedureCode, &asn_VAL_6_id_ricServiceQuery },
52         { "&criticality", aioc__value, &asn_DEF_Criticality, &asn_VAL_6_ignore }
53 };
54 static const asn_ioc_set_t asn_IOS_E2AP_ELEMENTARY_PROCEDURES_1[] = {
55         { 6, 5, asn_IOS_E2AP_ELEMENTARY_PROCEDURES_1_rows }
56 };
57 static int
58 memb_procedureCode_constraint_1(const asn_TYPE_descriptor_t *td, const void *sptr,
59                         asn_app_constraint_failed_f *ctfailcb, void *app_key) {
60         long value;
61         
62         if(!sptr) {
63                 ASN__CTFAIL(app_key, td, sptr,
64                         "%s: value not given (%s:%d)",
65                         td->name, __FILE__, __LINE__);
66                 return -1;
67         }
68         
69         value = *(const long *)sptr;
70         
71         if((value >= 0 && value <= 255)) {
72                 /* Constraint check succeeded */
73                 return 0;
74         } else {
75                 ASN__CTFAIL(app_key, td, sptr,
76                         "%s: constraint failed (%s:%d)",
77                         td->name, __FILE__, __LINE__);
78                 return -1;
79         }
80 }
81
82 static asn_type_selector_result_t
83 select_SuccessfulOutcomeE2_criticality_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) {
84         asn_type_selector_result_t result = {0, 0};
85         const asn_ioc_set_t *itable = asn_IOS_E2AP_ELEMENTARY_PROCEDURES_1;
86         size_t constraining_column = 3; /* &procedureCode */
87         size_t for_column = 4; /* &criticality */
88         size_t row, presence_index = 0;
89         const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct SuccessfulOutcomeE2, procedureCode));
90         
91         for(row=0; row < itable->rows_count; row++) {
92             const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column];
93             const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column];
94         
95             if(type_cell->cell_kind == aioc__undefined)
96                 continue;
97         
98             presence_index++;
99             if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) {
100                 result.type_descriptor = type_cell->type_descriptor;
101                 result.presence_index = presence_index;
102                 break;
103             }
104         }
105         
106         return result;
107 }
108
109 static int
110 memb_criticality_constraint_1(const asn_TYPE_descriptor_t *td, const void *sptr,
111                         asn_app_constraint_failed_f *ctfailcb, void *app_key) {
112         
113         if(!sptr) {
114                 ASN__CTFAIL(app_key, td, sptr,
115                         "%s: value not given (%s:%d)",
116                         td->name, __FILE__, __LINE__);
117                 return -1;
118         }
119         
120         
121         if(1 /* No applicable constraints whatsoever */) {
122                 /* Nothing is here. See below */
123         }
124         
125         return td->encoding_constraints.general_constraints(td, sptr, ctfailcb, app_key);
126 }
127
128 static asn_type_selector_result_t
129 select_SuccessfulOutcomeE2_value_type(const asn_TYPE_descriptor_t *parent_type, const void *parent_sptr) {
130         asn_type_selector_result_t result = {0, 0};
131         const asn_ioc_set_t *itable = asn_IOS_E2AP_ELEMENTARY_PROCEDURES_1;
132         size_t constraining_column = 3; /* &procedureCode */
133         size_t for_column = 1; /* &SuccessfulOutcome */
134         size_t row, presence_index = 0;
135         const long *constraining_value = (const long *)((const char *)parent_sptr + offsetof(struct SuccessfulOutcomeE2, procedureCode));
136         
137         for(row=0; row < itable->rows_count; row++) {
138             const asn_ioc_cell_t *constraining_cell = &itable->rows[row * itable->columns_count + constraining_column];
139             const asn_ioc_cell_t *type_cell = &itable->rows[row * itable->columns_count + for_column];
140         
141             if(type_cell->cell_kind == aioc__undefined)
142                 continue;
143         
144             presence_index++;
145             if(constraining_cell->type_descriptor->op->compare_struct(constraining_cell->type_descriptor, constraining_value, constraining_cell->value_sptr) == 0) {
146                 result.type_descriptor = type_cell->type_descriptor;
147                 result.presence_index = presence_index;
148                 break;
149             }
150         }
151         
152         return result;
153 }
154
155 static int
156 memb_value_constraint_1(const asn_TYPE_descriptor_t *td, const void *sptr,
157                         asn_app_constraint_failed_f *ctfailcb, void *app_key) {
158         
159         if(!sptr) {
160                 ASN__CTFAIL(app_key, td, sptr,
161                         "%s: value not given (%s:%d)",
162                         td->name, __FILE__, __LINE__);
163                 return -1;
164         }
165         
166         
167         if(1 /* No applicable constraints whatsoever */) {
168                 /* Nothing is here. See below */
169         }
170         
171         return td->encoding_constraints.general_constraints(td, sptr, ctfailcb, app_key);
172 }
173
174 static asn_oer_constraints_t asn_OER_memb_procedureCode_constr_2 CC_NOTUSED = {
175         { 1, 1 }        /* (0..255) */,
176         -1};
177 static asn_per_constraints_t asn_PER_memb_procedureCode_constr_2 CC_NOTUSED = {
178         { APC_CONSTRAINED,       8,  8,  0,  255 }      /* (0..255) */,
179         { APC_UNCONSTRAINED,    -1, -1,  0,  0 },
180         0, 0    /* No PER value map */
181 };
182 static asn_oer_constraints_t asn_OER_memb_criticality_constr_3 CC_NOTUSED = {
183         { 0, 0 },
184         -1};
185 static asn_per_constraints_t asn_PER_memb_criticality_constr_3 CC_NOTUSED = {
186         { APC_CONSTRAINED,       2,  2,  0,  2 }        /* (0..2) */,
187         { APC_UNCONSTRAINED,    -1, -1,  0,  0 },
188         0, 0    /* No PER value map */
189 };
190 static asn_oer_constraints_t asn_OER_memb_value_constr_4 CC_NOTUSED = {
191         { 0, 0 },
192         -1};
193 static asn_per_constraints_t asn_PER_memb_value_constr_4 CC_NOTUSED = {
194         { APC_UNCONSTRAINED,    -1, -1,  0,  0 },
195         { APC_UNCONSTRAINED,    -1, -1,  0,  0 },
196         0, 0    /* No PER value map */
197 };
198 static asn_TYPE_member_t asn_MBR_value_4[] = {
199         { ATF_NOFLAGS, 0, offsetof(struct SuccessfulOutcomeE2__value, choice.RICsubscriptionResponse),
200                 (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)),
201                 0,
202                 &asn_DEF_RICsubscriptionResponse,
203                 0,
204                 { 0, 0, 0 },
205                 0, 0, /* No default value */
206                 "RICsubscriptionResponse"
207                 },
208         { ATF_NOFLAGS, 0, offsetof(struct SuccessfulOutcomeE2__value, choice.RICsubscriptionDeleteResponse),
209                 (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)),
210                 0,
211                 &asn_DEF_RICsubscriptionDeleteResponse,
212                 0,
213                 { 0, 0, 0 },
214                 0, 0, /* No default value */
215                 "RICsubscriptionDeleteResponse"
216                 },
217         { ATF_NOFLAGS, 0, offsetof(struct SuccessfulOutcomeE2__value, choice.RICserviceUpdateAcknowledge),
218                 (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)),
219                 0,
220                 &asn_DEF_RICserviceUpdateAcknowledge,
221                 0,
222                 { 0, 0, 0 },
223                 0, 0, /* No default value */
224                 "RICserviceUpdateAcknowledge"
225                 },
226         { ATF_NOFLAGS, 0, offsetof(struct SuccessfulOutcomeE2__value, choice.RICcontrolAcknowledge),
227                 (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)),
228                 0,
229                 &asn_DEF_RICcontrolAcknowledge,
230                 0,
231                 { 0, 0, 0 },
232                 0, 0, /* No default value */
233                 "RICcontrolAcknowledge"
234                 },
235 };
236 static const asn_TYPE_tag2member_t asn_MAP_value_tag2el_4[] = {
237     { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, 0, 3 }, /* RICsubscriptionResponse */
238     { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 1, -1, 2 }, /* RICsubscriptionDeleteResponse */
239     { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 2, -2, 1 }, /* RICserviceUpdateAcknowledge */
240     { (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 3, -3, 0 } /* RICcontrolAcknowledge */
241 };
242 static asn_CHOICE_specifics_t asn_SPC_value_specs_4 = {
243         sizeof(struct SuccessfulOutcomeE2__value),
244         offsetof(struct SuccessfulOutcomeE2__value, _asn_ctx),
245         offsetof(struct SuccessfulOutcomeE2__value, present),
246         sizeof(((struct SuccessfulOutcomeE2__value *)0)->present),
247         asn_MAP_value_tag2el_4,
248         4,      /* Count of tags in the map */
249         0, 0,
250         -1      /* Extensions start */
251 };
252 static /* Use -fall-defs-global to expose */
253 asn_TYPE_descriptor_t asn_DEF_value_4 = {
254         "value",
255         "value",
256         &asn_OP_OPEN_TYPE,
257         0,      /* No effective tags (pointer) */
258         0,      /* No effective tags (count) */
259         0,      /* No tags (pointer) */
260         0,      /* No tags (count) */
261         { 0, 0, OPEN_TYPE_constraint },
262         asn_MBR_value_4,
263         4,      /* Elements count */
264         &asn_SPC_value_specs_4  /* Additional specs */
265 };
266
267 asn_TYPE_member_t asn_MBR_SuccessfulOutcomeE2_1[] = {
268         { ATF_NOFLAGS, 0, offsetof(struct SuccessfulOutcomeE2, procedureCode),
269                 (ASN_TAG_CLASS_CONTEXT | (0 << 2)),
270                 -1,     /* IMPLICIT tag at current level */
271                 &asn_DEF_ProcedureCode,
272                 0,
273                 { &asn_OER_memb_procedureCode_constr_2, &asn_PER_memb_procedureCode_constr_2,  memb_procedureCode_constraint_1 },
274                 0, 0, /* No default value */
275                 "procedureCode"
276                 },
277         { ATF_NOFLAGS, 0, offsetof(struct SuccessfulOutcomeE2, criticality),
278                 (ASN_TAG_CLASS_CONTEXT | (1 << 2)),
279                 -1,     /* IMPLICIT tag at current level */
280                 &asn_DEF_Criticality,
281                 select_SuccessfulOutcomeE2_criticality_type,
282                 { &asn_OER_memb_criticality_constr_3, &asn_PER_memb_criticality_constr_3,  memb_criticality_constraint_1 },
283                 0, 0, /* No default value */
284                 "criticality"
285                 },
286         { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct SuccessfulOutcomeE2, value),
287                 (ASN_TAG_CLASS_CONTEXT | (2 << 2)),
288                 +1,     /* EXPLICIT tag at current level */
289                 &asn_DEF_value_4,
290                 select_SuccessfulOutcomeE2_value_type,
291                 { &asn_OER_memb_value_constr_4, &asn_PER_memb_value_constr_4,  memb_value_constraint_1 },
292                 0, 0, /* No default value */
293                 "value"
294                 },
295 };
296 static const ber_tlv_tag_t asn_DEF_SuccessfulOutcomeE2_tags_1[] = {
297         (ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
298 };
299 static const asn_TYPE_tag2member_t asn_MAP_SuccessfulOutcomeE2_tag2el_1[] = {
300     { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* procedureCode */
301     { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* criticality */
302     { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 } /* value */
303 };
304 asn_SEQUENCE_specifics_t asn_SPC_SuccessfulOutcomeE2_specs_1 = {
305         sizeof(struct SuccessfulOutcomeE2),
306         offsetof(struct SuccessfulOutcomeE2, _asn_ctx),
307         asn_MAP_SuccessfulOutcomeE2_tag2el_1,
308         3,      /* Count of tags in the map */
309         0, 0, 0,        /* Optional elements (not needed) */
310         -1,     /* First extension addition */
311 };
312 asn_TYPE_descriptor_t asn_DEF_SuccessfulOutcomeE2 = {
313         "SuccessfulOutcomeE2",
314         "SuccessfulOutcomeE2",
315         &asn_OP_SEQUENCE,
316         asn_DEF_SuccessfulOutcomeE2_tags_1,
317         sizeof(asn_DEF_SuccessfulOutcomeE2_tags_1)
318                 /sizeof(asn_DEF_SuccessfulOutcomeE2_tags_1[0]), /* 1 */
319         asn_DEF_SuccessfulOutcomeE2_tags_1,     /* Same as above */
320         sizeof(asn_DEF_SuccessfulOutcomeE2_tags_1)
321                 /sizeof(asn_DEF_SuccessfulOutcomeE2_tags_1[0]), /* 1 */
322         { 0, 0, SEQUENCE_constraint },
323         asn_MBR_SuccessfulOutcomeE2_1,
324         3,      /* Elements count */
325         &asn_SPC_SuccessfulOutcomeE2_specs_1    /* Additional specs */
326 };
327