2009-08-03 05:12:16 +00:00
|
|
|
//===- FileUpdate.cpp - Conditionally update a file -----------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// FileUpdate is a utility for conditionally updating a file from its input
|
|
|
|
// based on whether the input differs from the output. It is used to avoid
|
|
|
|
// unnecessary modifications in a build system.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Support/CommandLine.h"
|
2014-04-29 23:26:49 +00:00
|
|
|
#include "llvm/Support/FileSystem.h"
|
2009-08-03 05:12:16 +00:00
|
|
|
#include "llvm/Support/MemoryBuffer.h"
|
|
|
|
#include "llvm/Support/PrettyStackTrace.h"
|
2010-11-29 18:33:08 +00:00
|
|
|
#include "llvm/Support/Signals.h"
|
2012-12-04 10:37:14 +00:00
|
|
|
#include "llvm/Support/ToolOutputFile.h"
|
2010-12-09 17:48:55 +00:00
|
|
|
#include "llvm/Support/system_error.h"
|
2009-08-03 05:12:16 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
static cl::opt<bool>
|
|
|
|
Quiet("quiet", cl::desc("Don't print unnecessary status information"),
|
|
|
|
cl::init(false));
|
|
|
|
|
|
|
|
static cl::opt<std::string>
|
|
|
|
InputFilename("input-file", cl::desc("Input file (defaults to stdin)"),
|
|
|
|
cl::init("-"), cl::value_desc("filename"));
|
|
|
|
|
|
|
|
static cl::opt<std::string>
|
|
|
|
OutputFilename(cl::Positional, cl::desc("<output-file>"), cl::Required);
|
|
|
|
|
|
|
|
int main(int argc, char **argv) {
|
|
|
|
sys::PrintStackTraceOnErrorSignal();
|
|
|
|
PrettyStackTraceProgram X(argc, argv);
|
|
|
|
cl::ParseCommandLineOptions(argc, argv);
|
|
|
|
|
2010-08-20 16:56:11 +00:00
|
|
|
if (OutputFilename == "-") {
|
|
|
|
errs() << argv[0] << ": error: Can't update standard output\n";
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2009-08-03 05:12:16 +00:00
|
|
|
// Get the input data.
|
2014-03-06 05:51:42 +00:00
|
|
|
std::unique_ptr<MemoryBuffer> In;
|
2013-06-25 05:28:34 +00:00
|
|
|
if (error_code ec = MemoryBuffer::getFileOrSTDIN(InputFilename, In)) {
|
2009-08-03 05:12:16 +00:00
|
|
|
errs() << argv[0] << ": error: Unable to get input '"
|
2010-12-09 17:48:55 +00:00
|
|
|
<< InputFilename << "': " << ec.message() << '\n';
|
2009-08-03 05:12:16 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the output data.
|
2014-03-06 05:51:42 +00:00
|
|
|
std::unique_ptr<MemoryBuffer> Out;
|
2010-12-16 03:29:14 +00:00
|
|
|
MemoryBuffer::getFile(OutputFilename.c_str(), Out);
|
2009-08-03 05:12:16 +00:00
|
|
|
|
|
|
|
// If the output exists and the contents match, we are done.
|
|
|
|
if (Out && In->getBufferSize() == Out->getBufferSize() &&
|
|
|
|
memcmp(In->getBufferStart(), Out->getBufferStart(),
|
|
|
|
Out->getBufferSize()) == 0) {
|
|
|
|
if (!Quiet)
|
2010-08-20 16:54:27 +00:00
|
|
|
errs() << argv[0] << ": Not updating '" << OutputFilename
|
2009-08-03 05:12:16 +00:00
|
|
|
<< "', contents match input.\n";
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise, overwrite the output.
|
|
|
|
if (!Quiet)
|
2010-08-20 16:54:27 +00:00
|
|
|
errs() << argv[0] << ": Updating '" << OutputFilename
|
2009-08-03 05:12:16 +00:00
|
|
|
<< "', contents changed.\n";
|
2010-12-09 17:48:55 +00:00
|
|
|
std::string ErrorStr;
|
2010-08-20 16:54:27 +00:00
|
|
|
tool_output_file OutStream(OutputFilename.c_str(), ErrorStr,
|
2014-02-24 18:20:12 +00:00
|
|
|
sys::fs::F_None);
|
2009-08-03 05:12:16 +00:00
|
|
|
if (!ErrorStr.empty()) {
|
|
|
|
errs() << argv[0] << ": Unable to write output '"
|
|
|
|
<< OutputFilename << "': " << ErrorStr << '\n';
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2010-09-01 14:20:41 +00:00
|
|
|
OutStream.os().write(In->getBufferStart(), In->getBufferSize());
|
2009-08-03 05:12:16 +00:00
|
|
|
|
2010-08-20 16:54:27 +00:00
|
|
|
// Declare success.
|
|
|
|
OutStream.keep();
|
2009-08-03 05:12:16 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|