Visualization Library 2.1.0

A lightweight C++ OpenGL middleware for 2D/3D graphics

VL     Star     Watch     Fork     Issue

[Download] [Tutorials] [All Classes] [Grouped Classes]
KeyValues.cpp
Go to the documentation of this file.
1 /**************************************************************************************/
2 /* */
3 /* Visualization Library */
4 /* http://visualizationlibrary.org */
5 /* */
6 /* Copyright (c) 2005-2020, Michele Bosi */
7 /* All rights reserved. */
8 /* */
9 /* Redistribution and use in source and binary forms, with or without modification, */
10 /* are permitted provided that the following conditions are met: */
11 /* */
12 /* - Redistributions of source code must retain the above copyright notice, this */
13 /* list of conditions and the following disclaimer. */
14 /* */
15 /* - Redistributions in binary form must reproduce the above copyright notice, this */
16 /* list of conditions and the following disclaimer in the documentation and/or */
17 /* other materials provided with the distribution. */
18 /* */
19 /* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND */
20 /* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED */
21 /* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE */
22 /* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR */
23 /* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES */
24 /* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; */
25 /* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON */
26 /* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT */
27 /* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS */
28 /* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */
29 /* */
30 /**************************************************************************************/
31 
32 #include <vlCore/KeyValues.hpp>
33 #include <vlCore/Log.hpp>
34 #include <vlCore/Say.hpp>
35 
36 using namespace vl;
37 
38 //-----------------------------------------------------------------------------
40 {
41  VL_DEBUG_SET_OBJECT_NAME()
42 }
43 //-----------------------------------------------------------------------------
44 String KeyValues::value(const String& key) const
45 {
46  std::map<String, String>::const_iterator it = mKeyValues.find(key);
47  if ( it != mKeyValues.end() )
48  return it->second;
49  else
50  {
51  vl::Log::error( vl::Say("KeyValues::value(): key '%s' does not exist.\n") << key );
52  return String();
53  }
54 }
55 //-----------------------------------------------------------------------------
56 void KeyValues::getKeys(std::vector<String>& keys) const
57 {
58  keys.clear();
59  for(std::map<String, String>::const_iterator it = mKeyValues.begin(); it != mKeyValues.end(); ++it)
60  keys.push_back( it->first );
61 }
62 //-----------------------------------------------------------------------------
64 {
65  for(std::map<String, String>::const_iterator it = mKeyValues.begin(); it != mKeyValues.end(); ++it)
66  vl::Log::print( Say("%s=%s\n") << it->first << it->second );
67 }
68 //-----------------------------------------------------------------------------
A simple String formatting class.
Definition: Say.hpp:124
void getKeys(std::vector< String > &keys) const
Definition: KeyValues.cpp:56
The String class implements an advanced UTF16 (Unicode BMP) string manipulation engine.
Definition: String.hpp:62
String value(const String &key) const
Definition: KeyValues.cpp:44
static void error(const String &message)
Use this function to provide information about run-time errors: file not found, out of memory...
Definition: Log.cpp:165
Visualization Library main namespace.
std::map< String, String > mKeyValues
Definition: KeyValues.hpp:68
static void print(const String &message)
Application message for the user.
Definition: Log.cpp:136
void print()
Definition: KeyValues.cpp:63