blob: 87816651d73a76b5d33796f14e2e7dffaed105f3 [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"
Reid Spencercf6afc62004-11-14 21:56:59 +000016#include "llvm/Support/Compressor.h"
17#include "llvm/System/Signals.h"
Reid Spencer3468e572005-04-21 16:15:19 +000018#include "llvm/System/Process.h"
Reid Spencer362cbf02004-11-06 08:51:45 +000019#include <fstream>
20#include <iostream>
Reid Spencercf6afc62004-11-14 21:56:59 +000021#include <iomanip>
Reid Spencer362cbf02004-11-06 08:51:45 +000022
23using 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 ) {
67 Archive* result = new Archive(FilePath,false);
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 Spencercf6afc62004-11-14 21:56:59 +0000154void
155Archive::addFileBefore(const sys::Path& filePath, iterator where) {
156 assert(filePath.exists() && "Can't add a non-existent file");
157
158 ArchiveMember* mbr = new ArchiveMember(this);
159
160 mbr->data = 0;
161 mbr->path = filePath;
162 mbr->path.getStatusInfo(mbr->info);
163
164 unsigned flags = 0;
Reid Spencer1fce0912004-12-11 00:14:15 +0000165 bool hasSlash = filePath.toString().find('/') != std::string::npos;
Reid Spencercf6afc62004-11-14 21:56:59 +0000166 if (hasSlash)
167 flags |= ArchiveMember::HasPathFlag;
Reid Spencer1fce0912004-12-11 00:14:15 +0000168 if (hasSlash || filePath.toString().length() > 15)
Reid Spencercf6afc62004-11-14 21:56:59 +0000169 flags |= ArchiveMember::HasLongFilenameFlag;
170 std::string magic;
171 mbr->path.getMagicNumber(magic,4);
172 switch (sys::IdentifyFileType(magic.c_str(),4)) {
173 case sys::BytecodeFileType:
174 flags |= ArchiveMember::BytecodeFlag;
175 break;
176 case sys::CompressedBytecodeFileType:
177 flags |= ArchiveMember::CompressedBytecodeFlag;
178 break;
179 default:
180 break;
181 }
182 mbr->flags = flags;
183 members.insert(where,mbr);
184}
185
Reid Spencer87f90722004-11-16 06:47:30 +0000186// Write one member out to the file.
Reid Spencer3039b992006-07-07 19:09:14 +0000187bool
Reid Spencercf6afc62004-11-14 21:56:59 +0000188Archive::writeMember(
189 const ArchiveMember& member,
190 std::ofstream& ARFile,
191 bool CreateSymbolTable,
192 bool TruncateNames,
Reid Spencer3039b992006-07-07 19:09:14 +0000193 bool ShouldCompress,
194 std::string* error
Reid Spencercf6afc62004-11-14 21:56:59 +0000195) {
196
197 unsigned filepos = ARFile.tellp();
198 filepos -= 8;
199
200 // Get the data and its size either from the
201 // member's in-memory data or directly from the file.
202 size_t fSize = member.getSize();
203 const char* data = (const char*)member.getData();
204 sys::MappedFile* mFile = 0;
205 if (!data) {
206 mFile = new sys::MappedFile(member.getPath());
207 data = (const char*) mFile->map();
208 fSize = mFile->size();
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000209 }
Reid Spencercf6afc62004-11-14 21:56:59 +0000210
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000211 // Now that we have the data in memory, update the
Reid Spencercf6afc62004-11-14 21:56:59 +0000212 // symbol table if its a bytecode file.
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000213 if (CreateSymbolTable &&
Reid Spencercf6afc62004-11-14 21:56:59 +0000214 (member.isBytecode() || member.isCompressedBytecode())) {
215 std::vector<std::string> symbols;
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000216 std::string FullMemberName = archPath.toString() + "(" +
217 member.getPath().toString()
Reid Spencerd4543da2004-11-17 18:28:29 +0000218 + ")";
Reid Spencer766b7932004-11-15 01:20:11 +0000219 ModuleProvider* MP = GetBytecodeSymbols(
Reid Spencerd4543da2004-11-17 18:28:29 +0000220 (const unsigned char*)data,fSize,FullMemberName, symbols);
Reid Spencercf6afc62004-11-14 21:56:59 +0000221
Reid Spencer766b7932004-11-15 01:20:11 +0000222 // If the bytecode parsed successfully
223 if ( MP ) {
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000224 for (std::vector<std::string>::iterator SI = symbols.begin(),
Reid Spencer766b7932004-11-15 01:20:11 +0000225 SE = symbols.end(); SI != SE; ++SI) {
Reid Spencercf6afc62004-11-14 21:56:59 +0000226
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000227 std::pair<SymTabType::iterator,bool> Res =
Reid Spencer766b7932004-11-15 01:20:11 +0000228 symTab.insert(std::make_pair(*SI,filepos));
229
230 if (Res.second) {
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000231 symTabSize += SI->length() +
232 numVbrBytes(SI->length()) +
Reid Spencer766b7932004-11-15 01:20:11 +0000233 numVbrBytes(filepos);
234 }
Reid Spencer362cbf02004-11-06 08:51:45 +0000235 }
Reid Spencer766b7932004-11-15 01:20:11 +0000236 // We don't need this module any more.
237 delete MP;
238 } else {
Reid Spencer3039b992006-07-07 19:09:14 +0000239 if (mFile != 0) {
240 mFile->close();
241 delete mFile;
242 }
243 if (error)
244 *error = "Can't parse bytecode member: " + member.getPath().toString();
Reid Spencer362cbf02004-11-06 08:51:45 +0000245 }
246 }
Reid Spencer362cbf02004-11-06 08:51:45 +0000247
Reid Spencercf6afc62004-11-14 21:56:59 +0000248 // Determine if we actually should compress this member
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000249 bool willCompress =
250 (ShouldCompress &&
251 !member.isCompressed() &&
Reid Spencer9a29db42004-11-20 07:29:40 +0000252 !member.isCompressedBytecode() &&
253 !member.isLLVMSymbolTable() &&
254 !member.isSVR4SymbolTable() &&
255 !member.isBSD4SymbolTable());
Reid Spencer362cbf02004-11-06 08:51:45 +0000256
Reid Spencercf6afc62004-11-14 21:56:59 +0000257 // Perform the compression. Note that if the file is uncompressed bytecode
258 // then we turn the file into compressed bytecode rather than treating it as
259 // compressed data. This is necessary since it allows us to determine that the
260 // file contains bytecode instead of looking like a regular compressed data
261 // member. A compressed bytecode file has its content compressed but has a
262 // magic number of "llvc". This acounts for the +/-4 arithmetic in the code
263 // below.
264 int hdrSize;
265 if (willCompress) {
266 char* output = 0;
267 if (member.isBytecode()) {
268 data +=4;
269 fSize -= 4;
270 }
Reid Spencer3039b992006-07-07 19:09:14 +0000271 fSize = Compressor::compressToNewBuffer(data,fSize,output,error);
272 if (fSize == 0)
273 return false;
Reid Spencercf6afc62004-11-14 21:56:59 +0000274 data = output;
275 if (member.isBytecode())
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000276 hdrSize = -fSize-4;
Reid Spencercf6afc62004-11-14 21:56:59 +0000277 else
278 hdrSize = -fSize;
279 } else {
280 hdrSize = fSize;
281 }
Reid Spencer362cbf02004-11-06 08:51:45 +0000282
Reid Spencercf6afc62004-11-14 21:56:59 +0000283 // Compute the fields of the header
Reid Spencer362cbf02004-11-06 08:51:45 +0000284 ArchiveMemberHeader Hdr;
Reid Spencercf6afc62004-11-14 21:56:59 +0000285 bool writeLongName = fillHeader(member,Hdr,hdrSize,TruncateNames);
Reid Spencer362cbf02004-11-06 08:51:45 +0000286
287 // Write header to archive file
288 ARFile.write((char*)&Hdr, sizeof(Hdr));
Reid Spencer362cbf02004-11-06 08:51:45 +0000289
Reid Spencercf6afc62004-11-14 21:56:59 +0000290 // Write the long filename if its long
291 if (writeLongName) {
Reid Spencer1fce0912004-12-11 00:14:15 +0000292 ARFile.write(member.getPath().toString().data(),
293 member.getPath().toString().length());
Reid Spencercf6afc62004-11-14 21:56:59 +0000294 }
295
296 // Make sure we write the compressed bytecode magic number if we should.
297 if (willCompress && member.isBytecode())
298 ARFile.write("llvc",4);
299
300 // Write the (possibly compressed) member's content to the file.
301 ARFile.write(data,fSize);
302
303 // Make sure the member is an even length
Jeff Cohene1337212004-12-20 03:23:46 +0000304 if ((ARFile.tellp() & 1) == 1)
Reid Spencercf6afc62004-11-14 21:56:59 +0000305 ARFile << ARFILE_PAD;
306
307 // Free the compressed data, if necessary
308 if (willCompress) {
309 free((void*)data);
310 }
311
312 // Close the mapped file if it was opened
313 if (mFile != 0) {
Jeff Cohend19d89a2005-01-28 01:17:07 +0000314 mFile->close();
Reid Spencercf6afc62004-11-14 21:56:59 +0000315 delete mFile;
316 }
Reid Spencer3039b992006-07-07 19:09:14 +0000317 return true;
Reid Spencer362cbf02004-11-06 08:51:45 +0000318}
319
Reid Spencer87f90722004-11-16 06:47:30 +0000320// Write out the LLVM symbol table as an archive member to the file.
Reid Spencer362cbf02004-11-06 08:51:45 +0000321void
Reid Spencer87f90722004-11-16 06:47:30 +0000322Archive::writeSymbolTable(std::ofstream& ARFile) {
Reid Spencercf6afc62004-11-14 21:56:59 +0000323
324 // Construct the symbol table's header
325 ArchiveMemberHeader Hdr;
326 Hdr.init();
327 memcpy(Hdr.name,ARFILE_LLVM_SYMTAB_NAME,16);
328 uint64_t secondsSinceEpoch = sys::TimeValue::now().toEpochTime();
329 char buffer[32];
Misha Brukman4b2afe62005-04-20 03:55:35 +0000330 sprintf(buffer, "%-8o", 0644);
331 memcpy(Hdr.mode,buffer,8);
Reid Spencer3468e572005-04-21 16:15:19 +0000332 sprintf(buffer, "%-6u", sys::Process::GetCurrentUserId());
Misha Brukman4b2afe62005-04-20 03:55:35 +0000333 memcpy(Hdr.uid,buffer,6);
Reid Spencer3468e572005-04-21 16:15:19 +0000334 sprintf(buffer, "%-6u", sys::Process::GetCurrentGroupId());
Misha Brukman4b2afe62005-04-20 03:55:35 +0000335 memcpy(Hdr.gid,buffer,6);
Reid Spencercf6afc62004-11-14 21:56:59 +0000336 sprintf(buffer,"%-12u", unsigned(secondsSinceEpoch));
337 memcpy(Hdr.date,buffer,12);
338 sprintf(buffer,"%-10u",symTabSize);
339 memcpy(Hdr.size,buffer,10);
340
341 // Write the header
342 ARFile.write((char*)&Hdr, sizeof(Hdr));
343
344 // Save the starting position of the symbol tables data content.
345 unsigned startpos = ARFile.tellp();
346
Reid Spencercf6afc62004-11-14 21:56:59 +0000347 // Write out the symbols sequentially
348 for ( Archive::SymTabType::iterator I = symTab.begin(), E = symTab.end();
349 I != E; ++I)
350 {
351 // Write out the file index
352 writeInteger(I->second, ARFile);
353 // Write out the length of the symbol
354 writeInteger(I->first.length(), ARFile);
355 // Write out the symbol
356 ARFile.write(I->first.data(), I->first.length());
Reid Spencer362cbf02004-11-06 08:51:45 +0000357 }
358
Reid Spencercf6afc62004-11-14 21:56:59 +0000359 // Now that we're done with the symbol table, get the ending file position
360 unsigned endpos = ARFile.tellp();
Reid Spencer362cbf02004-11-06 08:51:45 +0000361
Reid Spencercf6afc62004-11-14 21:56:59 +0000362 // Make sure that the amount we wrote is what we pre-computed. This is
363 // critical for file integrity purposes.
364 assert(endpos - startpos == symTabSize && "Invalid symTabSize computation");
Reid Spencer362cbf02004-11-06 08:51:45 +0000365
Reid Spencercf6afc62004-11-14 21:56:59 +0000366 // Make sure the symbol table is even sized
367 if (symTabSize % 2 != 0 )
368 ARFile << ARFILE_PAD;
Reid Spencer362cbf02004-11-06 08:51:45 +0000369}
370
Reid Spencer87f90722004-11-16 06:47:30 +0000371// Write the entire archive to the file specified when the archive was created.
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000372// This writes to a temporary file first. Options are for creating a symbol
373// table, flattening the file names (no directories, 15 chars max) and
Reid Spencer87f90722004-11-16 06:47:30 +0000374// compressing each archive member.
Reid Spencer3039b992006-07-07 19:09:14 +0000375bool
376Archive::writeToDisk(bool CreateSymbolTable, bool TruncateNames, bool Compress,
377 std::string* error)
378{
Reid Spencercf6afc62004-11-14 21:56:59 +0000379 // Make sure they haven't opened up the file, not loaded it,
380 // but are now trying to write it which would wipe out the file.
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000381 assert(!(members.empty() && mapfile->size() > 8) &&
Reid Spencer87f90722004-11-16 06:47:30 +0000382 "Can't write an archive not opened for writing");
Reid Spencercf6afc62004-11-14 21:56:59 +0000383
384 // Create a temporary file to store the archive in
385 sys::Path TmpArchive = archPath;
Reid Spencera229c5c2005-07-08 03:08:58 +0000386 TmpArchive.createTemporaryFileOnDisk();
Reid Spencercf6afc62004-11-14 21:56:59 +0000387
388 // Make sure the temporary gets removed if we crash
389 sys::RemoveFileOnSignal(TmpArchive);
390
Reid Spencer3039b992006-07-07 19:09:14 +0000391 // Create archive file for output.
392 std::ios::openmode io_mode = std::ios::out | std::ios::trunc |
393 std::ios::binary;
394 std::ofstream ArchiveFile(TmpArchive.c_str(), io_mode);
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000395
Reid Spencer3039b992006-07-07 19:09:14 +0000396 // Check for errors opening or creating archive file.
397 if ( !ArchiveFile.is_open() || ArchiveFile.bad() ) {
Reid Spencercf6afc62004-11-14 21:56:59 +0000398 if (TmpArchive.exists())
Reid Spencera229c5c2005-07-08 03:08:58 +0000399 TmpArchive.eraseFromDisk();
Reid Spencer3039b992006-07-07 19:09:14 +0000400 if (error)
401 *error = "Error opening archive file: " + archPath.toString();
402 return false;
Reid Spencercf6afc62004-11-14 21:56:59 +0000403 }
Reid Spencer3039b992006-07-07 19:09:14 +0000404
405 // If we're creating a symbol table, reset it now
406 if (CreateSymbolTable) {
407 symTabSize = 0;
408 symTab.clear();
409 }
410
411 // Write magic string to archive.
412 ArchiveFile << ARFILE_MAGIC;
413
414 // Loop over all member files, and write them out. Note that this also
415 // builds the symbol table, symTab.
416 for ( MembersList::iterator I = begin(), E = end(); I != E; ++I) {
417 if (!writeMember(*I,ArchiveFile,CreateSymbolTable,
418 TruncateNames,Compress,error))
419 {
420 if (TmpArchive.exists())
421 TmpArchive.eraseFromDisk();
422 ArchiveFile.close();
423 return false;
424 }
425 }
426
427 // Close archive file.
428 ArchiveFile.close();
429
430 // Write the symbol table
431 if (CreateSymbolTable) {
432 // At this point we have written a file that is a legal archive but it
433 // doesn't have a symbol table in it. To aid in faster reading and to
434 // ensure compatibility with other archivers we need to put the symbol
435 // table first in the file. Unfortunately, this means mapping the file
436 // we just wrote back in and copying it to the destination file.
437
438 // Map in the archive we just wrote.
439 sys::MappedFile arch(TmpArchive);
440 const char* base = (const char*) arch.map();
441
442 // Open another temporary file in order to avoid invalidating the
443 // mmapped data
444 sys::Path FinalFilePath = archPath;
445 FinalFilePath.createTemporaryFileOnDisk();
446 sys::RemoveFileOnSignal(FinalFilePath);
447
448 std::ofstream FinalFile(FinalFilePath.c_str(), io_mode);
449 if ( !FinalFile.is_open() || FinalFile.bad() ) {
450 if (TmpArchive.exists())
451 TmpArchive.eraseFromDisk();
452 if (error)
453 *error = "Error opening archive file: " + FinalFilePath.toString();
454 return false;
455 }
456
457 // Write the file magic number
458 FinalFile << ARFILE_MAGIC;
459
460 // If there is a foreign symbol table, put it into the file now. Most
461 // ar(1) implementations require the symbol table to be first but llvm-ar
462 // can deal with it being after a foreign symbol table. This ensures
463 // compatibility with other ar(1) implementations as well as allowing the
464 // archive to store both native .o and LLVM .bc files, both indexed.
465 if (foreignST) {
466 writeMember(*foreignST, FinalFile, false, false, false);
467 }
468
469 // Put out the LLVM symbol table now.
470 writeSymbolTable(FinalFile);
471
472 // Copy the temporary file contents being sure to skip the file's magic
473 // number.
474 FinalFile.write(base + sizeof(ARFILE_MAGIC)-1,
475 arch.size()-sizeof(ARFILE_MAGIC)+1);
476
477 // Close up shop
478 FinalFile.close();
479 arch.close();
480
481 // Move the final file over top of TmpArchive
482 FinalFilePath.renamePathOnDisk(TmpArchive);
483 }
484
485 // Before we replace the actual archive, we need to forget all the
486 // members, since they point to data in that old archive. We need to do
487 // this because we cannot replace an open file on Windows.
488 cleanUpMemory();
489
490 TmpArchive.renamePathOnDisk(archPath);
491
492 return true;
Reid Spencercf6afc62004-11-14 21:56:59 +0000493}