Program Listing for File IPFinder.h

Return to documentation for file (/tmp/ws/src/fastrtps/include/fastrtps/utils/IPFinder.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 IPFINDER_H_
#define IPFINDER_H_



#include <vector>
#include <string>

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

namespace eprosima {
namespace fastrtps {
namespace rtps {
class IPFinder
{
public:

#ifndef DOXYGEN_SHOULD_SKIP_THIS_PUBLIC
    enum IPTYPE
    {
        IP4,
        IP6,
        IP4_LOCAL,
        IP6_LOCAL
    };
    typedef struct info_IP
    {
        IPTYPE type;
        std::string name;
        std::string dev;
        Locator_t locator;
    }info_IP;

    typedef struct info_MAC
    {
        unsigned char address[6];

        bool operator == (
                const info_MAC& other)
        {
            return memcmp(address, other.address, 6) == 0;
        }

    }info_MAC;

#endif // ifndef DOXYGEN_SHOULD_SKIP_THIS_PUBLIC
    IPFinder();
    virtual ~IPFinder();

    RTPS_DllAPI static bool getIPs(
            std::vector<info_IP>* vec_name,
            bool return_loopback = false);

    RTPS_DllAPI static bool getIP4Address(
            LocatorList_t* locators);
    RTPS_DllAPI static bool getIP6Address(
            LocatorList_t* locators);
    RTPS_DllAPI static bool getAllIPAddress(
            LocatorList_t* locators);
    RTPS_DllAPI static bool parseIP4(
            info_IP& info);
    RTPS_DllAPI static bool parseIP6(
            info_IP& info);

    RTPS_DllAPI static std::string getIPv4Address(
            const std::string& name);
    RTPS_DllAPI static std::string getIPv6Address(
            const std::string& name);

    RTPS_DllAPI static bool getAllMACAddress(
            std::vector<info_MAC>* macs);
};

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

#endif /* IPFINDER_H_ */