1
2//
3// This source file is part of appleseed.
4// Visit http://appleseedhq.net/ for additional information and resources.
5//
6// This software is released under the MIT license.
7//
8// Copyright (c) 2010-2013 Francois Beaune, Jupiter Jazz Limited
9// Copyright (c) 2014-2017 Francois Beaune, The appleseedhq Organization
10//
11// Permission is hereby granted, free of charge, to any person obtaining a copy
12// of this software and associated documentation files (the "Software"), to deal
13// in the Software without restriction, including without limitation the rights
14// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15// copies of the Software, and to permit persons to whom the Software is
16// furnished to do so, subject to the following conditions:
17//
18// The above copyright notice and this permission notice shall be included in
19// all copies or substantial portions of the Software.
20//
21// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
27// THE SOFTWARE.
28//
29
30#ifndef APPLESEED_SHARED_APPLICATION_SUPERLOGGER_H
31#define APPLESEED_SHARED_APPLICATION_SUPERLOGGER_H
32
33// appleseed.shared headers.
34#include "dllsymbol.h"
35
36// appleseed.foundation headers.
37#include "foundation/utility/log.h"
38
39// Forward declarations.
40namespace foundation { class Dictionary; }
41
42namespace appleseed {
43namespace shared {
44
45class SHAREDDLL SuperLogger
46 : public foundation::Logger
47{
48 public:
49 // Constructor.
50 SuperLogger();
51
52 // Destructor.
53 virtual ~SuperLogger();
54
55 // Retrieve the current log target.
56 foundation::ILogTarget& get_log_target() const;
57
58 // Replace the current log target.
59 void set_log_target(foundation::ILogTarget* log_target);
60
61 // Replace the current log target by one that supports message coloring.
62 void enable_message_coloring();
63
64 // Set the verbosity level.
65 void set_verbosity_level_from_string(const char* level_name);
66
67 // Apply a collection of settings to this logger.
68 void configure_from_settings(const foundation::Dictionary& settings);
69
70 private:
71 foundation::ILogTarget* m_log_target;
72};
73
74} // namespace shared
75} // namespace appleseed
76
77#endif // !APPLESEED_SHARED_APPLICATION_SUPERLOGGER_H
78