1 // Copyright (c) 2007, Google Inc.
2 // All rights reserved.
3 //
4 // Redistribution and use in source and binary forms, with or without
5 // modification, are permitted provided that the following conditions are
6 // met:
7 //
8 //     * Redistributions of source code must retain the above copyright
9 // notice, this list of conditions and the following disclaimer.
10 //     * Redistributions in binary form must reproduce the above
11 // copyright notice, this list of conditions and the following disclaimer
12 // in the documentation and/or other materials provided with the
13 // distribution.
14 //     * Neither the name of Google Inc. nor the names of its
15 // contributors may be used to endorse or promote products derived from
16 // this software without specific prior written permission.
17 //
18 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 
30 // logging.cc: Breakpad logging
31 //
32 // See logging.h for documentation.
33 //
34 // Author: Mark Mentovai
35 
36 #include <assert.h>
37 #include <errno.h>
38 #include <stdio.h>
39 #include <string.h>
40 #include <time.h>
41 
42 #include "processor/logging.h"
43 #include "processor/pathname_stripper.h"
44 
45 #ifdef _MSC_VER
46 #define snprintf _snprintf
47 #define localtime_r(d, res) { struct tm* _t = localtime(d); memcpy(res, _t, sizeof(tm)); }
48 #endif
49 
50 namespace google_breakpad {
51 
LogStream(std::ostream & stream,Severity severity,const char * file,int line)52 LogStream::LogStream(std::ostream &stream, Severity severity,
53                      const char *file, int line)
54     : stream_(stream) {
55   time_t clock;
56   time(&clock);
57   struct tm tm_struct;
58   localtime_r(&clock, &tm_struct);
59   char time_string[20];
60   strftime(time_string, sizeof(time_string), "%Y-%m-%d %H:%M:%S", &tm_struct);
61 
62   const char *severity_string = "UNKNOWN_SEVERITY";
63   switch (severity) {
64     case SEVERITY_INFO:
65       severity_string = "INFO";
66       break;
67     case SEVERITY_ERROR:
68       severity_string = "ERROR";
69       break;
70   }
71 
72   stream_ << time_string << ": " << PathnameStripper::File(file) << ":" <<
73              line << ": " << severity_string << ": ";
74 }
75 
~LogStream()76 LogStream::~LogStream() {
77   stream_ << std::endl;
78 }
79 
HexString(u_int32_t number)80 std::string HexString(u_int32_t number) {
81   char buffer[11];
82   snprintf(buffer, sizeof(buffer), "0x%x", number);
83   return std::string(buffer);
84 }
85 
HexString(u_int64_t number)86 std::string HexString(u_int64_t number) {
87   char buffer[19];
88   snprintf(buffer, sizeof(buffer), "0x%" PRIx64, number);
89   return std::string(buffer);
90 }
91 
HexString(int number)92 std::string HexString(int number) {
93   char buffer[19];
94   snprintf(buffer, sizeof(buffer), "0x%x", number);
95   return std::string(buffer);
96 }
97 
ErrnoString(std::string * error_string)98 int ErrnoString(std::string *error_string) {
99   assert(error_string);
100 
101   // strerror isn't necessarily thread-safe.  strerror_r would be preferrable,
102   // but GNU libc uses a nonstandard strerror_r by default, which returns a
103   // char* (rather than an int success indicator) and doesn't necessarily
104   // use the supplied buffer.
105   error_string->assign(strerror(errno));
106   return errno;
107 }
108 
109 }  // namespace google_breakpad
110