EMANE  1.2.1
statistictablequeryhandler.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2013,2016 - Adjacent Link LLC, Bridgewater, New Jersey
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * * Redistributions of source code must retain the above copyright
10  * notice, this list of conditions and the following disclaimer.
11  * * Redistributions in binary form must reproduce the above copyright
12  * notice, this list of conditions and the following disclaimer in
13  * the documentation and/or other materials provided with the
14  * distribution.
15  * * Neither the name of Adjacent Link LLC nor the names of its
16  * contributors may be used to endorse or promote products derived
17  * from this software without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
22  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
23  * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
24  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
25  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
26  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
27  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
29  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30  * POSSIBILITY OF SUCH DAMAGE.
31  */
32 
34 #include "statisticservice.h"
37 #include "anyutils.h"
38 
39 std::string
40 EMANE::ControlPort::StatisticTableQueryHandler::process(const EMANERemoteControlPortAPI::Request::Query::StatisticTable & statisticTable,
41  std::uint32_t u32Sequence,
42  std::uint32_t u32Reference)
43 {
44  std::vector<std::string> names;
45 
46  for(int i = 0; i < statisticTable.names_size(); ++i)
47  {
48  names.push_back(statisticTable.names(i));
49  }
50 
52 
53  try
54  {
55  auto statisticTableInfo =
56  StatisticServiceSingleton::instance()->queryTable(statisticTable.buildid(),names);
57 
58  response.set_type(EMANERemoteControlPortAPI::Response::TYPE_RESPONSE_QUERY);
59 
60  auto pQuery = response.mutable_query();
61 
63 
64  auto pStatisticTable = pQuery->mutable_statistictable();
65 
66  pStatisticTable->set_buildid(statisticTable.buildid());
67 
68  for(const auto & table : statisticTableInfo)
69  {
70  auto pTable = pStatisticTable->add_tables();
71 
72  pTable->set_name(table.first);
73 
74  for(const auto & row : table.second.second)
75  {
76  auto pRow = pTable->add_rows();
77 
78  for_each(row.begin(),
79  row.end(),
80  [pRow](const Any & any)
81  {
82  auto pValue = pRow->add_values();
83  convertToAny(pValue,any);
84  });
85  }
86 
87  std::for_each(table.second.first.begin(),
88  table.second.first.end(),
89  [pTable](const std::string & sLabel)
90  {
91  pTable->add_labels(sLabel);
92  });
93  }
94  }
95  catch(RegistrarException & exp)
96  {
97  response.set_type(EMANERemoteControlPortAPI::Response::TYPE_RESPONSE_ERROR);
98 
99  auto pError = response.mutable_error();
100 
101  pError->set_type(EMANERemoteControlPortAPI::Response::Error::TYPE_ERROR_PARAMETER);
102 
103  pError->set_description(exp.what());
104  }
105 
106  response.set_reference(u32Reference);
107 
108  response.set_sequence(u32Sequence);
109 
110  std::string sSerialization;
111 
112  if(!response.SerializeToString(&sSerialization))
113  {
114  throw SerializationException("unable to serialize statistic table query response");
115  }
116 
117  return sSerialization;
118 }
SerializationException is thrown when an exception occurs during serialization or deserialization of ...
std::map< std::string, std::pair< StatisticTableLabels, StatisticTableValues > > queryTable(BuildId, const std::vector< std::string > &names) const
const char * what() const
Definition: exception.h:62
RegistrarException is thrown when an exception occurs during registration.
void convertToAny(EMANERemoteControlPortAPI::Any *pAny, const EMANE::Any &any)
Definition: anyutils.h:140
static StatisticService * instance()
Definition: singleton.h:56
The Any class can contain an instance of one of any type in its support type set. ...
Definition: any.h:49
static std::string process(const EMANERemoteControlPortAPI::Request::Query::StatisticTable &statisticTable, std::uint32_t u32Sequence, std::uint32_t u32Reference)