blob: 253542123b4e70fc20358acb01a5338338a8a171 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
#include "String_Alloc.h"
#include "ace/OS_NS_string.h"
#include "ace/OS_NS_wchar.h"
#include "ace/OS_Memory.h"
// FUZZ: disable check_for_streams_include
#include "ace/streams.h"
ACE_RCSID (tao,
String_Alloc,
"$Id$")
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
char *
CORBA::string_dup (const char *str)
{
if (!str)
{
errno = EINVAL;
return 0;
}
size_t const len = ACE_OS::strlen (str);
// This allocates an extra byte for the '\0';
char * copy = CORBA::string_alloc (static_cast<CORBA::ULong> (len));
if (copy != 0)
{
// The memcpy() assumes that the destination is a valid buffer.
ACE_OS::memcpy (copy,
str,
len + 1);
}
return copy;
}
char *
CORBA::string_alloc (CORBA::ULong len)
{
// Allocate 1 + strlen to accomodate the null terminating character.
char *s = 0;
ACE_NEW_RETURN (s,
char[size_t (len + 1)],
0);
s[0]= '\0';
return s;
}
void
CORBA::string_free (char *str)
{
delete [] str;
}
// ****************************************************************
CORBA::WChar*
CORBA::wstring_dup (const WChar *const str)
{
if (!str)
{
errno = EINVAL;
return 0;
}
CORBA::WChar* retval =
CORBA::wstring_alloc (static_cast <CORBA::ULong> (ACE_OS::strlen (str)));
// The wscpy() below assumes that the destination is a valid buffer.
if (retval == 0)
{
return 0;
}
return ACE_OS::wscpy (retval,
str);
}
CORBA::WChar*
CORBA::wstring_alloc (CORBA::ULong len)
{
CORBA::WChar *s = 0;
ACE_NEW_RETURN (s,
CORBA::WChar [(size_t) (len + 1)],
0);
return s;
}
void
CORBA::wstring_free (CORBA::WChar *const str)
{
delete [] str;
}
TAO_END_VERSIONED_NAMESPACE_DECL
|