blob: 0ad5f109ecca7aae93e958eed898e95bc37f1d8e [file] [log] [blame]
Chris Lattner24943d22010-06-08 16:52:24 +00001//===-- lldb-log.cpp --------------------------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "lldb/lldb-private-log.h"
11
12// C Includes
13// C++ Includes
14// Other libraries and framework includes
15// Project includes
Jim Ingham84cdc152010-06-15 19:49:27 +000016#include "lldb/Interpreter/Args.h"
Chris Lattner24943d22010-06-08 16:52:24 +000017#include "lldb/Core/Log.h"
18#include "lldb/Core/StreamFile.h"
Eli Friedmance6fe882010-06-10 04:51:35 +000019#include <string.h>
Chris Lattner24943d22010-06-08 16:52:24 +000020
21using namespace lldb;
22using namespace lldb_private;
23
24
Greg Claytone005f2c2010-11-06 01:53:30 +000025// We want to avoid global constructors where code needs to be run so here we
26// control access to our static g_log_sp by hiding it in a singleton function
27// that will construct the static g_lob_sp the first time this function is
28// called.
29static LogSP &
30GetLog ()
Chris Lattner24943d22010-06-08 16:52:24 +000031{
Greg Claytone005f2c2010-11-06 01:53:30 +000032 static LogSP g_log_sp;
33 return g_log_sp;
Chris Lattner24943d22010-06-08 16:52:24 +000034}
35
36uint32_t
37lldb_private::GetLogMask ()
38{
Greg Claytone005f2c2010-11-06 01:53:30 +000039 LogSP log(GetLog ());
Chris Lattner24943d22010-06-08 16:52:24 +000040 if (log)
Greg Claytonf3d0b0c2010-10-27 03:32:59 +000041 return log->GetMask().Get();
Chris Lattner24943d22010-06-08 16:52:24 +000042 return 0;
43}
44
45bool
46lldb_private::IsLogVerbose ()
47{
48 uint32_t mask = GetLogMask();
49 return (mask & LIBLLDB_LOG_VERBOSE);
50}
51
Greg Claytone005f2c2010-11-06 01:53:30 +000052LogSP
Chris Lattner24943d22010-06-08 16:52:24 +000053lldb_private::GetLogIfAllCategoriesSet (uint32_t mask)
54{
Greg Claytone005f2c2010-11-06 01:53:30 +000055 LogSP log(GetLog ());
Chris Lattner24943d22010-06-08 16:52:24 +000056 if (log && mask)
57 {
Greg Claytonf3d0b0c2010-10-27 03:32:59 +000058 uint32_t log_mask = log->GetMask().Get();
Chris Lattner24943d22010-06-08 16:52:24 +000059 if ((log_mask & mask) != mask)
Greg Claytone005f2c2010-11-06 01:53:30 +000060 return LogSP();
Chris Lattner24943d22010-06-08 16:52:24 +000061 }
62 return log;
63}
64
65void
66lldb_private::LogIfAllCategoriesSet (uint32_t mask, const char *format, ...)
67{
Greg Claytone005f2c2010-11-06 01:53:30 +000068 LogSP log(GetLogIfAllCategoriesSet (mask));
Chris Lattner24943d22010-06-08 16:52:24 +000069 if (log)
70 {
71 va_list args;
72 va_start (args, format);
73 log->VAPrintf (format, args);
74 va_end (args);
75 }
76}
77
78void
79lldb_private::LogIfAnyCategoriesSet (uint32_t mask, const char *format, ...)
80{
Greg Claytone005f2c2010-11-06 01:53:30 +000081 LogSP log(GetLogIfAnyCategoriesSet (mask));
Chris Lattner24943d22010-06-08 16:52:24 +000082 if (log)
83 {
84 va_list args;
85 va_start (args, format);
86 log->VAPrintf (format, args);
87 va_end (args);
88 }
89}
90
Greg Claytone005f2c2010-11-06 01:53:30 +000091LogSP
Chris Lattner24943d22010-06-08 16:52:24 +000092lldb_private::GetLogIfAnyCategoriesSet (uint32_t mask)
93{
Greg Claytone005f2c2010-11-06 01:53:30 +000094 LogSP log(GetLog ());
Greg Claytonf3d0b0c2010-10-27 03:32:59 +000095 if (log && mask && (mask & log->GetMask().Get()))
Chris Lattner24943d22010-06-08 16:52:24 +000096 return log;
Greg Claytone005f2c2010-11-06 01:53:30 +000097 return LogSP();
Chris Lattner24943d22010-06-08 16:52:24 +000098}
99
100void
Caroline Tice926060e2010-10-29 21:48:37 +0000101lldb_private::DisableLog (Args &args, Stream *feedback_strm)
Chris Lattner24943d22010-06-08 16:52:24 +0000102{
Greg Claytone005f2c2010-11-06 01:53:30 +0000103 LogSP log(GetLog ());
Chris Lattner24943d22010-06-08 16:52:24 +0000104
Caroline Tice926060e2010-10-29 21:48:37 +0000105 if (log)
106 {
Greg Clayton990de7b2010-11-18 23:32:35 +0000107 uint32_t flag_bits = 0;
Caroline Tice926060e2010-10-29 21:48:37 +0000108 const size_t argc = args.GetArgumentCount ();
Greg Clayton990de7b2010-11-18 23:32:35 +0000109 if (argc > 0)
Caroline Tice926060e2010-10-29 21:48:37 +0000110 {
Greg Clayton990de7b2010-11-18 23:32:35 +0000111 flag_bits = log->GetMask().Get();
112 for (size_t i = 0; i < argc; ++i)
Caroline Tice926060e2010-10-29 21:48:37 +0000113 {
Greg Clayton990de7b2010-11-18 23:32:35 +0000114 const char *arg = args.GetArgumentAtIndex (i);
115
Greg Claytond5f76bb2011-02-04 18:55:41 +0000116 if (0 == ::strcasecmp(arg, "all")) flag_bits &= ~LIBLLDB_LOG_ALL;
117 else if (0 == ::strcasecmp(arg, "api")) flag_bits &= ~LIBLLDB_LOG_API;
118 else if (0 == ::strncasecmp(arg, "break", 5)) flag_bits &= ~LIBLLDB_LOG_BREAKPOINTS;
119 else if (0 == ::strcasecmp(arg, "commands")) flag_bits &= ~LIBLLDB_LOG_COMMANDS;
120 else if (0 == ::strcasecmp(arg, "default")) flag_bits &= ~LIBLLDB_LOG_DEFAULT;
121 else if (0 == ::strcasecmp(arg, "dyld")) flag_bits &= ~LIBLLDB_LOG_DYNAMIC_LOADER;
122 else if (0 == ::strncasecmp(arg, "event", 5)) flag_bits &= ~LIBLLDB_LOG_EVENTS;
123 else if (0 == ::strncasecmp(arg, "expr", 4)) flag_bits &= ~LIBLLDB_LOG_EXPRESSIONS;
124 else if (0 == ::strncasecmp(arg, "object", 6)) flag_bits &= ~LIBLLDB_LOG_OBJECT;
125 else if (0 == ::strcasecmp(arg, "process")) flag_bits &= ~LIBLLDB_LOG_PROCESS;
126 else if (0 == ::strcasecmp(arg, "script")) flag_bits &= ~LIBLLDB_LOG_SCRIPT;
127 else if (0 == ::strcasecmp(arg, "state")) flag_bits &= ~LIBLLDB_LOG_STATE;
128 else if (0 == ::strcasecmp(arg, "step")) flag_bits &= ~LIBLLDB_LOG_STEP;
129 else if (0 == ::strcasecmp(arg, "thread")) flag_bits &= ~LIBLLDB_LOG_THREAD;
130 else if (0 == ::strcasecmp(arg, "verbose")) flag_bits &= ~LIBLLDB_LOG_VERBOSE;
131 else if (0 == ::strncasecmp(arg, "watch", 5)) flag_bits &= ~LIBLLDB_LOG_WATCHPOINTS;
132 else if (0 == ::strncasecmp(arg, "temp", 4)) flag_bits &= ~LIBLLDB_LOG_TEMPORARY;
133 else if (0 == ::strncasecmp(arg, "comm", 4)) flag_bits &= ~LIBLLDB_LOG_COMMUNICATION;
134 else if (0 == ::strncasecmp(arg, "conn", 4)) flag_bits &= ~LIBLLDB_LOG_CONNECTION;
135 else if (0 == ::strncasecmp(arg, "host", 4)) flag_bits &= ~LIBLLDB_LOG_HOST;
136 else if (0 == ::strncasecmp(arg, "unwind", 6)) flag_bits &= ~LIBLLDB_LOG_UNWIND;
Enrico Granatade4059f2011-07-22 17:03:19 +0000137 else if (0 == ::strncasecmp(arg, "types", 5)) flag_bits &= ~LIBLLDB_LOG_TYPES;
Greg Clayton990de7b2010-11-18 23:32:35 +0000138 else
139 {
140 feedback_strm->Printf ("error: unrecognized log category '%s'\n", arg);
141 ListLogCategories (feedback_strm);
142 return;
143 }
144
Caroline Tice926060e2010-10-29 21:48:37 +0000145 }
Caroline Tice926060e2010-10-29 21:48:37 +0000146 }
147 if (flag_bits == 0)
Greg Claytone005f2c2010-11-06 01:53:30 +0000148 GetLog ().reset();
Caroline Tice926060e2010-10-29 21:48:37 +0000149 else
150 log->GetMask().Reset (flag_bits);
151 }
152
153 return;
154}
Chris Lattner24943d22010-06-08 16:52:24 +0000155
Greg Claytone005f2c2010-11-06 01:53:30 +0000156LogSP
Chris Lattner24943d22010-06-08 16:52:24 +0000157lldb_private::EnableLog (StreamSP &log_stream_sp, uint32_t log_options, Args &args, Stream *feedback_strm)
158{
159 // Try see if there already is a log - that way we can reuse its settings.
160 // We could reuse the log in toto, but we don't know that the stream is the same.
161 uint32_t flag_bits;
Greg Claytone005f2c2010-11-06 01:53:30 +0000162 LogSP log(GetLog ());
Chris Lattner24943d22010-06-08 16:52:24 +0000163 if (log)
Greg Claytonf3d0b0c2010-10-27 03:32:59 +0000164 flag_bits = log->GetMask().Get();
Chris Lattner24943d22010-06-08 16:52:24 +0000165 else
166 flag_bits = 0;
167
Greg Claytone005f2c2010-11-06 01:53:30 +0000168 // Now make a new log with this stream if one was provided
169 if (log_stream_sp)
170 {
171 log = make_shared<Log>(log_stream_sp);
172 GetLog () = log;
173 }
174
Chris Lattner24943d22010-06-08 16:52:24 +0000175 if (log)
176 {
177 bool got_unknown_category = false;
178 const size_t argc = args.GetArgumentCount();
179 for (size_t i=0; i<argc; ++i)
180 {
181 const char *arg = args.GetArgumentAtIndex(i);
182
Greg Claytond5f76bb2011-02-04 18:55:41 +0000183 if (0 == ::strcasecmp(arg, "all")) flag_bits |= LIBLLDB_LOG_ALL;
184 else if (0 == ::strcasecmp(arg, "api")) flag_bits |= LIBLLDB_LOG_API;
185 else if (0 == ::strncasecmp(arg, "break", 5)) flag_bits |= LIBLLDB_LOG_BREAKPOINTS;
186 else if (0 == ::strcasecmp(arg, "commands")) flag_bits |= LIBLLDB_LOG_COMMANDS;
187 else if (0 == ::strcasecmp(arg, "default")) flag_bits |= LIBLLDB_LOG_DEFAULT;
188 else if (0 == ::strcasecmp(arg, "dyld")) flag_bits |= LIBLLDB_LOG_DYNAMIC_LOADER;
189 else if (0 == ::strncasecmp(arg, "event", 5)) flag_bits |= LIBLLDB_LOG_EVENTS;
190 else if (0 == ::strncasecmp(arg, "expr", 4)) flag_bits |= LIBLLDB_LOG_EXPRESSIONS;
191 else if (0 == ::strncasecmp(arg, "object", 6)) flag_bits |= LIBLLDB_LOG_OBJECT;
192 else if (0 == ::strcasecmp(arg, "process")) flag_bits |= LIBLLDB_LOG_PROCESS;
193 else if (0 == ::strcasecmp(arg, "script")) flag_bits |= LIBLLDB_LOG_SCRIPT;
194 else if (0 == ::strcasecmp(arg, "state")) flag_bits |= LIBLLDB_LOG_STATE;
195 else if (0 == ::strcasecmp(arg, "step")) flag_bits |= LIBLLDB_LOG_STEP;
196 else if (0 == ::strcasecmp(arg, "thread")) flag_bits |= LIBLLDB_LOG_THREAD;
197 else if (0 == ::strcasecmp(arg, "verbose")) flag_bits |= LIBLLDB_LOG_VERBOSE;
198 else if (0 == ::strncasecmp(arg, "watch", 5)) flag_bits |= LIBLLDB_LOG_WATCHPOINTS;
199 else if (0 == ::strncasecmp(arg, "temp", 4)) flag_bits |= LIBLLDB_LOG_TEMPORARY;
200 else if (0 == ::strncasecmp(arg, "comm", 4)) flag_bits |= LIBLLDB_LOG_COMMUNICATION;
201 else if (0 == ::strncasecmp(arg, "conn", 4)) flag_bits |= LIBLLDB_LOG_CONNECTION;
202 else if (0 == ::strncasecmp(arg, "host", 4)) flag_bits |= LIBLLDB_LOG_HOST;
203 else if (0 == ::strncasecmp(arg, "unwind", 6)) flag_bits |= LIBLLDB_LOG_UNWIND;
Enrico Granatade4059f2011-07-22 17:03:19 +0000204 else if (0 == ::strncasecmp(arg, "types", 5)) flag_bits |= LIBLLDB_LOG_TYPES;
Chris Lattner24943d22010-06-08 16:52:24 +0000205 else
206 {
207 feedback_strm->Printf("error: unrecognized log category '%s'\n", arg);
208 if (got_unknown_category == false)
209 {
210 got_unknown_category = true;
211 ListLogCategories (feedback_strm);
212 return log;
213 }
214 }
215 }
216
Greg Claytonf3d0b0c2010-10-27 03:32:59 +0000217 log->GetMask().Reset(flag_bits);
218 log->GetOptions().Reset(log_options);
Chris Lattner24943d22010-06-08 16:52:24 +0000219 }
220 return log;
221}
222
223
224void
225lldb_private::ListLogCategories (Stream *strm)
226{
227 strm->Printf("Logging categories for 'lldb':\n"
228 "\tall - turn on all available logging categories\n"
Caroline Tice7826c882010-10-26 03:11:13 +0000229 "\tapi - enable logging of API calls and return values\n"
Chris Lattner24943d22010-06-08 16:52:24 +0000230 "\tdefault - enable the default set of logging categories for liblldb\n"
231 "\tbreak - log breakpoints\n"
232 "\tevents - log broadcaster, listener and event queue activities\n"
233 "\texpr - log expressions\n"
234 "\tobject - log object construction/destruction for important objects\n"
235 "\tprocess - log process events and activities\n"
236 "\tthread - log thread events and activities\n"
Caroline Tice2ade6112010-11-10 19:18:14 +0000237 "\tscript - log events about the script interpreter\n"
Jim Inghamc446fe92011-05-07 01:03:33 +0000238 "\tdyld - log shared library related activities\n"
Chris Lattner24943d22010-06-08 16:52:24 +0000239 "\tstate - log private and public process state changes\n"
240 "\tstep - log step related activities\n"
Jason Molenda8280cbe2010-10-25 11:12:07 +0000241 "\tunwind - log stack unwind activities\n"
Greg Clayton5d187e52011-01-08 20:28:42 +0000242 "\tverbose - enable verbose logging\n"
Enrico Granatade4059f2011-07-22 17:03:19 +0000243 "\twatch - log watchpoint related activities\n"
244 "\ttypes - log type system related activities\n");
Chris Lattner24943d22010-06-08 16:52:24 +0000245}