blob: 4f6b537cf02d60e0d6a2bb1edc2abeceeba0b265 [file] [log] [blame]
vlm9de248e2004-10-20 15:50:55 +00001/*-
2 * Copyright (c) 2004 Lev Walkin <vlm@lionet.info>. All rights reserved.
3 * Redistribution and modifications are permitted subject to BSD license.
4 */
5#ifndef _XER_DECODER_H_
6#define _XER_DECODER_H_
7
8#include <asn_application.h>
9
10struct asn_TYPE_descriptor_s; /* Forward declaration */
11
12/*
13 * The XER decoder of any type. May be invoked by the application.
14 */
15asn_dec_rval_t xer_decode(struct asn_codec_ctx_s *opt_codec_ctx,
16 struct asn_TYPE_descriptor_s *type_descriptor,
17 void **struct_ptr, /* Pointer to a target structure's pointer */
18 void *buffer, /* Data to be decoded */
19 size_t size /* Size of that buffer */
20 );
21
22/*
23 * Type of the type-specific XER decoder function.
24 */
25typedef asn_dec_rval_t (xer_type_decoder_f)(asn_codec_ctx_t *opt_codec_ctx,
26 struct asn_TYPE_descriptor_s *type_descriptor,
27 void **struct_ptr,
28 const char *opt_mname, /* Member name */
29 void *buf_ptr, size_t size
30 );
31
32/*******************************
33 * INTERNALLY USEFUL FUNCTIONS *
34 *******************************/
35
36/*
37 * Generalized function for decoding the primitive values.
38 * Used by more specialized functions, such as OCTET_STRING_decode_xer_utf8
39 * and others. This function should not be used by applications, as its API
40 * is subject to changes.
41 */
42asn_dec_rval_t xer_decode_general(asn_codec_ctx_t *opt_codec_ctx,
43 asn_struct_ctx_t *ctx, /* Type decoder context */
vlm3b6e1122004-10-21 11:22:12 +000044 void *struct_key, /* Treated as opaque pointer */
vlm9de248e2004-10-20 15:50:55 +000045 const char *xml_tag, /* Expected XML tag name */
vlm4df9cc12005-03-09 22:19:25 +000046 const void *buf_ptr, size_t size,
vlm9de248e2004-10-20 15:50:55 +000047 int (*opt_unexpected_tag_decoder)
vlm4df9cc12005-03-09 22:19:25 +000048 (void *struct_key, const void *chunk_buf, size_t chunk_size),
vlm9de248e2004-10-20 15:50:55 +000049 ssize_t (*body_receiver)
vlm4df9cc12005-03-09 22:19:25 +000050 (void *struct_key, const void *chunk_buf, size_t chunk_size,
vlm9de248e2004-10-20 15:50:55 +000051 int have_more)
52 );
53
54
55/*
56 * Fetch the next XER (XML) token from the stream.
57 * The function returns the number of bytes occupied by the chunk type,
58 * returned in the _ch_type. The _ch_type is only set (and valid) when
59 * the return value is greater than 0.
60 */
61 typedef enum pxer_chunk_type {
62 PXER_TAG, /* Complete XER tag */
63 PXER_TEXT, /* Plain text between XER tags */
64 PXER_COMMENT, /* A comment, may be part of */
65 } pxer_chunk_type_e;
vlmc70f8f32005-02-18 18:06:36 +000066ssize_t xer_next_token(int *stateContext,
vlm4df9cc12005-03-09 22:19:25 +000067 const void *buffer, size_t size, pxer_chunk_type_e *_ch_type);
vlm9de248e2004-10-20 15:50:55 +000068
69/*
70 * This function checks the buffer against the tag name is expected to occur.
71 */
72 typedef enum xer_check_tag {
vlm957da5b2005-02-18 14:23:48 +000073 XCT_BROKEN = 0, /* The tag is broken */
74 XCT_OPENING = 1, /* This is the <opening> tag */
75 XCT_CLOSING = 2, /* This is the </closing> tag */
76 XCT_BOTH = 3, /* This is the <modified/> tag */
77 XCT__UNK__MASK = 4, /* Mask of everything unexpected */
78 XCT_UNKNOWN_OP = 5, /* Unexpected <opening> tag */
79 XCT_UNKNOWN_CL = 6, /* Unexpected </closing> tag */
80 XCT_UNKNOWN_BO = 7, /* Unexpected <modified/> tag */
vlm9de248e2004-10-20 15:50:55 +000081 } xer_check_tag_e;
82xer_check_tag_e xer_check_tag(const void *buf_ptr, int size,
83 const char *need_tag);
84
vlm2a4245f2004-10-22 08:17:16 +000085/*
86 * Check whether this buffer consists of entirely XER whitespace characters.
87 * RETURN VALUES:
88 * 1: Whitespace or empty string
89 * 0: Non-whitespace
90 */
vlm4df9cc12005-03-09 22:19:25 +000091int xer_is_whitespace(const void *chunk_buf, size_t chunk_size);
vlm2a4245f2004-10-22 08:17:16 +000092
vlmcb7222f2005-02-18 16:10:40 +000093/*
94 * Skip the series of anticipated extensions.
95 */
96int xer_skip_unknown(xer_check_tag_e tcv, ber_tlv_len_t *depth);
97
vlm9de248e2004-10-20 15:50:55 +000098#endif /* _XER_DECODER_H_ */