log.h
1 /* Copyright (C) 2020 IBM Corp.
2  * This program is Licensed under the Apache License, Version 2.0
3  * (the "License"); you may not use this file except in compliance
4  * with the License. You may obtain a copy of the License at
5  * http://www.apache.org/licenses/LICENSE-2.0
6  * Unless required by applicable law or agreed to in writing, software
7  * distributed under the License is distributed on an "AS IS" BASIS,
8  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
9  * See the License for the specific language governing permissions and
10  * limitations under the License. See accompanying LICENSE file.
11  */
12 
13 #ifndef HELIB_LOG_H
14 #define HELIB_LOG_H
15 
16 #include <ostream>
17 #include <sstream>
18 #include <string>
19 
28 namespace helib {
29 
33 class Logger
34 {
35 private:
36  // A stream pointer to be set for the logs to go to.
37  std::ostream* logStream_p;
38 
39 public:
43  void setLogToStderr();
44 
51  void setLogToFile(const std::string& filepath, bool overwrite = false);
52 
57  Logger() = default;
58 
62  Logger(const Logger& other) = default;
63 
68  Logger(Logger&& other) = default;
69 
73  Logger& operator=(Logger& other) = default;
74 
79  Logger& operator=(Logger&& other) = default;
80 
85  ~Logger();
86 
87  friend inline void Warning(const char* msg);
88 };
89 
93 extern Logger helog;
94 
99 inline void Warning(const char* msg)
100 {
101  *helog.logStream_p << "WARNING: " << msg << std::endl;
102 }
103 
108 inline void Warning(const std::string& msg) { Warning(msg.c_str()); }
109 
110 // Errors should raise exceptions through throw or assertion functions
111 // in helib/assertions.h
112 
113 // TODO Info Debug
114 // inline void Info(const std::string& msg)
115 // inline void Debug(const std::string& msg)
116 
117 } // namespace helib
118 
119 #endif // ifndef HELIB_LOG_H
void Warning(const char *msg)
Function for logging a warning message.
Definition: log.h:99
Logger & operator=(Logger &other)=default
Copy assignment operator, copies a logger object.
Logger class that handles warning printouts.
Definition: log.h:34
Logger helog
Internal global logger.
Definition: log.cpp:29
void setLogToStderr()
Set the logger object to write to stderr.
Definition: log.cpp:41
void setLogToFile(const std::string &filepath, bool overwrite=false)
Set the logger object to write to specified file.
Definition: log.cpp:49
Logger(Logger &&other)=default
Move constructor, can be used with std::move but does the same as the copy constructor.
friend void Warning(const char *msg)
Function for logging a warning message.
Definition: log.h:99
Definition: apiAttributes.h:21
Logger & operator=(Logger &&other)=default
Move assignment operator, does the same as the copy assignment operator.
~Logger()
Destructor that closes and deletes the log stream object if required i.e. if the log stream is a file...
Definition: log.cpp:35
Logger(const Logger &other)=default
Copy constructor, creates a copy of a logger object.
Logger()=default
Default constructor creates a logger object that does not point to any target/destination.