summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2019-10-31 20:21:45 -0500
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2019-10-31 20:21:45 -0500
commitbc96edb1c20b0031479cbf23055651c2c92f7afe (patch)
tree256fdfea58ae67f3ee8be762c183adc3812733ae
parentbf6a874a1811a6a51f857a68aac3918390959701 (diff)
downloadhorizon-bc96edb1c20b0031479cbf23055651c2c92f7afe.tar.gz
horizon-bc96edb1c20b0031479cbf23055651c2c92f7afe.tar.bz2
horizon-bc96edb1c20b0031479cbf23055651c2c92f7afe.tar.xz
horizon-bc96edb1c20b0031479cbf23055651c2c92f7afe.zip
hscript: Consistency/style fixes
-rw-r--r--hscript/meta.hh20
-rw-r--r--hscript/script.cc4
2 files changed, 11 insertions, 13 deletions
diff --git a/hscript/meta.hh b/hscript/meta.hh
index 25ff931..dad4cf3 100644
--- a/hscript/meta.hh
+++ b/hscript/meta.hh
@@ -25,8 +25,7 @@ private:
Hostname(int _line, const std::string my_name) :
StringKey(_line, my_name) {}
public:
- static Key *parseFromData(const std::string &data, int lineno, int *errors,
- int *warnings);
+ static Key *parseFromData(const std::string &, int, int *, int *);
bool validate(ScriptOptions) const override;
bool execute(ScriptOptions) const override;
};
@@ -37,8 +36,7 @@ private:
PkgInstall(int _line, const std::set<std::string> my_pkgs) : Key(_line),
_pkgs(my_pkgs) {}
public:
- static Key *parseFromData(const std::string &data, int lineno, int *errors,
- int *warnings);
+ static Key *parseFromData(const std::string &, int, int *, int *);
const std::set<std::string> packages() const { return _pkgs; }
bool validate(ScriptOptions) const override;
bool execute(ScriptOptions) const override;
@@ -49,8 +47,7 @@ private:
Language(int _line, const std::string &my_lang) :
StringKey(_line, my_lang) {}
public:
- static Key *parseFromData(const std::string &data, int lineno, int *errors,
- int *warnings);
+ static Key *parseFromData(const std::string &, int, int *, int *);
bool execute(ScriptOptions) const override;
};
@@ -59,8 +56,7 @@ private:
Keymap(int _line, const std::string &keymap) :
StringKey(_line, keymap) {}
public:
- static Key *parseFromData(const std::string &data, int lineno, int *errors,
- int *warnings);
+ static Key *parseFromData(const std::string &, int, int *, int *);
bool validate(ScriptOptions) const override;
bool execute(ScriptOptions) const override;
};
@@ -69,7 +65,7 @@ class Firmware : public BooleanKey {
private:
Firmware(int _line, bool _value) : BooleanKey(_line, _value) {}
public:
- static Key *parseFromData(const std::string &, int, int*, int*);
+ static Key *parseFromData(const std::string &, int, int *, int *);
bool execute(ScriptOptions) const override;
};
@@ -78,8 +74,7 @@ private:
Timezone(int _line, const std::string &my_zone) :
StringKey(_line, my_zone) {}
public:
- static Key *parseFromData(const std::string &data, int lineno, int *errors,
- int *warnings);
+ static Key *parseFromData(const std::string &, int, int *, int *);
bool execute(ScriptOptions) const override;
};
@@ -88,8 +83,7 @@ private:
Repository(int _line, const std::string &my_url) :
StringKey(_line, my_url) {}
public:
- static Key *parseFromData(const std::string &data, int lineno, int *errors,
- int *warnings);
+ static Key *parseFromData(const std::string &, int, int *, int *);
bool validate(ScriptOptions) const override;
bool execute(ScriptOptions) const override;
};
diff --git a/hscript/script.cc b/hscript/script.cc
index 6ede4c4..319ba14 100644
--- a/hscript/script.cc
+++ b/hscript/script.cc
@@ -98,11 +98,15 @@ struct Script::ScriptPrivate {
/*! Network addressing configuration */
std::vector< std::unique_ptr<NetAddress> > addresses;
+ /*! Network nameserver resolver addresses */
std::vector< std::unique_ptr<Nameserver> > nses;
+ /*! Wireless networking configuration */
std::vector< std::unique_ptr<NetSSID> > ssids;
/*! APK repositories */
std::vector< std::unique_ptr<Repository> > repos;
+ /*! APK repository keys */
+ std::vector< std::unique_ptr<SigningKey> > repo_keys;
/*! User account information */
std::map< std::string, std::unique_ptr<UserDetail> > accounts;