Imported Upstream version 0.9.1
[platform/upstream/iotivity.git] / resource / csdk / connectivity / src / adapter_util / cafragmentation.c
1 /******************************************************************
2  *
3  * Copyright 2014 Samsung Electronics All Rights Reserved.
4  *
5  *
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  ******************************************************************/
20
21 #include <string.h>
22 #include <math.h>
23
24 #include "cacommon.h"
25 #include "caadapterutils.h"
26 #include "cafragmentation.h"
27
28 /**
29  * @var CA_FRAGMENTATION_TAG
30  * @brief debugging tag for fragmentation module
31  */
32 #define CA_FRAGMENTATION_TAG "CA_FRAGMENTATION"
33
34 CAResult_t CAGenerateHeader(char *header, uint32_t length)
35 {
36     OIC_LOG(DEBUG, CA_FRAGMENTATION_TAG, "IN");
37
38     VERIFY_NON_NULL(header, CA_FRAGMENTATION_TAG, "header is NULL");
39     memset(header, 0x0, sizeof(char) * CA_HEADER_LENGTH);
40
41     if(length > MAX_DATA_LENGTH_SUPPORTED)
42     {
43         OIC_LOG(DEBUG, CA_FRAGMENTATION_TAG,
44                 "Given length is more than 4095.It will be truncated");
45     }
46     //if length is more than 4095 then it will be truncated.
47     header[1] = length & 0xFF;
48     length >>= 8;
49     header[0] = length & 0x0F;
50     header[0] = header[0] | 0x40; // Adding version 0100.(Not used. Future use)
51
52     OIC_LOG(DEBUG, CA_FRAGMENTATION_TAG, "OUT");
53
54     return CA_STATUS_OK;
55 }
56
57 uint32_t CAParseHeader(const char *header)
58 {
59     OIC_LOG(DEBUG, CA_FRAGMENTATION_TAG, "IN");
60
61     VERIFY_NON_NULL_RET(header, CA_FRAGMENTATION_TAG, "header is NULL", 0);
62
63     uint32_t dataLen = ((header[0] & 0x0F) << 8) | (header[1] & 0xFF);
64
65     OIC_LOG(DEBUG, CA_FRAGMENTATION_TAG, "OUT");
66     return dataLen;
67 }
68