HEBI C++ API  3.12.2
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ip_address.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 #include "hebi.h"
4 
5 #include <iostream>
6 
7 #ifdef WIN32
8 
9 #ifndef NOMINMAX
10 #define NOMINMAX
11 #endif
12 #include <ws2tcpip.h>
13 #include <stdlib.h>
14 #define bswap_32(x) _byteswap_ulong(x)
15 using in_addr_t = in_addr;
16 
17 #elif defined(__APPLE__)
18 
19 // Mac OS X / Darwin features
20 #include <libkern/OSByteOrder.h>
21 #define bswap_32(x) OSSwapInt32(x)
22 #include <arpa/inet.h>
23 
24 #else // Linux
25 
26 #include <arpa/inet.h>
27 #include <byteswap.h>
28 
29 #endif
30 
31 namespace hebi {
32 
36 class IpAddress final {
37 public:
41  IpAddress() = default;
42 
43  // Create IP Address from network order uint32_t
44  IpAddress(uint32_t address_raw) : address_network_order_(address_raw) {}
45 
49  static IpAddress fromBytes(uint8_t a, uint8_t b, uint8_t c, uint8_t d) {
50  // TODO: depends on byte order:
51  uint32_t tmp = (a << 24) | (b << 16) | (c << 8) | (d);
52  return IpAddress(tmp);
53  }
54 
58  static IpAddress fromLittleEndian(uint32_t raw) {
59  return IpAddress(bswap_32(raw));
60  }
61 
71  bool setToString(const std::string& ip_str) {
72  in_addr_t addr;
73  if (inet_pton(AF_INET, ip_str.c_str(), &addr) != 1)
74  return false;
75  #ifdef WIN32
76  address_network_order_ = addr.S_un.S_addr;
77  #else
78  address_network_order_ = addr;
79  #endif
80  return true;
81  }
82 
86  std::string toString() const {
87  std::string res;
88  res.resize(INET_ADDRSTRLEN);
89  inet_ntop(AF_INET, &address_network_order_, &res[0], INET_ADDRSTRLEN);
90  return res;
91  }
92 
96  uint32_t getLittleEndian() const {
97  return bswap_32(address_network_order_);
98  }
99 
103  uint32_t getBigEndian() const {
104  return address_network_order_;
105  }
106 
107 private:
108  uint32_t address_network_order_{};
109 };
110 
111 } // namespace hebi
uint32_t getBigEndian() const
Returns the IP Address as a big endian (network order) uint32_t.
Definition: ip_address.hpp:103
static IpAddress fromLittleEndian(uint32_t raw)
Creates an IpAddress from a little endian uint32_t.
Definition: ip_address.hpp:58
Definition: arm.cpp:10
bool setToString(const std::string &ip_str)
Sets the value of the current IpAddress to the value given in 'ip_str'.
Definition: ip_address.hpp:71
IpAddress(uint32_t address_raw)
Definition: ip_address.hpp:44
std::string toString() const
Returns a string representation of the IP address.
Definition: ip_address.hpp:86
static IpAddress fromBytes(uint8_t a, uint8_t b, uint8_t c, uint8_t d)
Creates an IpAddress from individual bytes.
Definition: ip_address.hpp:49
uint32_t getLittleEndian() const
Returns the IP Address as a little endian uint32_t.
Definition: ip_address.hpp:96
A simple wrapper class for IpAddress objects.
Definition: ip_address.hpp:36
IpAddress()=default
Creates IPv4 address 0.0.0.0.