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.
8 #include "base/files/file_util.h"
9 #include "base/strings/string_split.h"
10 #include "base/strings/string_util.h"
11 #include "base/strings/utf_string_conversions.h"
12 #include "tools/gn/err.h"
13 #include "tools/gn/filesystem_utils.h"
14 #include "tools/gn/functions.h"
15 #include "tools/gn/input_file.h"
16 #include "tools/gn/parse_tree.h"
17 #include "tools/gn/scheduler.h"
23 // On Windows, provide a custom implementation of base::WriteFile. Sometimes
24 // the base version fails, especially on the bots. The guess is that Windows
25 // Defender or other antivirus programs still have the file open (after
26 // checking for the read) when the write happens immediately after. This
27 // version opens with FILE_SHARE_READ (normally not what you want when
28 // replacing the entire contents of the file) which lets us continue even if
29 // another program has the file open for reading. See http://crbug.com/468437
31 int DoWriteFile(const base::FilePath
& filename
, const char* data
, int size
) {
32 base::win::ScopedHandle
file(::CreateFile(
33 filename
.value().c_str(),
40 if (!file
.IsValid()) {
41 PLOG(ERROR
) << "CreateFile failed for path "
42 << base::UTF16ToUTF8(filename
.value());
47 BOOL result
= ::WriteFile(file
.Get(), data
, size
, &written
, NULL
);
48 if (result
&& static_cast<int>(written
) == size
)
53 PLOG(ERROR
) << "writing file " << base::UTF16ToUTF8(filename
.value())
56 // Didn't write all the bytes.
57 LOG(ERROR
) << "wrote" << written
<< " bytes to "
58 << base::UTF16ToUTF8(filename
.value()) << " expected " << size
;
63 int DoWriteFile(const base::FilePath
& filename
, const char* data
, int size
) {
64 return base::WriteFile(filename
, data
, size
);
70 const char kWriteFile
[] = "write_file";
71 const char kWriteFile_HelpShort
[] =
72 "write_file: Write a file to disk.";
73 const char kWriteFile_Help
[] =
74 "write_file: Write a file to disk.\n"
76 " write_file(filename, data)\n"
78 " If data is a list, the list will be written one-item-per-line with no\n"
79 " quoting or brackets.\n"
81 " If the file exists and the contents are identical to that being\n"
82 " written, the file will not be updated. This will prevent unnecessary\n"
83 " rebuilds of targets that depend on this file.\n"
85 " TODO(brettw) we probably need an optional third argument to control\n"
91 " Filename to write. This must be within the output directory.\n"
94 " The list or string to write.\n";
96 Value
RunWriteFile(Scope
* scope
,
97 const FunctionCallNode
* function
,
98 const std::vector
<Value
>& args
,
100 if (args
.size() != 2) {
101 *err
= Err(function
->function(), "Wrong number of arguments to write_file",
102 "I expected two arguments.");
106 // Compute the file name and make sure it's in the output dir.
107 const SourceDir
& cur_dir
= scope
->GetSourceDir();
108 SourceFile source_file
= cur_dir
.ResolveRelativeFile(args
[0], err
,
109 scope
->settings()->build_settings()->root_path_utf8());
110 if (err
->has_error())
112 if (!EnsureStringIsInOutputDir(
113 scope
->settings()->build_settings()->build_dir(),
114 source_file
.value(), args
[0].origin(), err
))
116 g_scheduler
->AddWrittenFile(source_file
); // Track that we wrote this file.
119 std::ostringstream contents
;
120 if (args
[1].type() == Value::LIST
) {
121 const std::vector
<Value
>& list
= args
[1].list_value();
122 for (const auto& cur
: list
)
123 contents
<< cur
.ToString(false) << std::endl
;
125 contents
<< args
[1].ToString(false);
127 const std::string
& new_contents
= contents
.str();
128 base::FilePath file_path
=
129 scope
->settings()->build_settings()->GetFullPath(source_file
);
131 // Make sure we're not replacing the same contents.
132 std::string existing_contents
;
133 if (base::ReadFileToString(file_path
, &existing_contents
) &&
134 existing_contents
== new_contents
)
135 return Value(); // Nothing to do.
137 // Write file, creating the directory if necessary.
138 if (!base::CreateDirectory(file_path
.DirName())) {
139 *err
= Err(function
->function(), "Unable to create directory.",
140 "I was using \"" + FilePathToUTF8(file_path
.DirName()) + "\".");
144 int int_size
= static_cast<int>(new_contents
.size());
145 if (DoWriteFile(file_path
, new_contents
.c_str(), int_size
)
147 *err
= Err(function
->function(), "Unable to write file.",
148 "I was writing \"" + FilePathToUTF8(file_path
) + "\".");
154 } // namespace functions