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