Miind
GraphKey.cpp
Go to the documentation of this file.
1 // Copyright (c) 2005 - 2012 Marc de Kamps
2 // 2012 David-Matthias Sichau
3 // All rights reserved.
4 //
5 // Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
6 //
7 // * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation
9 // and/or other materials provided with the distribution.
10 // * Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software
11 // without specific prior written permission.
12 //
13 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
14 // WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY
15 // DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
16 // USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
17 // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
18 //
19 #include <sstream>
20 #include <boost/tokenizer.hpp>
21 #include <boost/lexical_cast.hpp>
24 
25 
26 namespace MPILib {
27 namespace report {
28 namespace handler {
29 
31  _id(id), _time(time) {
32 }
33 
35 }
36 
37 GraphKey::GraphKey(const std::string& key_string) {
38  typedef boost::tokenizer<boost::char_separator<char> > tokenizer;
39  boost::char_separator<char> sep("_");
40  tokenizer tokens(key_string, sep);
41  tokenizer::iterator tok_iter = tokens.begin();
42  if (*tok_iter == std::string("grid")) {
43  Index ind = boost::lexical_cast<Index>(*(++tok_iter));
44  _id = NodeId(ind);
45  _time = boost::lexical_cast<Time>(*(++tok_iter));
46  _type = STATEGRAPH;
47  }
48  if (*tok_iter != std::string("rate"))
49  return;
50  Index ind = boost::lexical_cast<Index>(*(++tok_iter));
51  _id = NodeId(ind);
52  _time = 0.0;
53  _type = RATEGRAPH;
54 }
55 
56 std::string GraphKey::generateName() const {
57  std::ostringstream str;
58  str.precision(KEY_PRECISION);
59  if (_type == RATEGRAPH)
60  str << "rate_" << _id;
61  else
62  str << "grid_" << _id << "_" << _time;
63  return str.str();
64 }
65 
66 } // end namespace of handler
67 } // end namespace of report
68 } // end namespace of MPILib
std::string generateName() const
Definition: GraphKey.cpp:56
unsigned int Index
double Time
const int KEY_PRECISION
unsigned int NodeId