blob: 299b37737361e38dd520f77a95f921842efde9aa [file] [log] [blame]
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001/*
2 *
Craig Tiller6169d5f2016-03-31 07:46:18 -07003 * 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
Nicolas "Pixel" Noblec4b18a52016-04-15 04:53:54 +020044#ifdef GPR_LINUX_LOG
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080045
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>
Craig Tillerf40df232016-03-25 13:38:14 -070050#include <stdarg.h>
51#include <stdio.h>
52#include <string.h>
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080053#include <sys/syscall.h>
Craig Tillerf40df232016-03-25 13:38:14 -070054#include <time.h>
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080055#include <unistd.h>
56
Craig Tiller32946d32015-01-15 11:37:30 -080057static long gettid(void) { return syscall(__NR_gettid); }
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080058
ctiller0cd69562015-01-09 14:22:10 -080059void gpr_log(const char *file, int line, gpr_log_severity severity,
60 const char *format, ...) {
61 char *message = NULL;
62 va_list args;
63 va_start(args, format);
Craig Tiller234ffbf2015-01-12 15:09:34 -080064 if (vasprintf(&message, format, args) == -1) {
65 va_end(args);
66 return;
67 }
ctiller0cd69562015-01-09 14:22:10 -080068 va_end(args);
69 gpr_log_message(file, line, severity, message);
Nicolas "Pixel" Nobleb29d8cf2016-04-08 01:38:29 +020070 /* message has been allocated by vasprintf above, and needs free */
ctiller0cd69562015-01-09 14:22:10 -080071 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
Yuchen Zeng1f24af82016-06-10 13:15:07 -070097 gpr_asprintf(&prefix, "%s%s.%09" PRId32 " %7ld %s:%d]",
Craig Tillerd6c98df2015-08-18 09:33:44 -070098 gpr_log_severity_string(args->severity), time_buffer,
Yuchen Zeng1f24af82016-06-10 13:15:07 -070099 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
Nicolas "Pixel" Noblec4b18a52016-04-15 04:53:54 +0200105#endif /* GPR_LINUX_LOG */