From 6d857cc2dd223fde89eb9c3c08815a14c08ea7a9 Mon Sep 17 00:00:00 2001 From: "A. Wilcox" Date: Sat, 12 Oct 2019 03:16:46 -0500 Subject: hscript: Stub out NetAddress class --- hscript/network.cc | 13 +++++++++++++ hscript/network.hh | 38 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 51 insertions(+) (limited to 'hscript') diff --git a/hscript/network.cc b/hscript/network.cc index 1c8edd1..e5ca787 100644 --- a/hscript/network.cc +++ b/hscript/network.cc @@ -28,3 +28,16 @@ Key *Network::parseFromData(const std::string data, int lineno, int *errors, bool Network::execute(ScriptOptions) const { return false; } + +Key *NetAddress::parseFromData(const std::string data, int lineno, int *errors, + int *warnings) { + return nullptr; +} + +bool NetAddress::validate(ScriptOptions) const { + return false; +} + +bool NetAddress::execute(ScriptOptions) const { + return false; +} diff --git a/hscript/network.hh b/hscript/network.hh index f24dd0f..282429b 100644 --- a/hscript/network.hh +++ b/hscript/network.hh @@ -29,6 +29,44 @@ public: }; class NetAddress : public Key { +public: + /*! Determines the type of address an interface will obtain. */ + enum AddressType { + /*! DHCP address, obtained automatically from an addressing server. */ + DHCP, + /*! IPv6 address automatically derived from router solicitation. */ + SLAAC, + /*! Static address obtained from the netaddress key. */ + Static + }; +private: + const std::string _iface; + const AddressType _type; + const std::string _address; + const uint8_t _prefix; + const std::string _gw; + + NetAddress(const int _line, const std::string _i, const AddressType _t, + const std::string _a, const uint8_t _p, const std::string _g) : + Key(_line), _iface(_i), _type(_t), _address(_a), _prefix(_p), _gw(_g) + {} +public: + static Key *parseFromData(const std::string data, int lineno, int *errors, + int *warnings); + + /*! Retrieve the interface to which this 'netaddress' key is associated. */ + const std::string iface() const { return this->_iface; } + /*! Retrieve the address type of this 'netadress' key. */ + const AddressType type() const { return this->_type; } + /*! Retrieve the static address, if any. */ + const std::string address() const { return this->_address; } + /*! Retreive the prefix length for the static address. */ + const uint8_t prefix() const { return this->_prefix; } + /*! Retrieve the gateway, if any. */ + const std::string gateway() const { return this->_gw; } + + bool validate(ScriptOptions) const override; + bool execute(ScriptOptions) const override; }; class Nameserver : public Key { -- cgit v1.2.3-70-g09d2