GestureRecognitionToolkit  Version: 0.2.5
The Gesture Recognition Toolkit (GRT) is a cross-platform, open-source, c++ machine learning library for real-time gesture recognition.
WarningLog.h
1 /*
2 GRT MIT License
3 Copyright (c) <2012> <Nicholas Gillian, Media Lab, MIT>
4 
5 Permission is hereby granted, free of charge, to any person obtaining a copy of this software
6 and associated documentation files (the "Software"), to deal in the Software without restriction,
7 including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
9 subject to the following conditions:
10 
11 The above copyright notice and this permission notice shall be included in all copies or substantial
12 portions of the Software.
13 
14 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
15 LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
16 IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
17 WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
18 SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
19 */
20 
21 #ifndef GRT_WARNING_LOG_HEADER
22 #define GRT_WARNING_LOG_HEADER
23 
24 #include "Log.h"
25 #include "ObserverManager.h"
26 
27 GRT_BEGIN_NAMESPACE
28 
29 class GRT_API WarningLogMessage{
30 public:
31  WarningLogMessage(std::string key = "",std::string message = ""){
32  this->key = key;
33  this->message = message;
34  }
36 
37  }
38 
39  std::string getProceedingText() const {
40  return key;
41  }
42 
43  std::string getMessage() const {
44  return message;
45  }
46 
47  std::string key;
48  std::string message;
49 };
50 
51 class GRT_API WarningLog : public GRT::Log{
52 public:
53  WarningLog(const std::string &key = "" ) : Log( key )
54  {
55  Log::loggingEnabledPtr = &warningLoggingEnabled;
56  }
57 
58  WarningLog(const WarningLog &rhs)
59  {
60  *this = rhs;
61  }
62 
63  virtual ~WarningLog(){}
64 
65  WarningLog& operator=(const WarningLog &rhs){
66  if( this != &rhs ){
67  //Copy the base class
68  Log *thisBase = this;
69  const Log *rhsBase = &rhs;
70  *thisBase = *rhsBase;
71 
72  //Perform any custom copies
73  this->loggingEnabledPtr = &warningLoggingEnabled;
74  }
75  return *this;
76  }
77 
82  static bool getLoggingEnabled() {
83  return warningLoggingEnabled;
84  }
85 
90  static bool setLoggingEnabled(const bool enabled) {
91  warningLoggingEnabled = enabled;
92  return true;
93  }
94 
95  static bool registerObserver(Observer< WarningLogMessage > &observer);
96 
97  static bool removeObserver(Observer< WarningLogMessage > &observer);
98 
99  GRT_DEPRECATED_MSG("enableLogging is deprecated, use setLoggingEnabled instead", static bool enableLogging(bool loggingEnabled) );
100  GRT_DEPRECATED_MSG("loggingEnabled is deprecated, use getLoggingEnabled instead", bool loggingEnabled() const );
101 
102 protected:
103  virtual void triggerCallback( const std::string &message ) const{
104  observerManager.notifyObservers( WarningLogMessage(key,message) );
105  return;
106  }
107 
108  static ObserverManager< WarningLogMessage > observerManager;
109  static bool warningLoggingEnabled;
110 };
111 
112 GRT_END_NAMESPACE
113 
114 #endif //GRT_WARNING_LOG_HEADER
static bool getLoggingEnabled()
returns true if logging is enabled for this class, this supersedes the specific instance logging ...
Definition: WarningLog.h:82
static bool setLoggingEnabled(const bool enabled)
sets if logging is enabled for this class, this supersedes the specific instance logging ...
Definition: WarningLog.h:90
bool * loggingEnabledPtr
This is a hack that enables variables to be updated inside const methods.
Definition: Log.h:224
The Log class provides the base class for all GRT logging functionality.
Definition: Log.h:37