blob: f08526ce8246c904cdecfc459cfc17d829a31fa2 [file] [log] [blame]
Reid Spencercf6afc62004-11-14 21:56:59 +00001//===-- ArchiveWriter.cpp - Write LLVM archive files ----------------------===//
Misha Brukman2b37d7c2005-04-21 21:13:18 +00002//
Reid Spencer362cbf02004-11-06 08:51:45 +00003// The LLVM Compiler Infrastructure
4//
Misha Brukman2b37d7c2005-04-21 21:13:18 +00005// This file was developed by Reid Spencer and is distributed under the
Reid Spencer362cbf02004-11-06 08:51:45 +00006// University of Illinois Open Source License. See LICENSE.TXT for details.
Misha Brukman2b37d7c2005-04-21 21:13:18 +00007//
Reid Spencer362cbf02004-11-06 08:51:45 +00008//===----------------------------------------------------------------------===//
9//
Reid Spencercf6afc62004-11-14 21:56:59 +000010// Builds up an LLVM archive file (.a) containing LLVM bytecode.
Reid Spencer362cbf02004-11-06 08:51:45 +000011//
12//===----------------------------------------------------------------------===//
13
14#include "ArchiveInternals.h"
Reid Spencer362cbf02004-11-06 08:51:45 +000015#include "llvm/Bytecode/Reader.h"
Chris Lattnere07c15c2007-05-06 06:18:07 +000016#include "llvm/Bitcode/ReaderWriter.h"
Reid Spencercf6afc62004-11-14 21:56:59 +000017#include "llvm/Support/Compressor.h"
18#include "llvm/System/Signals.h"
Reid Spencer3468e572005-04-21 16:15:19 +000019#include "llvm/System/Process.h"
Reid Spencer362cbf02004-11-06 08:51:45 +000020#include <fstream>
Bill Wendlinga21900d2006-11-28 22:49:32 +000021#include <ostream>
Reid Spencercf6afc62004-11-14 21:56:59 +000022#include <iomanip>
Reid Spencer362cbf02004-11-06 08:51:45 +000023using namespace llvm;
24
Reid Spencercf6afc62004-11-14 21:56:59 +000025// Write an integer using variable bit rate encoding. This saves a few bytes
26// per entry in the symbol table.
27inline void writeInteger(unsigned num, std::ofstream& ARFile) {
28 while (1) {
29 if (num < 0x80) { // done?
30 ARFile << (unsigned char)num;
31 return;
32 }
Misha Brukman2b37d7c2005-04-21 21:13:18 +000033
Reid Spencercf6afc62004-11-14 21:56:59 +000034 // Nope, we are bigger than a character, output the next 7 bits and set the
35 // high bit to say that there is more coming...
36 ARFile << (unsigned char)(0x80 | ((unsigned char)num & 0x7F));
37 num >>= 7; // Shift out 7 bits now...
38 }
39}
40
41// Compute how many bytes are taken by a given VBR encoded value. This is needed
42// to pre-compute the size of the symbol table.
43inline unsigned numVbrBytes(unsigned num) {
Reid Spencercf6afc62004-11-14 21:56:59 +000044
Reid Spencer87f90722004-11-16 06:47:30 +000045 // Note that the following nested ifs are somewhat equivalent to a binary
46 // search. We split it in half by comparing against 2^14 first. This allows
Misha Brukman2b37d7c2005-04-21 21:13:18 +000047 // most reasonable values to be done in 2 comparisons instead of 1 for
Reid Spencer87f90722004-11-16 06:47:30 +000048 // small ones and four for large ones. We expect this to access file offsets
Misha Brukman2b37d7c2005-04-21 21:13:18 +000049 // in the 2^10 to 2^24 range and symbol lengths in the 2^0 to 2^8 range,
Reid Spencer87f90722004-11-16 06:47:30 +000050 // so this approach is reasonable.
51 if (num < 1<<14)
52 if (num < 1<<7)
53 return 1;
54 else
55 return 2;
56 if (num < 1<<21)
57 return 3;
58
59 if (num < 1<<28)
60 return 4;
61 return 5; // anything >= 2^28 takes 5 bytes
Reid Spencercf6afc62004-11-14 21:56:59 +000062}
63
64// Create an empty archive.
Misha Brukman2b37d7c2005-04-21 21:13:18 +000065Archive*
Reid Spencercf6afc62004-11-14 21:56:59 +000066Archive::CreateEmpty(const sys::Path& FilePath ) {
Reid Spencer0ff2d312006-08-24 23:45:08 +000067 Archive* result = new Archive(FilePath);
Reid Spencer362cbf02004-11-06 08:51:45 +000068 return result;
69}
70
Misha Brukman2b37d7c2005-04-21 21:13:18 +000071// Fill the ArchiveMemberHeader with the information from a member. If
Reid Spencer87f90722004-11-16 06:47:30 +000072// TruncateNames is true, names are flattened to 15 chars or less. The sz field
Misha Brukman2b37d7c2005-04-21 21:13:18 +000073// is provided here instead of coming from the mbr because the member might be
74// stored compressed and the compressed size is not the ArchiveMember's size.
75// Furthermore compressed files have negative size fields to identify them as
Reid Spencer87f90722004-11-16 06:47:30 +000076// compressed.
Reid Spencercf6afc62004-11-14 21:56:59 +000077bool
78Archive::fillHeader(const ArchiveMember &mbr, ArchiveMemberHeader& hdr,
79 int sz, bool TruncateNames) const {
Reid Spencer362cbf02004-11-06 08:51:45 +000080
Reid Spencercf6afc62004-11-14 21:56:59 +000081 // Set the permissions mode, uid and gid
82 hdr.init();
83 char buffer[32];
84 sprintf(buffer, "%-8o", mbr.getMode());
85 memcpy(hdr.mode,buffer,8);
86 sprintf(buffer, "%-6u", mbr.getUser());
87 memcpy(hdr.uid,buffer,6);
88 sprintf(buffer, "%-6u", mbr.getGroup());
89 memcpy(hdr.gid,buffer,6);
90
Reid Spencercf6afc62004-11-14 21:56:59 +000091 // Set the last modification date
92 uint64_t secondsSinceEpoch = mbr.getModTime().toEpochTime();
93 sprintf(buffer,"%-12u", unsigned(secondsSinceEpoch));
94 memcpy(hdr.date,buffer,12);
95
Reid Spencerd4543da2004-11-17 18:28:29 +000096 // Get rid of trailing blanks in the name
Reid Spencer1fce0912004-12-11 00:14:15 +000097 std::string mbrPath = mbr.getPath().toString();
Reid Spencerd4543da2004-11-17 18:28:29 +000098 size_t mbrLen = mbrPath.length();
99 while (mbrLen > 0 && mbrPath[mbrLen-1] == ' ') {
100 mbrPath.erase(mbrLen-1,1);
101 mbrLen--;
102 }
103
Reid Spencercf6afc62004-11-14 21:56:59 +0000104 // Set the name field in one of its various flavors.
105 bool writeLongName = false;
Reid Spencercf6afc62004-11-14 21:56:59 +0000106 if (mbr.isStringTable()) {
107 memcpy(hdr.name,ARFILE_STRTAB_NAME,16);
Reid Spencer9a29db42004-11-20 07:29:40 +0000108 } else if (mbr.isSVR4SymbolTable()) {
109 memcpy(hdr.name,ARFILE_SVR4_SYMTAB_NAME,16);
110 } else if (mbr.isBSD4SymbolTable()) {
111 memcpy(hdr.name,ARFILE_BSD4_SYMTAB_NAME,16);
Reid Spencercf6afc62004-11-14 21:56:59 +0000112 } else if (mbr.isLLVMSymbolTable()) {
113 memcpy(hdr.name,ARFILE_LLVM_SYMTAB_NAME,16);
114 } else if (TruncateNames) {
115 const char* nm = mbrPath.c_str();
116 unsigned len = mbrPath.length();
117 size_t slashpos = mbrPath.rfind('/');
118 if (slashpos != std::string::npos) {
119 nm += slashpos + 1;
120 len -= slashpos +1;
121 }
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000122 if (len > 15)
Reid Spencercf6afc62004-11-14 21:56:59 +0000123 len = 15;
Reid Spencer87f90722004-11-16 06:47:30 +0000124 memcpy(hdr.name,nm,len);
Reid Spencercf6afc62004-11-14 21:56:59 +0000125 hdr.name[len] = '/';
126 } else if (mbrPath.length() < 16 && mbrPath.find('/') == std::string::npos) {
Reid Spencerd4543da2004-11-17 18:28:29 +0000127 memcpy(hdr.name,mbrPath.c_str(),mbrPath.length());
Reid Spencercf6afc62004-11-14 21:56:59 +0000128 hdr.name[mbrPath.length()] = '/';
129 } else {
130 std::string nm = "#1/";
131 nm += utostr(mbrPath.length());
Reid Spencerd4543da2004-11-17 18:28:29 +0000132 memcpy(hdr.name,nm.data(),nm.length());
Reid Spencer96ce3352004-11-17 16:14:21 +0000133 if (sz < 0)
134 sz -= mbrPath.length();
135 else
136 sz += mbrPath.length();
Reid Spencercf6afc62004-11-14 21:56:59 +0000137 writeLongName = true;
138 }
Reid Spencer96ce3352004-11-17 16:14:21 +0000139
140 // Set the size field
141 if (sz < 0) {
142 buffer[0] = '-';
143 sprintf(&buffer[1],"%-9u",(unsigned)-sz);
144 } else {
145 sprintf(buffer, "%-10u", (unsigned)sz);
146 }
147 memcpy(hdr.size,buffer,10);
148
Reid Spencercf6afc62004-11-14 21:56:59 +0000149 return writeLongName;
150}
151
Reid Spencer87f90722004-11-16 06:47:30 +0000152// Insert a file into the archive before some other member. This also takes care
153// of extracting the necessary flags and information from the file.
Reid Spencer0ff2d312006-08-24 23:45:08 +0000154bool
155Archive::addFileBefore(const sys::Path& filePath, iterator where,
156 std::string* ErrMsg) {
Reid Spencercd5561a2006-12-15 19:44:51 +0000157 if (!filePath.exists()) {
158 if (ErrMsg)
159 *ErrMsg = "Can not add a non-existent file to archive";
160 return true;
161 }
Reid Spencercf6afc62004-11-14 21:56:59 +0000162
163 ArchiveMember* mbr = new ArchiveMember(this);
164
165 mbr->data = 0;
166 mbr->path = filePath;
Reid Spencer8475ec02007-03-29 19:05:44 +0000167 const sys::FileStatus *FSInfo = mbr->path.getFileStatus(false, ErrMsg);
168 if (FSInfo)
169 mbr->info = *FSInfo;
170 else
Reid Spencer0ff2d312006-08-24 23:45:08 +0000171 return true;
Reid Spencercf6afc62004-11-14 21:56:59 +0000172
173 unsigned flags = 0;
Reid Spencer1fce0912004-12-11 00:14:15 +0000174 bool hasSlash = filePath.toString().find('/') != std::string::npos;
Reid Spencercf6afc62004-11-14 21:56:59 +0000175 if (hasSlash)
176 flags |= ArchiveMember::HasPathFlag;
Reid Spencer1fce0912004-12-11 00:14:15 +0000177 if (hasSlash || filePath.toString().length() > 15)
Reid Spencercf6afc62004-11-14 21:56:59 +0000178 flags |= ArchiveMember::HasLongFilenameFlag;
179 std::string magic;
180 mbr->path.getMagicNumber(magic,4);
181 switch (sys::IdentifyFileType(magic.c_str(),4)) {
Chris Lattnere07c15c2007-05-06 06:18:07 +0000182 case sys::Bitcode_FileType:
Reid Spencer20c34892007-04-04 06:31:04 +0000183 case sys::Bytecode_FileType:
Reid Spencercf6afc62004-11-14 21:56:59 +0000184 flags |= ArchiveMember::BytecodeFlag;
185 break;
Reid Spencer20c34892007-04-04 06:31:04 +0000186 case sys::CompressedBytecode_FileType:
Reid Spencercf6afc62004-11-14 21:56:59 +0000187 flags |= ArchiveMember::CompressedBytecodeFlag;
188 break;
189 default:
190 break;
191 }
192 mbr->flags = flags;
193 members.insert(where,mbr);
Reid Spencer0ff2d312006-08-24 23:45:08 +0000194 return false;
Reid Spencercf6afc62004-11-14 21:56:59 +0000195}
196
Reid Spencer87f90722004-11-16 06:47:30 +0000197// Write one member out to the file.
Reid Spencer3039b992006-07-07 19:09:14 +0000198bool
Reid Spencercf6afc62004-11-14 21:56:59 +0000199Archive::writeMember(
200 const ArchiveMember& member,
201 std::ofstream& ARFile,
202 bool CreateSymbolTable,
203 bool TruncateNames,
Reid Spencer3039b992006-07-07 19:09:14 +0000204 bool ShouldCompress,
Reid Spencer0ff2d312006-08-24 23:45:08 +0000205 std::string* ErrMsg
Reid Spencercf6afc62004-11-14 21:56:59 +0000206) {
207
208 unsigned filepos = ARFile.tellp();
209 filepos -= 8;
210
211 // Get the data and its size either from the
212 // member's in-memory data or directly from the file.
213 size_t fSize = member.getSize();
214 const char* data = (const char*)member.getData();
215 sys::MappedFile* mFile = 0;
216 if (!data) {
Reid Spencer751ca6b2006-08-22 16:07:44 +0000217 mFile = new sys::MappedFile();
Reid Spencer0ff2d312006-08-24 23:45:08 +0000218 if (mFile->open(member.getPath(), sys::MappedFile::READ_ACCESS, ErrMsg))
219 return true;
220 if (!(data = (const char*) mFile->map(ErrMsg)))
221 return true;
Reid Spencercf6afc62004-11-14 21:56:59 +0000222 fSize = mFile->size();
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000223 }
Reid Spencercf6afc62004-11-14 21:56:59 +0000224
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000225 // Now that we have the data in memory, update the
Reid Spencercf6afc62004-11-14 21:56:59 +0000226 // symbol table if its a bytecode file.
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000227 if (CreateSymbolTable &&
Reid Spencercf6afc62004-11-14 21:56:59 +0000228 (member.isBytecode() || member.isCompressedBytecode())) {
229 std::vector<std::string> symbols;
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000230 std::string FullMemberName = archPath.toString() + "(" +
231 member.getPath().toString()
Reid Spencerd4543da2004-11-17 18:28:29 +0000232 + ")";
Chris Lattnerf2e292c2007-02-07 21:41:02 +0000233 ModuleProvider* MP =
234 GetBytecodeSymbols((const unsigned char*)data,fSize,
235 FullMemberName, symbols,
236 Compressor::decompressToNewBuffer, ErrMsg);
Reid Spencercf6afc62004-11-14 21:56:59 +0000237
Reid Spencer766b7932004-11-15 01:20:11 +0000238 // If the bytecode parsed successfully
239 if ( MP ) {
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000240 for (std::vector<std::string>::iterator SI = symbols.begin(),
Reid Spencer766b7932004-11-15 01:20:11 +0000241 SE = symbols.end(); SI != SE; ++SI) {
Reid Spencercf6afc62004-11-14 21:56:59 +0000242
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000243 std::pair<SymTabType::iterator,bool> Res =
Reid Spencer766b7932004-11-15 01:20:11 +0000244 symTab.insert(std::make_pair(*SI,filepos));
245
246 if (Res.second) {
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000247 symTabSize += SI->length() +
248 numVbrBytes(SI->length()) +
Reid Spencer766b7932004-11-15 01:20:11 +0000249 numVbrBytes(filepos);
250 }
Reid Spencer362cbf02004-11-06 08:51:45 +0000251 }
Reid Spencer766b7932004-11-15 01:20:11 +0000252 // We don't need this module any more.
253 delete MP;
254 } else {
Reid Spencer3039b992006-07-07 19:09:14 +0000255 if (mFile != 0) {
256 mFile->close();
257 delete mFile;
258 }
Reid Spencer0ff2d312006-08-24 23:45:08 +0000259 if (ErrMsg)
Reid Spencer0b5a5042006-08-25 17:43:11 +0000260 *ErrMsg = "Can't parse bytecode member: " + member.getPath().toString()
261 + ": " + *ErrMsg;
Reid Spencer0ff2d312006-08-24 23:45:08 +0000262 return true;
Reid Spencer362cbf02004-11-06 08:51:45 +0000263 }
264 }
Reid Spencer362cbf02004-11-06 08:51:45 +0000265
Chris Lattnere07c15c2007-05-06 06:18:07 +0000266 int hdrSize = fSize;
Reid Spencer362cbf02004-11-06 08:51:45 +0000267
Reid Spencercf6afc62004-11-14 21:56:59 +0000268 // Compute the fields of the header
Reid Spencer362cbf02004-11-06 08:51:45 +0000269 ArchiveMemberHeader Hdr;
Reid Spencercf6afc62004-11-14 21:56:59 +0000270 bool writeLongName = fillHeader(member,Hdr,hdrSize,TruncateNames);
Reid Spencer362cbf02004-11-06 08:51:45 +0000271
272 // Write header to archive file
273 ARFile.write((char*)&Hdr, sizeof(Hdr));
Reid Spencer362cbf02004-11-06 08:51:45 +0000274
Reid Spencercf6afc62004-11-14 21:56:59 +0000275 // Write the long filename if its long
276 if (writeLongName) {
Reid Spencer1fce0912004-12-11 00:14:15 +0000277 ARFile.write(member.getPath().toString().data(),
278 member.getPath().toString().length());
Reid Spencercf6afc62004-11-14 21:56:59 +0000279 }
280
Reid Spencercf6afc62004-11-14 21:56:59 +0000281 // 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
Jeff Cohene1337212004-12-20 03:23:46 +0000285 if ((ARFile.tellp() & 1) == 1)
Reid Spencercf6afc62004-11-14 21:56:59 +0000286 ARFile << ARFILE_PAD;
287
Reid Spencercf6afc62004-11-14 21:56:59 +0000288 // Close the mapped file if it was opened
289 if (mFile != 0) {
Jeff Cohend19d89a2005-01-28 01:17:07 +0000290 mFile->close();
Reid Spencercf6afc62004-11-14 21:56:59 +0000291 delete mFile;
292 }
Reid Spencer0ff2d312006-08-24 23:45:08 +0000293 return false;
Reid Spencer362cbf02004-11-06 08:51:45 +0000294}
295
Reid Spencer87f90722004-11-16 06:47:30 +0000296// Write out the LLVM symbol table as an archive member to the file.
Reid Spencer362cbf02004-11-06 08:51:45 +0000297void
Reid Spencer87f90722004-11-16 06:47:30 +0000298Archive::writeSymbolTable(std::ofstream& ARFile) {
Reid Spencercf6afc62004-11-14 21:56:59 +0000299
300 // Construct the symbol table's header
301 ArchiveMemberHeader Hdr;
302 Hdr.init();
303 memcpy(Hdr.name,ARFILE_LLVM_SYMTAB_NAME,16);
304 uint64_t secondsSinceEpoch = sys::TimeValue::now().toEpochTime();
305 char buffer[32];
Misha Brukman4b2afe62005-04-20 03:55:35 +0000306 sprintf(buffer, "%-8o", 0644);
307 memcpy(Hdr.mode,buffer,8);
Reid Spencer3468e572005-04-21 16:15:19 +0000308 sprintf(buffer, "%-6u", sys::Process::GetCurrentUserId());
Misha Brukman4b2afe62005-04-20 03:55:35 +0000309 memcpy(Hdr.uid,buffer,6);
Reid Spencer3468e572005-04-21 16:15:19 +0000310 sprintf(buffer, "%-6u", sys::Process::GetCurrentGroupId());
Misha Brukman4b2afe62005-04-20 03:55:35 +0000311 memcpy(Hdr.gid,buffer,6);
Reid Spencercf6afc62004-11-14 21:56:59 +0000312 sprintf(buffer,"%-12u", unsigned(secondsSinceEpoch));
313 memcpy(Hdr.date,buffer,12);
314 sprintf(buffer,"%-10u",symTabSize);
315 memcpy(Hdr.size,buffer,10);
316
317 // Write the header
318 ARFile.write((char*)&Hdr, sizeof(Hdr));
319
320 // Save the starting position of the symbol tables data content.
321 unsigned startpos = ARFile.tellp();
322
Reid Spencercf6afc62004-11-14 21:56:59 +0000323 // Write out the symbols sequentially
324 for ( Archive::SymTabType::iterator I = symTab.begin(), E = symTab.end();
325 I != E; ++I)
326 {
327 // Write out the file index
328 writeInteger(I->second, ARFile);
329 // Write out the length of the symbol
330 writeInteger(I->first.length(), ARFile);
331 // Write out the symbol
332 ARFile.write(I->first.data(), I->first.length());
Reid Spencer362cbf02004-11-06 08:51:45 +0000333 }
334
Reid Spencercf6afc62004-11-14 21:56:59 +0000335 // Now that we're done with the symbol table, get the ending file position
336 unsigned endpos = ARFile.tellp();
Reid Spencer362cbf02004-11-06 08:51:45 +0000337
Reid Spencercf6afc62004-11-14 21:56:59 +0000338 // 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");
Reid Spencer362cbf02004-11-06 08:51:45 +0000341
Reid Spencercf6afc62004-11-14 21:56:59 +0000342 // Make sure the symbol table is even sized
343 if (symTabSize % 2 != 0 )
344 ARFile << ARFILE_PAD;
Reid Spencer362cbf02004-11-06 08:51:45 +0000345}
346
Reid Spencer87f90722004-11-16 06:47:30 +0000347// Write the entire archive to the file specified when the archive was created.
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000348// 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
Reid Spencer87f90722004-11-16 06:47:30 +0000350// compressing each archive member.
Reid Spencer3039b992006-07-07 19:09:14 +0000351bool
352Archive::writeToDisk(bool CreateSymbolTable, bool TruncateNames, bool Compress,
Reid Spencer0ff2d312006-08-24 23:45:08 +0000353 std::string* ErrMsg)
Reid Spencer3039b992006-07-07 19:09:14 +0000354{
Reid Spencercf6afc62004-11-14 21:56:59 +0000355 // 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.
Reid Spencercd5561a2006-12-15 19:44:51 +0000357 if (members.empty() && mapfile->size() > 8) {
358 if (ErrMsg)
359 *ErrMsg = "Can't write an archive not opened for writing";
360 return true;
361 }
Reid Spencercf6afc62004-11-14 21:56:59 +0000362
363 // Create a temporary file to store the archive in
364 sys::Path TmpArchive = archPath;
Reid Spencer0ff2d312006-08-24 23:45:08 +0000365 if (TmpArchive.createTemporaryFileOnDisk(ErrMsg))
366 return true;
Reid Spencercf6afc62004-11-14 21:56:59 +0000367
368 // Make sure the temporary gets removed if we crash
369 sys::RemoveFileOnSignal(TmpArchive);
370
Reid Spencer3039b992006-07-07 19:09:14 +0000371 // Create archive file for output.
372 std::ios::openmode io_mode = std::ios::out | std::ios::trunc |
373 std::ios::binary;
374 std::ofstream ArchiveFile(TmpArchive.c_str(), io_mode);
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000375
Reid Spencer3039b992006-07-07 19:09:14 +0000376 // Check for errors opening or creating archive file.
Chris Lattner0c332312006-07-28 22:29:50 +0000377 if (!ArchiveFile.is_open() || ArchiveFile.bad()) {
Reid Spencercf6afc62004-11-14 21:56:59 +0000378 if (TmpArchive.exists())
Reid Spencera229c5c2005-07-08 03:08:58 +0000379 TmpArchive.eraseFromDisk();
Reid Spencer0ff2d312006-08-24 23:45:08 +0000380 if (ErrMsg)
381 *ErrMsg = "Error opening archive file: " + archPath.toString();
382 return true;
Reid Spencercf6afc62004-11-14 21:56:59 +0000383 }
Reid Spencer3039b992006-07-07 19:09:14 +0000384
385 // If we're creating a symbol table, reset it now
386 if (CreateSymbolTable) {
387 symTabSize = 0;
388 symTab.clear();
389 }
390
391 // Write magic string to archive.
392 ArchiveFile << ARFILE_MAGIC;
393
394 // Loop over all member files, and write them out. Note that this also
395 // builds the symbol table, symTab.
Chris Lattner0c332312006-07-28 22:29:50 +0000396 for (MembersList::iterator I = begin(), E = end(); I != E; ++I) {
Reid Spencer0ff2d312006-08-24 23:45:08 +0000397 if (writeMember(*I, ArchiveFile, CreateSymbolTable,
398 TruncateNames, Compress, ErrMsg)) {
Reid Spencer3039b992006-07-07 19:09:14 +0000399 if (TmpArchive.exists())
400 TmpArchive.eraseFromDisk();
401 ArchiveFile.close();
Reid Spencer0ff2d312006-08-24 23:45:08 +0000402 return true;
Reid Spencer3039b992006-07-07 19:09:14 +0000403 }
404 }
405
406 // Close archive file.
407 ArchiveFile.close();
408
409 // Write the symbol table
410 if (CreateSymbolTable) {
411 // At this point we have written a file that is a legal archive but it
412 // doesn't have a symbol table in it. To aid in faster reading and to
413 // ensure compatibility with other archivers we need to put the symbol
414 // table first in the file. Unfortunately, this means mapping the file
415 // we just wrote back in and copying it to the destination file.
416
417 // Map in the archive we just wrote.
Reid Spencer751ca6b2006-08-22 16:07:44 +0000418 sys::MappedFile arch;
Reid Spencer0ff2d312006-08-24 23:45:08 +0000419 if (arch.open(TmpArchive, sys::MappedFile::READ_ACCESS, ErrMsg))
420 return true;
Reid Spencer751ca6b2006-08-22 16:07:44 +0000421 const char* base;
Reid Spencer0ff2d312006-08-24 23:45:08 +0000422 if (!(base = (const char*) arch.map(ErrMsg)))
423 return true;
Reid Spencer3039b992006-07-07 19:09:14 +0000424
425 // Open another temporary file in order to avoid invalidating the
426 // mmapped data
427 sys::Path FinalFilePath = archPath;
Reid Spencer0ff2d312006-08-24 23:45:08 +0000428 if (FinalFilePath.createTemporaryFileOnDisk(ErrMsg))
429 return true;
Reid Spencer3039b992006-07-07 19:09:14 +0000430 sys::RemoveFileOnSignal(FinalFilePath);
431
432 std::ofstream FinalFile(FinalFilePath.c_str(), io_mode);
Chris Lattner0c332312006-07-28 22:29:50 +0000433 if (!FinalFile.is_open() || FinalFile.bad()) {
Reid Spencer3039b992006-07-07 19:09:14 +0000434 if (TmpArchive.exists())
435 TmpArchive.eraseFromDisk();
Reid Spencer0ff2d312006-08-24 23:45:08 +0000436 if (ErrMsg)
437 *ErrMsg = "Error opening archive file: " + FinalFilePath.toString();
438 return true;
Reid Spencer3039b992006-07-07 19:09:14 +0000439 }
440
441 // Write the file magic number
442 FinalFile << ARFILE_MAGIC;
443
444 // If there is a foreign symbol table, put it into the file now. Most
445 // ar(1) implementations require the symbol table to be first but llvm-ar
446 // can deal with it being after a foreign symbol table. This ensures
447 // compatibility with other ar(1) implementations as well as allowing the
448 // archive to store both native .o and LLVM .bc files, both indexed.
449 if (foreignST) {
Reid Spencer0ff2d312006-08-24 23:45:08 +0000450 if (writeMember(*foreignST, FinalFile, false, false, false, ErrMsg)) {
Reid Spencer8d8a7ff2006-07-07 20:56:50 +0000451 FinalFile.close();
452 if (TmpArchive.exists())
453 TmpArchive.eraseFromDisk();
Reid Spencer0ff2d312006-08-24 23:45:08 +0000454 return true;
Reid Spencer8d8a7ff2006-07-07 20:56:50 +0000455 }
Reid Spencer3039b992006-07-07 19:09:14 +0000456 }
457
458 // Put out the LLVM symbol table now.
459 writeSymbolTable(FinalFile);
460
461 // Copy the temporary file contents being sure to skip the file's magic
462 // number.
463 FinalFile.write(base + sizeof(ARFILE_MAGIC)-1,
464 arch.size()-sizeof(ARFILE_MAGIC)+1);
465
466 // Close up shop
467 FinalFile.close();
468 arch.close();
469
470 // Move the final file over top of TmpArchive
Reid Spencer0ff2d312006-08-24 23:45:08 +0000471 if (FinalFilePath.renamePathOnDisk(TmpArchive, ErrMsg))
472 return true;
Reid Spencer3039b992006-07-07 19:09:14 +0000473 }
474
475 // Before we replace the actual archive, we need to forget all the
476 // members, since they point to data in that old archive. We need to do
477 // this because we cannot replace an open file on Windows.
478 cleanUpMemory();
479
Reid Spencer0ff2d312006-08-24 23:45:08 +0000480 if (TmpArchive.renamePathOnDisk(archPath, ErrMsg))
481 return true;
Reid Spencer3039b992006-07-07 19:09:14 +0000482
Reid Spencer0ff2d312006-08-24 23:45:08 +0000483 return false;
Reid Spencercf6afc62004-11-14 21:56:59 +0000484}