Imported Upstream version 0.9.1
[platform/upstream/iotivity.git] / resource / csdk / connectivity / src / adapter_util / camsgparser.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 "camsgparser.h"
22
23 #include <string.h>
24 #include <math.h>
25
26 #include "cacommon.h"
27 #include "caadapterutils.h"
28
29 /**
30  * @var CA_MSG_PARSER_TAG
31  * @brief debugging tag for parser module
32  */
33 #define CA_MSG_PARSER_TAG "CA_MSG_PARSER"
34
35 CAResult_t CAGenerateHeader(char *header, uint32_t length)
36 {
37     OIC_LOG(DEBUG, CA_MSG_PARSER_TAG, "IN");
38
39     VERIFY_NON_NULL(header, CA_MSG_PARSER_TAG, "header is NULL");
40     memset(header, 0x0, sizeof(char) * CA_HEADER_LENGTH);
41
42     if(length > MAX_DATA_LENGTH_SUPPORTED)
43     {
44         OIC_LOG(DEBUG, CA_MSG_PARSER_TAG, "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_MSG_PARSER_TAG, "OUT");
53     return CA_STATUS_OK;
54 }
55
56 uint32_t CAParseHeader(const char *header)
57 {
58     OIC_LOG(DEBUG, CA_MSG_PARSER_TAG, "IN");
59
60     VERIFY_NON_NULL(header, CA_MSG_PARSER_TAG, "header is NULL");
61
62     uint32_t dataLen = ((header[0] & 0x0F) << 8) | (header[1] & 0xFF);
63
64     OIC_LOG(DEBUG, CA_MSG_PARSER_TAG, "OUT");
65     return dataLen;
66 }
67
68