blob: d66b7a3cc007f3c0171ba35af043a11d2cfd5b12 [file] [log] [blame]
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001/*
2 *
Craig Tiller06059952015-02-18 08:34:56 -08003 * Copyright 2015, Google Inc.
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met:
9 *
10 * * Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * * Redistributions in binary form must reproduce the above
13 * copyright notice, this list of conditions and the following disclaimer
14 * in the documentation and/or other materials provided with the
15 * distribution.
16 * * Neither the name of Google Inc. nor the names of its
17 * contributors may be used to endorse or promote products derived from
18 * this software without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 *
32 */
33
David Klempner78b79922015-02-04 10:18:59 -080034#ifndef _POSIX_SOURCE
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080035#define _POSIX_SOURCE
David Klempner78b79922015-02-04 10:18:59 -080036#endif
37
38#ifndef _GNU_SOURCE
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080039#define _GNU_SOURCE
David Klempner78b79922015-02-04 10:18:59 -080040#endif
41
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080042#include <grpc/support/port_platform.h>
43
44#ifdef GPR_LINUX
45
Craig Tillerf81ac3a2015-07-06 09:50:55 -070046#include <grpc/support/alloc.h>
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080047#include <grpc/support/log.h>
Craig Tillerf81ac3a2015-07-06 09:50:55 -070048#include <grpc/support/string_util.h>
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080049#include <grpc/support/time.h>
50#include <stdio.h>
51#include <stdarg.h>
52#include <string.h>
53#include <time.h>
54#include <linux/unistd.h>
55#include <sys/syscall.h>
56#include <unistd.h>
57
Craig Tiller32946d32015-01-15 11:37:30 -080058static long gettid(void) { return syscall(__NR_gettid); }
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080059
ctiller0cd69562015-01-09 14:22:10 -080060void gpr_log(const char *file, int line, gpr_log_severity severity,
61 const char *format, ...) {
62 char *message = NULL;
63 va_list args;
64 va_start(args, format);
Craig Tiller234ffbf2015-01-12 15:09:34 -080065 if (vasprintf(&message, format, args) == -1) {
66 va_end(args);
67 return;
68 }
ctiller0cd69562015-01-09 14:22:10 -080069 va_end(args);
70 gpr_log_message(file, line, severity, message);
71 free(message);
72}
73
74void gpr_default_log(gpr_log_func_args *args) {
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080075 char *final_slash;
Craig Tillerf81ac3a2015-07-06 09:50:55 -070076 char *prefix;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080077 const char *display_file;
78 char time_buffer[64];
Jan Tattermusch88086372015-12-10 10:54:12 -080079 time_t timer;
Craig Tillerf3756c12015-07-01 17:21:01 -070080 gpr_timespec now = gpr_now(GPR_CLOCK_REALTIME);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080081 struct tm tm;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080082
Jan Tattermusch88086372015-12-10 10:54:12 -080083 timer = (time_t)now.tv_sec;
ctiller0cd69562015-01-09 14:22:10 -080084 final_slash = strrchr(args->file, '/');
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080085 if (final_slash == NULL)
ctiller0cd69562015-01-09 14:22:10 -080086 display_file = args->file;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080087 else
88 display_file = final_slash + 1;
89
Jan Tattermusch88086372015-12-10 10:54:12 -080090 if (!localtime_r(&timer, &tm)) {
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080091 strcpy(time_buffer, "error:localtime");
92 } else if (0 ==
93 strftime(time_buffer, sizeof(time_buffer), "%m%d %H:%M:%S", &tm)) {
94 strcpy(time_buffer, "error:strftime");
95 }
96
Craig Tillerf81ac3a2015-07-06 09:50:55 -070097 gpr_asprintf(&prefix, "%s%s.%09d %7tu %s:%d]",
Craig Tillerd6c98df2015-08-18 09:33:44 -070098 gpr_log_severity_string(args->severity), time_buffer,
99 (int)(now.tv_nsec), gettid(), display_file, args->line);
Craig Tillerf81ac3a2015-07-06 09:50:55 -0700100
101 fprintf(stderr, "%-60s %s\n", prefix, args->message);
102 gpr_free(prefix);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800103}
104
Craig Tiller190d3602015-02-18 09:23:38 -0800105#endif