Commit d2ef8722 authored by Camillo Bruni's avatar Camillo Bruni Committed by Commit Bot

[log] Add Log::TearDownAndGetLogFile

CL in preparation of writing JavaScript-based log parsing tests.

- Return both temporary and normal log file in
  Log::TearDownAndGetLogFile
- Add file_name accessor to Logger and Log classes
- Use separate Log::WriteLogHeader method
- Remove unused logger_ instance variable from Log

Bug: v8:10668
Change-Id: Ie1f6f92cc6c55fd1dc664cac95f481bc29da7e18
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2407773Reviewed-by: 's avatarMythri Alle <mythria@chromium.org>
Commit-Queue: Camillo Bruni <cbruni@chromium.org>
Cr-Commit-Position: refs/heads/master@{#69879}
parent e5efa940
...@@ -3077,7 +3077,8 @@ void Isolate::Deinit() { ...@@ -3077,7 +3077,8 @@ void Isolate::Deinit() {
cancelable_task_manager()->CancelAndWait(); cancelable_task_manager()->CancelAndWait();
heap_.TearDown(); heap_.TearDown();
logger_->TearDown(); FILE* logfile = logger_->TearDownAndGetLogFile();
if (logfile != nullptr) fclose(logfile);
if (wasm_engine_) { if (wasm_engine_) {
wasm_engine_->RemoveIsolate(this); wasm_engine_->RemoveIsolate(this);
......
...@@ -23,28 +23,43 @@ const char* const Log::kLogToTemporaryFile = "&"; ...@@ -23,28 +23,43 @@ const char* const Log::kLogToTemporaryFile = "&";
const char* const Log::kLogToConsole = "-"; const char* const Log::kLogToConsole = "-";
// static // static
FILE* Log::CreateOutputHandle(const char* file_name) { FILE* Log::CreateOutputHandle(std::string file_name) {
// If we're logging anything, we need to open the log file. // If we're logging anything, we need to open the log file.
if (!Log::InitLogAtStart()) { if (!Log::InitLogAtStart()) {
return nullptr; return nullptr;
} else if (strcmp(file_name, kLogToConsole) == 0) { } else if (Log::IsLoggingToConsole(file_name)) {
return stdout; return stdout;
} else if (strcmp(file_name, kLogToTemporaryFile) == 0) { } else if (Log::IsLoggingToTemporaryFile(file_name)) {
return base::OS::OpenTemporaryFile(); return base::OS::OpenTemporaryFile();
} else { } else {
return base::OS::FOpen(file_name, base::OS::LogFileOpenMode); return base::OS::FOpen(file_name.c_str(), base::OS::LogFileOpenMode);
} }
} }
Log::Log(Logger* logger, const char* file_name) // static
: output_handle_(Log::CreateOutputHandle(file_name)), bool Log::IsLoggingToConsole(std::string file_name) {
return file_name.compare(Log::kLogToConsole) == 0;
}
// static
bool Log::IsLoggingToTemporaryFile(std::string file_name) {
return file_name.compare(Log::kLogToTemporaryFile) == 0;
}
Log::Log(std::string file_name)
: file_name_(file_name),
output_handle_(Log::CreateOutputHandle(file_name)),
os_(output_handle_ == nullptr ? stdout : output_handle_), os_(output_handle_ == nullptr ? stdout : output_handle_),
is_enabled_(output_handle_ != nullptr), is_enabled_(output_handle_ != nullptr),
format_buffer_(NewArray<char>(kMessageBufferSize)), format_buffer_(NewArray<char>(kMessageBufferSize)) {
logger_(logger) {
if (output_handle_ == nullptr) return; if (output_handle_ == nullptr) return;
Log::MessageBuilder msg(this); WriteLogHeader();
}
void Log::WriteLogHeader() {
std::unique_ptr<Log::MessageBuilder> msg_ptr = NewMessageBuilder();
if (!msg_ptr) return;
Log::MessageBuilder& msg = *msg_ptr.get();
LogSeparator kNext = LogSeparator::kSeparator; LogSeparator kNext = LogSeparator::kSeparator;
msg << "v8-version" << kNext << Version::GetMajor() << kNext msg << "v8-version" << kNext << Version::GetMajor() << kNext
<< Version::GetMinor() << kNext << Version::GetBuild() << kNext << Version::GetMinor() << kNext << Version::GetBuild() << kNext
...@@ -71,20 +86,17 @@ FILE* Log::Close() { ...@@ -71,20 +86,17 @@ FILE* Log::Close() {
base::MutexGuard guard(&mutex_); base::MutexGuard guard(&mutex_);
FILE* result = nullptr; FILE* result = nullptr;
if (output_handle_ != nullptr) { if (output_handle_ != nullptr) {
if (strcmp(FLAG_logfile, kLogToTemporaryFile) != 0) { fflush(output_handle_);
fclose(output_handle_); result = output_handle_;
} else {
result = output_handle_;
}
} }
output_handle_ = nullptr; output_handle_ = nullptr;
format_buffer_.reset(); format_buffer_.reset();
is_enabled_.store(false, std::memory_order_relaxed); is_enabled_.store(false, std::memory_order_relaxed);
return result; return result;
} }
std::string Log::file_name() const { return file_name_; }
Log::MessageBuilder::MessageBuilder(Log* log) Log::MessageBuilder::MessageBuilder(Log* log)
: log_(log), lock_guard_(&log_->mutex_) { : log_(log), lock_guard_(&log_->mutex_) {
DCHECK_NOT_NULL(log_->format_buffer_.get()); DCHECK_NOT_NULL(log_->format_buffer_.get());
......
...@@ -30,22 +30,27 @@ enum class LogSeparator { kSeparator }; ...@@ -30,22 +30,27 @@ enum class LogSeparator { kSeparator };
// Functions and data for performing output of log messages. // Functions and data for performing output of log messages.
class Log { class Log {
public: public:
Log(Logger* log, const char* log_file_name); explicit Log(std::string log_file_name);
static bool InitLogAtStart() { static bool InitLogAtStart() {
return FLAG_log || FLAG_log_api || FLAG_log_code || FLAG_log_handles || return FLAG_log || FLAG_log_all || FLAG_log_api || FLAG_log_code ||
FLAG_log_suspect || FLAG_ll_prof || FLAG_perf_basic_prof || FLAG_log_handles || FLAG_log_suspect || FLAG_ll_prof ||
FLAG_perf_prof || FLAG_log_source_code || FLAG_gdbjit || FLAG_perf_basic_prof || FLAG_perf_prof || FLAG_log_source_code ||
FLAG_log_internal_timer_events || FLAG_prof_cpp || FLAG_trace_ic || FLAG_gdbjit || FLAG_log_internal_timer_events || FLAG_prof_cpp ||
FLAG_log_function_events || FLAG_trace_zone_stats || FLAG_trace_ic || FLAG_log_function_events || FLAG_trace_zone_stats ||
FLAG_turbo_profiling_log_builtins; FLAG_turbo_profiling_log_builtins;
} }
V8_EXPORT_PRIVATE static bool IsLoggingToConsole(std::string file_name);
V8_EXPORT_PRIVATE static bool IsLoggingToTemporaryFile(std::string file_name);
// Frees all resources acquired in Initialize and Open... functions. // Frees all resources acquired in Initialize and Open... functions.
// When a temporary file is used for the log, returns its stream descriptor, // When a temporary file is used for the log, returns its stream descriptor,
// leaving the file open. // leaving the file open.
FILE* Close(); FILE* Close();
std::string file_name() const;
// Returns whether logging is enabled. // Returns whether logging is enabled.
bool IsEnabled() { return is_enabled_.load(std::memory_order_relaxed); } bool IsEnabled() { return is_enabled_.load(std::memory_order_relaxed); }
...@@ -109,19 +114,15 @@ class Log { ...@@ -109,19 +114,15 @@ class Log {
std::unique_ptr<Log::MessageBuilder> NewMessageBuilder(); std::unique_ptr<Log::MessageBuilder> NewMessageBuilder();
private: private:
static FILE* CreateOutputHandle(const char* file_name); static FILE* CreateOutputHandle(std::string file_name);
// Implementation of writing to a log file. void WriteLogHeader();
int WriteToFile(const char* msg, int length) {
DCHECK_NOT_NULL(output_handle_);
os_.write(msg, length);
DCHECK(!os_.bad());
return length;
}
std::string file_name_;
// When logging is active output_handle_ is used to store a pointer to log // When logging is active output_handle_ is used to store a pointer to log
// destination. mutex_ should be acquired before using output_handle_. // destination. mutex_ should be acquired before using output_handle_.
FILE* output_handle_; FILE* output_handle_;
OFStream os_; OFStream os_;
// Stores whether logging is enabled. // Stores whether logging is enabled.
...@@ -134,10 +135,6 @@ class Log { ...@@ -134,10 +135,6 @@ class Log {
// Buffer used for formatting log messages. This is a singleton buffer and // Buffer used for formatting log messages. This is a singleton buffer and
// mutex_ should be acquired before using it. // mutex_ should be acquired before using it.
std::unique_ptr<char[]> format_buffer_; std::unique_ptr<char[]> format_buffer_;
Logger* logger_;
friend class Logger;
}; };
template <> template <>
......
...@@ -1974,16 +1974,13 @@ void Logger::LogAllMaps() { ...@@ -1974,16 +1974,13 @@ void Logger::LogAllMaps() {
} }
} }
static void AddIsolateIdIfNeeded(std::ostream& os, // NOLINT static void AddIsolateIdIfNeeded(std::ostream& os, Isolate* isolate) {
Isolate* isolate) { if (!FLAG_logfile_per_isolate) return;
if (FLAG_logfile_per_isolate) { os << "isolate-" << isolate << "-" << base::OS::GetCurrentProcessId() << "-";
os << "isolate-" << isolate << "-" << base::OS::GetCurrentProcessId()
<< "-";
}
} }
static void PrepareLogFileName(std::ostream& os, // NOLINT static void PrepareLogFileName(std::ostream& os, Isolate* isolate,
Isolate* isolate, const char* file_name) { const char* file_name) {
int dir_separator_count = 0; int dir_separator_count = 0;
for (const char* p = file_name; *p; p++) { for (const char* p = file_name; *p; p++) {
if (base::OS::isDirectorySeparator(*p)) dir_separator_count++; if (base::OS::isDirectorySeparator(*p)) dir_separator_count++;
...@@ -2032,9 +2029,8 @@ bool Logger::SetUp(Isolate* isolate) { ...@@ -2032,9 +2029,8 @@ bool Logger::SetUp(Isolate* isolate) {
is_initialized_ = true; is_initialized_ = true;
std::ostringstream log_file_name; std::ostringstream log_file_name;
std::ostringstream source_log_file_name;
PrepareLogFileName(log_file_name, isolate, FLAG_logfile); PrepareLogFileName(log_file_name, isolate, FLAG_logfile);
log_ = std::make_unique<Log>(this, log_file_name.str().c_str()); log_ = std::make_unique<Log>(log_file_name.str());
#if V8_OS_LINUX #if V8_OS_LINUX
if (FLAG_perf_basic_prof) { if (FLAG_perf_basic_prof) {
...@@ -2063,9 +2059,7 @@ bool Logger::SetUp(Isolate* isolate) { ...@@ -2063,9 +2059,7 @@ bool Logger::SetUp(Isolate* isolate) {
ticker_ = std::make_unique<Ticker>(isolate, FLAG_prof_sampling_interval); ticker_ = std::make_unique<Ticker>(isolate, FLAG_prof_sampling_interval);
if (Log::InitLogAtStart()) { if (Log::InitLogAtStart()) is_logging_ = true;
is_logging_ = true;
}
timer_.Start(); timer_.Start();
...@@ -2075,9 +2069,7 @@ bool Logger::SetUp(Isolate* isolate) { ...@@ -2075,9 +2069,7 @@ bool Logger::SetUp(Isolate* isolate) {
profiler_->Engage(); profiler_->Engage();
} }
if (is_logging_) { if (is_logging_) AddCodeEventListener(this);
AddCodeEventListener(this);
}
return true; return true;
} }
...@@ -2104,6 +2096,7 @@ void Logger::SetCodeEventHandler(uint32_t options, ...@@ -2104,6 +2096,7 @@ void Logger::SetCodeEventHandler(uint32_t options,
} }
sampler::Sampler* Logger::sampler() { return ticker_.get(); } sampler::Sampler* Logger::sampler() { return ticker_.get(); }
std::string Logger::file_name() const { return log_.get()->file_name(); }
void Logger::StopProfilerThread() { void Logger::StopProfilerThread() {
if (profiler_ != nullptr) { if (profiler_ != nullptr) {
...@@ -2112,14 +2105,16 @@ void Logger::StopProfilerThread() { ...@@ -2112,14 +2105,16 @@ void Logger::StopProfilerThread() {
} }
} }
FILE* Logger::TearDown() { FILE* Logger::TearDownAndGetLogFile() {
if (!is_initialized_) return nullptr; if (!is_initialized_) return nullptr;
is_initialized_ = false; is_initialized_ = false;
is_logging_ = false;
// Stop the profiler thread before closing the file. // Stop the profiler thread before closing the file.
StopProfilerThread(); StopProfilerThread();
ticker_.reset(); ticker_.reset();
timer_.Stop();
#if V8_OS_LINUX #if V8_OS_LINUX
if (perf_basic_logger_) { if (perf_basic_logger_) {
......
...@@ -126,18 +126,19 @@ class Logger : public CodeEventListener { ...@@ -126,18 +126,19 @@ class Logger : public CodeEventListener {
// Acquires resources for logging if the right flags are set. // Acquires resources for logging if the right flags are set.
bool SetUp(Isolate* isolate); bool SetUp(Isolate* isolate);
// Frees resources acquired in SetUp.
// When a temporary file is used for the log, returns its stream descriptor,
// leaving the file open.
V8_EXPORT_PRIVATE FILE* TearDownAndGetLogFile();
// Sets the current code event handler. // Sets the current code event handler.
void SetCodeEventHandler(uint32_t options, JitCodeEventHandler event_handler); void SetCodeEventHandler(uint32_t options, JitCodeEventHandler event_handler);
sampler::Sampler* sampler(); sampler::Sampler* sampler();
V8_EXPORT_PRIVATE std::string file_name() const;
V8_EXPORT_PRIVATE void StopProfilerThread(); V8_EXPORT_PRIVATE void StopProfilerThread();
// Frees resources acquired in SetUp.
// When a temporary file is used for the log, returns its stream descriptor,
// leaving the file open.
V8_EXPORT_PRIVATE FILE* TearDown();
// Emits an event with a string value -> (name, value). // Emits an event with a string value -> (name, value).
V8_EXPORT_PRIVATE void StringEvent(const char* name, const char* value); V8_EXPORT_PRIVATE void StringEvent(const char* name, const char* value);
......
...@@ -83,8 +83,8 @@ class ScopedLoggerInitializer { ...@@ -83,8 +83,8 @@ class ScopedLoggerInitializer {
~ScopedLoggerInitializer() { ~ScopedLoggerInitializer() {
env_->Exit(); env_->Exit();
logger_->TearDown(); FILE* log_file = logger_->TearDownAndGetLogFile();
if (temp_file_ != nullptr) fclose(temp_file_); if (log_file != nullptr) fclose(log_file);
i::FLAG_prof = saved_prof_; i::FLAG_prof = saved_prof_;
i::FLAG_log = saved_log_; i::FLAG_log = saved_log_;
} }
...@@ -203,9 +203,8 @@ class ScopedLoggerInitializer { ...@@ -203,9 +203,8 @@ class ScopedLoggerInitializer {
private: private:
FILE* StopLoggingGetTempFile() { FILE* StopLoggingGetTempFile() {
temp_file_ = logger_->TearDown(); temp_file_ = logger_->TearDownAndGetLogFile();
CHECK(temp_file_); CHECK(temp_file_);
fflush(temp_file_);
rewind(temp_file_); rewind(temp_file_);
return temp_file_; return temp_file_;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment