blob: 34663c250a50009b052adb1b5822ab37be0f606f [file] [log] [blame]
Chris Lattner97f752f2003-12-30 07:45:46 +00001//===-- llvm-ar.cpp - LLVM archive librarian utility ----------------------===//
Misha Brukman3da94ae2005-04-22 00:00:37 +00002//
John Criswell7c0e0222003-10-20 17:47:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner21c62da2007-12-29 20:44:31 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukman3da94ae2005-04-22 00:00:37 +00007//
John Criswell7c0e0222003-10-20 17:47:21 +00008//===----------------------------------------------------------------------===//
Tanya Lattner14baebf2003-08-28 15:22:38 +00009//
Misha Brukman3da94ae2005-04-22 00:00:37 +000010// Builds up (relatively) standard unix archive files (.a) containing LLVM
Gabor Greifa99be512007-07-05 17:07:56 +000011// bitcode or other files.
Tanya Lattner14baebf2003-08-28 15:22:38 +000012//
13//===----------------------------------------------------------------------===//
Brian Gaeke4fa9fd32003-10-10 18:47:08 +000014
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000015#include "llvm/IR/LLVMContext.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000016#include "llvm/IR/Module.h"
Rafael Espindola34ac52d2013-07-12 20:21:39 +000017#include "llvm/Object/Archive.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000018#include "llvm/Support/CommandLine.h"
Michael J. Spencer54453f22011-01-10 02:34:23 +000019#include "llvm/Support/FileSystem.h"
Chandler Carruthf010c462012-12-04 10:44:52 +000020#include "llvm/Support/Format.h"
Chris Lattnerc30598b2006-12-06 01:18:01 +000021#include "llvm/Support/ManagedStatic.h"
Rafael Espindola34ac52d2013-07-12 20:21:39 +000022#include "llvm/Support/MemoryBuffer.h"
Chris Lattnercc14d252009-03-06 05:34:10 +000023#include "llvm/Support/PrettyStackTrace.h"
Michael J. Spencer1f6efa32010-11-29 18:16:10 +000024#include "llvm/Support/Signals.h"
Rafael Espindola34ac52d2013-07-12 20:21:39 +000025#include "llvm/Support/ToolOutputFile.h"
Chandler Carruthf010c462012-12-04 10:44:52 +000026#include "llvm/Support/raw_ostream.h"
Reid Spencer3a1582b2004-11-14 22:20:07 +000027#include <algorithm>
Joerg Sonnenberger975bc072012-10-26 10:49:15 +000028#include <cstdlib>
Rafael Espindola11ca2e52013-06-20 20:56:14 +000029#include <fcntl.h>
Chandler Carruthf010c462012-12-04 10:44:52 +000030#include <memory>
Rafael Espindola11ca2e52013-06-20 20:56:14 +000031
32#if !defined(_MSC_VER) && !defined(__MINGW32__)
33#include <unistd.h>
34#else
35#include <io.h>
36#endif
37
Brian Gaeked0fde302003-11-11 22:41:34 +000038using namespace llvm;
39
Rafael Espindola34ac52d2013-07-12 20:21:39 +000040// The name this program was invoked as.
41static StringRef ToolName;
42
43static const char *TemporaryOutput;
44
45// fail - Show the error message and exit.
46LLVM_ATTRIBUTE_NORETURN static void fail(Twine Error) {
47 outs() << ToolName << ": " << Error << ".\n";
48 if (TemporaryOutput)
49 sys::fs::remove(TemporaryOutput);
50 exit(1);
51}
52
53static void failIfError(error_code EC, Twine Context = "") {
54 if (!EC)
55 return;
56
57 std::string ContextStr = Context.str();
58 if (ContextStr == "")
59 fail(EC.message());
60 fail(Context + ": " + EC.message());
61}
62
Dan Gohman82f209e2007-10-15 21:10:03 +000063// Option for compatibility with AIX, not used but must allow it to be present.
Misha Brukman3da94ae2005-04-22 00:00:37 +000064static cl::opt<bool>
65X32Option ("X32_64", cl::Hidden,
Reid Spencerbede5832004-11-16 06:41:09 +000066 cl::desc("Ignored option for compatibility with AIX"));
Tanya Lattner14baebf2003-08-28 15:22:38 +000067
Reid Spencerbede5832004-11-16 06:41:09 +000068// llvm-ar operation code and modifier flags. This must come first.
Misha Brukman3da94ae2005-04-22 00:00:37 +000069static cl::opt<std::string>
Reid Spencer3a1582b2004-11-14 22:20:07 +000070Options(cl::Positional, cl::Required, cl::desc("{operation}[modifiers]..."));
Tanya Lattner14baebf2003-08-28 15:22:38 +000071
Reid Spencerbede5832004-11-16 06:41:09 +000072// llvm-ar remaining positional arguments.
Misha Brukman3da94ae2005-04-22 00:00:37 +000073static cl::list<std::string>
74RestOfArgs(cl::Positional, cl::OneOrMore,
Reid Spencer3a1582b2004-11-14 22:20:07 +000075 cl::desc("[relpos] [count] <archive-file> [members]..."));
Tanya Lattner14baebf2003-08-28 15:22:38 +000076
Reid Spencerbede5832004-11-16 06:41:09 +000077// MoreHelp - Provide additional help output explaining the operations and
78// modifiers of llvm-ar. This object instructs the CommandLine library
79// to print the text of the constructor when the --help option is given.
80static cl::extrahelp MoreHelp(
Misha Brukman3da94ae2005-04-22 00:00:37 +000081 "\nOPERATIONS:\n"
Reid Spencerbede5832004-11-16 06:41:09 +000082 " d[NsS] - delete file(s) from the archive\n"
83 " m[abiSs] - move file(s) in the archive\n"
84 " p[kN] - print file(s) found in the archive\n"
85 " q[ufsS] - quick append file(s) to the archive\n"
Rafael Espindola94bc2462012-08-10 01:57:52 +000086 " r[abfiuRsS] - replace or insert file(s) into the archive\n"
Reid Spencerbede5832004-11-16 06:41:09 +000087 " t - display contents of archive\n"
88 " x[No] - extract file(s) from the archive\n"
89 "\nMODIFIERS (operation specific):\n"
90 " [a] - put file(s) after [relpos]\n"
91 " [b] - put file(s) before [relpos] (same as [i])\n"
Reid Spencerbede5832004-11-16 06:41:09 +000092 " [i] - put file(s) before [relpos] (same as [b])\n"
Reid Spencerbede5832004-11-16 06:41:09 +000093 " [N] - use instance [count] of name\n"
94 " [o] - preserve original dates\n"
Reid Spencerbede5832004-11-16 06:41:09 +000095 " [s] - create an archive index (cf. ranlib)\n"
96 " [S] - do not build a symbol table\n"
97 " [u] - update only files newer than archive contents\n"
Reid Spencerbede5832004-11-16 06:41:09 +000098 "\nMODIFIERS (generic):\n"
99 " [c] - do not warn if the library had to be created\n"
100 " [v] - be verbose about actions taken\n"
Reid Spencerbede5832004-11-16 06:41:09 +0000101);
102
Reid Spencer3a1582b2004-11-14 22:20:07 +0000103// This enumeration delineates the kinds of operations on an archive
104// that are permitted.
105enum ArchiveOperation {
Reid Spencer3a1582b2004-11-14 22:20:07 +0000106 Print, ///< Print the contents of the archive
107 Delete, ///< Delete the specified members
108 Move, ///< Move members to end or as given by {a,b,i} modifiers
109 QuickAppend, ///< Quickly append to end of archive
110 ReplaceOrInsert, ///< Replace or Insert members
111 DisplayTable, ///< Display the table of contents
Chris Lattnerd74ea2b2006-05-24 17:04:05 +0000112 Extract ///< Extract files back to file system
Tanya Lattner57bd7962003-12-06 23:01:25 +0000113};
Tanya Lattner14baebf2003-08-28 15:22:38 +0000114
Reid Spencer3a1582b2004-11-14 22:20:07 +0000115// Modifiers to follow operation to vary behavior
Rafael Espindola2494dfc2013-07-12 16:29:27 +0000116static bool AddAfter = false; ///< 'a' modifier
117static bool AddBefore = false; ///< 'b' modifier
118static bool Create = false; ///< 'c' modifier
119static bool OriginalDates = false; ///< 'o' modifier
120static bool OnlyUpdate = false; ///< 'u' modifier
121static bool Verbose = false; ///< 'v' modifier
Tanya Lattner14baebf2003-08-28 15:22:38 +0000122
Reid Spencer3a1582b2004-11-14 22:20:07 +0000123// Relative Positional Argument (for insert/move). This variable holds
124// the name of the archive member to which the 'a', 'b' or 'i' modifier
125// refers. Only one of 'a', 'b' or 'i' can be specified so we only need
126// one variable.
Rafael Espindola2494dfc2013-07-12 16:29:27 +0000127static std::string RelPos;
Tanya Lattner57bd7962003-12-06 23:01:25 +0000128
Reid Spencer3a1582b2004-11-14 22:20:07 +0000129// This variable holds the name of the archive file as given on the
130// command line.
Rafael Espindola2494dfc2013-07-12 16:29:27 +0000131static std::string ArchiveName;
Tanya Lattner57bd7962003-12-06 23:01:25 +0000132
Reid Spencer3a1582b2004-11-14 22:20:07 +0000133// This variable holds the list of member files to proecess, as given
134// on the command line.
Rafael Espindola2494dfc2013-07-12 16:29:27 +0000135static std::vector<std::string> Members;
Tanya Lattner57bd7962003-12-06 23:01:25 +0000136
Joerg Sonnenberger975bc072012-10-26 10:49:15 +0000137// show_help - Show the error message, the help message and exit.
138LLVM_ATTRIBUTE_NORETURN static void
139show_help(const std::string &msg) {
Rafael Espindola34ac52d2013-07-12 20:21:39 +0000140 errs() << ToolName << ": " << msg << "\n\n";
Joerg Sonnenberger975bc072012-10-26 10:49:15 +0000141 cl::PrintHelpMessage();
Joerg Sonnenberger975bc072012-10-26 10:49:15 +0000142 std::exit(1);
143}
144
Reid Spencer3a1582b2004-11-14 22:20:07 +0000145// getRelPos - Extract the member filename from the command line for
146// the [relpos] argument associated with a, b, and i modifiers
Rafael Espindola2494dfc2013-07-12 16:29:27 +0000147static void getRelPos() {
Joerg Sonnenberger975bc072012-10-26 10:49:15 +0000148 if(RestOfArgs.size() == 0)
149 show_help("Expected [relpos] for a, b, or i modifier");
150 RelPos = RestOfArgs[0];
151 RestOfArgs.erase(RestOfArgs.begin());
Tanya Lattner57bd7962003-12-06 23:01:25 +0000152}
153
Reid Spencer3a1582b2004-11-14 22:20:07 +0000154// getArchive - Get the archive file name from the command line
Rafael Espindola2494dfc2013-07-12 16:29:27 +0000155static void getArchive() {
Joerg Sonnenberger975bc072012-10-26 10:49:15 +0000156 if(RestOfArgs.size() == 0)
157 show_help("An archive name must be specified");
158 ArchiveName = RestOfArgs[0];
159 RestOfArgs.erase(RestOfArgs.begin());
Tanya Lattner57bd7962003-12-06 23:01:25 +0000160}
161
Reid Spencer3a1582b2004-11-14 22:20:07 +0000162// getMembers - Copy over remaining items in RestOfArgs to our Members vector
163// This is just for clarity.
Rafael Espindola2494dfc2013-07-12 16:29:27 +0000164static void getMembers() {
Reid Spencer3a1582b2004-11-14 22:20:07 +0000165 if(RestOfArgs.size() > 0)
Misha Brukman3da94ae2005-04-22 00:00:37 +0000166 Members = std::vector<std::string>(RestOfArgs);
Tanya Lattner57bd7962003-12-06 23:01:25 +0000167}
168
Reid Spencer3a1582b2004-11-14 22:20:07 +0000169// parseCommandLine - Parse the command line options as presented and return the
Misha Brukman3da94ae2005-04-22 00:00:37 +0000170// operation specified. Process all modifiers and check to make sure that
Reid Spencer3a1582b2004-11-14 22:20:07 +0000171// constraints on modifier/operation pairs have not been violated.
Rafael Espindola2494dfc2013-07-12 16:29:27 +0000172static ArchiveOperation parseCommandLine() {
Tanya Lattner57bd7962003-12-06 23:01:25 +0000173
Reid Spencer3a1582b2004-11-14 22:20:07 +0000174 // Keep track of number of operations. We can only specify one
175 // per execution.
Tanya Lattner57bd7962003-12-06 23:01:25 +0000176 unsigned NumOperations = 0;
177
Reid Spencer3a1582b2004-11-14 22:20:07 +0000178 // Keep track of the number of positional modifiers (a,b,i). Only
179 // one can be specified.
180 unsigned NumPositional = 0;
181
182 // Keep track of which operation was requested
Rafael Espindola87b8a7f92013-07-05 12:12:43 +0000183 ArchiveOperation Operation;
Reid Spencer3a1582b2004-11-14 22:20:07 +0000184
Tanya Lattner57bd7962003-12-06 23:01:25 +0000185 for(unsigned i=0; i<Options.size(); ++i) {
186 switch(Options[i]) {
Reid Spencer3a1582b2004-11-14 22:20:07 +0000187 case 'd': ++NumOperations; Operation = Delete; break;
188 case 'm': ++NumOperations; Operation = Move ; break;
189 case 'p': ++NumOperations; Operation = Print; break;
Seo Sanghyeondc32d192007-12-25 13:53:47 +0000190 case 'q': ++NumOperations; Operation = QuickAppend; break;
Misha Brukman3da94ae2005-04-22 00:00:37 +0000191 case 'r': ++NumOperations; Operation = ReplaceOrInsert; break;
Reid Spencer3a1582b2004-11-14 22:20:07 +0000192 case 't': ++NumOperations; Operation = DisplayTable; break;
193 case 'x': ++NumOperations; Operation = Extract; break;
194 case 'c': Create = true; break;
Reid Spencer3a1582b2004-11-14 22:20:07 +0000195 case 'l': /* accepted but unused */ break;
196 case 'o': OriginalDates = true; break;
Rafael Espindola6f2c88a2013-06-20 13:00:30 +0000197 case 's': break; // Ignore for now.
198 case 'S': break; // Ignore for now.
Reid Spencer3a1582b2004-11-14 22:20:07 +0000199 case 'u': OnlyUpdate = true; break;
200 case 'v': Verbose = true; break;
Tanya Lattner57bd7962003-12-06 23:01:25 +0000201 case 'a':
Tanya Lattner57bd7962003-12-06 23:01:25 +0000202 getRelPos();
Reid Spencer3a1582b2004-11-14 22:20:07 +0000203 AddAfter = true;
204 NumPositional++;
Tanya Lattner57bd7962003-12-06 23:01:25 +0000205 break;
206 case 'b':
Tanya Lattner57bd7962003-12-06 23:01:25 +0000207 getRelPos();
Reid Spencer3a1582b2004-11-14 22:20:07 +0000208 AddBefore = true;
209 NumPositional++;
Tanya Lattner57bd7962003-12-06 23:01:25 +0000210 break;
211 case 'i':
Tanya Lattner57bd7962003-12-06 23:01:25 +0000212 getRelPos();
Rafael Espindola1b3e3ee2013-07-11 15:54:53 +0000213 AddBefore = true;
Reid Spencer3a1582b2004-11-14 22:20:07 +0000214 NumPositional++;
Tanya Lattner57bd7962003-12-06 23:01:25 +0000215 break;
Tanya Lattner57bd7962003-12-06 23:01:25 +0000216 default:
Reid Spencerbede5832004-11-16 06:41:09 +0000217 cl::PrintHelpMessage();
Tanya Lattner57bd7962003-12-06 23:01:25 +0000218 }
219 }
220
Misha Brukman3da94ae2005-04-22 00:00:37 +0000221 // At this point, the next thing on the command line must be
Reid Spencer3a1582b2004-11-14 22:20:07 +0000222 // the archive name.
Tanya Lattner57bd7962003-12-06 23:01:25 +0000223 getArchive();
Reid Spencer3a1582b2004-11-14 22:20:07 +0000224
225 // Everything on the command line at this point is a member.
Tanya Lattner57bd7962003-12-06 23:01:25 +0000226 getMembers();
227
Reid Spencer3a1582b2004-11-14 22:20:07 +0000228 // Perform various checks on the operation/modifier specification
229 // to make sure we are dealing with a legal request.
230 if (NumOperations == 0)
Joerg Sonnenberger975bc072012-10-26 10:49:15 +0000231 show_help("You must specify at least one of the operations");
Reid Spencer3a1582b2004-11-14 22:20:07 +0000232 if (NumOperations > 1)
Joerg Sonnenberger975bc072012-10-26 10:49:15 +0000233 show_help("Only one operation may be specified");
Reid Spencer3a1582b2004-11-14 22:20:07 +0000234 if (NumPositional > 1)
Joerg Sonnenberger975bc072012-10-26 10:49:15 +0000235 show_help("You may only specify one of a, b, and i modifiers");
Rafael Espindola1b3e3ee2013-07-11 15:54:53 +0000236 if (AddAfter || AddBefore) {
Reid Spencer3a1582b2004-11-14 22:20:07 +0000237 if (Operation != Move && Operation != ReplaceOrInsert)
Joerg Sonnenberger975bc072012-10-26 10:49:15 +0000238 show_help("The 'a', 'b' and 'i' modifiers can only be specified with "
239 "the 'm' or 'r' operations");
240 }
Reid Spencer3a1582b2004-11-14 22:20:07 +0000241 if (OriginalDates && Operation != Extract)
Joerg Sonnenberger975bc072012-10-26 10:49:15 +0000242 show_help("The 'o' modifier is only applicable to the 'x' operation");
Reid Spencer3a1582b2004-11-14 22:20:07 +0000243 if (OnlyUpdate && Operation != ReplaceOrInsert)
Joerg Sonnenberger975bc072012-10-26 10:49:15 +0000244 show_help("The 'u' modifier is only applicable to the 'r' operation");
Reid Spencer3a1582b2004-11-14 22:20:07 +0000245
246 // Return the parsed operation to the caller
247 return Operation;
Tanya Lattner57bd7962003-12-06 23:01:25 +0000248}
Tanya Lattner14baebf2003-08-28 15:22:38 +0000249
Rafael Espindola34ac52d2013-07-12 20:21:39 +0000250// Implements the 'p' operation. This function traverses the archive
251// looking for members that match the path list.
252static void doPrint(StringRef Name, object::Archive::child_iterator I) {
253 if (Verbose)
254 outs() << "Printing " << Name << "\n";
Rafael Espindola8fe960e2013-06-19 14:58:16 +0000255
Rafael Espindola34ac52d2013-07-12 20:21:39 +0000256 StringRef Data = I->getBuffer();
257 outs().write(Data.data(), Data.size());
Reid Spencer3a1582b2004-11-14 22:20:07 +0000258}
259
260// putMode - utility function for printing out the file mode when the 't'
261// operation is in verbose mode.
Rafael Espindola2494dfc2013-07-12 16:29:27 +0000262static void printMode(unsigned mode) {
Misha Brukman3da94ae2005-04-22 00:00:37 +0000263 if (mode & 004)
Chris Lattner424a04e2010-11-29 23:02:20 +0000264 outs() << "r";
Reid Spencer3a1582b2004-11-14 22:20:07 +0000265 else
Chris Lattner424a04e2010-11-29 23:02:20 +0000266 outs() << "-";
Reid Spencer3a1582b2004-11-14 22:20:07 +0000267 if (mode & 002)
Chris Lattner424a04e2010-11-29 23:02:20 +0000268 outs() << "w";
Reid Spencer3a1582b2004-11-14 22:20:07 +0000269 else
Chris Lattner424a04e2010-11-29 23:02:20 +0000270 outs() << "-";
Reid Spencer3a1582b2004-11-14 22:20:07 +0000271 if (mode & 001)
Chris Lattner424a04e2010-11-29 23:02:20 +0000272 outs() << "x";
Reid Spencer3a1582b2004-11-14 22:20:07 +0000273 else
Chris Lattner424a04e2010-11-29 23:02:20 +0000274 outs() << "-";
Reid Spencer3a1582b2004-11-14 22:20:07 +0000275}
276
Rafael Espindola34ac52d2013-07-12 20:21:39 +0000277// Implement the 't' operation. This function prints out just
Reid Spencer3a1582b2004-11-14 22:20:07 +0000278// the file names of each of the members. However, if verbose mode is requested
279// ('v' modifier) then the file type, permission mode, user, group, size, and
280// modification time are also printed.
Rafael Espindola34ac52d2013-07-12 20:21:39 +0000281static void doDisplayTable(StringRef Name, object::Archive::child_iterator I) {
282 if (Verbose) {
283 sys::fs::perms Mode = I->getAccessMode();
284 printMode((Mode >> 6) & 007);
285 printMode((Mode >> 3) & 007);
286 printMode(Mode & 007);
287 outs() << ' ' << I->getUID();
288 outs() << '/' << I->getGID();
289 outs() << ' ' << format("%6llu", I->getSize());
290 outs() << ' ' << I->getLastModified().str();
291 outs() << ' ';
Reid Spencer3a1582b2004-11-14 22:20:07 +0000292 }
Rafael Espindola34ac52d2013-07-12 20:21:39 +0000293 outs() << Name << "\n";
Reid Spencer3a1582b2004-11-14 22:20:07 +0000294}
295
Rafael Espindola34ac52d2013-07-12 20:21:39 +0000296// Implement the 'x' operation. This function extracts files back to the file
297// system.
298static void doExtract(StringRef Name, object::Archive::child_iterator I) {
299 // Open up a file stream for writing
300 // FIXME: we should abstract this, O_BINARY in particular.
301 int OpenFlags = O_TRUNC | O_WRONLY | O_CREAT;
Rafael Espindola11ca2e52013-06-20 20:56:14 +0000302#ifdef O_BINARY
Rafael Espindola34ac52d2013-07-12 20:21:39 +0000303 OpenFlags |= O_BINARY;
Rafael Espindola11ca2e52013-06-20 20:56:14 +0000304#endif
Reid Spencer3a1582b2004-11-14 22:20:07 +0000305
Rafael Espindola34ac52d2013-07-12 20:21:39 +0000306 // Retain the original mode.
307 sys::fs::perms Mode = I->getAccessMode();
Rafael Espindola35637fc2013-07-08 16:16:51 +0000308
Rafael Espindola34ac52d2013-07-12 20:21:39 +0000309 int FD = open(Name.str().c_str(), OpenFlags, Mode);
310 if (FD < 0)
311 fail("Could not open output file");
Reid Spencer3a1582b2004-11-14 22:20:07 +0000312
Rafael Espindola34ac52d2013-07-12 20:21:39 +0000313 {
314 raw_fd_ostream file(FD, false);
Reid Spencer3a1582b2004-11-14 22:20:07 +0000315
Rafael Espindola34ac52d2013-07-12 20:21:39 +0000316 // Get the data and its length
317 StringRef Data = I->getBuffer();
Rafael Espindola11ca2e52013-06-20 20:56:14 +0000318
Rafael Espindola34ac52d2013-07-12 20:21:39 +0000319 // Write the data.
320 file.write(Data.data(), Data.size());
Reid Spencer3a1582b2004-11-14 22:20:07 +0000321 }
322
Rafael Espindola34ac52d2013-07-12 20:21:39 +0000323 // If we're supposed to retain the original modification times, etc. do so
324 // now.
325 if (OriginalDates)
326 failIfError(
327 sys::fs::setLastModificationAndAccessTime(FD, I->getLastModified()));
Reid Spencer3a1582b2004-11-14 22:20:07 +0000328
Rafael Espindola34ac52d2013-07-12 20:21:39 +0000329 if (close(FD))
330 fail("Could not close the file");
Reid Spencer3a1582b2004-11-14 22:20:07 +0000331}
332
Rafael Espindola2494dfc2013-07-12 16:29:27 +0000333static bool shouldCreateArchive(ArchiveOperation Op) {
Rafael Espindola61de1422013-07-05 13:03:07 +0000334 switch (Op) {
335 case Print:
336 case Delete:
337 case Move:
338 case DisplayTable:
339 case Extract:
340 return false;
341
342 case QuickAppend:
343 case ReplaceOrInsert:
344 return true;
345 }
Michael Gottesman2be430d2013-07-06 02:39:51 +0000346
347 llvm_unreachable("Missing entry in covered switch.");
Rafael Espindola61de1422013-07-05 13:03:07 +0000348}
349
Rafael Espindola34ac52d2013-07-12 20:21:39 +0000350static void performReadOperation(ArchiveOperation Operation,
351 object::Archive *OldArchive) {
352 for (object::Archive::child_iterator I = OldArchive->begin_children(),
353 E = OldArchive->end_children();
354 I != E; ++I) {
355 StringRef Name;
356 failIfError(I->getName(Name));
357
358 if (!Members.empty() &&
359 std::find(Members.begin(), Members.end(), Name) == Members.end())
360 continue;
361
362 switch (Operation) {
363 default:
364 llvm_unreachable("Not a read operation");
365 case Print:
366 doPrint(Name, I);
367 break;
368 case DisplayTable:
369 doDisplayTable(Name, I);
370 break;
371 case Extract:
372 doExtract(Name, I);
373 break;
374 }
375 }
376}
377
378namespace {
379class NewArchiveIterator {
380 bool IsNewMember;
381 SmallString<16> MemberName;
382 union {
383 object::Archive::child_iterator OldI;
384 std::vector<std::string>::const_iterator NewI;
385 };
386
387public:
388 NewArchiveIterator(object::Archive::child_iterator I, Twine Name);
389 NewArchiveIterator(std::vector<std::string>::const_iterator I, Twine Name);
390 bool isNewMember() const;
391 object::Archive::child_iterator getOld() const;
392 StringRef getNew() const;
393 StringRef getMemberName() const { return MemberName; }
394};
395}
396
397NewArchiveIterator::NewArchiveIterator(object::Archive::child_iterator I,
398 Twine Name)
399 : IsNewMember(false), OldI(I) {
400 Name.toVector(MemberName);
401}
402
403NewArchiveIterator::NewArchiveIterator(
404 std::vector<std::string>::const_iterator I, Twine Name)
405 : IsNewMember(true), NewI(I) {
406 Name.toVector(MemberName);
407}
408
409bool NewArchiveIterator::isNewMember() const { return IsNewMember; }
410
411object::Archive::child_iterator NewArchiveIterator::getOld() const {
412 assert(!IsNewMember);
413 return OldI;
414}
415
416StringRef NewArchiveIterator::getNew() const {
417 assert(IsNewMember);
418 return *NewI;
419}
420
421template <typename T>
422void addMember(std::vector<NewArchiveIterator> &Members,
423 std::string &StringTable, T I, StringRef Name) {
424 if (Name.size() < 15) {
425 NewArchiveIterator NI(I, Twine(Name) + "/");
426 Members.push_back(NI);
427 } else {
428 int MapIndex = StringTable.size();
429 NewArchiveIterator NI(I, Twine("/") + Twine(MapIndex));
430 Members.push_back(NI);
431 StringTable += Name;
432 StringTable += "/\n";
433 }
434}
435
436namespace {
437class HasName {
438 StringRef Name;
439
440public:
441 HasName(StringRef Name) : Name(Name) {}
442 bool operator()(StringRef Path) { return Name == sys::path::filename(Path); }
443};
444}
445
446// We have to walk this twice and computing it is not trivial, so creating an
447// explicit std::vector is actually fairly efficient.
448static std::vector<NewArchiveIterator>
449computeNewArchiveMembers(ArchiveOperation Operation,
450 object::Archive *OldArchive,
451 std::string &StringTable) {
452 std::vector<NewArchiveIterator> Ret;
453 std::vector<NewArchiveIterator> Moved;
454 int InsertPos = -1;
455 StringRef PosName = sys::path::filename(RelPos);
456 if (OldArchive) {
457 int Pos = 0;
458 for (object::Archive::child_iterator I = OldArchive->begin_children(),
459 E = OldArchive->end_children();
460 I != E; ++I, ++Pos) {
461 StringRef Name;
462 failIfError(I->getName(Name));
463 if (Name == PosName) {
464 assert(AddAfter || AddBefore);
465 if (AddBefore)
466 InsertPos = Pos;
467 else
468 InsertPos = Pos + 1;
469 }
470 if (Operation != QuickAppend && !Members.empty()) {
471 std::vector<std::string>::iterator MI =
472 std::find_if(Members.begin(), Members.end(), HasName(Name));
473 if (MI != Members.end()) {
474 if (Operation == Move) {
475 addMember(Moved, StringTable, I, Name);
476 continue;
477 }
478 if (Operation != ReplaceOrInsert || !OnlyUpdate)
479 continue;
480 // Ignore if the file if it is older than the member.
481 sys::fs::file_status Status;
482 failIfError(sys::fs::status(*MI, Status));
483 if (Status.getLastModificationTime() < I->getLastModified())
484 Members.erase(MI);
485 else
486 continue;
487 }
488 }
489 addMember(Ret, StringTable, I, Name);
490 }
491 }
492
493 if (Operation == Delete)
494 return Ret;
495
496 if (Operation == Move) {
497 if (RelPos.empty()) {
498 Ret.insert(Ret.end(), Moved.begin(), Moved.end());
499 return Ret;
500 }
501 if (InsertPos == -1)
502 fail("Insertion point not found");
503 assert(unsigned(InsertPos) <= Ret.size());
504 Ret.insert(Ret.begin() + InsertPos, Moved.begin(), Moved.end());
505 return Ret;
506 }
507
508 for (std::vector<std::string>::iterator I = Members.begin(),
509 E = Members.end();
510 I != E; ++I) {
511 StringRef Name = sys::path::filename(*I);
512 addMember(Ret, StringTable, I, Name);
513 }
514
515 return Ret;
516}
517
518template <typename T>
519static void printWithSpacePadding(raw_ostream &OS, T Data, unsigned Size) {
520 uint64_t OldPos = OS.tell();
521 OS << Data;
522 unsigned SizeSoFar = OS.tell() - OldPos;
523 assert(Size >= SizeSoFar && "Data doesn't fit in Size");
524 unsigned Remaining = Size - SizeSoFar;
525 for (unsigned I = 0; I < Remaining; ++I)
526 OS << ' ';
527}
528
529static void performWriteOperation(ArchiveOperation Operation,
530 object::Archive *OldArchive) {
531 int TmpArchiveFD;
532 SmallString<128> TmpArchive;
533 failIfError(sys::fs::createUniqueFile(ArchiveName + ".temp-archive-%%%%%%%.a",
534 TmpArchiveFD, TmpArchive));
535
536 TemporaryOutput = TmpArchive.c_str();
537 tool_output_file Output(TemporaryOutput, TmpArchiveFD);
538 raw_fd_ostream &Out = Output.os();
539 Out << "!<arch>\n";
540
541 std::string StringTable;
542 std::vector<NewArchiveIterator> NewMembers =
543 computeNewArchiveMembers(Operation, OldArchive, StringTable);
544 if (!StringTable.empty()) {
545 if (StringTable.size() % 2)
546 StringTable += '\n';
547 printWithSpacePadding(Out, "//", 48);
548 printWithSpacePadding(Out, StringTable.size(), 10);
549 Out << "`\n";
550 Out << StringTable;
551 }
552
553 for (std::vector<NewArchiveIterator>::iterator I = NewMembers.begin(),
554 E = NewMembers.end();
555 I != E; ++I) {
556 StringRef Name = I->getMemberName();
557 printWithSpacePadding(Out, Name, 16);
558
559 if (I->isNewMember()) {
560 // FIXME: we do a stat + open. We should do a open + fstat.
561 StringRef FileName = I->getNew();
562 sys::fs::file_status Status;
563 failIfError(sys::fs::status(FileName, Status), FileName);
564
565 uint64_t secondsSinceEpoch =
566 Status.getLastModificationTime().toEpochTime();
567 printWithSpacePadding(Out, secondsSinceEpoch, 12);
568
569 printWithSpacePadding(Out, Status.getUser(), 6);
570 printWithSpacePadding(Out, Status.getGroup(), 6);
571 printWithSpacePadding(Out, format("%o", Status.permissions()), 8);
572 printWithSpacePadding(Out, Status.getSize(), 10);
573 Out << "`\n";
574
575 OwningPtr<MemoryBuffer> File;
576 failIfError(MemoryBuffer::getFile(FileName, File), FileName);
577 Out << File->getBuffer();
578 } else {
579 object::Archive::child_iterator OldMember = I->getOld();
580
581 uint64_t secondsSinceEpoch = OldMember->getLastModified().toEpochTime();
582 printWithSpacePadding(Out, secondsSinceEpoch, 12);
583
584 printWithSpacePadding(Out, OldMember->getUID(), 6);
585 printWithSpacePadding(Out, OldMember->getGID(), 6);
586 printWithSpacePadding(Out, format("%o", OldMember->getAccessMode()), 8);
587 printWithSpacePadding(Out, OldMember->getSize(), 10);
588 Out << "`\n";
589
590 Out << OldMember->getBuffer();
591 }
592
593 if (Out.tell() % 2)
594 Out << '\n';
595 }
596 Output.keep();
597 Out.close();
598 sys::fs::rename(TemporaryOutput, ArchiveName);
599 TemporaryOutput = NULL;
600}
601
602static void performOperation(ArchiveOperation Operation,
603 object::Archive *OldArchive) {
604 switch (Operation) {
605 case Print:
606 case DisplayTable:
607 case Extract:
608 performReadOperation(Operation, OldArchive);
609 return;
610
611 case Delete:
612 case Move:
613 case QuickAppend:
614 case ReplaceOrInsert:
615 performWriteOperation(Operation, OldArchive);
616 return;
617 }
618 llvm_unreachable("Unknown operation.");
619}
620
Reid Spencer3a1582b2004-11-14 22:20:07 +0000621// main - main program for llvm-ar .. see comments in the code
Tanya Lattner14baebf2003-08-28 15:22:38 +0000622int main(int argc, char **argv) {
Rafael Espindola34ac52d2013-07-12 20:21:39 +0000623 ToolName = argv[0];
Chris Lattnercc14d252009-03-06 05:34:10 +0000624 // Print a stack trace if we signal out.
625 sys::PrintStackTraceOnErrorSignal();
626 PrettyStackTraceProgram X(argc, argv);
627 llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
Reid Spencer3a1582b2004-11-14 22:20:07 +0000628
Reid Spencer3a1582b2004-11-14 22:20:07 +0000629 // Have the command line options parsed and handle things
630 // like --help and --version.
631 cl::ParseCommandLineOptions(argc, argv,
Dan Gohman82a13c92007-10-08 15:45:12 +0000632 "LLVM Archiver (llvm-ar)\n\n"
Gabor Greifa99be512007-07-05 17:07:56 +0000633 " This program archives bitcode files into single libraries\n"
Reid Spencer3a1582b2004-11-14 22:20:07 +0000634 );
635
Joerg Sonnenberger975bc072012-10-26 10:49:15 +0000636 // Do our own parsing of the command line because the CommandLine utility
637 // can't handle the grouped positional parameters without a dash.
638 ArchiveOperation Operation = parseCommandLine();
Tanya Lattner14baebf2003-08-28 15:22:38 +0000639
Joerg Sonnenberger975bc072012-10-26 10:49:15 +0000640 // Create or open the archive object.
Rafael Espindola34ac52d2013-07-12 20:21:39 +0000641 OwningPtr<MemoryBuffer> Buf;
642 error_code EC = MemoryBuffer::getFile(ArchiveName, Buf, -1, false);
643 if (EC && EC != llvm::errc::no_such_file_or_directory) {
644 errs() << argv[0] << ": error opening '" << ArchiveName
645 << "': " << EC.message() << "!\n";
Joerg Sonnenberger975bc072012-10-26 10:49:15 +0000646 return 1;
647 }
648
Rafael Espindola34ac52d2013-07-12 20:21:39 +0000649 if (!EC) {
650 object::Archive Archive(Buf.take(), EC);
Joerg Sonnenberger975bc072012-10-26 10:49:15 +0000651
Rafael Espindola34ac52d2013-07-12 20:21:39 +0000652 if (EC) {
653 errs() << argv[0] << ": error loading '" << ArchiveName
654 << "': " << EC.message() << "!\n";
655 return 1;
656 }
657 performOperation(Operation, &Archive);
658 return 0;
659 }
660
661 assert(EC == llvm::errc::no_such_file_or_directory);
662
663 if (!shouldCreateArchive(Operation)) {
664 failIfError(EC, Twine("error loading '") + ArchiveName + "'");
665 } else {
666 if (!Create) {
667 // Produce a warning if we should and we're creating the archive
668 errs() << argv[0] << ": creating " << ArchiveName << "\n";
669 }
670 }
671
672 performOperation(Operation, NULL);
673 return 0;
Tanya Lattner14baebf2003-08-28 15:22:38 +0000674}