blob: ff3febb38eb142a42d5e330374eb5e3913f5ee9a [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
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>
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080050#include <linux/unistd.h>
Craig Tillerf40df232016-03-25 13:38:14 -070051#include <stdarg.h>
52#include <stdio.h>
53#include <string.h>
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080054#include <sys/syscall.h>
Craig Tillerf40df232016-03-25 13:38:14 -070055#include <time.h>
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080056#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);
Nicolas "Pixel" Nobleb29d8cf2016-04-08 01:38:29 +020071 /* message has been allocated by vasprintf above, and needs free */
ctiller0cd69562015-01-09 14:22:10 -080072 free(message);
73}
74
75void gpr_default_log(gpr_log_func_args *args) {
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080076 char *final_slash;
Craig Tillerf81ac3a2015-07-06 09:50:55 -070077 char *prefix;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080078 const char *display_file;
79 char time_buffer[64];
Jan Tattermusch88086372015-12-10 10:54:12 -080080 time_t timer;
Craig Tillerf3756c12015-07-01 17:21:01 -070081 gpr_timespec now = gpr_now(GPR_CLOCK_REALTIME);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080082 struct tm tm;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080083
Jan Tattermusch88086372015-12-10 10:54:12 -080084 timer = (time_t)now.tv_sec;
ctiller0cd69562015-01-09 14:22:10 -080085 final_slash = strrchr(args->file, '/');
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080086 if (final_slash == NULL)
ctiller0cd69562015-01-09 14:22:10 -080087 display_file = args->file;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080088 else
89 display_file = final_slash + 1;
90
Jan Tattermusch88086372015-12-10 10:54:12 -080091 if (!localtime_r(&timer, &tm)) {
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080092 strcpy(time_buffer, "error:localtime");
93 } else if (0 ==
94 strftime(time_buffer, sizeof(time_buffer), "%m%d %H:%M:%S", &tm)) {
95 strcpy(time_buffer, "error:strftime");
96 }
97
Craig Tillerf81ac3a2015-07-06 09:50:55 -070098 gpr_asprintf(&prefix, "%s%s.%09d %7tu %s:%d]",
Craig Tillerd6c98df2015-08-18 09:33:44 -070099 gpr_log_severity_string(args->severity), time_buffer,
100 (int)(now.tv_nsec), gettid(), display_file, args->line);
Craig Tillerf81ac3a2015-07-06 09:50:55 -0700101
102 fprintf(stderr, "%-60s %s\n", prefix, args->message);
103 gpr_free(prefix);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800104}
105
Craig Tiller190d3602015-02-18 09:23:38 -0800106#endif