blob: 8fcc7aa29cc853ddbe9655088e56a20f24004626 [file] [log] [blame]
Chris Lattner5b183222007-05-06 19:49:28 +00001//===-- ArchiveWriter.cpp - Write LLVM archive files ----------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattner5b183222007-05-06 19:49:28 +00007//
8//===----------------------------------------------------------------------===//
9//
Gabor Greife16561c2007-07-05 17:07:56 +000010// Builds up an LLVM archive file (.a) containing LLVM bitcode.
Chris Lattner5b183222007-05-06 19:49:28 +000011//
12//===----------------------------------------------------------------------===//
13
14#include "ArchiveInternals.h"
Jeffrey Yasskin091217b2010-01-27 20:34:15 +000015#include "llvm/Module.h"
Chris Lattnerd4310a22008-04-01 04:26:46 +000016#include "llvm/ADT/OwningPtr.h"
Jeffrey Yasskin091217b2010-01-27 20:34:15 +000017#include "llvm/Bitcode/ReaderWriter.h"
Michael J. Spencer58df2e02011-01-10 02:34:23 +000018#include "llvm/Support/FileSystem.h"
Chris Lattnerd4310a22008-04-01 04:26:46 +000019#include "llvm/Support/MemoryBuffer.h"
Michael J. Spencer447762d2010-11-29 18:16:10 +000020#include "llvm/Support/Process.h"
21#include "llvm/Support/Signals.h"
Michael J. Spencer7b6fef82010-12-09 17:36:48 +000022#include "llvm/Support/system_error.h"
Chris Lattner5b183222007-05-06 19:49:28 +000023#include <fstream>
24#include <ostream>
25#include <iomanip>
26using namespace llvm;
27
28// Write an integer using variable bit rate encoding. This saves a few bytes
29// per entry in the symbol table.
Dan Gohmana9c23e22011-03-01 19:50:55 +000030static inline void writeInteger(unsigned num, std::ofstream& ARFile) {
Chris Lattner5b183222007-05-06 19:49:28 +000031 while (1) {
32 if (num < 0x80) { // done?
33 ARFile << (unsigned char)num;
34 return;
35 }
36
37 // Nope, we are bigger than a character, output the next 7 bits and set the
38 // high bit to say that there is more coming...
39 ARFile << (unsigned char)(0x80 | ((unsigned char)num & 0x7F));
40 num >>= 7; // Shift out 7 bits now...
41 }
42}
43
44// Compute how many bytes are taken by a given VBR encoded value. This is needed
45// to pre-compute the size of the symbol table.
Dan Gohmand78c4002008-05-13 00:00:25 +000046static inline unsigned numVbrBytes(unsigned num) {
Chris Lattner5b183222007-05-06 19:49:28 +000047
48 // Note that the following nested ifs are somewhat equivalent to a binary
49 // search. We split it in half by comparing against 2^14 first. This allows
50 // most reasonable values to be done in 2 comparisons instead of 1 for
51 // small ones and four for large ones. We expect this to access file offsets
52 // in the 2^10 to 2^24 range and symbol lengths in the 2^0 to 2^8 range,
53 // so this approach is reasonable.
Anton Korobeynikov035eaac2008-02-20 11:10:28 +000054 if (num < 1<<14) {
Chris Lattner5b183222007-05-06 19:49:28 +000055 if (num < 1<<7)
56 return 1;
57 else
58 return 2;
Anton Korobeynikov035eaac2008-02-20 11:10:28 +000059 }
Chris Lattner5b183222007-05-06 19:49:28 +000060 if (num < 1<<21)
61 return 3;
62
63 if (num < 1<<28)
64 return 4;
65 return 5; // anything >= 2^28 takes 5 bytes
66}
67
68// Create an empty archive.
Owen Anderson2a154432009-07-01 23:13:44 +000069Archive* Archive::CreateEmpty(const sys::Path& FilePath, LLVMContext& C) {
Owen Anderson6773d382009-07-01 16:58:40 +000070 Archive* result = new Archive(FilePath, C);
Chris Lattner5b183222007-05-06 19:49:28 +000071 return result;
72}
73
74// Fill the ArchiveMemberHeader with the information from a member. If
75// TruncateNames is true, names are flattened to 15 chars or less. The sz field
76// is provided here instead of coming from the mbr because the member might be
77// stored compressed and the compressed size is not the ArchiveMember's size.
78// Furthermore compressed files have negative size fields to identify them as
79// compressed.
80bool
81Archive::fillHeader(const ArchiveMember &mbr, ArchiveMemberHeader& hdr,
82 int sz, bool TruncateNames) const {
83
84 // Set the permissions mode, uid and gid
85 hdr.init();
86 char buffer[32];
87 sprintf(buffer, "%-8o", mbr.getMode());
88 memcpy(hdr.mode,buffer,8);
89 sprintf(buffer, "%-6u", mbr.getUser());
90 memcpy(hdr.uid,buffer,6);
91 sprintf(buffer, "%-6u", mbr.getGroup());
92 memcpy(hdr.gid,buffer,6);
93
94 // Set the last modification date
95 uint64_t secondsSinceEpoch = mbr.getModTime().toEpochTime();
96 sprintf(buffer,"%-12u", unsigned(secondsSinceEpoch));
97 memcpy(hdr.date,buffer,12);
98
99 // Get rid of trailing blanks in the name
Chris Lattnerc521f542009-08-23 22:45:37 +0000100 std::string mbrPath = mbr.getPath().str();
Chris Lattner5b183222007-05-06 19:49:28 +0000101 size_t mbrLen = mbrPath.length();
102 while (mbrLen > 0 && mbrPath[mbrLen-1] == ' ') {
103 mbrPath.erase(mbrLen-1,1);
104 mbrLen--;
105 }
106
107 // Set the name field in one of its various flavors.
108 bool writeLongName = false;
109 if (mbr.isStringTable()) {
110 memcpy(hdr.name,ARFILE_STRTAB_NAME,16);
111 } else if (mbr.isSVR4SymbolTable()) {
112 memcpy(hdr.name,ARFILE_SVR4_SYMTAB_NAME,16);
113 } else if (mbr.isBSD4SymbolTable()) {
114 memcpy(hdr.name,ARFILE_BSD4_SYMTAB_NAME,16);
115 } else if (mbr.isLLVMSymbolTable()) {
116 memcpy(hdr.name,ARFILE_LLVM_SYMTAB_NAME,16);
117 } else if (TruncateNames) {
118 const char* nm = mbrPath.c_str();
119 unsigned len = mbrPath.length();
120 size_t slashpos = mbrPath.rfind('/');
121 if (slashpos != std::string::npos) {
122 nm += slashpos + 1;
123 len -= slashpos +1;
124 }
125 if (len > 15)
126 len = 15;
127 memcpy(hdr.name,nm,len);
128 hdr.name[len] = '/';
129 } else if (mbrPath.length() < 16 && mbrPath.find('/') == std::string::npos) {
130 memcpy(hdr.name,mbrPath.c_str(),mbrPath.length());
131 hdr.name[mbrPath.length()] = '/';
132 } else {
133 std::string nm = "#1/";
134 nm += utostr(mbrPath.length());
135 memcpy(hdr.name,nm.data(),nm.length());
136 if (sz < 0)
137 sz -= mbrPath.length();
138 else
139 sz += mbrPath.length();
140 writeLongName = true;
141 }
142
143 // Set the size field
144 if (sz < 0) {
145 buffer[0] = '-';
146 sprintf(&buffer[1],"%-9u",(unsigned)-sz);
147 } else {
148 sprintf(buffer, "%-10u", (unsigned)sz);
149 }
150 memcpy(hdr.size,buffer,10);
151
152 return writeLongName;
153}
154
155// Insert a file into the archive before some other member. This also takes care
156// of extracting the necessary flags and information from the file.
157bool
Michael J. Spencer83bd49d2011-01-10 02:34:40 +0000158Archive::addFileBefore(const sys::Path& filePath, iterator where,
Chris Lattner5b183222007-05-06 19:49:28 +0000159 std::string* ErrMsg) {
Michael J. Spencer58df2e02011-01-10 02:34:23 +0000160 bool Exists;
161 if (sys::fs::exists(filePath.str(), Exists) || !Exists) {
Chris Lattner5b183222007-05-06 19:49:28 +0000162 if (ErrMsg)
163 *ErrMsg = "Can not add a non-existent file to archive";
164 return true;
165 }
166
167 ArchiveMember* mbr = new ArchiveMember(this);
168
169 mbr->data = 0;
170 mbr->path = filePath;
171 const sys::FileStatus *FSInfo = mbr->path.getFileStatus(false, ErrMsg);
Duncan Sands29491f02009-06-11 08:09:49 +0000172 if (!FSInfo) {
173 delete mbr;
Chris Lattner5b183222007-05-06 19:49:28 +0000174 return true;
Duncan Sands29491f02009-06-11 08:09:49 +0000175 }
176 mbr->info = *FSInfo;
Chris Lattner5b183222007-05-06 19:49:28 +0000177
178 unsigned flags = 0;
Chris Lattnerc521f542009-08-23 22:45:37 +0000179 bool hasSlash = filePath.str().find('/') != std::string::npos;
Chris Lattner5b183222007-05-06 19:49:28 +0000180 if (hasSlash)
181 flags |= ArchiveMember::HasPathFlag;
Chris Lattnerc521f542009-08-23 22:45:37 +0000182 if (hasSlash || filePath.str().length() > 15)
Chris Lattner5b183222007-05-06 19:49:28 +0000183 flags |= ArchiveMember::HasLongFilenameFlag;
Michael J. Spencer405e9582011-01-16 21:13:51 +0000184
185 sys::LLVMFileType type;
186 if (sys::fs::identify_magic(mbr->path.str(), type))
187 type = sys::Unknown_FileType;
188 switch (type) {
Chris Lattner5b183222007-05-06 19:49:28 +0000189 case sys::Bitcode_FileType:
Gabor Greif3d3fc322007-07-06 13:38:17 +0000190 flags |= ArchiveMember::BitcodeFlag;
Chris Lattner5b183222007-05-06 19:49:28 +0000191 break;
192 default:
193 break;
194 }
195 mbr->flags = flags;
196 members.insert(where,mbr);
197 return false;
198}
199
200// Write one member out to the file.
201bool
202Archive::writeMember(
203 const ArchiveMember& member,
Dan Gohmana9c23e22011-03-01 19:50:55 +0000204 std::ofstream& ARFile,
Chris Lattner5b183222007-05-06 19:49:28 +0000205 bool CreateSymbolTable,
206 bool TruncateNames,
207 bool ShouldCompress,
208 std::string* ErrMsg
209) {
210
Dan Gohmana9c23e22011-03-01 19:50:55 +0000211 unsigned filepos = ARFile.tellp();
Chris Lattner5b183222007-05-06 19:49:28 +0000212 filepos -= 8;
213
214 // Get the data and its size either from the
215 // member's in-memory data or directly from the file.
216 size_t fSize = member.getSize();
Chris Lattnerd4310a22008-04-01 04:26:46 +0000217 const char *data = (const char*)member.getData();
218 MemoryBuffer *mFile = 0;
Chris Lattner5b183222007-05-06 19:49:28 +0000219 if (!data) {
Michael J. Spencer39a0ffc2010-12-16 03:29:14 +0000220 OwningPtr<MemoryBuffer> File;
221 if (error_code ec = MemoryBuffer::getFile(member.getPath().c_str(), File)) {
Michael J. Spencer7b6fef82010-12-09 17:36:48 +0000222 if (ErrMsg)
223 *ErrMsg = ec.message();
Chris Lattner5b183222007-05-06 19:49:28 +0000224 return true;
Michael J. Spencer7b6fef82010-12-09 17:36:48 +0000225 }
Michael J. Spencer39a0ffc2010-12-16 03:29:14 +0000226 mFile = File.take();
Chris Lattnerd4310a22008-04-01 04:26:46 +0000227 data = mFile->getBufferStart();
228 fSize = mFile->getBufferSize();
Chris Lattner5b183222007-05-06 19:49:28 +0000229 }
230
231 // Now that we have the data in memory, update the
Dan Gohman39027c42010-03-30 20:04:57 +0000232 // symbol table if it's a bitcode file.
Gabor Greif3d3fc322007-07-06 13:38:17 +0000233 if (CreateSymbolTable && member.isBitcode()) {
Chris Lattner5b183222007-05-06 19:49:28 +0000234 std::vector<std::string> symbols;
Chris Lattnerc521f542009-08-23 22:45:37 +0000235 std::string FullMemberName = archPath.str() + "(" + member.getPath().str()
Chris Lattner5b183222007-05-06 19:49:28 +0000236 + ")";
Michael J. Spencer83bd49d2011-01-10 02:34:40 +0000237 Module* M =
Benjamin Kramer3576b742010-04-19 16:15:31 +0000238 GetBitcodeSymbols(data, fSize, FullMemberName, Context, symbols, ErrMsg);
Chris Lattner5b183222007-05-06 19:49:28 +0000239
Gabor Greife16561c2007-07-05 17:07:56 +0000240 // If the bitcode parsed successfully
Jeffrey Yasskin091217b2010-01-27 20:34:15 +0000241 if ( M ) {
Chris Lattner5b183222007-05-06 19:49:28 +0000242 for (std::vector<std::string>::iterator SI = symbols.begin(),
243 SE = symbols.end(); SI != SE; ++SI) {
244
245 std::pair<SymTabType::iterator,bool> Res =
246 symTab.insert(std::make_pair(*SI,filepos));
247
248 if (Res.second) {
249 symTabSize += SI->length() +
250 numVbrBytes(SI->length()) +
251 numVbrBytes(filepos);
252 }
253 }
254 // We don't need this module any more.
Jeffrey Yasskin091217b2010-01-27 20:34:15 +0000255 delete M;
Chris Lattner5b183222007-05-06 19:49:28 +0000256 } else {
Chris Lattnerd4310a22008-04-01 04:26:46 +0000257 delete mFile;
Chris Lattner5b183222007-05-06 19:49:28 +0000258 if (ErrMsg)
Chris Lattnerc521f542009-08-23 22:45:37 +0000259 *ErrMsg = "Can't parse bitcode member: " + member.getPath().str()
Chris Lattner5b183222007-05-06 19:49:28 +0000260 + ": " + *ErrMsg;
261 return true;
262 }
263 }
264
265 int hdrSize = fSize;
266
267 // Compute the fields of the header
268 ArchiveMemberHeader Hdr;
269 bool writeLongName = fillHeader(member,Hdr,hdrSize,TruncateNames);
270
271 // Write header to archive file
272 ARFile.write((char*)&Hdr, sizeof(Hdr));
273
274 // Write the long filename if its long
275 if (writeLongName) {
Chris Lattnerc521f542009-08-23 22:45:37 +0000276 ARFile.write(member.getPath().str().data(),
277 member.getPath().str().length());
Chris Lattner5b183222007-05-06 19:49:28 +0000278 }
279
280 // Write the (possibly compressed) member's content to the file.
281 ARFile.write(data,fSize);
282
283 // Make sure the member is an even length
Dan Gohmana9c23e22011-03-01 19:50:55 +0000284 if ((ARFile.tellp() & 1) == 1)
Chris Lattner5b183222007-05-06 19:49:28 +0000285 ARFile << ARFILE_PAD;
286
287 // Close the mapped file if it was opened
Chris Lattnerd4310a22008-04-01 04:26:46 +0000288 delete mFile;
Chris Lattner5b183222007-05-06 19:49:28 +0000289 return false;
290}
291
292// Write out the LLVM symbol table as an archive member to the file.
293void
Dan Gohmana9c23e22011-03-01 19:50:55 +0000294Archive::writeSymbolTable(std::ofstream& ARFile) {
Chris Lattner5b183222007-05-06 19:49:28 +0000295
296 // Construct the symbol table's header
297 ArchiveMemberHeader Hdr;
298 Hdr.init();
299 memcpy(Hdr.name,ARFILE_LLVM_SYMTAB_NAME,16);
300 uint64_t secondsSinceEpoch = sys::TimeValue::now().toEpochTime();
301 char buffer[32];
302 sprintf(buffer, "%-8o", 0644);
303 memcpy(Hdr.mode,buffer,8);
304 sprintf(buffer, "%-6u", sys::Process::GetCurrentUserId());
305 memcpy(Hdr.uid,buffer,6);
306 sprintf(buffer, "%-6u", sys::Process::GetCurrentGroupId());
307 memcpy(Hdr.gid,buffer,6);
308 sprintf(buffer,"%-12u", unsigned(secondsSinceEpoch));
309 memcpy(Hdr.date,buffer,12);
310 sprintf(buffer,"%-10u",symTabSize);
311 memcpy(Hdr.size,buffer,10);
312
313 // Write the header
314 ARFile.write((char*)&Hdr, sizeof(Hdr));
315
Devang Patelcb181bb2008-11-21 20:00:59 +0000316#ifndef NDEBUG
Chris Lattner5b183222007-05-06 19:49:28 +0000317 // Save the starting position of the symbol tables data content.
Dan Gohmana9c23e22011-03-01 19:50:55 +0000318 unsigned startpos = ARFile.tellp();
Devang Patelcb181bb2008-11-21 20:00:59 +0000319#endif
Chris Lattner5b183222007-05-06 19:49:28 +0000320
321 // Write out the symbols sequentially
322 for ( Archive::SymTabType::iterator I = symTab.begin(), E = symTab.end();
323 I != E; ++I)
324 {
325 // Write out the file index
326 writeInteger(I->second, ARFile);
327 // Write out the length of the symbol
328 writeInteger(I->first.length(), ARFile);
329 // Write out the symbol
330 ARFile.write(I->first.data(), I->first.length());
331 }
332
Devang Patelcb181bb2008-11-21 20:00:59 +0000333#ifndef NDEBUG
Chris Lattner5b183222007-05-06 19:49:28 +0000334 // Now that we're done with the symbol table, get the ending file position
Dan Gohmana9c23e22011-03-01 19:50:55 +0000335 unsigned endpos = ARFile.tellp();
Devang Patelcb181bb2008-11-21 20:00:59 +0000336#endif
Chris Lattner5b183222007-05-06 19:49:28 +0000337
338 // Make sure that the amount we wrote is what we pre-computed. This is
339 // critical for file integrity purposes.
340 assert(endpos - startpos == symTabSize && "Invalid symTabSize computation");
341
342 // Make sure the symbol table is even sized
343 if (symTabSize % 2 != 0 )
344 ARFile << ARFILE_PAD;
345}
346
347// Write the entire archive to the file specified when the archive was created.
348// This writes to a temporary file first. Options are for creating a symbol
349// table, flattening the file names (no directories, 15 chars max) and
350// compressing each archive member.
351bool
352Archive::writeToDisk(bool CreateSymbolTable, bool TruncateNames, bool Compress,
353 std::string* ErrMsg)
354{
355 // Make sure they haven't opened up the file, not loaded it,
356 // but are now trying to write it which would wipe out the file.
Chris Lattnerd4310a22008-04-01 04:26:46 +0000357 if (members.empty() && mapfile && mapfile->getBufferSize() > 8) {
Chris Lattner5b183222007-05-06 19:49:28 +0000358 if (ErrMsg)
359 *ErrMsg = "Can't write an archive not opened for writing";
360 return true;
361 }
362
363 // Create a temporary file to store the archive in
Dan Gohmana9c23e22011-03-01 19:50:55 +0000364 sys::Path TmpArchive = archPath;
365 if (TmpArchive.createTemporaryFileOnDisk(ErrMsg))
Michael J. Spencer2ff30b82011-01-16 01:43:22 +0000366 return true;
Michael J. Spencera0ce7632011-01-15 21:43:37 +0000367
Michael J. Spencer5ce56082011-01-16 23:39:59 +0000368 // Make sure the temporary gets removed if we crash
Dan Gohmana9c23e22011-03-01 19:50:55 +0000369 sys::RemoveFileOnSignal(TmpArchive);
Michael J. Spencer5ce56082011-01-16 23:39:59 +0000370
371 // Create archive file for output.
Dan Gohmana9c23e22011-03-01 19:50:55 +0000372 std::ios::openmode io_mode = std::ios::out | std::ios::trunc |
373 std::ios::binary;
374 std::ofstream ArchiveFile(TmpArchive.c_str(), io_mode);
375
376 // Check for errors opening or creating archive file.
377 if (!ArchiveFile.is_open() || ArchiveFile.bad()) {
378 TmpArchive.eraseFromDisk();
379 if (ErrMsg)
380 *ErrMsg = "Error opening archive file: " + archPath.str();
381 return true;
382 }
Michael J. Spencer5ce56082011-01-16 23:39:59 +0000383
Chris Lattner5b183222007-05-06 19:49:28 +0000384 // If we're creating a symbol table, reset it now
385 if (CreateSymbolTable) {
386 symTabSize = 0;
387 symTab.clear();
388 }
389
390 // Write magic string to archive.
391 ArchiveFile << ARFILE_MAGIC;
392
393 // Loop over all member files, and write them out. Note that this also
394 // builds the symbol table, symTab.
395 for (MembersList::iterator I = begin(), E = end(); I != E; ++I) {
396 if (writeMember(*I, ArchiveFile, CreateSymbolTable,
397 TruncateNames, Compress, ErrMsg)) {
Dan Gohmana9c23e22011-03-01 19:50:55 +0000398 TmpArchive.eraseFromDisk();
Chris Lattner5b183222007-05-06 19:49:28 +0000399 ArchiveFile.close();
400 return true;
401 }
402 }
403
404 // Close archive file.
405 ArchiveFile.close();
406
407 // Write the symbol table
408 if (CreateSymbolTable) {
409 // At this point we have written a file that is a legal archive but it
410 // doesn't have a symbol table in it. To aid in faster reading and to
411 // ensure compatibility with other archivers we need to put the symbol
412 // table first in the file. Unfortunately, this means mapping the file
413 // we just wrote back in and copying it to the destination file.
Dan Gohmana9c23e22011-03-01 19:50:55 +0000414 sys::Path FinalFilePath = archPath;
Chris Lattner5b183222007-05-06 19:49:28 +0000415
416 // Map in the archive we just wrote.
Chris Lattnerd4310a22008-04-01 04:26:46 +0000417 {
Michael J. Spencer39a0ffc2010-12-16 03:29:14 +0000418 OwningPtr<MemoryBuffer> arch;
Dan Gohmana9c23e22011-03-01 19:50:55 +0000419 if (error_code ec = MemoryBuffer::getFile(TmpArchive.c_str(), arch)) {
Michael J. Spencer7b6fef82010-12-09 17:36:48 +0000420 if (ErrMsg)
421 *ErrMsg = ec.message();
422 return true;
423 }
Chris Lattnerd4310a22008-04-01 04:26:46 +0000424 const char* base = arch->getBufferStart();
Chris Lattner5b183222007-05-06 19:49:28 +0000425
Michael J. Spencer83bd49d2011-01-10 02:34:40 +0000426 // Open another temporary file in order to avoid invalidating the
Chris Lattner5b183222007-05-06 19:49:28 +0000427 // mmapped data
Dan Gohmana9c23e22011-03-01 19:50:55 +0000428 if (FinalFilePath.createTemporaryFileOnDisk(ErrMsg))
429 return true;
430 sys::RemoveFileOnSignal(FinalFilePath);
431
432 std::ofstream FinalFile(FinalFilePath.c_str(), io_mode);
433 if (!FinalFile.is_open() || FinalFile.bad()) {
434 TmpArchive.eraseFromDisk();
435 if (ErrMsg)
436 *ErrMsg = "Error opening archive file: " + FinalFilePath.str();
Chris Lattner5b183222007-05-06 19:49:28 +0000437 return true;
438 }
439
440 // Write the file magic number
441 FinalFile << ARFILE_MAGIC;
442
443 // If there is a foreign symbol table, put it into the file now. Most
444 // ar(1) implementations require the symbol table to be first but llvm-ar
445 // can deal with it being after a foreign symbol table. This ensures
446 // compatibility with other ar(1) implementations as well as allowing the
447 // archive to store both native .o and LLVM .bc files, both indexed.
448 if (foreignST) {
449 if (writeMember(*foreignST, FinalFile, false, false, false, ErrMsg)) {
450 FinalFile.close();
Dan Gohmana9c23e22011-03-01 19:50:55 +0000451 TmpArchive.eraseFromDisk();
Chris Lattner5b183222007-05-06 19:49:28 +0000452 return true;
453 }
454 }
455
456 // Put out the LLVM symbol table now.
457 writeSymbolTable(FinalFile);
458
459 // Copy the temporary file contents being sure to skip the file's magic
460 // number.
461 FinalFile.write(base + sizeof(ARFILE_MAGIC)-1,
Chris Lattnerd4310a22008-04-01 04:26:46 +0000462 arch->getBufferSize()-sizeof(ARFILE_MAGIC)+1);
Chris Lattner5b183222007-05-06 19:49:28 +0000463
464 // Close up shop
465 FinalFile.close();
Chris Lattnerd4310a22008-04-01 04:26:46 +0000466 } // free arch.
Michael J. Spencer83bd49d2011-01-10 02:34:40 +0000467
Chris Lattner5b183222007-05-06 19:49:28 +0000468 // Move the final file over top of TmpArchive
Dan Gohmana9c23e22011-03-01 19:50:55 +0000469 if (FinalFilePath.renamePathOnDisk(TmpArchive, ErrMsg))
Chris Lattner5b183222007-05-06 19:49:28 +0000470 return true;
471 }
Michael J. Spencer83bd49d2011-01-10 02:34:40 +0000472
Chris Lattner5b183222007-05-06 19:49:28 +0000473 // Before we replace the actual archive, we need to forget all the
474 // members, since they point to data in that old archive. We need to do
475 // this because we cannot replace an open file on Windows.
476 cleanUpMemory();
Michael J. Spencer83bd49d2011-01-10 02:34:40 +0000477
Dan Gohmana9c23e22011-03-01 19:50:55 +0000478 if (TmpArchive.renamePathOnDisk(archPath, ErrMsg))
Chris Lattner5b183222007-05-06 19:49:28 +0000479 return true;
480
Owen Anderson3f4ebba2008-05-24 05:42:29 +0000481 // Set correct read and write permissions after temporary file is moved
482 // to final destination path.
483 if (archPath.makeReadableOnDisk(ErrMsg))
484 return true;
485 if (archPath.makeWriteableOnDisk(ErrMsg))
486 return true;
487
Chris Lattner5b183222007-05-06 19:49:28 +0000488 return false;
489}