log-utils.h 7.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
// Copyright 2006-2009 the V8 project authors. All rights reserved.
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
//     * Redistributions of source code must retain the above copyright
//       notice, this list of conditions and the following disclaimer.
//     * Redistributions in binary form must reproduce the above
//       copyright notice, this list of conditions and the following
//       disclaimer in the documentation and/or other materials provided
//       with the distribution.
//     * Neither the name of Google Inc. nor the names of its
//       contributors may be used to endorse or promote products derived
//       from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

#ifndef V8_LOG_UTILS_H_
#define V8_LOG_UTILS_H_

31 32
#include "allocation.h"

33 34 35 36 37
namespace v8 {
namespace internal {

#ifdef ENABLE_LOGGING_AND_PROFILING

38 39
class Logger;

40 41
// A memory buffer that increments its size as you write in it.  Size
// is incremented with 'block_size' steps, never exceeding 'max_size'.
42 43 44 45 46
// During growth, memory contents are never copied.  At the end of the
// buffer an amount of memory specified in 'seal_size' is reserved.
// When writing position reaches max_size - seal_size, buffer auto-seals
// itself with 'seal' and allows no further writes. Data pointed by
// 'seal' must be available during entire LogDynamicBuffer lifetime.
47 48 49 50
//
// An instance of this class is created dynamically by Log.
class LogDynamicBuffer {
 public:
51 52
  LogDynamicBuffer(
      int block_size, int max_size, const char* seal, int seal_size);
53 54 55 56 57 58 59 60 61 62

  ~LogDynamicBuffer();

  // Reads contents of the buffer starting from 'from_pos'.  Upon
  // return, 'dest_buf' is filled with the data. Actual amount of data
  // filled is returned, it is <= 'buf_size'.
  int Read(int from_pos, char* dest_buf, int buf_size);

  // Writes 'data' to the buffer, making it larger if necessary.  If
  // data is too big to fit in the buffer, it doesn't get written at
63 64 65
  // all. In that case, buffer auto-seals itself and stops to accept
  // any incoming writes. Returns amount of data written (it is either
  // 'data_size', or 0, if 'data' is too big).
66 67 68 69 70 71 72 73 74 75 76 77 78
  int Write(const char* data, int data_size);

 private:
  void AllocateBlock(int index) {
    blocks_[index] = NewArray<char>(block_size_);
  }

  int BlockIndex(int pos) const { return pos / block_size_; }

  int BlocksCount() const { return BlockIndex(max_size_) + 1; }

  int PosInBlock(int pos) const { return pos % block_size_; }

79 80 81 82
  int Seal();

  int WriteInternal(const char* data, int data_size);

83 84
  const int block_size_;
  const int max_size_;
85 86
  const char* seal_;
  const int seal_size_;
87 88 89 90
  ScopedVector<char*> blocks_;
  int write_pos_;
  int block_index_;
  int block_write_pos_;
91
  bool is_sealed_;
92 93 94 95
};


// Functions and data for performing output of log messages.
96
class Log {
97 98
 public:

99 100
  // Performs process-wide initialization.
  void Initialize();
101

102
  // Disables logging, but preserves acquired resources.
103
  void stop() { is_stopped_ = true; }
104

105 106
  // Frees all resources acquired in Initialize and Open... functions.
  void Close();
107 108

  // See description in include/v8.h.
109
  int GetLogLines(int from_pos, char* dest_buf, int max_size);
110 111

  // Returns whether logging is enabled.
112
  bool IsEnabled() {
113
    return !is_stopped_ && (output_handle_ != NULL || output_buffer_ != NULL);
114 115
  }

116
  // Size of buffer used for formatting log messages.
117
  static const int kMessageBufferSize = v8::V8::kMinimumSizeForLogLinesBuffer;
118

119
 private:
120 121 122 123
  explicit Log(Logger* logger);

  // Opens stdout for logging.
  void OpenStdout();
124

125 126
  // Opens file for logging.
  void OpenFile(const char* name);
127

128 129
  // Opens memory buffer for logging.
  void OpenMemoryBuffer();
130 131

  // Implementation of writing to a log file.
132
  int WriteToFile(const char* msg, int length) {
133
    ASSERT(output_handle_ != NULL);
134 135 136
    size_t rv = fwrite(msg, 1, length, output_handle_);
    ASSERT(static_cast<size_t>(length) == rv);
    USE(rv);
137
    fflush(output_handle_);
138
    return length;
139 140 141
  }

  // Implementation of writing to a memory buffer.
142
  int WriteToMemory(const char* msg, int length) {
143 144 145 146
    ASSERT(output_buffer_ != NULL);
    return output_buffer_->Write(msg, length);
  }

147 148
  bool write_to_file_;

149
  // Whether logging is stopped (e.g. due to insufficient resources).
150
  bool is_stopped_;
151

152 153 154 155 156
  // When logging is active, either output_handle_ or output_buffer_ is used
  // to store a pointer to log destination. If logging was opened via OpenStdout
  // or OpenFile, then output_handle_ is used. If logging was opened
  // via OpenMemoryBuffer, then output_buffer_ is used.
  // mutex_ should be acquired before using output_handle_ or output_buffer_.
157
  FILE* output_handle_;
158

159 160
  // Used when low-level profiling is active.
  FILE* ll_output_handle_;
161

162
  LogDynamicBuffer* output_buffer_;
163 164 165 166 167 168 169

  // Size of dynamic buffer block (and dynamic buffer initial size).
  static const int kDynamicBufferBlockSize = 65536;

  // Maximum size of dynamic buffer.
  static const int kMaxDynamicBufferSize = 50 * 1024 * 1024;

170
  // Message to "seal" dynamic buffer with.
171
  static const char* const kDynamicBufferSeal;
172

173 174
  // mutex_ is a Mutex used for enforcing exclusive
  // access to the formatting buffer and the log file or log memory buffer.
175
  Mutex* mutex_;
176 177 178

  // Buffer used for formatting log messages. This is a singleton buffer and
  // mutex_ should be acquired before using it.
179 180 181
  char* message_buffer_;

  Logger* logger_;
182

183
  friend class Logger;
184
  friend class LogMessageBuilder;
185 186 187 188 189 190 191 192 193
};


// Utility class for formatting log messages. It fills the message into the
// static buffer in Log.
class LogMessageBuilder BASE_EMBEDDED {
 public:
  // Create a message builder starting from position 0. This acquires the mutex
  // in the log as well.
194
  explicit LogMessageBuilder(Logger* logger);
195 196 197 198 199 200
  ~LogMessageBuilder() { }

  // Append string data to the log message.
  void Append(const char* format, ...);

  // Append string data to the log message.
201
  void AppendVA(const char* format, va_list args);
202 203 204 205 206 207 208

  // Append a character to the log message.
  void Append(const char c);

  // Append a heap string.
  void Append(String* str);

209
  // Appends an address.
210 211
  void AppendAddress(Address addr);

212 213
  void AppendDetailed(String* str, bool show_impl_info);

214 215 216
  // Append a portion of a string.
  void AppendStringPart(const char* str, int len);

217 218 219 220
  // Write the log message to the log file currently opened.
  void WriteToLogFile();

 private:
221

222
  Log* log_;
223 224 225 226 227 228 229 230 231
  ScopedLock sl;
  int pos_;
};

#endif  // ENABLE_LOGGING_AND_PROFILING

} }  // namespace v8::internal

#endif  // V8_LOG_UTILS_H_