blob: b8aef662a86065f3a81b1349dfb96cf8b7b8acc3 [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 */
46 void *buf_ptr, size_t size,
47 int (*opt_unexpected_tag_decoder)
vlm3b6e1122004-10-21 11:22:12 +000048 (void *struct_key, void *chunk_buf, size_t chunk_size),
vlm9de248e2004-10-20 15:50:55 +000049 ssize_t (*body_receiver)
vlm3b6e1122004-10-21 11:22:12 +000050 (void *struct_key, 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;
66ssize_t xer_next_token(int *stateContext, void *buffer, size_t size,
67 pxer_chunk_type_e *_ch_type);
68
69/*
70 * This function checks the buffer against the tag name is expected to occur.
71 */
72 typedef enum xer_check_tag {
73 XCT_BROKEN, /* The tag is broken */
74 XCT_UNEXPECTED, /* The tag is fine, but unexpected */
75 XCT_OPENING, /* This is the opening <tag> */
76 XCT_CLOSING, /* This is the closing </tag> */
77 XCT_BOTH, /* This is the opening and closing tag <tag/> */
78 } xer_check_tag_e;
79xer_check_tag_e xer_check_tag(const void *buf_ptr, int size,
80 const char *need_tag);
81
82#endif /* _XER_DECODER_H_ */