Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/output/src/libraries/util/output/LogWriter.cc @ 8833

Last change on this file since 8833 was 8833, checked in by landauf, 13 years ago

A context is now defined by a struct instead of only a mask.

Introduced sub-contexts. Sub-contexts of the same main-context share the same mask, but have a different ID.
Main-contexts are filtered using a bitmask which happens for every line of output and is very fast.
Sub-contexts are filtered using a set which is slow but happens only if a specific sub-context is enabled in the config file which is usually not the case.

The concept of filtering normal output + additional contexts was moved from BaseWriter directly to OutputListener and OutputManager which makes the whole system faster.
BaseWriter now calls registerContext() for each configured output context, which basically allows the usage of more than 64 contexts as long as these contexts are not used before loading the config file. Though by design it's not recommended.

  • Property svn:eol-style set to native
File size: 3.4 KB
Line 
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 *      Reto Grieder
26 *
27 */
28
29#include "LogWriter.h"
30
31#include <ctime>
32#include <cstdlib>
33
34#include "OutputManager.h"
35#include "MemoryWriter.h"
36
37namespace orxonox
38{
39    LogWriter::LogWriter() : BaseWriter("Log")
40    {
41        this->setLevelMax(level::internal_info);
42
43        this->filename_ = "orxonox.log";
44
45        // Get path for a temporary file
46#ifdef ORXONOX_PLATFORM_WINDOWS
47        this->path_ = getenv("TEMP");
48#else
49        this->path_ = "/tmp";
50#endif
51        this->bDefaultPath_ = true;
52
53        this->openFile();
54    }
55
56    LogWriter::~LogWriter()
57    {
58        this->closeFile();
59    }
60
61    /*static*/ LogWriter& LogWriter::getInstance()
62    {
63        static LogWriter instance;
64        return instance;
65    }
66
67    void LogWriter::openFile()
68    {
69        std::string name = this->path_ + '/' + this->filename_;
70
71        if (this->bDefaultPath_)
72            OutputManager::getInstance().pushMessage(level::user_info, context::undefined(), "Opening log file " + name);
73
74        this->file_.open(name.c_str(), std::fstream::out);
75
76        if (this->file_.is_open())
77            this->printLine("Log file opened", level::none);
78        else
79            OutputManager::getInstance().pushMessage(level::user_warning, context::undefined(), "Failed to open log file. File logging disabled.");
80    }
81
82    void LogWriter::closeFile()
83    {
84        if (this->file_.is_open())
85        {
86            this->printLine("Log file closed", level::none);
87            this->file_.close();
88        }
89    }
90
91    void LogWriter::setLogPath(const std::string& path)
92    {
93        OutputManager::getInstance().pushMessage(level::internal_info, context::undefined(), "Migrating log file from " + this->path_ + "\nto " + path);
94
95        this->closeFile();
96        this->path_ = path;
97        this->bDefaultPath_ = false;
98        this->openFile();
99
100        MemoryWriter::getInstance().resendOutput(this);
101    }
102
103    void LogWriter::printLine(const std::string& line, OutputLevel)
104    {
105        if (!this->file_.is_open())
106            return;
107
108        // Get current time
109        time_t rawtime;
110        struct tm* timeinfo;
111        time(&rawtime);
112        timeinfo = localtime(&rawtime);
113
114        // print timestamp and line to the log file
115        this->file_ << (timeinfo->tm_hour < 10 ? "0" : "") << timeinfo->tm_hour << ':' <<
116                       (timeinfo->tm_min  < 10 ? "0" : "") << timeinfo->tm_min  << ':' <<
117                       (timeinfo->tm_sec  < 10 ? "0" : "") << timeinfo->tm_sec  << ' ' << line << std::endl;
118    }
119}
Note: See TracBrowser for help on using the repository browser.