• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
3 // found in the LICENSE file.
4 
5 #ifndef TOOLS_GN_PATH_OUTPUT_H_
6 #define TOOLS_GN_PATH_OUTPUT_H_
7 
8 #include <iosfwd>
9 #include <string>
10 #include <string_view>
11 
12 #include "gn/escape.h"
13 #include "gn/source_dir.h"
14 #include "gn/unique_vector.h"
15 
16 class OutputFile;
17 class SourceFile;
18 
19 namespace base {
20 class FilePath;
21 }
22 
23 // Writes file names to streams assuming a certain input directory and
24 // escaping rules. This gives us a central place for managing this state.
25 class PathOutput {
26  public:
27   // Controls whether writing directory names include the trailing slash.
28   // Often we don't want the trailing slash when writing out to a command line,
29   // especially on Windows where it's a backslash and might be interpreted as
30   // escaping the thing following it.
31   enum DirSlashEnding {
32     DIR_INCLUDE_LAST_SLASH,
33     DIR_NO_LAST_SLASH,
34   };
35 
36   PathOutput(const SourceDir& current_dir,
37              std::string_view source_root,
38              EscapingMode escaping);
39   ~PathOutput();
40 
41   // Read-only since inverse_current_dir_ is computed depending on this.
escaping_mode()42   EscapingMode escaping_mode() const { return options_.mode; }
43 
current_dir()44   const SourceDir& current_dir() const { return current_dir_; }
45 
46   // Getter/setters for flags inside the escape options.
inhibit_quoting()47   bool inhibit_quoting() const { return options_.inhibit_quoting; }
set_inhibit_quoting(bool iq)48   void set_inhibit_quoting(bool iq) { options_.inhibit_quoting = iq; }
set_escape_platform(EscapingPlatform p)49   void set_escape_platform(EscapingPlatform p) { options_.platform = p; }
50 
51   void WriteFile(std::ostream& out, const SourceFile& file) const;
52   void WriteFile(std::ostream& out, const OutputFile& file) const;
53   void WriteFile(std::ostream& out, const base::FilePath& file) const;
54 
55   // Writes the given SourceFiles/OutputFiles with spaces separating them. This
56   // will also write an initial space before the first item.
57   void WriteFiles(std::ostream& out, const std::vector<SourceFile>& file) const;
58   void WriteFiles(std::ostream& out,
59                   const std::vector<OutputFile>& files) const;
60   void WriteFiles(std::ostream& out,
61                   const UniqueVector<OutputFile>& files) const;
62 
63   // This variant assumes the dir ends in a trailing slash or is empty.
64   void WriteDir(std::ostream& out,
65                 const SourceDir& dir,
66                 DirSlashEnding slash_ending) const;
67 
68   void WriteDir(std::ostream& out,
69                 const OutputFile& file,
70                 DirSlashEnding slash_ending) const;
71 
72   // Backend for WriteFile and WriteDir. This appends the given file or
73   // directory string to the file.
74   void WritePathStr(std::ostream& out, std::string_view str) const;
75 
76  private:
77   // Takes the given string and writes it out, appending to the inverse
78   // current dir. This assumes leading slashes have been trimmed.
79   void WriteSourceRelativeString(std::ostream& out, std::string_view str) const;
80 
81   SourceDir current_dir_;
82 
83   // Uses system slashes if convert_slashes_to_system_.
84   std::string inverse_current_dir_;
85 
86   // Since the inverse_current_dir_ depends on some of these, we don't expose
87   // this directly to modification.
88   EscapeOptions options_;
89 };
90 
91 #endif  // TOOLS_GN_PATH_OUTPUT_H_
92