Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CONTENT_BROWSER_BROWSER_SHUTDOWN_PROFILE_DUMPER_H_ | 5 #ifndef CONTENT_BROWSER_BROWSER_SHUTDOWN_PROFILE_DUMPER_H_ |
| 6 #define CONTENT_BROWSER_BROWSER_SHUTDOWN_PROFILE_DUMPER_H_ | 6 #define CONTENT_BROWSER_BROWSER_SHUTDOWN_PROFILE_DUMPER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "base/files/file_path.h" | |
| 11 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
| 12 #include "base/memory/ref_counted_memory.h" | 13 #include "base/memory/ref_counted_memory.h" |
| 13 #include "content/common/content_export.h" | 14 #include "content/common/content_export.h" |
| 14 | 15 |
| 15 namespace base { | 16 namespace base { |
| 16 class FilePath; | 17 class FilePath; |
| 17 class WaitableEvent; | 18 class WaitableEvent; |
| 18 } | 19 } |
| 19 | 20 |
| 20 namespace content { | 21 namespace content { |
| 21 | 22 |
| 22 // This class is intended to dump the tracing results of the shutdown process | 23 // This class is intended to dump the tracing results of the shutdown process |
| 23 // to a file before the browser process exits. | 24 // to a file before the browser process exits. |
| 24 // It will save the file either into the command line passed | 25 // It will save the file either into the command line passed |
| 25 // "--trace-shutdown-file=<name>" parameter - or - to "chrometrace.log" in the | 26 // "--trace-shutdown-file=<name>" parameter - or - to "chrometrace.log" in the |
| 26 // current directory. | 27 // current directory. |
| 27 // Use the class with a scoped_ptr to get files written in the destructor. | 28 // Use the class with a scoped_ptr to get files written in the destructor. |
| 28 // Note that we cannot use the asynchronous file writer since the | 29 // Note that we cannot use the asynchronous file writer since the |
| 29 // |SequencedWorkerPool| will get killed in the shutdown process. | 30 // |SequencedWorkerPool| will get killed in the shutdown process. |
| 30 class BrowserShutdownProfileDumper { | 31 class BrowserShutdownProfileDumper { |
| 31 public: | 32 public: |
| 32 BrowserShutdownProfileDumper(); | 33 BrowserShutdownProfileDumper(const base::FilePath& dump_file_name); |
|
sky
2014/06/05 18:09:05
explicit
Alexander Alekseev
2014/06/05 21:12:05
Done.
| |
| 33 | 34 |
| 34 ~BrowserShutdownProfileDumper(); | 35 ~BrowserShutdownProfileDumper(); |
| 35 | 36 |
| 36 private: | 37 private: |
| 37 // Writes all traces which happened to disk. | 38 // Writes all traces which happened to disk. |
| 38 void WriteTracesToDisc(const base::FilePath& file_name); | 39 void WriteTracesToDisc(); |
| 39 | 40 |
| 40 void EndTraceAndFlush(base::WaitableEvent* flush_complete_event); | 41 void EndTraceAndFlush(base::WaitableEvent* flush_complete_event); |
| 41 | 42 |
| 42 // Returns the file name where we should save the trace dump to. | |
| 43 base::FilePath GetFileName(); | |
| 44 | |
| 45 // The callback for the |TraceLog::Flush| function. It saves all traces to | 43 // The callback for the |TraceLog::Flush| function. It saves all traces to |
| 46 // disc. | 44 // disc. |
| 47 void WriteTraceDataCollected( | 45 void WriteTraceDataCollected( |
| 48 base::WaitableEvent* flush_complete_event, | 46 base::WaitableEvent* flush_complete_event, |
| 49 const scoped_refptr<base::RefCountedString>& events_str, | 47 const scoped_refptr<base::RefCountedString>& events_str, |
| 50 bool has_more_events); | 48 bool has_more_events); |
| 51 | 49 |
| 52 // Returns true if the dump file is valid. | 50 // Returns true if the dump file is valid. |
| 53 bool IsFileValid(); | 51 bool IsFileValid(); |
| 54 | 52 |
| 55 // Writes a string to the dump file. | 53 // Writes a string to the dump file. |
| 56 void WriteString(const std::string& string); | 54 void WriteString(const std::string& string); |
| 57 | 55 |
| 58 // Write a buffer to the dump file. | 56 // Write a buffer to the dump file. |
| 59 void WriteChars(const char* chars, size_t size); | 57 void WriteChars(const char* chars, size_t size); |
| 60 | 58 |
| 61 // Closes the dump file. | 59 // Closes the dump file. |
| 62 void CloseFile(); | 60 void CloseFile(); |
| 63 | 61 |
| 62 // The name of the dump file. | |
| 63 base::FilePath dump_file_name_; | |
| 64 | |
| 64 // The number of blocks we have already written. | 65 // The number of blocks we have already written. |
| 65 int blocks_; | 66 int blocks_; |
| 66 // For dumping the content to disc. | 67 // For dumping the content to disc. |
| 67 FILE* dump_file_; | 68 FILE* dump_file_; |
| 68 | 69 |
| 69 DISALLOW_COPY_AND_ASSIGN(BrowserShutdownProfileDumper); | 70 DISALLOW_COPY_AND_ASSIGN(BrowserShutdownProfileDumper); |
| 70 }; | 71 }; |
| 71 | 72 |
| 72 } // namespace content | 73 } // namespace content |
| 73 | 74 |
| 74 #endif // CONTENT_BROWSER_BROWSER_SHUTDOWN_PROFILE_DUMPER_H_ | 75 #endif // CONTENT_BROWSER_BROWSER_SHUTDOWN_PROFILE_DUMPER_H_ |
| OLD | NEW |