2009-08-03 07:12:16 +02: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"
|
|
|
|
#include "llvm/Support/MemoryBuffer.h"
|
2010-12-16 04:29:14 +01:00
|
|
|
#include "llvm/ADT/OwningPtr.h"
|
2009-08-03 07:12:16 +02:00
|
|
|
#include "llvm/Support/PrettyStackTrace.h"
|
2010-10-07 22:32:40 +02:00
|
|
|
#include "llvm/Support/ToolOutputFile.h"
|
2010-11-29 19:33:08 +01:00
|
|
|
#include "llvm/Support/Signals.h"
|
2010-12-09 18:48:55 +01:00
|
|
|
#include "llvm/Support/system_error.h"
|
2009-08-03 07:12:16 +02: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 18:56:11 +02:00
|
|
|
if (OutputFilename == "-") {
|
|
|
|
errs() << argv[0] << ": error: Can't update standard output\n";
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2009-08-03 07:12:16 +02:00
|
|
|
// Get the input data.
|
2010-12-16 04:29:14 +01:00
|
|
|
OwningPtr<MemoryBuffer> In;
|
|
|
|
if (error_code ec = MemoryBuffer::getFileOrSTDIN(InputFilename.c_str(), In)) {
|
2009-08-03 07:12:16 +02:00
|
|
|
errs() << argv[0] << ": error: Unable to get input '"
|
2010-12-09 18:48:55 +01:00
|
|
|
<< InputFilename << "': " << ec.message() << '\n';
|
2009-08-03 07:12:16 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the output data.
|
2010-12-16 04:29:14 +01:00
|
|
|
OwningPtr<MemoryBuffer> Out;
|
|
|
|
MemoryBuffer::getFile(OutputFilename.c_str(), Out);
|
2009-08-03 07:12:16 +02: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 18:54:27 +02:00
|
|
|
errs() << argv[0] << ": Not updating '" << OutputFilename
|
2009-08-03 07:12:16 +02:00
|
|
|
<< "', contents match input.\n";
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise, overwrite the output.
|
|
|
|
if (!Quiet)
|
2010-08-20 18:54:27 +02:00
|
|
|
errs() << argv[0] << ": Updating '" << OutputFilename
|
2009-08-03 07:12:16 +02:00
|
|
|
<< "', contents changed.\n";
|
2010-12-09 18:48:55 +01:00
|
|
|
std::string ErrorStr;
|
2010-08-20 18:54:27 +02:00
|
|
|
tool_output_file OutStream(OutputFilename.c_str(), ErrorStr,
|
|
|
|
raw_fd_ostream::F_Binary);
|
2009-08-03 07:12:16 +02:00
|
|
|
if (!ErrorStr.empty()) {
|
|
|
|
errs() << argv[0] << ": Unable to write output '"
|
|
|
|
<< OutputFilename << "': " << ErrorStr << '\n';
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2010-09-01 16:20:41 +02:00
|
|
|
OutStream.os().write(In->getBufferStart(), In->getBufferSize());
|
2009-08-03 07:12:16 +02:00
|
|
|
|
2010-08-20 18:54:27 +02:00
|
|
|
// Declare success.
|
|
|
|
OutStream.keep();
|
2009-08-03 07:12:16 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|