X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/fdee6fdb88e79929c952fea956fa57e5780804cf..3e3df32d6d5a426ff11ac1b3734374bf25046b7f:/projects/stargazer/plugins/other/smux/sensors.h diff --git a/projects/stargazer/plugins/other/smux/sensors.h b/projects/stargazer/plugins/other/smux/sensors.h index dbfb807b..f2840636 100644 --- a/projects/stargazer/plugins/other/smux/sensors.h +++ b/projects/stargazer/plugins/other/smux/sensors.h @@ -7,7 +7,7 @@ #include "stg/tariffs.h" #include "stg/user_property.h" -#include "asn1/ObjectSyntax.h" +#include "stg/ObjectSyntax.h" #include "value2os.h" #include "types.h" @@ -15,15 +15,13 @@ class Sensor { public: virtual bool GetValue(ObjectSyntax_t * objectSyntax) const = 0; +#ifdef DEBUG + virtual std::string ToString() const = 0; +#endif }; typedef std::map Sensors; -class TableSensor { - public: - virtual bool appendTable(Sensors & sensors); -}; - class TotalUsersSensor : public Sensor { public: TotalUsersSensor(const USERS & u) : users(u) {} @@ -35,6 +33,11 @@ class TotalUsersSensor : public Sensor { return true; } +#ifdef DEBUG + std::string ToString() const + { std::string res; x2str(users.GetUserNum(), res); return res; } +#endif + private: const USERS & users; }; @@ -42,9 +45,12 @@ class TotalUsersSensor : public Sensor { class UsersSensor : public Sensor { public: UsersSensor(USERS & u) : users(u) {} - virtual ~UsersSensor() {}; + virtual ~UsersSensor() {} bool GetValue(ObjectSyntax_t * objectSyntax) const; +#ifdef DEBUG + std::string ToString() const; +#endif private: USERS & users; @@ -163,6 +169,11 @@ class TotalTariffsSensor : public Sensor { return true; } +#ifdef DEBUG + std::string ToString() const + { std::string res; x2str(tariffs.GetTariffsNum(), res); return res; } +#endif + private: const TARIFFS & tariffs; }; @@ -176,8 +187,20 @@ class ConstSensor : public Sensor { bool GetValue(ObjectSyntax * objectSyntax) const { return ValueToOS(value, objectSyntax); } +#ifdef DEBUG + std::string ToString() const + { std::string res; x2str(value, res); return res; } +#endif + private: T value; }; +template <> +inline +std::string ConstSensor::ToString() const +{ +return value; +} + #endif