OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 TOOLS_GN_PATH_OUTPUT_H_ | 5 #ifndef TOOLS_GN_PATH_OUTPUT_H_ |
6 #define TOOLS_GN_PATH_OUTPUT_H_ | 6 #define TOOLS_GN_PATH_OUTPUT_H_ |
7 | 7 |
8 #include <iosfwd> | 8 #include <iosfwd> |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 bool inhibit_quoting() const { return options_.inhibit_quoting; } | 45 bool inhibit_quoting() const { return options_.inhibit_quoting; } |
46 void set_inhibit_quoting(bool iq) { options_.inhibit_quoting = iq; } | 46 void set_inhibit_quoting(bool iq) { options_.inhibit_quoting = iq; } |
47 void set_escape_platform(EscapingPlatform p) { options_.platform = p; } | 47 void set_escape_platform(EscapingPlatform p) { options_.platform = p; } |
48 | 48 |
49 void WriteFile(std::ostream& out, const SourceFile& file) const; | 49 void WriteFile(std::ostream& out, const SourceFile& file) const; |
50 void WriteFile(std::ostream& out, const OutputFile& file) const; | 50 void WriteFile(std::ostream& out, const OutputFile& file) const; |
51 void WriteFile(std::ostream& out, const base::FilePath& file) const; | 51 void WriteFile(std::ostream& out, const base::FilePath& file) const; |
52 void WriteDir(std::ostream& out, | 52 void WriteDir(std::ostream& out, |
53 const SourceDir& dir, | 53 const SourceDir& dir, |
54 DirSlashEnding slash_ending) const; | 54 DirSlashEnding slash_ending) const; |
| 55 void WriteDir(std::ostream& out, |
| 56 const OutputFile& file, |
| 57 DirSlashEnding slash_ending) const; |
55 | 58 |
56 // Backend for WriteFile and WriteDir. This appends the given file or | 59 // Backend for WriteFile and WriteDir. This appends the given file or |
57 // directory string to the file. | 60 // directory string to the file. |
58 void WritePathStr(std::ostream& out, const base::StringPiece& str) const; | 61 void WritePathStr(std::ostream& out, const base::StringPiece& str) const; |
59 | 62 |
60 private: | 63 private: |
61 // Takes the given string and writes it out, appending to the inverse | 64 // Takes the given string and writes it out, appending to the inverse |
62 // current dir. This assumes leading slashes have been trimmed. | 65 // current dir. This assumes leading slashes have been trimmed. |
63 void WriteSourceRelativeString(std::ostream& out, | 66 void WriteSourceRelativeString(std::ostream& out, |
64 const base::StringPiece& str) const; | 67 const base::StringPiece& str) const; |
65 | 68 |
66 SourceDir current_dir_; | 69 SourceDir current_dir_; |
67 | 70 |
68 // Uses system slashes if convert_slashes_to_system_. | 71 // Uses system slashes if convert_slashes_to_system_. |
69 std::string inverse_current_dir_; | 72 std::string inverse_current_dir_; |
70 | 73 |
71 // Since the inverse_current_dir_ depends on some of these, we don't expose | 74 // Since the inverse_current_dir_ depends on some of these, we don't expose |
72 // this directly to modification. | 75 // this directly to modification. |
73 EscapeOptions options_; | 76 EscapeOptions options_; |
74 }; | 77 }; |
75 | 78 |
76 #endif // TOOLS_GN_PATH_OUTPUT_H_ | 79 #endif // TOOLS_GN_PATH_OUTPUT_H_ |
OLD | NEW |