summaryrefslogtreecommitdiff
path: root/src/components/utils/src/push_log.cc
blob: f9d1cd738ad12b28d9f140cdf4c86738d52f1e83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
/*
 * Copyright (c) 2014, Ford Motor Company
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * Redistributions of source code must retain the above copyright notice, this
 * list of conditions and the following disclaimer.
 *
 * Redistributions in binary form must reproduce the above copyright notice,
 * this list of conditions and the following
 * disclaimer in the documentation and/or other materials provided with the
 * distribution.
 *
 * Neither the name of the Ford Motor Company nor the names of its contributors
 * may be used to endorse or promote products derived from this software
 * without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */

#include "utils/push_log.h"
#include "utils/log_message_loop_thread.h"
#include "utils/logger_status.h"

namespace logger {

struct __attribute__((visibility("default"))) LogsEnabled {
  static std::atomic_bool logs_enabled_;
};

std::atomic_bool LogsEnabled::logs_enabled_(false);

template <typename T>
using logger_ptr = std::unique_ptr<T, std::function<void(T*)> >;

static logger_ptr<LogMessageLoopThread> log_message_loop_thread;

auto deinit_logger = [](LogMessageLoopThread* logMsgThread) {
  delete logMsgThread;
  logger::logger_status = logger::LoggerThreadNotCreated;
};

bool push_log(log4cxx::LoggerPtr logger,
              log4cxx::LevelPtr level,
              const std::string& entry,
              log4cxx_time_t timeStamp,
              const log4cxx::spi::LocationInfo& location,
              const log4cxx::LogString& threadName) {
  if (LoggerThreadCreated == logger_status) {
    LogMessage message = {
        logger, level, entry, timeStamp, location, threadName};
    if (log_message_loop_thread) {
      log_message_loop_thread->PostMessage(message);
      return true;
    }
  }

  if (LoggerThreadNotCreated == logger_status) {
    logger_status = CreatingLoggerThread;
    // we'll have to drop messages
    // while creating logger thread
    create_log_message_loop_thread();
    LogMessage message = {
        logger, level, entry, timeStamp, location, threadName};
    log_message_loop_thread->PostMessage(message);
    logger_status = LoggerThreadCreated;
    return true;
  }

  // also we drop messages
  // while deleting logger thread

  return false;
}

bool logs_enabled() {
  return LogsEnabled::logs_enabled_;
}

void set_logs_enabled(bool state) {
  LogsEnabled::logs_enabled_ = state;
}

void create_log_message_loop_thread() {
  if (!log_message_loop_thread) {
    log_message_loop_thread = logger_ptr<LogMessageLoopThread>(
        new LogMessageLoopThread, deinit_logger);
  }
}

void delete_log_message_loop_thread(log4cxx::LoggerPtr& logger) {
  if (logger::logger_status == logger::LoggerThreadCreated) {
    logger::flush_logger();
  }

  log_message_loop_thread.reset();

  if (LOG4CXX_UNLIKELY(logger->isDebugEnabled())) {
    ::log4cxx::helpers::MessageBuffer oss_;
    logger->forcedLog(::log4cxx::Level::getDebug(),
                      oss_.str(oss_ << "Logger loop thread deinitialized"),
                      LOG4CXX_LOCATION);
  }

  if (logger->getRootLogger() == logger) {
    return;
  }

  if (LOG4CXX_UNLIKELY(logger->isDebugEnabled())) {
    ::log4cxx::helpers::MessageBuffer oss_;
    logger->forcedLog(::log4cxx::Level::getDebug(),
                      oss_.str(oss_ << "Logger calling removeAllAppenders"),
                      LOG4CXX_LOCATION);
  }

  logger->removeAllAppenders();
}

void flush_logger() {
  logger::LoggerStatus old_status = logger::logger_status;
  // Stop pushing new messages to the log queue
  logger::logger_status = logger::DeletingLoggerThread;
  log_message_loop_thread->WaitDumpQueue();
  logger::logger_status = old_status;
}

}  // namespace logger