blob: 3ea1e4f306ee3ca2bfdfa2153399d54a1a93b124 [file] [log] [blame]
Daniel Dunbar05084712009-08-03 05:12:16 +00001//===- FileUpdate.cpp - Conditionally update a file -----------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// FileUpdate is a utility for conditionally updating a file from its input
11// based on whether the input differs from the output. It is used to avoid
12// unnecessary modifications in a build system.
13//
14//===----------------------------------------------------------------------===//
15
16#include "llvm/Support/CommandLine.h"
17#include "llvm/Support/MemoryBuffer.h"
Michael J. Spencer3ff95632010-12-16 03:29:14 +000018#include "llvm/ADT/OwningPtr.h"
Daniel Dunbar05084712009-08-03 05:12:16 +000019#include "llvm/Support/PrettyStackTrace.h"
Dan Gohmane4f1a9b2010-10-07 20:32:40 +000020#include "llvm/Support/ToolOutputFile.h"
Michael J. Spencer5fae2f12010-11-29 18:33:08 +000021#include "llvm/Support/Signals.h"
Michael J. Spencer7a8aab32010-12-09 17:48:55 +000022#include "llvm/Support/system_error.h"
Daniel Dunbar05084712009-08-03 05:12:16 +000023using namespace llvm;
24
25static cl::opt<bool>
26Quiet("quiet", cl::desc("Don't print unnecessary status information"),
27 cl::init(false));
28
29static cl::opt<std::string>
30InputFilename("input-file", cl::desc("Input file (defaults to stdin)"),
31 cl::init("-"), cl::value_desc("filename"));
32
33static cl::opt<std::string>
34OutputFilename(cl::Positional, cl::desc("<output-file>"), cl::Required);
35
36int main(int argc, char **argv) {
37 sys::PrintStackTraceOnErrorSignal();
38 PrettyStackTraceProgram X(argc, argv);
39 cl::ParseCommandLineOptions(argc, argv);
40
Dan Gohmane7b67d02010-08-20 16:56:11 +000041 if (OutputFilename == "-") {
42 errs() << argv[0] << ": error: Can't update standard output\n";
43 return 1;
44 }
45
Daniel Dunbar05084712009-08-03 05:12:16 +000046 // Get the input data.
Michael J. Spencer3ff95632010-12-16 03:29:14 +000047 OwningPtr<MemoryBuffer> In;
48 if (error_code ec = MemoryBuffer::getFileOrSTDIN(InputFilename.c_str(), In)) {
Daniel Dunbar05084712009-08-03 05:12:16 +000049 errs() << argv[0] << ": error: Unable to get input '"
Michael J. Spencer7a8aab32010-12-09 17:48:55 +000050 << InputFilename << "': " << ec.message() << '\n';
Daniel Dunbar05084712009-08-03 05:12:16 +000051 return 1;
52 }
53
54 // Get the output data.
Michael J. Spencer3ff95632010-12-16 03:29:14 +000055 OwningPtr<MemoryBuffer> Out;
56 MemoryBuffer::getFile(OutputFilename.c_str(), Out);
Daniel Dunbar05084712009-08-03 05:12:16 +000057
58 // If the output exists and the contents match, we are done.
59 if (Out && In->getBufferSize() == Out->getBufferSize() &&
60 memcmp(In->getBufferStart(), Out->getBufferStart(),
61 Out->getBufferSize()) == 0) {
62 if (!Quiet)
Dan Gohman7a4575e2010-08-20 16:54:27 +000063 errs() << argv[0] << ": Not updating '" << OutputFilename
Daniel Dunbar05084712009-08-03 05:12:16 +000064 << "', contents match input.\n";
65 return 0;
66 }
67
Daniel Dunbar05084712009-08-03 05:12:16 +000068 // Otherwise, overwrite the output.
69 if (!Quiet)
Dan Gohman7a4575e2010-08-20 16:54:27 +000070 errs() << argv[0] << ": Updating '" << OutputFilename
Daniel Dunbar05084712009-08-03 05:12:16 +000071 << "', contents changed.\n";
Michael J. Spencer7a8aab32010-12-09 17:48:55 +000072 std::string ErrorStr;
Dan Gohman7a4575e2010-08-20 16:54:27 +000073 tool_output_file OutStream(OutputFilename.c_str(), ErrorStr,
74 raw_fd_ostream::F_Binary);
Daniel Dunbar05084712009-08-03 05:12:16 +000075 if (!ErrorStr.empty()) {
76 errs() << argv[0] << ": Unable to write output '"
77 << OutputFilename << "': " << ErrorStr << '\n';
78 return 1;
79 }
80
Dan Gohmand4c45432010-09-01 14:20:41 +000081 OutStream.os().write(In->getBufferStart(), In->getBufferSize());
Daniel Dunbar05084712009-08-03 05:12:16 +000082
Dan Gohman7a4575e2010-08-20 16:54:27 +000083 // Declare success.
84 OutStream.keep();
Daniel Dunbar05084712009-08-03 05:12:16 +000085
86 return 0;
87}