Program Listing for File Endpoint.h

Return to documentation for file (/tmp/ws/src/fastrtps/include/fastdds/rtps/Endpoint.h)

// 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.

#ifndef _FASTDDS_RTPS_ENDPOINT_H_
#define _FASTDDS_RTPS_ENDPOINT_H_

#include <fastdds/rtps/attributes/EndpointAttributes.h>

#include <fastdds/rtps/common/Guid.h>
#include <fastdds/rtps/common/Locator.h>
#include <fastdds/rtps/common/Types.h>

#include <fastdds/rtps/history/IChangePool.h>
#include <fastdds/rtps/history/IPayloadPool.h>

#include <fastrtps/utils/TimedMutex.hpp>

namespace eprosima {
namespace fastrtps {
namespace rtps {

class RTPSParticipantImpl;
class ResourceEvent;


class Endpoint
{
    friend class RTPSParticipantImpl;

protected:

    Endpoint() = default;

    Endpoint(
            RTPSParticipantImpl* pimpl,
            const GUID_t& guid,
            const EndpointAttributes& att)
        : mp_RTPSParticipant(pimpl)
        , m_guid(guid)
        , m_att(att)
    {
    }

    virtual ~Endpoint()
    {
        // As releasing the change pool will delete the cache changes it owns,
        // the payload pool may be called to release their payloads, so we should
        // ensure that the payload pool is destroyed after the change pool.
        change_pool_.reset();
        payload_pool_.reset();
    }

public:

    RTPS_DllAPI inline const GUID_t& getGuid() const
    {
        return m_guid;
    }

    RTPS_DllAPI inline RecursiveTimedMutex& getMutex()
    {
        return mp_mutex;
    }

    RTPS_DllAPI inline EndpointAttributes& getAttributes()
    {
        return m_att;
    }

#if HAVE_SECURITY
    bool supports_rtps_protection()
    {
        return supports_rtps_protection_;
    }

#endif // if HAVE_SECURITY

protected:

    RTPSParticipantImpl* mp_RTPSParticipant;

    const GUID_t m_guid;

    EndpointAttributes m_att;

    mutable RecursiveTimedMutex mp_mutex;

    std::shared_ptr<IPayloadPool> payload_pool_;

    std::shared_ptr<IChangePool> change_pool_;

    uint32_t fixed_payload_size_ = 0;

private:

    Endpoint& operator =(
            const Endpoint&) = delete;

#if HAVE_SECURITY
    bool supports_rtps_protection_ = true;
#endif // if HAVE_SECURITY
};


} // namespace rtps
} /* namespace rtps */
} /* namespace eprosima */

#endif //_FASTDDS_RTPS_ENDPOINT_H_