blob: c5ad5fc41cd116b29ddbc8fd1e9c4e400b472b81 [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"
Michael J. Spencer5ce56082011-01-16 23:39:59 +000021#include "llvm/Support/raw_ostream.h"
Michael J. Spencer447762d2010-11-29 18:16:10 +000022#include "llvm/Support/Signals.h"
Michael J. Spencer7b6fef82010-12-09 17:36:48 +000023#include "llvm/Support/system_error.h"
Chris Lattner5b183222007-05-06 19:49:28 +000024#include <fstream>
25#include <ostream>
26#include <iomanip>
27using namespace llvm;
28
29// Write an integer using variable bit rate encoding. This saves a few bytes
30// per entry in the symbol table.
Michael J. Spencer5ce56082011-01-16 23:39:59 +000031static inline void writeInteger(unsigned num, raw_ostream& ARFile) {
Chris Lattner5b183222007-05-06 19:49:28 +000032 while (1) {
33 if (num < 0x80) { // done?
34 ARFile << (unsigned char)num;
35 return;
36 }
37
38 // Nope, we are bigger than a character, output the next 7 bits and set the
39 // high bit to say that there is more coming...
40 ARFile << (unsigned char)(0x80 | ((unsigned char)num & 0x7F));
41 num >>= 7; // Shift out 7 bits now...
42 }
43}
44
45// Compute how many bytes are taken by a given VBR encoded value. This is needed
46// to pre-compute the size of the symbol table.
Dan Gohmand78c4002008-05-13 00:00:25 +000047static inline unsigned numVbrBytes(unsigned num) {
Chris Lattner5b183222007-05-06 19:49:28 +000048
49 // Note that the following nested ifs are somewhat equivalent to a binary
50 // search. We split it in half by comparing against 2^14 first. This allows
51 // most reasonable values to be done in 2 comparisons instead of 1 for
52 // small ones and four for large ones. We expect this to access file offsets
53 // in the 2^10 to 2^24 range and symbol lengths in the 2^0 to 2^8 range,
54 // so this approach is reasonable.
Anton Korobeynikov035eaac2008-02-20 11:10:28 +000055 if (num < 1<<14) {
Chris Lattner5b183222007-05-06 19:49:28 +000056 if (num < 1<<7)
57 return 1;
58 else
59 return 2;
Anton Korobeynikov035eaac2008-02-20 11:10:28 +000060 }
Chris Lattner5b183222007-05-06 19:49:28 +000061 if (num < 1<<21)
62 return 3;
63
64 if (num < 1<<28)
65 return 4;
66 return 5; // anything >= 2^28 takes 5 bytes
67}
68
69// Create an empty archive.
Owen Anderson2a154432009-07-01 23:13:44 +000070Archive* Archive::CreateEmpty(const sys::Path& FilePath, LLVMContext& C) {
Owen Anderson6773d382009-07-01 16:58:40 +000071 Archive* result = new Archive(FilePath, C);
Chris Lattner5b183222007-05-06 19:49:28 +000072 return result;
73}
74
75// Fill the ArchiveMemberHeader with the information from a member. If
76// TruncateNames is true, names are flattened to 15 chars or less. The sz field
77// is provided here instead of coming from the mbr because the member might be
78// stored compressed and the compressed size is not the ArchiveMember's size.
79// Furthermore compressed files have negative size fields to identify them as
80// compressed.
81bool
82Archive::fillHeader(const ArchiveMember &mbr, ArchiveMemberHeader& hdr,
83 int sz, bool TruncateNames) const {
84
85 // Set the permissions mode, uid and gid
86 hdr.init();
87 char buffer[32];
88 sprintf(buffer, "%-8o", mbr.getMode());
89 memcpy(hdr.mode,buffer,8);
90 sprintf(buffer, "%-6u", mbr.getUser());
91 memcpy(hdr.uid,buffer,6);
92 sprintf(buffer, "%-6u", mbr.getGroup());
93 memcpy(hdr.gid,buffer,6);
94
95 // Set the last modification date
96 uint64_t secondsSinceEpoch = mbr.getModTime().toEpochTime();
97 sprintf(buffer,"%-12u", unsigned(secondsSinceEpoch));
98 memcpy(hdr.date,buffer,12);
99
100 // Get rid of trailing blanks in the name
Chris Lattnerc521f542009-08-23 22:45:37 +0000101 std::string mbrPath = mbr.getPath().str();
Chris Lattner5b183222007-05-06 19:49:28 +0000102 size_t mbrLen = mbrPath.length();
103 while (mbrLen > 0 && mbrPath[mbrLen-1] == ' ') {
104 mbrPath.erase(mbrLen-1,1);
105 mbrLen--;
106 }
107
108 // Set the name field in one of its various flavors.
109 bool writeLongName = false;
110 if (mbr.isStringTable()) {
111 memcpy(hdr.name,ARFILE_STRTAB_NAME,16);
112 } else if (mbr.isSVR4SymbolTable()) {
113 memcpy(hdr.name,ARFILE_SVR4_SYMTAB_NAME,16);
114 } else if (mbr.isBSD4SymbolTable()) {
115 memcpy(hdr.name,ARFILE_BSD4_SYMTAB_NAME,16);
116 } else if (mbr.isLLVMSymbolTable()) {
117 memcpy(hdr.name,ARFILE_LLVM_SYMTAB_NAME,16);
118 } else if (TruncateNames) {
119 const char* nm = mbrPath.c_str();
120 unsigned len = mbrPath.length();
121 size_t slashpos = mbrPath.rfind('/');
122 if (slashpos != std::string::npos) {
123 nm += slashpos + 1;
124 len -= slashpos +1;
125 }
126 if (len > 15)
127 len = 15;
128 memcpy(hdr.name,nm,len);
129 hdr.name[len] = '/';
130 } else if (mbrPath.length() < 16 && mbrPath.find('/') == std::string::npos) {
131 memcpy(hdr.name,mbrPath.c_str(),mbrPath.length());
132 hdr.name[mbrPath.length()] = '/';
133 } else {
134 std::string nm = "#1/";
135 nm += utostr(mbrPath.length());
136 memcpy(hdr.name,nm.data(),nm.length());
137 if (sz < 0)
138 sz -= mbrPath.length();
139 else
140 sz += mbrPath.length();
141 writeLongName = true;
142 }
143
144 // Set the size field
145 if (sz < 0) {
146 buffer[0] = '-';
147 sprintf(&buffer[1],"%-9u",(unsigned)-sz);
148 } else {
149 sprintf(buffer, "%-10u", (unsigned)sz);
150 }
151 memcpy(hdr.size,buffer,10);
152
153 return writeLongName;
154}
155
156// Insert a file into the archive before some other member. This also takes care
157// of extracting the necessary flags and information from the file.
158bool
Michael J. Spencer83bd49d2011-01-10 02:34:40 +0000159Archive::addFileBefore(const sys::Path& filePath, iterator where,
Chris Lattner5b183222007-05-06 19:49:28 +0000160 std::string* ErrMsg) {
Michael J. Spencer58df2e02011-01-10 02:34:23 +0000161 bool Exists;
162 if (sys::fs::exists(filePath.str(), Exists) || !Exists) {
Chris Lattner5b183222007-05-06 19:49:28 +0000163 if (ErrMsg)
164 *ErrMsg = "Can not add a non-existent file to archive";
165 return true;
166 }
167
168 ArchiveMember* mbr = new ArchiveMember(this);
169
170 mbr->data = 0;
171 mbr->path = filePath;
172 const sys::FileStatus *FSInfo = mbr->path.getFileStatus(false, ErrMsg);
Duncan Sands29491f02009-06-11 08:09:49 +0000173 if (!FSInfo) {
174 delete mbr;
Chris Lattner5b183222007-05-06 19:49:28 +0000175 return true;
Duncan Sands29491f02009-06-11 08:09:49 +0000176 }
177 mbr->info = *FSInfo;
Chris Lattner5b183222007-05-06 19:49:28 +0000178
179 unsigned flags = 0;
Chris Lattnerc521f542009-08-23 22:45:37 +0000180 bool hasSlash = filePath.str().find('/') != std::string::npos;
Chris Lattner5b183222007-05-06 19:49:28 +0000181 if (hasSlash)
182 flags |= ArchiveMember::HasPathFlag;
Chris Lattnerc521f542009-08-23 22:45:37 +0000183 if (hasSlash || filePath.str().length() > 15)
Chris Lattner5b183222007-05-06 19:49:28 +0000184 flags |= ArchiveMember::HasLongFilenameFlag;
Michael J. Spencer405e9582011-01-16 21:13:51 +0000185
186 sys::LLVMFileType type;
187 if (sys::fs::identify_magic(mbr->path.str(), type))
188 type = sys::Unknown_FileType;
189 switch (type) {
Chris Lattner5b183222007-05-06 19:49:28 +0000190 case sys::Bitcode_FileType:
Gabor Greif3d3fc322007-07-06 13:38:17 +0000191 flags |= ArchiveMember::BitcodeFlag;
Chris Lattner5b183222007-05-06 19:49:28 +0000192 break;
193 default:
194 break;
195 }
196 mbr->flags = flags;
197 members.insert(where,mbr);
198 return false;
199}
200
201// Write one member out to the file.
202bool
203Archive::writeMember(
204 const ArchiveMember& member,
Michael J. Spencer5ce56082011-01-16 23:39:59 +0000205 raw_ostream& ARFile,
Chris Lattner5b183222007-05-06 19:49:28 +0000206 bool CreateSymbolTable,
207 bool TruncateNames,
208 bool ShouldCompress,
209 std::string* ErrMsg
210) {
211
Michael J. Spencer5ce56082011-01-16 23:39:59 +0000212 unsigned filepos = ARFile.tell();
Chris Lattner5b183222007-05-06 19:49:28 +0000213 filepos -= 8;
214
215 // Get the data and its size either from the
216 // member's in-memory data or directly from the file.
217 size_t fSize = member.getSize();
Chris Lattnerd4310a22008-04-01 04:26:46 +0000218 const char *data = (const char*)member.getData();
219 MemoryBuffer *mFile = 0;
Chris Lattner5b183222007-05-06 19:49:28 +0000220 if (!data) {
Michael J. Spencer39a0ffc2010-12-16 03:29:14 +0000221 OwningPtr<MemoryBuffer> File;
222 if (error_code ec = MemoryBuffer::getFile(member.getPath().c_str(), File)) {
Michael J. Spencer7b6fef82010-12-09 17:36:48 +0000223 if (ErrMsg)
224 *ErrMsg = ec.message();
Chris Lattner5b183222007-05-06 19:49:28 +0000225 return true;
Michael J. Spencer7b6fef82010-12-09 17:36:48 +0000226 }
Michael J. Spencer39a0ffc2010-12-16 03:29:14 +0000227 mFile = File.take();
Chris Lattnerd4310a22008-04-01 04:26:46 +0000228 data = mFile->getBufferStart();
229 fSize = mFile->getBufferSize();
Chris Lattner5b183222007-05-06 19:49:28 +0000230 }
231
232 // Now that we have the data in memory, update the
Dan Gohman39027c42010-03-30 20:04:57 +0000233 // symbol table if it's a bitcode file.
Gabor Greif3d3fc322007-07-06 13:38:17 +0000234 if (CreateSymbolTable && member.isBitcode()) {
Chris Lattner5b183222007-05-06 19:49:28 +0000235 std::vector<std::string> symbols;
Chris Lattnerc521f542009-08-23 22:45:37 +0000236 std::string FullMemberName = archPath.str() + "(" + member.getPath().str()
Chris Lattner5b183222007-05-06 19:49:28 +0000237 + ")";
Michael J. Spencer83bd49d2011-01-10 02:34:40 +0000238 Module* M =
Benjamin Kramer3576b742010-04-19 16:15:31 +0000239 GetBitcodeSymbols(data, fSize, FullMemberName, Context, symbols, ErrMsg);
Chris Lattner5b183222007-05-06 19:49:28 +0000240
Gabor Greife16561c2007-07-05 17:07:56 +0000241 // If the bitcode parsed successfully
Jeffrey Yasskin091217b2010-01-27 20:34:15 +0000242 if ( M ) {
Chris Lattner5b183222007-05-06 19:49:28 +0000243 for (std::vector<std::string>::iterator SI = symbols.begin(),
244 SE = symbols.end(); SI != SE; ++SI) {
245
246 std::pair<SymTabType::iterator,bool> Res =
247 symTab.insert(std::make_pair(*SI,filepos));
248
249 if (Res.second) {
250 symTabSize += SI->length() +
251 numVbrBytes(SI->length()) +
252 numVbrBytes(filepos);
253 }
254 }
255 // We don't need this module any more.
Jeffrey Yasskin091217b2010-01-27 20:34:15 +0000256 delete M;
Chris Lattner5b183222007-05-06 19:49:28 +0000257 } else {
Chris Lattnerd4310a22008-04-01 04:26:46 +0000258 delete mFile;
Chris Lattner5b183222007-05-06 19:49:28 +0000259 if (ErrMsg)
Chris Lattnerc521f542009-08-23 22:45:37 +0000260 *ErrMsg = "Can't parse bitcode member: " + member.getPath().str()
Chris Lattner5b183222007-05-06 19:49:28 +0000261 + ": " + *ErrMsg;
262 return true;
263 }
264 }
265
266 int hdrSize = fSize;
267
268 // Compute the fields of the header
269 ArchiveMemberHeader Hdr;
270 bool writeLongName = fillHeader(member,Hdr,hdrSize,TruncateNames);
271
272 // Write header to archive file
273 ARFile.write((char*)&Hdr, sizeof(Hdr));
274
275 // Write the long filename if its long
276 if (writeLongName) {
Chris Lattnerc521f542009-08-23 22:45:37 +0000277 ARFile.write(member.getPath().str().data(),
278 member.getPath().str().length());
Chris Lattner5b183222007-05-06 19:49:28 +0000279 }
280
281 // Write the (possibly compressed) member's content to the file.
282 ARFile.write(data,fSize);
283
284 // Make sure the member is an even length
Michael J. Spencer5ce56082011-01-16 23:39:59 +0000285 if ((ARFile.tell() & 1) == 1)
Chris Lattner5b183222007-05-06 19:49:28 +0000286 ARFile << ARFILE_PAD;
287
288 // Close the mapped file if it was opened
Chris Lattnerd4310a22008-04-01 04:26:46 +0000289 delete mFile;
Chris Lattner5b183222007-05-06 19:49:28 +0000290 return false;
291}
292
293// Write out the LLVM symbol table as an archive member to the file.
294void
Michael J. Spencer5ce56082011-01-16 23:39:59 +0000295Archive::writeSymbolTable(raw_ostream& ARFile) {
Chris Lattner5b183222007-05-06 19:49:28 +0000296
297 // Construct the symbol table's header
298 ArchiveMemberHeader Hdr;
299 Hdr.init();
300 memcpy(Hdr.name,ARFILE_LLVM_SYMTAB_NAME,16);
301 uint64_t secondsSinceEpoch = sys::TimeValue::now().toEpochTime();
302 char buffer[32];
303 sprintf(buffer, "%-8o", 0644);
304 memcpy(Hdr.mode,buffer,8);
305 sprintf(buffer, "%-6u", sys::Process::GetCurrentUserId());
306 memcpy(Hdr.uid,buffer,6);
307 sprintf(buffer, "%-6u", sys::Process::GetCurrentGroupId());
308 memcpy(Hdr.gid,buffer,6);
309 sprintf(buffer,"%-12u", unsigned(secondsSinceEpoch));
310 memcpy(Hdr.date,buffer,12);
311 sprintf(buffer,"%-10u",symTabSize);
312 memcpy(Hdr.size,buffer,10);
313
314 // Write the header
315 ARFile.write((char*)&Hdr, sizeof(Hdr));
316
Devang Patelcb181bb2008-11-21 20:00:59 +0000317#ifndef NDEBUG
Chris Lattner5b183222007-05-06 19:49:28 +0000318 // Save the starting position of the symbol tables data content.
Michael J. Spencer5ce56082011-01-16 23:39:59 +0000319 unsigned startpos = ARFile.tell();
Devang Patelcb181bb2008-11-21 20:00:59 +0000320#endif
Chris Lattner5b183222007-05-06 19:49:28 +0000321
322 // Write out the symbols sequentially
323 for ( Archive::SymTabType::iterator I = symTab.begin(), E = symTab.end();
324 I != E; ++I)
325 {
326 // Write out the file index
327 writeInteger(I->second, ARFile);
328 // Write out the length of the symbol
329 writeInteger(I->first.length(), ARFile);
330 // Write out the symbol
331 ARFile.write(I->first.data(), I->first.length());
332 }
333
Devang Patelcb181bb2008-11-21 20:00:59 +0000334#ifndef NDEBUG
Chris Lattner5b183222007-05-06 19:49:28 +0000335 // Now that we're done with the symbol table, get the ending file position
Michael J. Spencer5ce56082011-01-16 23:39:59 +0000336 unsigned endpos = ARFile.tell();
Devang Patelcb181bb2008-11-21 20:00:59 +0000337#endif
Chris Lattner5b183222007-05-06 19:49:28 +0000338
339 // Make sure that the amount we wrote is what we pre-computed. This is
340 // critical for file integrity purposes.
341 assert(endpos - startpos == symTabSize && "Invalid symTabSize computation");
342
343 // Make sure the symbol table is even sized
344 if (symTabSize % 2 != 0 )
345 ARFile << ARFILE_PAD;
346}
347
348// Write the entire archive to the file specified when the archive was created.
349// This writes to a temporary file first. Options are for creating a symbol
350// table, flattening the file names (no directories, 15 chars max) and
351// compressing each archive member.
352bool
353Archive::writeToDisk(bool CreateSymbolTable, bool TruncateNames, bool Compress,
354 std::string* ErrMsg)
355{
356 // Make sure they haven't opened up the file, not loaded it,
357 // but are now trying to write it which would wipe out the file.
Chris Lattnerd4310a22008-04-01 04:26:46 +0000358 if (members.empty() && mapfile && mapfile->getBufferSize() > 8) {
Chris Lattner5b183222007-05-06 19:49:28 +0000359 if (ErrMsg)
360 *ErrMsg = "Can't write an archive not opened for writing";
361 return true;
362 }
363
364 // Create a temporary file to store the archive in
Michael J. Spencer5ce56082011-01-16 23:39:59 +0000365 SmallString<128> TempArchivePath;
366 int ArchFD;
Michael J. Spencer992efd12011-01-17 16:43:30 +0000367 if (error_code ec =
368 sys::fs::unique_file("%%-%%-%%-%%-" + sys::path::filename(archPath.str()),
369 ArchFD, TempArchivePath)) {
Michael J. Spencer5ce56082011-01-16 23:39:59 +0000370 if (ErrMsg) *ErrMsg = ec.message();
Michael J. Spencer2ff30b82011-01-16 01:43:22 +0000371 return true;
372 }
Michael J. Spencera0ce7632011-01-15 21:43:37 +0000373
Michael J. Spencer5ce56082011-01-16 23:39:59 +0000374 // Make sure the temporary gets removed if we crash
375 sys::RemoveFileOnSignal(sys::Path(TempArchivePath.str()));
376
377 // Create archive file for output.
378 raw_fd_ostream ArchiveFile(ArchFD, true);
379
Chris Lattner5b183222007-05-06 19:49:28 +0000380 // If we're creating a symbol table, reset it now
381 if (CreateSymbolTable) {
382 symTabSize = 0;
383 symTab.clear();
384 }
385
386 // Write magic string to archive.
387 ArchiveFile << ARFILE_MAGIC;
388
389 // Loop over all member files, and write them out. Note that this also
390 // builds the symbol table, symTab.
391 for (MembersList::iterator I = begin(), E = end(); I != E; ++I) {
392 if (writeMember(*I, ArchiveFile, CreateSymbolTable,
393 TruncateNames, Compress, ErrMsg)) {
Chris Lattner5b183222007-05-06 19:49:28 +0000394 ArchiveFile.close();
Michael J. Spencer5ce56082011-01-16 23:39:59 +0000395 bool existed;
396 sys::fs::remove(TempArchivePath.str(), existed);
Chris Lattner5b183222007-05-06 19:49:28 +0000397 return true;
398 }
399 }
400
401 // Close archive file.
402 ArchiveFile.close();
403
404 // Write the symbol table
405 if (CreateSymbolTable) {
406 // At this point we have written a file that is a legal archive but it
407 // doesn't have a symbol table in it. To aid in faster reading and to
408 // ensure compatibility with other archivers we need to put the symbol
409 // table first in the file. Unfortunately, this means mapping the file
410 // we just wrote back in and copying it to the destination file.
Michael J. Spencer5ce56082011-01-16 23:39:59 +0000411 SmallString<128> TempArchiveWithSymbolTablePath;
Chris Lattner5b183222007-05-06 19:49:28 +0000412
413 // Map in the archive we just wrote.
Chris Lattnerd4310a22008-04-01 04:26:46 +0000414 {
Michael J. Spencer39a0ffc2010-12-16 03:29:14 +0000415 OwningPtr<MemoryBuffer> arch;
Michael J. Spencer5ce56082011-01-16 23:39:59 +0000416 if (error_code ec = MemoryBuffer::getFile(TempArchivePath.c_str(), arch)) {
Michael J. Spencer7b6fef82010-12-09 17:36:48 +0000417 if (ErrMsg)
418 *ErrMsg = ec.message();
419 return true;
420 }
Chris Lattnerd4310a22008-04-01 04:26:46 +0000421 const char* base = arch->getBufferStart();
Chris Lattner5b183222007-05-06 19:49:28 +0000422
Michael J. Spencer83bd49d2011-01-10 02:34:40 +0000423 // Open another temporary file in order to avoid invalidating the
Chris Lattner5b183222007-05-06 19:49:28 +0000424 // mmapped data
Michael J. Spencer992efd12011-01-17 16:43:30 +0000425 if (error_code ec =
426 sys::fs::unique_file("%%-%%-%%-%%-" + sys::path::filename(archPath.str()),
427 ArchFD, TempArchiveWithSymbolTablePath)) {
Michael J. Spencer5ce56082011-01-16 23:39:59 +0000428 if (ErrMsg) *ErrMsg = ec.message();
Chris Lattner5b183222007-05-06 19:49:28 +0000429 return true;
430 }
Michael J. Spencer5ce56082011-01-16 23:39:59 +0000431 sys::RemoveFileOnSignal(sys::Path(TempArchiveWithSymbolTablePath.str()));
432
433 raw_fd_ostream FinalFile(ArchFD, true);
Chris Lattner5b183222007-05-06 19:49:28 +0000434
435 // Write the file magic number
436 FinalFile << ARFILE_MAGIC;
437
438 // If there is a foreign symbol table, put it into the file now. Most
439 // ar(1) implementations require the symbol table to be first but llvm-ar
440 // can deal with it being after a foreign symbol table. This ensures
441 // compatibility with other ar(1) implementations as well as allowing the
442 // archive to store both native .o and LLVM .bc files, both indexed.
443 if (foreignST) {
444 if (writeMember(*foreignST, FinalFile, false, false, false, ErrMsg)) {
445 FinalFile.close();
Michael J. Spencer5ce56082011-01-16 23:39:59 +0000446 bool existed;
447 sys::fs::remove(TempArchiveWithSymbolTablePath.str(), existed);
Chris Lattner5b183222007-05-06 19:49:28 +0000448 return true;
449 }
450 }
451
452 // Put out the LLVM symbol table now.
453 writeSymbolTable(FinalFile);
454
455 // Copy the temporary file contents being sure to skip the file's magic
456 // number.
457 FinalFile.write(base + sizeof(ARFILE_MAGIC)-1,
Chris Lattnerd4310a22008-04-01 04:26:46 +0000458 arch->getBufferSize()-sizeof(ARFILE_MAGIC)+1);
Chris Lattner5b183222007-05-06 19:49:28 +0000459
460 // Close up shop
461 FinalFile.close();
Chris Lattnerd4310a22008-04-01 04:26:46 +0000462 } // free arch.
Michael J. Spencer83bd49d2011-01-10 02:34:40 +0000463
Chris Lattner5b183222007-05-06 19:49:28 +0000464 // Move the final file over top of TmpArchive
Michael J. Spencer5ce56082011-01-16 23:39:59 +0000465 if (error_code ec = sys::fs::rename(TempArchiveWithSymbolTablePath.str(),
466 TempArchivePath.str())) {
467 if (ErrMsg) *ErrMsg = ec.message();
Chris Lattner5b183222007-05-06 19:49:28 +0000468 return true;
Michael J. Spencer5ce56082011-01-16 23:39:59 +0000469 }
Chris Lattner5b183222007-05-06 19:49:28 +0000470 }
Michael J. Spencer83bd49d2011-01-10 02:34:40 +0000471
Chris Lattner5b183222007-05-06 19:49:28 +0000472 // Before we replace the actual archive, we need to forget all the
473 // members, since they point to data in that old archive. We need to do
474 // this because we cannot replace an open file on Windows.
475 cleanUpMemory();
Michael J. Spencer83bd49d2011-01-10 02:34:40 +0000476
Michael J. Spencer5ce56082011-01-16 23:39:59 +0000477 if (error_code ec = sys::fs::rename(TempArchivePath.str(),
478 archPath.str())) {
479 if (ErrMsg) *ErrMsg = ec.message();
Chris Lattner5b183222007-05-06 19:49:28 +0000480 return true;
Michael J. Spencer5ce56082011-01-16 23:39:59 +0000481 }
Chris Lattner5b183222007-05-06 19:49:28 +0000482
Owen Anderson3f4ebba2008-05-24 05:42:29 +0000483 // Set correct read and write permissions after temporary file is moved
484 // to final destination path.
485 if (archPath.makeReadableOnDisk(ErrMsg))
486 return true;
487 if (archPath.makeWriteableOnDisk(ErrMsg))
488 return true;
489
Chris Lattner5b183222007-05-06 19:49:28 +0000490 return false;
491}