blob: b1c28b87cc12caf860031bf5676cd52a423e9002 (
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
103
104
105
106
107
|
//=============================================================================
/**
* @file helper.cpp
*
* Defines a helper class that can generate values for the parameters used
* for the Alt_Mapping example
*
* @author Jeff Parsons
*/
//=============================================================================
#include "helper.h"
#include "ace/OS_NS_ctype.h"
const CORBA::ULong TEST_BUFSIZE = 128;
Generator::Generator (void)
{
}
Generator::~Generator (void)
{
}
CORBA::Short
Generator::gen_short (void)
{
return (CORBA::Short) (ACE_OS::rand () % TEST_BUFSIZE);
}
CORBA::Long
Generator::gen_long (void)
{
return ::ACE_OS::rand () % TEST_BUFSIZE;
}
char *
Generator::gen_string (void)
{
return gen_string (TEST_BUFSIZE);
}
char *
Generator::gen_string (int max_length)
{
CORBA::ULong len = (CORBA::ULong) (::ACE_OS::rand () % max_length);
char *buf = CORBA::string_alloc (len);
CORBA::ULong i = 0;
while (i < len)
{
int c = ACE_OS::rand () % 128;
if (ACE_OS::ace_isprint (c) && !ACE_OS::ace_isspace (c))
{
buf [i] = c;
i++;
}
}
buf[i] = 0;
return buf;
}
CORBA::WChar *
Generator::gen_wstring (void)
{
return gen_wstring (TEST_BUFSIZE);
}
CORBA::WChar *
Generator::gen_wstring (int max_length)
{
CORBA::ULong len = (CORBA::ULong) (::ACE_OS::rand () % max_length);
CORBA::WChar *buf = CORBA::wstring_alloc (len);
CORBA::ULong i = 0;
CORBA::WChar limit =
ACE_OutputCDR::wchar_maxbytes() == 1 ? ACE_OCTET_MAX : ACE_WCHAR_MAX;
while (i < len)
{
CORBA::WChar wc = ACE_OS::rand () % limit;
if (wc)
{
buf[i] = wc;
i++;
}
}
buf[i] = 0;
return buf;
}
const Alt_Mapping::Fixed_Struct
Generator::gen_fixed_struct (void)
{
this->fixed_struct_.l = ACE_OS::rand ();
this->fixed_struct_.c = ACE_OS::rand () % 128;
this->fixed_struct_.s = (CORBA::Short) ACE_OS::rand ();
this->fixed_struct_.o = ACE_OS::rand () % 128;
this->fixed_struct_.f = (CORBA::Float) (ACE_OS::rand () * 1.0);
this->fixed_struct_.b = (CORBA::Boolean) (ACE_OS::rand () % 2);
this->fixed_struct_.d = (ACE_OS::rand () * 1.0);
return this->fixed_struct_;
}
ACE_SINGLETON_TEMPLATE_INSTANTIATE(ACE_Singleton, Generator, ACE_Recursive_Thread_Mutex);
|