Development of CoAP-HTTP Proxy
[platform/upstream/iotivity.git] / resource / c_common / oic_string / src / oic_string.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 #include "oic_string.h"
21
22 #include <string.h>
23 #include <assert.h>
24 #include "oic_malloc.h"
25
26 #define TAG "OIC_STRING"
27 char *OICStrdup(const char *str)
28 {
29     if(!str)
30     {
31         return NULL;
32     }
33
34     // Allocate memory for original string length and 1 extra byte for '\0'
35     size_t length = strlen(str);
36     char *dup = (char *)OICMalloc(length + 1);
37     if (NULL != dup)
38     {
39         memcpy(dup, str, length + 1);
40     }
41
42     return dup;
43 }
44
45 void OICStringToLower(char* str)
46 {
47     for (int ch = 0; str[ch] != '\0'; ch++)
48     {
49         if (str[ch] >= 'A' && str[ch] <= 'Z')
50         {
51             str[ch] += 32;
52         }
53     }
54 }
55
56 char* OICStrcpy(char* dest, size_t destSize, const char* source)
57 {
58     return OICStrcpyPartial(dest, destSize, source, destSize == 0 ? 0 : destSize - 1);
59 }
60
61 char* OICStrcat(char* dest, size_t destSize, const char* source)
62 {
63     return OICStrcatPartial(dest, destSize, source, destSize == 0 ? 0 : destSize - 1);
64 }
65
66 #ifndef min
67 static size_t min(size_t a, size_t b)
68 {
69     return a < b ? a : b;
70 }
71 #endif
72
73 char* OICStrcpyPartial(char* dest, size_t destSize, const char* source, size_t sourceLen)
74 {
75     if(!dest || !source)
76     {
77         return NULL;
78     }
79
80     if(destSize == 0 || sourceLen == 0)
81     {
82         return dest;
83     }
84
85     dest[0] = '\0';
86     return strncat(dest, source, min(destSize - 1, sourceLen));
87 }
88
89 char* OICStrcatPartial(char* dest, size_t destSize, const char* source, size_t sourceLen)
90 {
91     if (!dest || !source)
92     {
93         return NULL;
94     }
95
96     if(destSize == 0 || sourceLen == 0)
97     {
98         return dest;
99     }
100
101     size_t destLen = strlen(dest);
102
103     if(destLen >= destSize)
104     {
105         return dest;
106     }
107
108     return strncat(dest, source, min(destSize - destLen - 1, sourceLen));
109 }