Open Lighting Architecture  Latest Git
FakeNetworkManager.h
1 /*
2  * This library is free software; you can redistribute it and/or
3  * modify it under the terms of the GNU Lesser General Public
4  * License as published by the Free Software Foundation; either
5  * version 2.1 of the License, or (at your option) any later version.
6  *
7  * This library is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
10  * Lesser General Public License for more details.
11  *
12  * You should have received a copy of the GNU Lesser General Public
13  * License along with this library; if not, write to the Free Software
14  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
15  *
16  * FakeNetworkManager.h
17  * Talks to the machine's network systems to get/set data.
18  * Copyright (C) 2013 Peter Newman
19  */
20 
21 #ifndef COMMON_RDM_FAKENETWORKMANAGER_H_
22 #define COMMON_RDM_FAKENETWORKMANAGER_H_
23 
24 
25 #include <string>
26 #include <vector>
27 
28 #include "common/network/FakeInterfacePicker.h"
30 #include "ola/network/Interface.h"
31 #include "ola/network/InterfacePicker.h"
33 
34 namespace ola {
35 namespace rdm {
36 
42  public:
54  const std::vector<ola::network::Interface> &interfaces,
55  const int32_t ipv4_default_route_if_index,
56  const ola::network::IPV4Address ipv4_default_route,
57  const std::string &hostname,
58  const std::string &domain_name,
59  const std::vector<ola::network::IPV4Address> &name_servers);
60  ~FakeNetworkManager() {}
61 
63 
64  rdm_dhcp_status GetDHCPStatus(const ola::network::Interface &iface) const;
65 
67  int32_t *if_index,
68  ola::network::IPV4Address *default_route) const;
69 
70  const std::string GetHostname() const;
71 
72  const std::string GetDomainName() const;
73 
74  bool GetNameServers(
75  std::vector<ola::network::IPV4Address> *name_servers) const;
76 
77  private:
78  ola::network::FakeInterfacePicker m_interface_picker;
79  int32_t m_ipv4_default_route_if_index;
80  ola::network::IPV4Address m_ipv4_default_route;
81  std::string m_hostname;
82  std::string m_domain_name;
83  std::vector<ola::network::IPV4Address> m_name_servers;
84 };
85 } // namespace rdm
86 } // namespace ola
87 #endif // COMMON_RDM_FAKENETWORKMANAGER_H_
Gets global network information.
Definition: NetworkManagerInterface.h:46
An implementation of NetworkManagerInterface which simulates a network configuration.
Definition: FakeNetworkManager.h:41
const std::string GetDomainName() const
Definition: FakeNetworkManager.cpp:74
The interface for the NetworkManager.
Given some initial parameters, find the best network interface to use.
Definition: InterfacePicker.h:48
Represents a IPv4 Address.
Definition: IPV4Address.h:55
Definition: Interface.h:35
FakeNetworkManager(const std::vector< ola::network::Interface > &interfaces, const int32_t ipv4_default_route_if_index, const ola::network::IPV4Address ipv4_default_route, const std::string &hostname, const std::string &domain_name, const std::vector< ola::network::IPV4Address > &name_servers)
Create a new FakeNetworkManager.
Definition: FakeNetworkManager.cpp:36
const std::string GetHostname() const
Definition: FakeNetworkManager.cpp:70
Represents an IPv4 Address.
rdm_dhcp_status GetDHCPStatus(const ola::network::Interface &iface) const
Definition: FakeNetworkManager.cpp:56
bool GetNameServers(std::vector< ola::network::IPV4Address > *name_servers) const
Definition: FakeNetworkManager.cpp:78
The namespace containing all OLA symbols.
Definition: Credentials.cpp:44
Definition: FakeInterfacePicker.h:34
bool GetIPV4DefaultRoute(int32_t *if_index, ola::network::IPV4Address *default_route) const
Definition: FakeNetworkManager.cpp:62
const ola::network::InterfacePicker * GetInterfacePicker() const
Definition: FakeNetworkManager.cpp:52