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/file_util.h"
9 #include "base/strings/string_split.h"
10 #include "base/strings/string_util.h"
11 #include "tools/gn/err.h"
12 #include "tools/gn/filesystem_utils.h"
13 #include "tools/gn/functions.h"
14 #include "tools/gn/input_file.h"
15 #include "tools/gn/parse_tree.h"
16 #include "tools/gn/scheduler.h"
20 const char kWriteFile
[] = "write_file";
21 const char kWriteFile_HelpShort
[] =
22 "write_file: Write a file to disk.";
23 const char kWriteFile_Help
[] =
24 "write_file: Write a file to disk.\n"
26 " write_file(filename, data)\n"
28 " If data is a list, the list will be written one-item-per-line with no\n"
29 " quoting or brackets.\n"
31 " TODO(brettw) we probably need an optional third argument to control\n"
37 " Filename to write. This must be within the output directory.\n"
40 " The list or string to write.\n";
42 Value
RunWriteFile(Scope
* scope
,
43 const FunctionCallNode
* function
,
44 const std::vector
<Value
>& args
,
46 if (args
.size() != 2) {
47 *err
= Err(function
->function(), "Wrong number of arguments to write_file",
48 "I expected two arguments.");
52 // Compute the file name and make sure it's in the output dir.
53 if (!args
[0].VerifyTypeIs(Value::STRING
, err
))
55 const SourceDir
& cur_dir
= scope
->GetSourceDir();
56 SourceFile source_file
= cur_dir
.ResolveRelativeFile(args
[0].string_value());
57 if (!EnsureStringIsInOutputDir(
58 scope
->settings()->build_settings()->build_dir(),
59 source_file
.value(), args
[0], err
))
63 std::ostringstream contents
;
64 if (args
[1].type() == Value::LIST
) {
65 const std::vector
<Value
>& list
= args
[1].list_value();
66 for (size_t i
= 0; i
< list
.size(); i
++)
67 contents
<< list
[i
].ToString(false) << std::endl
;
69 contents
<< args
[1].ToString(false);
72 // Write file, creating the directory if necessary.
73 base::FilePath file_path
=
74 scope
->settings()->build_settings()->GetFullPath(source_file
);
75 const std::string
& contents_string
= contents
.str();
76 if (!base::CreateDirectory(file_path
.DirName())) {
77 *err
= Err(function
->function(), "Unable to create directory.",
78 "I was using \"" + FilePathToUTF8(file_path
.DirName()) + "\".");
81 int int_size
= static_cast<int>(contents_string
.size());
82 if (base::WriteFile(file_path
, contents_string
.c_str(), int_size
)
84 *err
= Err(function
->function(), "Unable to write file.",
85 "I was writing \"" + FilePathToUTF8(file_path
) + "\".");
91 } // namespace functions