[8774] | 1 | /* |
---|
| 2 | * ORXONOX - the hottest 3D action shooter ever to exist |
---|
| 3 | * > www.orxonox.net < |
---|
| 4 | * |
---|
| 5 | * |
---|
| 6 | * License notice: |
---|
| 7 | * |
---|
| 8 | * This program is free software; you can redistribute it and/or |
---|
| 9 | * modify it under the terms of the GNU General Public License |
---|
| 10 | * as published by the Free Software Foundation; either version 2 |
---|
| 11 | * of the License, or (at your option) any later version. |
---|
| 12 | * |
---|
| 13 | * This program is distributed in the hope that it will be useful, |
---|
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 16 | * GNU General Public License for more details. |
---|
| 17 | * |
---|
| 18 | * You should have received a copy of the GNU General Public License |
---|
| 19 | * along with this program; if not, write to the Free Software |
---|
| 20 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
---|
| 21 | * |
---|
| 22 | * Author: |
---|
| 23 | * Fabian 'x3n' Landau |
---|
| 24 | * Co-authors: |
---|
| 25 | * ... |
---|
| 26 | * |
---|
| 27 | */ |
---|
| 28 | |
---|
[8848] | 29 | /** |
---|
| 30 | @file |
---|
| 31 | @ingroup Output |
---|
| 32 | @brief Declaration of the LogWriter singleton which writes output to a log-file. |
---|
| 33 | */ |
---|
| 34 | |
---|
[8774] | 35 | #ifndef _LogWriter_H__ |
---|
| 36 | #define _LogWriter_H__ |
---|
| 37 | |
---|
| 38 | #include "util/UtilPrereqs.h" |
---|
| 39 | |
---|
| 40 | #include <fstream> |
---|
| 41 | |
---|
[8794] | 42 | #include "BaseWriter.h" |
---|
[8774] | 43 | |
---|
| 44 | namespace orxonox |
---|
| 45 | { |
---|
[8848] | 46 | /** |
---|
| 47 | @brief The LogWriter class inherits from BaseWriter and writes output to a log-file. |
---|
| 48 | |
---|
| 49 | It is implemented as singleton because we (currently) use only one |
---|
| 50 | log-file. The path of the file can be changed, in which case the file |
---|
| 51 | is rewritten by using the output stored by MemoryWriter. This adds the |
---|
| 52 | possibility to change the desired output levels before changing the |
---|
| 53 | path in order to get the complete output with the new output levels |
---|
| 54 | at the new path. |
---|
| 55 | */ |
---|
[8794] | 56 | class _UtilExport LogWriter : public BaseWriter |
---|
[8774] | 57 | { |
---|
| 58 | public: |
---|
| 59 | static LogWriter& getInstance(); |
---|
| 60 | |
---|
| 61 | void setLogPath(const std::string& path); |
---|
| 62 | |
---|
| 63 | protected: |
---|
[8795] | 64 | virtual void printLine(const std::string& line, OutputLevel level); |
---|
[8774] | 65 | |
---|
| 66 | private: |
---|
| 67 | LogWriter(); |
---|
| 68 | LogWriter(const LogWriter&); |
---|
[8794] | 69 | virtual ~LogWriter(); |
---|
[8774] | 70 | |
---|
| 71 | void openFile(); |
---|
| 72 | void closeFile(); |
---|
| 73 | |
---|
[8848] | 74 | std::string filename_; ///< The name of the log-file (without directories) |
---|
| 75 | std::string path_; ///< The path of the log-file (without file-name) |
---|
| 76 | bool bDefaultPath_; ///< If true, the log-file resides at the default path (which is usually a temporary directory) |
---|
[8774] | 77 | |
---|
[8848] | 78 | std::ofstream file_; ///< The output file stream. |
---|
[8774] | 79 | }; |
---|
| 80 | } |
---|
| 81 | |
---|
| 82 | #endif /* _LogWriter_H__ */ |
---|