Open Lighting Architecture  0.9.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
FakeNetworkManager.h
1 /*
2  * This program is free software; you can redistribute it and/or modify
3  * it under the terms of the GNU General Public License as published by
4  * the Free Software Foundation; either version 2 of the License, or
5  * (at your option) any later version.
6  *
7  * This program 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
10  * GNU Library General Public License for more details.
11  *
12  * You should have received a copy of the GNU General Public License
13  * along with this program; if not, write to the Free Software
14  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
15  *
16  * FakeNetworkManager.h
17  * Talks to the machine's network systems to get/set data.
18  * Copyright (C) 2013-2014 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:
52  const std::vector<ola::network::Interface> &interfaces,
53  const ola::network::IPV4Address ipv4_default_route,
54  const std::string &hostname,
55  const std::string &domain_name,
56  const std::vector<ola::network::IPV4Address> &name_servers);
57  ~FakeNetworkManager() {}
58 
60 
61  rdm_dhcp_status GetDHCPStatus(const ola::network::Interface &iface) const;
62 
64  ola::network::IPV4Address *default_route) const;
65 
66  const std::string GetHostname() const;
67 
68  const std::string GetDomainName() const;
69 
70  bool GetNameServers(
71  std::vector<ola::network::IPV4Address> *name_servers) const;
72 
73  private:
74  ola::network::FakeInterfacePicker m_interface_picker;
75  ola::network::IPV4Address m_ipv4_default_route;
76  std::string m_hostname;
77  std::string m_domain_name;
78  std::vector<ola::network::IPV4Address> m_name_servers;
79 };
80 } // namespace rdm
81 } // namespace ola
82 #endif // COMMON_RDM_FAKENETWORKMANAGER_H_