]> git.stg.codes - stg.git/blob - projects/stargazer/plugins/other/smux/tables.cpp
Ignore deleted users while building new tariffs table
[stg.git] / projects / stargazer / plugins / other / smux / tables.cpp
1 #include <cassert>
2 #include <utility>
3 #include <iterator>
4 #include <algorithm>
5
6 #include "stg/user_property.h"
7 #include "stg/tariffs.h"
8 #include "stg/users.h"
9
10 #include "tables.h"
11
12 std::pair<std::string, size_t> TD2Info(const TARIFF_DATA & td);
13
14 void TariffUsersTable::UpdateSensors(Sensors & sensors) const
15 {
16 std::map<std::string, size_t> data;
17
18 std::list<TARIFF_DATA> tdl;
19 tariffs.GetTariffsData(&tdl);
20 std::transform(tdl.begin(),
21                tdl.end(),
22                std::inserter(data, data.begin()),
23                TD2Info);
24
25 int handle = users.OpenSearch();
26 assert(handle && "USERS::OpenSearch is always correct");
27
28 USER_PTR user;
29 while (!users.SearchNext(handle, &user))
30     {
31     if (user->GetDeleted())
32         continue;
33     std::string tariffName(user->GetProperty().tariffName.ConstData());
34     std::map<std::string, size_t>::iterator it;
35     it = data.lower_bound(tariffName);
36     if (it == data.end() ||
37         it->first != tariffName)
38         {
39         data.insert(it, std::make_pair(tariffName, 1));
40         }
41     else
42         {
43         ++it->second;
44         }
45     }
46
47 users.CloseSearch(handle);
48
49 size_t idx = 1;
50 OID prefixOid(prefix);
51
52 std::map<std::string, size_t>::const_iterator it(data.begin());
53 while (it != data.end())
54     {
55     sensors[prefixOid.copyWithSuffix(2, idx)] = new ConstSensor<std::string>(it->first);
56     sensors[prefixOid.copyWithSuffix(3, idx)] = new ConstSensor<int>(it->second);
57     ++idx;
58     ++it;
59     }
60 }
61
62 std::pair<std::string, size_t> TD2Info(const TARIFF_DATA & td)
63 {
64 return std::make_pair(td.tariffConf.name, 0);
65 }