logging.cc 5.36 KB
Newer Older
xiabo's avatar
xiabo committed
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
140
141
142
143
144
145
146
147
// Copyright 2018-2022, NVIDIA CORPORATION & AFFILIATES. 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 NVIDIA CORPORATION 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 ``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 OWNER 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 "triton/common/logging.h"

#ifdef _WIN32
// suppress the min and max definitions in Windef.h.
#define NOMINMAX
#include <Windows.h>
#else
#include <sys/time.h>
#include <sys/types.h>
#include <time.h>
#include <unistd.h>
#endif
#include <algorithm>
#include <iomanip>
#include <iostream>

namespace triton { namespace common {

Logger gLogger_;

Logger::Logger()
    : enables_{true, true, true}, vlevel_(0), format_(Format::kDEFAULT)
{
}

void
Logger::Log(const std::string& msg)
{
  const std::lock_guard<std::mutex> lock(mutex_);
  if (file_stream_.is_open()) {
    file_stream_ << msg << std::endl;
  } else {
    std::cerr << msg << std::endl;
  }
}

void
Logger::Flush()
{
  std::cerr << std::flush;
}


const std::vector<char> LogMessage::level_name_{'E', 'W', 'I'};

LogMessage::LogMessage(const char* file, int line, uint32_t level)
{
  std::string path(file);
  size_t pos = path.rfind('/');
  if (pos != std::string::npos) {
    path = path.substr(pos + 1, std::string::npos);
  }

  // 'L' below is placeholder for showing log level
  switch (gLogger_.LogFormat()) {
    case Logger::Format::kDEFAULT: {
      // LMMDD hh:mm:ss.ssssss
#ifdef _WIN32
      SYSTEMTIME system_time;
      GetSystemTime(&system_time);
      stream_ << level_name_[std::min(level, (uint32_t)Level::kINFO)]
              << std::setfill('0') << std::setw(2) << system_time.wMonth
              << std::setw(2) << system_time.wDay << ' ' << std::setw(2)
              << system_time.wHour << ':' << std::setw(2) << system_time.wMinute
              << ':' << std::setw(2) << system_time.wSecond << '.'
              << std::setw(6) << system_time.wMilliseconds * 1000 << ' '
              << static_cast<uint32_t>(GetCurrentProcessId()) << ' ' << path
              << ':' << line << "] ";
#else
      struct timeval tv;
      gettimeofday(&tv, NULL);
      struct tm tm_time;
      gmtime_r(((time_t*)&(tv.tv_sec)), &tm_time);
      stream_ << level_name_[std::min(level, (uint32_t)Level::kINFO)]
              << std::setfill('0') << std::setw(2) << (tm_time.tm_mon + 1)
              << std::setw(2) << tm_time.tm_mday << ' ' << std::setw(2)
              << tm_time.tm_hour << ':' << std::setw(2) << tm_time.tm_min << ':'
              << std::setw(2) << tm_time.tm_sec << '.' << std::setw(6)
              << tv.tv_usec << ' ' << static_cast<uint32_t>(getpid()) << ' '
              << path << ':' << line << "] ";
#endif
      break;
    }
    case Logger::Format::kISO8601: {
      // YYYY-MM-DDThh:mm:ssZ L
#ifdef _WIN32
      SYSTEMTIME system_time;
      GetSystemTime(&system_time);
      stream_ << system_time.wYear << '-' << std::setfill('0') << std::setw(2)
              << system_time.wMonth << '-' << std::setw(2) << system_time.wDay
              << 'T' << std::setw(2) << system_time.wHour << ':' << std::setw(2)
              << system_time.wMinute << ':' << std::setw(2)
              << system_time.wSecond << "Z "
              << level_name_[std::min(level, (uint32_t)Level::kINFO)] << ' '
              << static_cast<uint32_t>(GetCurrentProcessId()) << ' ' << path
              << ':' << line << "] ";
#else
      struct timeval tv;
      gettimeofday(&tv, NULL);
      struct tm tm_time;
      gmtime_r(((time_t*)&(tv.tv_sec)), &tm_time);
      stream_ << (tm_time.tm_year + 1900) << '-' << std::setfill('0')
              << std::setw(2) << (tm_time.tm_mon + 1) << '-' << std::setw(2)
              << tm_time.tm_mday << 'T' << std::setw(2) << tm_time.tm_hour
              << ':' << std::setw(2) << tm_time.tm_min << ':' << std::setw(2)
              << tm_time.tm_sec << "Z "
              << level_name_[std::min(level, (uint32_t)Level::kINFO)] << ' '
              << static_cast<uint32_t>(getpid()) << ' ' << path << ':' << line
              << "] ";
#endif
      break;
    }
  }
}

LogMessage::~LogMessage()
{
  gLogger_.Log(stream_.str());
}

}}  // namespace triton::common