Imported Upstream version 1.0.0
[platform/upstream/iotivity.git] / resource / csdk / connectivity / lib / libcoap-4.1.1 / block.h
1 /* block.h -- block transfer
2  *
3  * Copyright (C) 2010--2012,2014 Olaf Bergmann <bergmann@tzi.org>
4  *
5  * This file is part of the CoAP library libcoap. Please see
6  * README for terms of use.
7  */
8
9 #ifndef _COAP_BLOCK_H_
10 #define _COAP_BLOCK_H_
11
12 #include "option.h"
13 #include "encode.h"
14 #include "pdu.h"
15
16 /**
17  * @defgroup block Block Transfer
18  * @{
19  */
20
21 #ifndef COAP_MAX_BLOCK_SZX
22 /**
23  * The largest value for the SZX component in a Block option. Note
24  * that 1 << (COAP_MAX_BLOCK_SZX + 4) should not exceed
25  * COAP_MAX_PDU_SIZE.
26  */
27 #define COAP_MAX_BLOCK_SZX      4
28 #endif /* COAP_MAX_BLOCK_SZX */
29
30 #if (COAP_MAX_PDU_SIZE - 6) < (1 << (COAP_MAX_BLOCK_SZX + 4))
31 #error "COAP_MAX_BLOCK_SZX too large"
32 #endif
33
34 /**
35  * Structure of Block options.
36  */
37 typedef struct
38 {
39 #ifdef WITH_ARDUINO
40     unsigned long int num : 20;
41 #else
42     unsigned int num : 20;
43 #endif
44     unsigned int m : 1; /**< 1 if more blocks follow, 0 otherwise */
45     unsigned int szx : 3; /**< block size */
46 } coap_block_t;
47
48 /**
49  * Returns the value of the least significant byte of a Block option @p opt.
50  * For zero-length options (i.e. num == m == szx == 0), COAP_OPT_BLOCK_LAST
51  * returns @c NULL.
52  */
53 #define COAP_OPT_BLOCK_LAST(opt) \
54   (COAP_OPT_LENGTH(opt) ? (COAP_OPT_VALUE(opt) + (COAP_OPT_LENGTH(opt)-1)) : 0)
55
56 /** Returns the value of the More-bit of a Block option @p opt. */
57 #define COAP_OPT_BLOCK_MORE(opt) \
58   (COAP_OPT_LENGTH(opt) ? (*COAP_OPT_BLOCK_LAST(opt) & 0x08) : 0)
59
60 /** Returns the value of the SZX-field of a Block option @p opt. */
61 #define COAP_OPT_BLOCK_SZX(opt)  \
62   (COAP_OPT_LENGTH(opt) ? (*COAP_OPT_BLOCK_LAST(opt) & 0x07) : 0)
63
64 /**
65  * Returns the value of field @c num in the given block option @p
66  * block_opt.
67  */
68 unsigned int coap_opt_block_num(const coap_opt_t *block_opt);
69
70 /**
71  * Checks if more than @p num blocks are required to deliver @p data_len
72  * bytes of data for a block size of 1 << (@p szx + 4).
73  */
74 static inline int coap_more_blocks(size_t data_len, unsigned int num, unsigned short szx)
75 {
76     return ((num + 1) << (szx + 4)) < data_len;
77 }
78
79 /** Sets the More-bit in @p block_opt */
80 static inline void coap_opt_block_set_m(coap_opt_t *block_opt, int m)
81 {
82     if (m)
83         *(COAP_OPT_VALUE(block_opt) + (COAP_OPT_LENGTH(block_opt) - 1)) |= 0x08;
84     else
85         *(COAP_OPT_VALUE(block_opt) + (COAP_OPT_LENGTH(block_opt) - 1)) &= ~0x08;
86 }
87
88 /**
89  * Initializes @p block from @p pdu. @p type must be either COAP_OPTION_BLOCK1
90  * or COAP_OPTION_BLOCK2. When option @p type was found in @p pdu, @p block
91  * is initialized with values from this option and the function returns the
92  * value @c 1. Otherwise, @c 0 is returned.
93  *
94  * @param pdu   The pdu to search for option @p type.
95  * @param type  The option to search for (must be COAP_OPTION_BLOCK1 or
96  *              COAP_OPTION_BLOCK2)
97  * @param block The block structure to initilize.
98  * @return @c 1 on success, @c 0 otherwise.
99  */
100 int coap_get_block(coap_pdu_t *pdu, unsigned short type, coap_block_t *block);
101
102 /**
103  * Writes a block option of type @p type to message @p pdu. If the
104  * requested block size is too large to fit in @p pdu, it is reduced
105  * accordingly. An exception is made for the final block when less
106  * space is required. The actual length of the resource is specified
107  * in @p data_length.
108  *
109  * This function may change *block to reflect the values written to
110  * @p pdu. As the function takes into consideration the remaining space
111  * @p pdu, no more options should be added after coap_write_block_opt()
112  * has returned.
113  *
114  * @param block      The block structure to use. On return, this object
115  *                   is updated according to the values that have been
116  *                   written to @p pdu.
117  * @param type       COAP_OPTION_BLOCK1 or COAP_OPTION_BLOCK2
118  * @param pdu        The message where the block option should be
119  *                   written.
120  * @param data_length The length of the actual data that will be added
121  *                   the @p pdu by calling coap_add_block().
122  * @return @c 1 on success, or a negative value on error.
123  */
124 int coap_write_block_opt(coap_block_t *block, unsigned short type, coap_pdu_t *pdu,
125         size_t data_length);
126
127 /**
128  * Adds the @p block_num block of size 1 << (@p block_szx + 4) from
129  * source @p data to @p pdu.
130  *
131  * @param pdu    The message to add the block
132  * @param len    The length of @p data.
133  * @param data   The source data to fill the block with
134  * @param block_num The actual block number
135  * @param block_szx Encoded size of block @p block_number
136  * @return @c 1 on success, @c 0 otherwise.
137  */
138 int coap_add_block(coap_pdu_t *pdu, unsigned int len, const unsigned char *data,
139         unsigned int block_num, unsigned char block_szx);
140 /**@}*/
141
142 #endif /* _COAP_BLOCK_H_ */