X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/c016156ebb870d9d81219b8c4165aa75703f1e85..05c04cb0fbf09fbde7ac244000e48a985e6c68e9:/projects/stargazer/plugins/other/smux/tables.cpp diff --git a/projects/stargazer/plugins/other/smux/tables.cpp b/projects/stargazer/plugins/other/smux/tables.cpp index 023b90b2..25b2dd85 100644 --- a/projects/stargazer/plugins/other/smux/tables.cpp +++ b/projects/stargazer/plugins/other/smux/tables.cpp @@ -1,23 +1,37 @@ +#include <cassert> #include <utility> +#include <iterator> +#include <algorithm> #include "stg/user_property.h" +#include "stg/tariffs.h" +#include "stg/users.h" #include "tables.h" +std::pair<std::string, size_t> TD2Info(const TARIFF_DATA & td); + void TariffUsersTable::UpdateSensors(Sensors & sensors) const { std::map<std::string, size_t> data; +std::list<TARIFF_DATA> tdl; +tariffs.GetTariffsData(&tdl); +std::transform(tdl.begin(), + tdl.end(), + std::inserter(data, data.begin()), + TD2Info); + int handle = users.OpenSearch(); -if (!handle) - return; +assert(handle && "USERS::OpenSearch is always correct"); USER_PTR user; while (!users.SearchNext(handle, &user)) { + if (user->GetDeleted()) + continue; std::string tariffName(user->GetProperty().tariffName.ConstData()); - std::map<std::string, size_t>::iterator it; - it = data.lower_bound(tariffName); + std::map<std::string, size_t>::iterator it(data.lower_bound(tariffName)); if (it == data.end() || it->first != tariffName) { @@ -43,3 +57,8 @@ while (it != data.end()) ++it; } } + +std::pair<std::string, size_t> TD2Info(const TARIFF_DATA & td) +{ +return std::make_pair(td.tariffConf.name, 0); +}