15fce8c4fSNick Kledzik //===- FileOutputBuffer.cpp - File Output Buffer ----------------*- C++ -*-===//
25fce8c4fSNick Kledzik //
35fce8c4fSNick Kledzik //                     The LLVM Compiler Infrastructure
45fce8c4fSNick Kledzik //
55fce8c4fSNick Kledzik // This file is distributed under the University of Illinois Open Source
65fce8c4fSNick Kledzik // License. See LICENSE.TXT for details.
75fce8c4fSNick Kledzik //
85fce8c4fSNick Kledzik //===----------------------------------------------------------------------===//
95fce8c4fSNick Kledzik //
105fce8c4fSNick Kledzik // Utility for creating a in-memory buffer that will be written to a file.
115fce8c4fSNick Kledzik //
125fce8c4fSNick Kledzik //===----------------------------------------------------------------------===//
135fce8c4fSNick Kledzik 
14d9903888SChandler Carruth #include "llvm/Support/FileOutputBuffer.h"
1516132e6fSBenjamin Kramer #include "llvm/ADT/STLExtras.h"
1616132e6fSBenjamin Kramer #include "llvm/ADT/SmallString.h"
1716132e6fSBenjamin Kramer #include "llvm/Support/Errc.h"
18a16fe65bSRui Ueyama #include "llvm/Support/Memory.h"
19d4b24edaSRafael Espindola #include "llvm/Support/Path.h"
20a6e9c3e4SRafael Espindola #include <system_error>
215fce8c4fSNick Kledzik 
227eb1f185SRafael Espindola #if !defined(_MSC_VER) && !defined(__MINGW32__)
237eb1f185SRafael Espindola #include <unistd.h>
247eb1f185SRafael Espindola #else
257eb1f185SRafael Espindola #include <io.h>
267eb1f185SRafael Espindola #endif
277eb1f185SRafael Espindola 
28a16fe65bSRui Ueyama using namespace llvm;
29a16fe65bSRui Ueyama using namespace llvm::sys;
305fce8c4fSNick Kledzik 
3151ebcaafSBenjamin Kramer namespace {
32a16fe65bSRui Ueyama // A FileOutputBuffer which creates a temporary file in the same directory
33a16fe65bSRui Ueyama // as the final output file. The final output file is atomically replaced
34a16fe65bSRui Ueyama // with the temporary file on commit().
35a16fe65bSRui Ueyama class OnDiskBuffer : public FileOutputBuffer {
36a16fe65bSRui Ueyama public:
3758fe67a9SRafael Espindola   OnDiskBuffer(StringRef Path, fs::TempFile Temp,
38a16fe65bSRui Ueyama                std::unique_ptr<fs::mapped_file_region> Buf)
3958fe67a9SRafael Espindola       : FileOutputBuffer(Path), Buffer(std::move(Buf)), Temp(std::move(Temp)) {}
405fce8c4fSNick Kledzik 
41a16fe65bSRui Ueyama   uint8_t *getBufferStart() const override { return (uint8_t *)Buffer->data(); }
42a16fe65bSRui Ueyama 
43a16fe65bSRui Ueyama   uint8_t *getBufferEnd() const override {
44a16fe65bSRui Ueyama     return (uint8_t *)Buffer->data() + Buffer->size();
45a16fe65bSRui Ueyama   }
46a16fe65bSRui Ueyama 
47a16fe65bSRui Ueyama   size_t getBufferSize() const override { return Buffer->size(); }
48a16fe65bSRui Ueyama 
490d7a38a8SRafael Espindola   Error commit() override {
50a16fe65bSRui Ueyama     // Unmap buffer, letting OS flush dirty pages to file on disk.
51a16fe65bSRui Ueyama     Buffer.reset();
52a16fe65bSRui Ueyama 
53a16fe65bSRui Ueyama     // Atomically replace the existing file with the new one.
5458fe67a9SRafael Espindola     return Temp.keep(FinalPath);
55a16fe65bSRui Ueyama   }
56a16fe65bSRui Ueyama 
57a16fe65bSRui Ueyama   ~OnDiskBuffer() override {
581a4398a1SReid Kleckner     // Close the mapping before deleting the temp file, so that the removal
591a4398a1SReid Kleckner     // succeeds.
60a16fe65bSRui Ueyama     Buffer.reset();
6158fe67a9SRafael Espindola     consumeError(Temp.discard());
625fce8c4fSNick Kledzik   }
635fce8c4fSNick Kledzik 
64a16fe65bSRui Ueyama private:
65a16fe65bSRui Ueyama   std::unique_ptr<fs::mapped_file_region> Buffer;
6658fe67a9SRafael Espindola   fs::TempFile Temp;
67a16fe65bSRui Ueyama };
68a16fe65bSRui Ueyama 
69a16fe65bSRui Ueyama // A FileOutputBuffer which keeps data in memory and writes to the final
70a16fe65bSRui Ueyama // output file on commit(). This is used only when we cannot use OnDiskBuffer.
71a16fe65bSRui Ueyama class InMemoryBuffer : public FileOutputBuffer {
72a16fe65bSRui Ueyama public:
73a16fe65bSRui Ueyama   InMemoryBuffer(StringRef Path, MemoryBlock Buf, unsigned Mode)
74a16fe65bSRui Ueyama       : FileOutputBuffer(Path), Buffer(Buf), Mode(Mode) {}
75a16fe65bSRui Ueyama 
76a16fe65bSRui Ueyama   uint8_t *getBufferStart() const override { return (uint8_t *)Buffer.base(); }
77a16fe65bSRui Ueyama 
78a16fe65bSRui Ueyama   uint8_t *getBufferEnd() const override {
79a16fe65bSRui Ueyama     return (uint8_t *)Buffer.base() + Buffer.size();
80a16fe65bSRui Ueyama   }
81a16fe65bSRui Ueyama 
82a16fe65bSRui Ueyama   size_t getBufferSize() const override { return Buffer.size(); }
83a16fe65bSRui Ueyama 
840d7a38a8SRafael Espindola   Error commit() override {
851f67a3cbSZachary Turner     using namespace sys::fs;
86d4b24edaSRafael Espindola     int FD;
87a16fe65bSRui Ueyama     std::error_code EC;
88154a72ddSZachary Turner     if (auto EC =
89154a72ddSZachary Turner             openFileForWrite(FinalPath, FD, CD_CreateAlways, OF_None, Mode))
900d7a38a8SRafael Espindola       return errorCodeToError(EC);
91a16fe65bSRui Ueyama     raw_fd_ostream OS(FD, /*shouldClose=*/true, /*unbuffered=*/true);
92a16fe65bSRui Ueyama     OS << StringRef((const char *)Buffer.base(), Buffer.size());
930d7a38a8SRafael Espindola     return Error::success();
94d4b24edaSRafael Espindola   }
95d4b24edaSRafael Espindola 
96a16fe65bSRui Ueyama private:
97a16fe65bSRui Ueyama   OwningMemoryBlock Buffer;
98a16fe65bSRui Ueyama   unsigned Mode;
99a16fe65bSRui Ueyama };
10051ebcaafSBenjamin Kramer } // namespace
101a16fe65bSRui Ueyama 
102f6490e04SRui Ueyama static Expected<std::unique_ptr<InMemoryBuffer>>
103f6490e04SRui Ueyama createInMemoryBuffer(StringRef Path, size_t Size, unsigned Mode) {
104f6490e04SRui Ueyama   std::error_code EC;
105f6490e04SRui Ueyama   MemoryBlock MB = Memory::allocateMappedMemory(
106f6490e04SRui Ueyama       Size, nullptr, sys::Memory::MF_READ | sys::Memory::MF_WRITE, EC);
107f6490e04SRui Ueyama   if (EC)
108f6490e04SRui Ueyama     return errorCodeToError(EC);
109f6490e04SRui Ueyama   return llvm::make_unique<InMemoryBuffer>(Path, MB, Mode);
110f6490e04SRui Ueyama }
111f6490e04SRui Ueyama 
112f6490e04SRui Ueyama static Expected<std::unique_ptr<OnDiskBuffer>>
113*1adca7c4SZachary Turner createOnDiskBuffer(StringRef Path, size_t Size, bool InitExisting,
114*1adca7c4SZachary Turner                    unsigned Mode) {
11558fe67a9SRafael Espindola   Expected<fs::TempFile> FileOrErr =
11658fe67a9SRafael Espindola       fs::TempFile::create(Path + ".tmp%%%%%%%", Mode);
11758fe67a9SRafael Espindola   if (!FileOrErr)
11858fe67a9SRafael Espindola     return FileOrErr.takeError();
11958fe67a9SRafael Espindola   fs::TempFile File = std::move(*FileOrErr);
1207dbb5778SRafael Espindola 
121*1adca7c4SZachary Turner   if (InitExisting) {
122*1adca7c4SZachary Turner     if (auto EC = sys::fs::copy_file(Path, File.FD))
123*1adca7c4SZachary Turner       return errorCodeToError(EC);
124*1adca7c4SZachary Turner   } else {
125712e8d29SNico Weber #ifndef _WIN32
126da9bc2e5SRui Ueyama     // On Windows, CreateFileMapping (the mmap function on Windows)
127da9bc2e5SRui Ueyama     // automatically extends the underlying file. We don't need to
128da9bc2e5SRui Ueyama     // extend the file beforehand. _chsize (ftruncate on Windows) is
129da9bc2e5SRui Ueyama     // pretty slow just like it writes specified amount of bytes,
130a16fe65bSRui Ueyama     // so we should avoid calling that function.
13158fe67a9SRafael Espindola     if (auto EC = fs::resize_file(File.FD, Size)) {
13258fe67a9SRafael Espindola       consumeError(File.discard());
133e0df357dSRafael Espindola       return errorCodeToError(EC);
13458fe67a9SRafael Espindola     }
135da9bc2e5SRui Ueyama #endif
136*1adca7c4SZachary Turner   }
137c69f13bfSRafael Espindola 
138a16fe65bSRui Ueyama   // Mmap it.
139a16fe65bSRui Ueyama   std::error_code EC;
140a16fe65bSRui Ueyama   auto MappedFile = llvm::make_unique<fs::mapped_file_region>(
14158fe67a9SRafael Espindola       File.FD, fs::mapped_file_region::readwrite, Size, 0, EC);
14258fe67a9SRafael Espindola   if (EC) {
14358fe67a9SRafael Espindola     consumeError(File.discard());
144e0df357dSRafael Espindola     return errorCodeToError(EC);
14558fe67a9SRafael Espindola   }
14658fe67a9SRafael Espindola   return llvm::make_unique<OnDiskBuffer>(Path, std::move(File),
14758fe67a9SRafael Espindola                                          std::move(MappedFile));
1485fce8c4fSNick Kledzik }
1495fce8c4fSNick Kledzik 
150a16fe65bSRui Ueyama // Create an instance of FileOutputBuffer.
151e0df357dSRafael Espindola Expected<std::unique_ptr<FileOutputBuffer>>
152a16fe65bSRui Ueyama FileOutputBuffer::create(StringRef Path, size_t Size, unsigned Flags) {
153a16fe65bSRui Ueyama   unsigned Mode = fs::all_read | fs::all_write;
154a16fe65bSRui Ueyama   if (Flags & F_executable)
155a16fe65bSRui Ueyama     Mode |= fs::all_exe;
1565fce8c4fSNick Kledzik 
157a16fe65bSRui Ueyama   fs::file_status Stat;
158a16fe65bSRui Ueyama   fs::status(Path, Stat);
159d4b24edaSRafael Espindola 
160*1adca7c4SZachary Turner   if ((Flags & F_modify) && Size == size_t(-1)) {
161*1adca7c4SZachary Turner     if (Stat.type() == fs::file_type::regular_file)
162*1adca7c4SZachary Turner       Size = Stat.getSize();
163*1adca7c4SZachary Turner     else if (Stat.type() == fs::file_type::file_not_found)
164*1adca7c4SZachary Turner       return errorCodeToError(errc::no_such_file_or_directory);
165*1adca7c4SZachary Turner     else
166*1adca7c4SZachary Turner       return errorCodeToError(errc::invalid_argument);
167*1adca7c4SZachary Turner   }
168*1adca7c4SZachary Turner 
169a16fe65bSRui Ueyama   // Usually, we want to create OnDiskBuffer to create a temporary file in
170a16fe65bSRui Ueyama   // the same directory as the destination file and atomically replaces it
171a16fe65bSRui Ueyama   // by rename(2).
172a16fe65bSRui Ueyama   //
173a16fe65bSRui Ueyama   // However, if the destination file is a special file, we don't want to
174a16fe65bSRui Ueyama   // use rename (e.g. we don't want to replace /dev/null with a regular
175a16fe65bSRui Ueyama   // file.) If that's the case, we create an in-memory buffer, open the
176a16fe65bSRui Ueyama   // destination file and write to it on commit().
177a16fe65bSRui Ueyama   switch (Stat.type()) {
178a16fe65bSRui Ueyama   case fs::file_type::directory_file:
179e0df357dSRafael Espindola     return errorCodeToError(errc::is_a_directory);
180a16fe65bSRui Ueyama   case fs::file_type::regular_file:
181a16fe65bSRui Ueyama   case fs::file_type::file_not_found:
182a16fe65bSRui Ueyama   case fs::file_type::status_error:
183*1adca7c4SZachary Turner     return createOnDiskBuffer(Path, Size, !!(Flags & F_modify), Mode);
184a16fe65bSRui Ueyama   default:
185f6490e04SRui Ueyama     return createInMemoryBuffer(Path, Size, Mode);
1865fce8c4fSNick Kledzik   }
187a16fe65bSRui Ueyama }
188