Home
About
Blog
Products
Forum
Support
Contact
Sunbelt Computer Software
PL/B Language Development and Support
Home
About
Blog
Products
Forum
Support
Contact
interprocess/test/vectorstream_test.cpp at develop · openshift2/interprocess · GitHub
Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
Uh oh!
There was an error while loading.
Please reload this page
.
openshift2
/
interprocess
Public
forked from
samd2/interprocess
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Files
Expand file tree
develop
Breadcrumbs
interprocess
/
test
/
vectorstream_test.cpp
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
182 lines (165 loc) · 5.21 KB
develop
Breadcrumbs
interprocess
/
test
/
vectorstream_test.cpp
Copy path
Top
File metadata and controls
Code
Blame
182 lines (165 loc) · 5.21 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
//
////////////////////////////////////////////////////////////////////////////
//
//
(C) Copyright Ion Gaztanaga 2006-2012. Distributed under the Boost
//
Software License, Version 1.0. (See accompanying file
//
LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
//
See http://www.boost.org/libs/interprocess for documentation.
//
//
////////////////////////////////////////////////////////////////////////////
#
include
<
boost/interprocess/containers/string.hpp
>
#
include
<
boost/interprocess/containers/vector.hpp
>
#
include
<
boost/interprocess/streams/vectorstream.hpp
>
#
include
<
boost/interprocess/streams/bufferstream.hpp
>
#
include
<
sstream
>
#
include
<
cstring
>
#
include
<
vector
>
#
include
<
iostream
>
#
include
<
boost/date_time/posix_time/posix_time_types.hpp
>
#
include
<
stdio.h
>
namespace
boost
{
namespace
interprocess
{
//
Force instantiations to catch compile-time errors
typedef
basic_string<
char
> my_string;
typedef
basic_vectorstream<my_string >
my_stringstream_t
;
typedef
vector<
char
> my_vector;
typedef
basic_vectorstream<my_vector>
my_vectorstream_t
;
template
class
basic_vectorstream
<my_string>;
template
class
basic_vectorstream
<std::vector<
char
> >;
}}
using
namespace
boost
::interprocess
;
static
int
vectorstream_test
()
{
{
//
Test high watermarking initialization
my_stringstream_t
my_stringstream;
if
(my_stringstream.
tellg
() !=
std::streampos
(
0
)){
return
1
;
}
if
(my_stringstream.
tellp
() !=
std::streampos
(
0
)){
return
1
;
}
int
a
(
0
);
my_stringstream <<
11
;
my_stringstream >> a;
if
(a !=
11
)
return
1
;
}
{
//
Test high watermarking initialization
my_vectorstream_t
my_stringstream;
int
a
(
0
);
my_stringstream <<
13
;
my_stringstream >> a;
if
(a !=
13
)
return
1
;
}
//
Pre-reserved string
{
my_stringstream_t
my_stringstream;
std::stringstream std_stringstream;
std::string str1, str2,
str3
(
"
testline:
"
);
int
number1, number2;
my_stringstream.
reserve
(
10000
);
for
(
int
i =
0
; i <
100
; ++i){
my_stringstream <<
"
testline:
"
<< i << std::endl;
std_stringstream <<
"
testline:
"
<< i << std::endl;
}
if
(
std::strcmp
(my_stringstream.
vector
().
c_str
(), std_stringstream.
str
().
c_str
()) !=
0
){
return
1
;
}
for
(
int
i =
0
; i <
100
; ++i){
my_stringstream >> str1 >> number1;
std_stringstream >> str2 >> number2;
if
((str1 != str2) || (str1 != str3)){
assert
(
0
);
return
1
;
}
if
((number1 != number2) || (number1 != i)){
assert
(
0
);
return
1
;
}
}
}
//
Pre-reserved vector
{
basic_vectorstream<std::vector<
char
> > my_vectorstream;
std::vector<
char
> myvector;
std::stringstream std_stringstream;
std::string str1, str2,
str3
(
"
testline:
"
);
int
number1, number2;
my_vectorstream.
reserve
(
10000
);
for
(
int
i =
0
; i <
100
; ++i){
my_vectorstream <<
"
testline:
"
<< i << std::endl;
std_stringstream <<
"
testline:
"
<< i << std::endl;
}
//
Add final null to form a c string
myvector.
push_back
(
0
);
if
(
std::strcmp
(&(my_vectorstream.
vector
()[
0
]), std_stringstream.
str
().
c_str
()) !=
0
){
return
1
;
}
myvector.
pop_back
();
for
(
int
i =
0
; i <
100
; ++i){
my_vectorstream >> str1 >> number1;
std_stringstream >> str2 >> number2;
if
((str1 != str2) || (str1 != str3)){
assert
(
0
);
return
1
;
}
if
((number1 != number2) || (number1 != i)){
assert
(
0
);
return
1
;
}
}
}
//
No pre-reserved or pre-reserved string
{
my_stringstream_t
my_stringstream;
std::stringstream std_stringstream;
std::string str1, str2,
str3
(
"
testline:
"
);
int
number1, number2;
for
(
int
i =
0
; i <
100
; ++i){
my_stringstream <<
"
testline:
"
<< i << std::endl;
std_stringstream <<
"
testline:
"
<< i << std::endl;
}
if
(
std::strcmp
(my_stringstream.
vector
().
c_str
(), std_stringstream.
str
().
c_str
()) !=
0
){
assert
(
0
);
return
1
;
}
for
(
int
i =
0
; i <
100
; ++i){
my_stringstream >> str1 >> number1;
std_stringstream >> str2 >> number2;
if
((str1 != str2) || (str1 != str3)){
assert
(
0
);
return
1
;
}
if
((number1 != number2) || (number1 != i)){
assert
(
0
);
return
1
;
}
}
}
//
Test seek
{
my_stringstream_t
my_stringstream;
my_stringstream <<
"
ABCDEFGHIJKLM
"
;
my_stringstream.
seekp
(
0
);
my_stringstream <<
"
PQRST
"
;
string
s
(
"
PQRSTFGHIJKLM
"
);
if
(s != my_stringstream.
vector
()){
return
1
;
}
my_stringstream.
seekp
(
0
, std::ios_base::end);
my_stringstream <<
"
NOPQRST
"
;
s =
"
PQRSTFGHIJKLMNOPQRST
"
;
if
(s != my_stringstream.
vector
()){
return
1
;
}
int
size =
static_cast
<
int
>(my_stringstream.
vector
().
size
());
my_stringstream.
seekp
(-size, std::ios_base::cur);
my_stringstream <<
"
ABCDE
"
;
s =
"
ABCDEFGHIJKLMNOPQRST
"
;
if
(s != my_stringstream.
vector
()){
return
1
;
}
}
return
0
;
}
int
main
()
{
if
(
vectorstream_test
()){
return
1
;
}
return
0
;
}
You can’t perform that action at this time.