log-utils.h 5.22 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
namespace v8 {
namespace internal {

36 37
class Logger;

38
// Functions and data for performing output of log messages.
39
class Log {
40
 public:
41
  // Performs process-wide initialization.
42
  void Initialize(const char* log_file_name);
43

44
  // Disables logging, but preserves acquired resources.
45
  void stop() { is_stopped_ = true; }
46

47 48 49
  static bool InitLogAtStart() {
    return FLAG_log || FLAG_log_runtime || FLAG_log_api
        || FLAG_log_code || FLAG_log_gc || FLAG_log_handles || FLAG_log_suspect
50 51
        || FLAG_log_regexp || FLAG_ll_prof || FLAG_perf_basic_prof
        || FLAG_perf_jit_prof || FLAG_log_internal_timer_events;
52 53
  }

54
  // Frees all resources acquired in Initialize and Open... functions.
55 56 57
  // When a temporary file is used for the log, returns its stream descriptor,
  // leaving the file open.
  FILE* Close();
58 59

  // Returns whether logging is enabled.
60
  bool IsEnabled() {
61
    return !is_stopped_ && output_handle_ != NULL;
62 63
  }

64
  // Size of buffer used for formatting log messages.
65 66 67 68
  static const int kMessageBufferSize = 2048;

  // This mode is only used in tests, as temporary files are automatically
  // deleted on close and thus can't be accessed afterwards.
69
  static const char* const kLogToTemporaryFile;
70
  static const char* const kLogToConsole;
71

72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
  // Utility class for formatting log messages. It fills the message into the
  // static buffer in Log.
  class MessageBuilder BASE_EMBEDDED {
   public:
    // Create a message builder starting from position 0.
    // This acquires the mutex in the log as well.
    explicit MessageBuilder(Log* log);
    ~MessageBuilder() { }

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

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

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

    // Append double quoted string to the log message.
    void AppendDoubleQuotedString(const char* string);

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

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

    void AppendSymbolName(Symbol* symbol);

    void AppendDetailed(String* str, bool show_impl_info);

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

    // Write the log message to the log file currently opened.
    void WriteToLogFile();

   private:
    Log* log_;
111
    LockGuard<Mutex> lock_guard_;
112 113 114
    int pos_;
  };

115
 private:
116 117 118 119
  explicit Log(Logger* logger);

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

121 122
  // Opens file for logging.
  void OpenFile(const char* name);
123

124 125
  // Opens a temporary file for logging.
  void OpenTemporaryFile();
126 127

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

137
  // Whether logging is stopped (e.g. due to insufficient resources).
138
  bool is_stopped_;
139

140 141
  // When logging is active output_handle_ is used to store a pointer to log
  // destination.  mutex_ should be acquired before using output_handle_.
142
  FILE* output_handle_;
143 144 145

  // mutex_ is a Mutex used for enforcing exclusive
  // access to the formatting buffer and the log file or log memory buffer.
146
  Mutex mutex_;
147 148 149

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

  Logger* logger_;
153

154
  friend class Logger;
155 156 157 158 159 160
};


} }  // namespace v8::internal

#endif  // V8_LOG_UTILS_H_