Imported Upstream version 0.9.2
[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 char* OICStrcpy(char* dest, size_t destSize, const char* source)
46 {
47     return OICStrcpyPartial(dest, destSize, source, destSize == 0 ? 0 : destSize - 1);
48 }
49
50 char* OICStrcat(char* dest, size_t destSize, const char* source)
51 {
52     return OICStrcatPartial(dest, destSize, source, destSize == 0 ? 0 : destSize - 1);
53 }
54
55 #ifndef min
56 static size_t min(size_t a, size_t b)
57 {
58     return a < b ? a : b;
59 }
60 #endif
61
62 char* OICStrcpyPartial(char* dest, size_t destSize, const char* source, size_t sourceLen)
63 {
64     if(!dest || !source)
65     {
66         return NULL;
67     }
68
69     if(destSize == 0 || sourceLen == 0)
70     {
71         return dest;
72     }
73
74     dest[0] = '\0';
75     return strncat(dest, source, min(destSize - 1, sourceLen));
76 }
77
78 char* OICStrcatPartial(char* dest, size_t destSize, const char* source, size_t sourceLen)
79 {
80     if (!dest || !source)
81     {
82         return NULL;
83     }
84
85     if(destSize == 0 || sourceLen == 0)
86     {
87         return dest;
88     }
89
90     size_t destLen = strlen(dest);
91
92     if(destLen >= destSize)
93     {
94         return dest;
95     }
96
97     return strncat(dest, source, min(destSize - destLen - 1, sourceLen));
98 }