-
Notifications
You must be signed in to change notification settings - Fork 941
Expand file tree
/
Copy pathTestWriterSocket.cpp
More file actions
103 lines (92 loc) · 3.14 KB
/
Copy pathTestWriterSocket.cpp
File metadata and controls
103 lines (92 loc) · 3.14 KB
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
// Copyright 2016 Proyectos y Sistemas de Mantenimiento SL (eProsima).
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
/**
* @file TestWriterSocket.cpp
*
*/
#include "TestWriterSocket.h"
#include <fastdds/rtps/attributes/HistoryAttributes.hpp>
#include <fastdds/rtps/attributes/RTPSParticipantAttributes.hpp>
#include <fastdds/rtps/attributes/WriterAttributes.hpp>
#include <fastdds/rtps/builtin/data/ReaderProxyData.hpp>
#include <fastdds/rtps/history/WriterHistory.hpp>
#include <fastdds/rtps/participant/RTPSParticipant.hpp>
#include <fastdds/rtps/RTPSDomain.hpp>
#include <fastdds/rtps/writer/RTPSWriter.hpp>
#include <fastdds/utils/IPLocator.hpp>
using namespace eprosima::fastdds;
using namespace eprosima::fastdds::rtps;
TestWriterSocket::TestWriterSocket()
: mp_participant(nullptr)
, mp_writer(nullptr)
, mp_history(nullptr)
{
}
TestWriterSocket::~TestWriterSocket()
{
RTPSDomain::removeRTPSParticipant(mp_participant);
delete(mp_history);
}
bool TestWriterSocket::init(
std::string ip,
uint32_t port)
{
//CREATE PARTICIPANT
RTPSParticipantAttributes PParam;
PParam.builtin.discovery_config.discoveryProtocol = DiscoveryProtocol::NONE;
PParam.builtin.use_WriterLivelinessProtocol = false;
mp_participant = RTPSDomain::createParticipant(0, PParam);
if (mp_participant == nullptr)
{
return false;
}
//CREATE WRITERHISTORY
HistoryAttributes hatt;
hatt.payloadMaxSize = 255;
mp_history = new WriterHistory(hatt);
//CREATE WRITER
WriterAttributes watt;
watt.endpoint.reliabilityKind = BEST_EFFORT;
mp_writer = RTPSDomain::createRTPSWriter(mp_participant, watt, mp_history);
if (mp_writer == nullptr)
{
return false;
}
//ADD REMOTE READER (IN THIS CASE A READER IN THE SAME MACHINE)
ReaderProxyData ratt(4u, 1u);
ratt.guid({c_GuidPrefix_Unknown, 0x304});
Locator_t loc;
IPLocator::setIPv4(loc, ip);
loc.port = static_cast<uint16_t>(port);
ratt.add_unicast_locator(loc);
mp_writer->matched_reader_add(ratt);
return true;
}
void TestWriterSocket::run(
uint16_t nmsgs)
{
for (int i = 0; i < nmsgs; ++i )
{
CacheChange_t* ch = mp_history->create_change(255, ALIVE);
#if defined(_WIN32)
ch->serializedPayload.length =
sprintf_s((char*)ch->serializedPayload.data, 255, "My example string %d", i) + 1;
#else
ch->serializedPayload.length =
snprintf((char*)ch->serializedPayload.data, 255, "My example string %d", i) + 1;
#endif // if defined(_WIN32)
printf("Sending: %s\n", (char*)ch->serializedPayload.data);
mp_history->add_change(ch);
}
}