File: ContentFilteredTopicExampleSubscriber.hpp

package info (click to toggle)
fastdds 2.9.1%2Bds-1%2Bdeb12u2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 31,412 kB
  • sloc: cpp: 378,073; xml: 7,623; ansic: 4,596; python: 2,545; sh: 189; makefile: 36
file content (106 lines) | stat: -rw-r--r-- 3,502 bytes parent folder | download
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
// Copyright 2022 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 ContentFilteredTopicExampleSubscriber.hpp
 *
 */

#ifndef _CONTENTFILTEREDTOPICEXAMPLESUBSCRIBER_HPP_
#define _CONTENTFILTEREDTOPICEXAMPLESUBSCRIBER_HPP_

#include <atomic>

#include <fastdds/dds/core/status/SubscriptionMatchedStatus.hpp>
#include <fastdds/dds/domain/DomainParticipant.hpp>
#include <fastdds/dds/subscriber/DataReader.hpp>
#include <fastdds/dds/subscriber/DataReaderListener.hpp>
#include <fastdds/dds/subscriber/SampleInfo.hpp>
#include <fastdds/dds/subscriber/Subscriber.hpp>
#include <fastdds/dds/topic/ContentFilteredTopic.hpp>
#include <fastdds/dds/topic/Topic.hpp>
#include <fastdds/dds/topic/TypeSupport.hpp>

#include "HelloWorldPubSubTypes.h"
#include "MyCustomFilterFactory.hpp"

// Subscriber application class
class ContentFilteredTopicExampleSubscriber : public eprosima::fastdds::dds::DataReaderListener
{
public:

    //! Constructor
    ContentFilteredTopicExampleSubscriber() = default;

    //! Destructor
    virtual ~ContentFilteredTopicExampleSubscriber();

    /**
     * @brief Initialize the subscriber
     *
     * @param custom_filter Whether the default SQL filter or the custom defined filter is used.
     *                      By default the SQL filter is used.
     * @return true if correctly initialized.
     * @return false otherwise.
     */
    bool init(
            bool custom_filter = false);

    //! Run the subscriber application
    void run();

private:

    //! DDS DomainParticipant pointer
    eprosima::fastdds::dds::DomainParticipant* participant_ = nullptr;

    //! DDS Subscriber pointer
    eprosima::fastdds::dds::Subscriber* subscriber_ = nullptr;

    //! DDS Topic pointer
    eprosima::fastdds::dds::Topic* topic_ = nullptr;

    //! DDS ContentFilteredTopic pointer
    eprosima::fastdds::dds::ContentFilteredTopic* filter_topic_ = nullptr;

    //! DDS DataReader pointer
    eprosima::fastdds::dds::DataReader* reader_ = nullptr;

    //! DDS TypeSupport pointer
    eprosima::fastdds::dds::TypeSupport type_ = eprosima::fastdds::dds::TypeSupport(new HelloWorldPubSubType());

    //! Custom filter factory
    MyCustomFilterFactory filter_factory;

    //! Data type
    HelloWorld hello_;

    //! Number of DataWriters matched with the subscriber application
    std::atomic<int> matched_;

    //! Number of received samples
    uint32_t samples_  = 0;

    //! Callback specialization when data is notified to the DataReader
    void on_data_available(
            eprosima::fastdds::dds::DataReader* reader) override;

    //! Discovery callback specialization when the DataReader receives discovery information from a remote DataWriter
    void on_subscription_matched(
            eprosima::fastdds::dds::DataReader* reader,
            const eprosima::fastdds::dds::SubscriptionMatchedStatus& info) override;

};

#endif // _CONTENTFILTEREDTOPICEXAMPLESUBSCRIBER_HPP_