blob: 255c73c9bc5c972fd3ca968fedb801ecaabd6185 [file] [log] [blame]
Steve Blocka7e24c12009-10-30 11:49:00 +00001// Copyright 2006-2009 the V8 project authors. All rights reserved.
2// Redistribution and use in source and binary forms, with or without
3// modification, are permitted provided that the following conditions are
4// met:
5//
6// * Redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer.
8// * Redistributions in binary form must reproduce the above
9// copyright notice, this list of conditions and the following
10// disclaimer in the documentation and/or other materials provided
11// with the distribution.
12// * Neither the name of Google Inc. nor the names of its
13// contributors may be used to endorse or promote products derived
14// from this software without specific prior written permission.
15//
16// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28#ifndef V8_LOG_UTILS_H_
29#define V8_LOG_UTILS_H_
30
31namespace v8 {
32namespace internal {
33
34#ifdef ENABLE_LOGGING_AND_PROFILING
35
Steve Block44f0eee2011-05-26 01:26:41 +010036class Logger;
37
Steve Blocka7e24c12009-10-30 11:49:00 +000038// A memory buffer that increments its size as you write in it. Size
39// is incremented with 'block_size' steps, never exceeding 'max_size'.
40// During growth, memory contents are never copied. At the end of the
41// buffer an amount of memory specified in 'seal_size' is reserved.
42// When writing position reaches max_size - seal_size, buffer auto-seals
43// itself with 'seal' and allows no further writes. Data pointed by
44// 'seal' must be available during entire LogDynamicBuffer lifetime.
45//
46// An instance of this class is created dynamically by Log.
47class LogDynamicBuffer {
48 public:
49 LogDynamicBuffer(
50 int block_size, int max_size, const char* seal, int seal_size);
51
52 ~LogDynamicBuffer();
53
54 // Reads contents of the buffer starting from 'from_pos'. Upon
55 // return, 'dest_buf' is filled with the data. Actual amount of data
56 // filled is returned, it is <= 'buf_size'.
57 int Read(int from_pos, char* dest_buf, int buf_size);
58
59 // Writes 'data' to the buffer, making it larger if necessary. If
60 // data is too big to fit in the buffer, it doesn't get written at
61 // all. In that case, buffer auto-seals itself and stops to accept
62 // any incoming writes. Returns amount of data written (it is either
63 // 'data_size', or 0, if 'data' is too big).
64 int Write(const char* data, int data_size);
65
66 private:
67 void AllocateBlock(int index) {
68 blocks_[index] = NewArray<char>(block_size_);
69 }
70
71 int BlockIndex(int pos) const { return pos / block_size_; }
72
73 int BlocksCount() const { return BlockIndex(max_size_) + 1; }
74
75 int PosInBlock(int pos) const { return pos % block_size_; }
76
77 int Seal();
78
79 int WriteInternal(const char* data, int data_size);
80
81 const int block_size_;
82 const int max_size_;
83 const char* seal_;
84 const int seal_size_;
85 ScopedVector<char*> blocks_;
86 int write_pos_;
87 int block_index_;
88 int block_write_pos_;
89 bool is_sealed_;
90};
91
92
93// Functions and data for performing output of log messages.
Steve Block44f0eee2011-05-26 01:26:41 +010094class Log {
Steve Blocka7e24c12009-10-30 11:49:00 +000095 public:
Steve Blocka7e24c12009-10-30 11:49:00 +000096
Steve Block44f0eee2011-05-26 01:26:41 +010097 // Performs process-wide initialization.
98 void Initialize();
Steve Blocka7e24c12009-10-30 11:49:00 +000099
100 // Disables logging, but preserves acquired resources.
Steve Block44f0eee2011-05-26 01:26:41 +0100101 void stop() { is_stopped_ = true; }
Steve Blocka7e24c12009-10-30 11:49:00 +0000102
Steve Block44f0eee2011-05-26 01:26:41 +0100103 // Frees all resources acquired in Initialize and Open... functions.
104 void Close();
Steve Blocka7e24c12009-10-30 11:49:00 +0000105
106 // See description in include/v8.h.
Steve Block44f0eee2011-05-26 01:26:41 +0100107 int GetLogLines(int from_pos, char* dest_buf, int max_size);
Steve Blocka7e24c12009-10-30 11:49:00 +0000108
109 // Returns whether logging is enabled.
Steve Block44f0eee2011-05-26 01:26:41 +0100110 bool IsEnabled() {
Steve Blocka7e24c12009-10-30 11:49:00 +0000111 return !is_stopped_ && (output_handle_ != NULL || output_buffer_ != NULL);
112 }
113
114 // Size of buffer used for formatting log messages.
Steve Block6ded16b2010-05-10 14:33:55 +0100115 static const int kMessageBufferSize = v8::V8::kMinimumSizeForLogLinesBuffer;
Steve Blocka7e24c12009-10-30 11:49:00 +0000116
117 private:
Steve Block44f0eee2011-05-26 01:26:41 +0100118 explicit Log(Logger* logger);
Steve Blocka7e24c12009-10-30 11:49:00 +0000119
Steve Block44f0eee2011-05-26 01:26:41 +0100120 // Opens stdout for logging.
121 void OpenStdout();
Steve Blocka7e24c12009-10-30 11:49:00 +0000122
Steve Block44f0eee2011-05-26 01:26:41 +0100123 // Opens file for logging.
124 void OpenFile(const char* name);
125
126 // Opens memory buffer for logging.
127 void OpenMemoryBuffer();
Steve Blocka7e24c12009-10-30 11:49:00 +0000128
129 // Implementation of writing to a log file.
Steve Block44f0eee2011-05-26 01:26:41 +0100130 int WriteToFile(const char* msg, int length) {
Steve Blocka7e24c12009-10-30 11:49:00 +0000131 ASSERT(output_handle_ != NULL);
Steve Blockd0582a62009-12-15 09:54:21 +0000132 size_t rv = fwrite(msg, 1, length, output_handle_);
133 ASSERT(static_cast<size_t>(length) == rv);
134 USE(rv);
Ben Murdochf87a2032010-10-22 12:50:53 +0100135 fflush(output_handle_);
Steve Blockd0582a62009-12-15 09:54:21 +0000136 return length;
Steve Blocka7e24c12009-10-30 11:49:00 +0000137 }
138
139 // Implementation of writing to a memory buffer.
Steve Block44f0eee2011-05-26 01:26:41 +0100140 int WriteToMemory(const char* msg, int length) {
Steve Blocka7e24c12009-10-30 11:49:00 +0000141 ASSERT(output_buffer_ != NULL);
142 return output_buffer_->Write(msg, length);
143 }
144
Steve Block44f0eee2011-05-26 01:26:41 +0100145 bool write_to_file_;
146
Steve Blocka7e24c12009-10-30 11:49:00 +0000147 // Whether logging is stopped (e.g. due to insufficient resources).
Steve Block44f0eee2011-05-26 01:26:41 +0100148 bool is_stopped_;
Steve Blocka7e24c12009-10-30 11:49:00 +0000149
150 // When logging is active, either output_handle_ or output_buffer_ is used
151 // to store a pointer to log destination. If logging was opened via OpenStdout
152 // or OpenFile, then output_handle_ is used. If logging was opened
153 // via OpenMemoryBuffer, then output_buffer_ is used.
154 // mutex_ should be acquired before using output_handle_ or output_buffer_.
Steve Block44f0eee2011-05-26 01:26:41 +0100155 FILE* output_handle_;
Steve Blocka7e24c12009-10-30 11:49:00 +0000156
Ben Murdochf87a2032010-10-22 12:50:53 +0100157 // Used when low-level profiling is active to save code object contents.
Steve Block44f0eee2011-05-26 01:26:41 +0100158 FILE* output_code_handle_;
Ben Murdochf87a2032010-10-22 12:50:53 +0100159
Steve Block44f0eee2011-05-26 01:26:41 +0100160 LogDynamicBuffer* output_buffer_;
Steve Blocka7e24c12009-10-30 11:49:00 +0000161
162 // Size of dynamic buffer block (and dynamic buffer initial size).
163 static const int kDynamicBufferBlockSize = 65536;
164
165 // Maximum size of dynamic buffer.
166 static const int kMaxDynamicBufferSize = 50 * 1024 * 1024;
167
168 // Message to "seal" dynamic buffer with.
Steve Block44f0eee2011-05-26 01:26:41 +0100169 static const char* const kDynamicBufferSeal;
Steve Blocka7e24c12009-10-30 11:49:00 +0000170
171 // mutex_ is a Mutex used for enforcing exclusive
172 // access to the formatting buffer and the log file or log memory buffer.
Steve Block44f0eee2011-05-26 01:26:41 +0100173 Mutex* mutex_;
Steve Blocka7e24c12009-10-30 11:49:00 +0000174
175 // Buffer used for formatting log messages. This is a singleton buffer and
176 // mutex_ should be acquired before using it.
Steve Block44f0eee2011-05-26 01:26:41 +0100177 char* message_buffer_;
178
179 Logger* logger_;
Steve Blocka7e24c12009-10-30 11:49:00 +0000180
Ben Murdochf87a2032010-10-22 12:50:53 +0100181 friend class Logger;
Steve Blocka7e24c12009-10-30 11:49:00 +0000182 friend class LogMessageBuilder;
Steve Blocka7e24c12009-10-30 11:49:00 +0000183};
184
185
186// Utility class for formatting log messages. It fills the message into the
187// static buffer in Log.
188class LogMessageBuilder BASE_EMBEDDED {
189 public:
190 // Create a message builder starting from position 0. This acquires the mutex
191 // in the log as well.
Steve Block44f0eee2011-05-26 01:26:41 +0100192 explicit LogMessageBuilder(Logger* logger);
Steve Blocka7e24c12009-10-30 11:49:00 +0000193 ~LogMessageBuilder() { }
194
195 // Append string data to the log message.
196 void Append(const char* format, ...);
197
198 // Append string data to the log message.
199 void AppendVA(const char* format, va_list args);
200
201 // Append a character to the log message.
202 void Append(const char c);
203
204 // Append a heap string.
205 void Append(String* str);
206
Ben Murdochb0fe1622011-05-05 13:52:32 +0100207 // Appends an address.
Steve Blocka7e24c12009-10-30 11:49:00 +0000208 void AppendAddress(Address addr);
209
Steve Blocka7e24c12009-10-30 11:49:00 +0000210 void AppendDetailed(String* str, bool show_impl_info);
211
212 // Append a portion of a string.
213 void AppendStringPart(const char* str, int len);
214
Steve Blocka7e24c12009-10-30 11:49:00 +0000215 // Write the log message to the log file currently opened.
216 void WriteToLogFile();
217
Steve Blocka7e24c12009-10-30 11:49:00 +0000218 private:
Steve Blocka7e24c12009-10-30 11:49:00 +0000219
Steve Block44f0eee2011-05-26 01:26:41 +0100220 Log* log_;
Steve Blocka7e24c12009-10-30 11:49:00 +0000221 ScopedLock sl;
222 int pos_;
223};
224
225#endif // ENABLE_LOGGING_AND_PROFILING
226
227} } // namespace v8::internal
228
229#endif // V8_LOG_UTILS_H_