blob: c31f86ec5fdb887b6dd6a530c1f8b84e9feac423 [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
Owen Anderson8b477ed2009-07-01 16:58:40 +000015#include "llvm/LLVMContext.h"
Tanya Lattner14baebf2003-08-28 15:22:38 +000016#include "llvm/Module.h"
Chris Lattner44dadff2007-05-06 09:29:57 +000017#include "llvm/Bitcode/Archive.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000018#include "llvm/Support/CommandLine.h"
Chris Lattnerc30598b2006-12-06 01:18:01 +000019#include "llvm/Support/ManagedStatic.h"
Chris Lattnercc14d252009-03-06 05:34:10 +000020#include "llvm/Support/PrettyStackTrace.h"
Dan Gohman65f57c22009-07-15 16:35:29 +000021#include "llvm/Support/raw_ostream.h"
Chris Lattnerbed85ff2004-05-27 05:41:36 +000022#include "llvm/System/Signals.h"
Reid Spencer86f42bd2004-07-04 12:20:55 +000023#include <iostream>
Reid Spencer3a1582b2004-11-14 22:20:07 +000024#include <algorithm>
25#include <iomanip>
Duraid Madina6927b062005-12-28 06:56:09 +000026#include <memory>
Brian Gaeked0fde302003-11-11 22:41:34 +000027using namespace llvm;
28
Dan Gohman82f209e2007-10-15 21:10:03 +000029// Option for compatibility with AIX, not used but must allow it to be present.
Misha Brukman3da94ae2005-04-22 00:00:37 +000030static cl::opt<bool>
31X32Option ("X32_64", cl::Hidden,
Reid Spencerbede5832004-11-16 06:41:09 +000032 cl::desc("Ignored option for compatibility with AIX"));
Tanya Lattner14baebf2003-08-28 15:22:38 +000033
Reid Spencerbede5832004-11-16 06:41:09 +000034// llvm-ar operation code and modifier flags. This must come first.
Misha Brukman3da94ae2005-04-22 00:00:37 +000035static cl::opt<std::string>
Reid Spencer3a1582b2004-11-14 22:20:07 +000036Options(cl::Positional, cl::Required, cl::desc("{operation}[modifiers]..."));
Tanya Lattner14baebf2003-08-28 15:22:38 +000037
Reid Spencerbede5832004-11-16 06:41:09 +000038// llvm-ar remaining positional arguments.
Misha Brukman3da94ae2005-04-22 00:00:37 +000039static cl::list<std::string>
40RestOfArgs(cl::Positional, cl::OneOrMore,
Reid Spencer3a1582b2004-11-14 22:20:07 +000041 cl::desc("[relpos] [count] <archive-file> [members]..."));
Tanya Lattner14baebf2003-08-28 15:22:38 +000042
Reid Spencerbede5832004-11-16 06:41:09 +000043// MoreHelp - Provide additional help output explaining the operations and
44// modifiers of llvm-ar. This object instructs the CommandLine library
45// to print the text of the constructor when the --help option is given.
46static cl::extrahelp MoreHelp(
Misha Brukman3da94ae2005-04-22 00:00:37 +000047 "\nOPERATIONS:\n"
Reid Spencerbede5832004-11-16 06:41:09 +000048 " d[NsS] - delete file(s) from the archive\n"
49 " m[abiSs] - move file(s) in the archive\n"
50 " p[kN] - print file(s) found in the archive\n"
51 " q[ufsS] - quick append file(s) to the archive\n"
52 " r[abfiuzRsS] - replace or insert file(s) into the archive\n"
53 " t - display contents of archive\n"
54 " x[No] - extract file(s) from the archive\n"
55 "\nMODIFIERS (operation specific):\n"
56 " [a] - put file(s) after [relpos]\n"
57 " [b] - put file(s) before [relpos] (same as [i])\n"
58 " [f] - truncate inserted file names\n"
59 " [i] - put file(s) before [relpos] (same as [b])\n"
Gabor Greifa99be512007-07-05 17:07:56 +000060 " [k] - always print bitcode files (default is to skip them)\n"
Reid Spencerbede5832004-11-16 06:41:09 +000061 " [N] - use instance [count] of name\n"
62 " [o] - preserve original dates\n"
63 " [P] - use full path names when matching\n"
64 " [R] - recurse through directories when inserting\n"
65 " [s] - create an archive index (cf. ranlib)\n"
66 " [S] - do not build a symbol table\n"
67 " [u] - update only files newer than archive contents\n"
68 " [z] - compress files before inserting/extracting\n"
69 "\nMODIFIERS (generic):\n"
70 " [c] - do not warn if the library had to be created\n"
71 " [v] - be verbose about actions taken\n"
72 " [V] - be *really* verbose about actions taken\n"
73);
74
Reid Spencer3a1582b2004-11-14 22:20:07 +000075// This enumeration delineates the kinds of operations on an archive
76// that are permitted.
77enum ArchiveOperation {
78 NoOperation, ///< An operation hasn't been specified
79 Print, ///< Print the contents of the archive
80 Delete, ///< Delete the specified members
81 Move, ///< Move members to end or as given by {a,b,i} modifiers
82 QuickAppend, ///< Quickly append to end of archive
83 ReplaceOrInsert, ///< Replace or Insert members
84 DisplayTable, ///< Display the table of contents
Chris Lattnerd74ea2b2006-05-24 17:04:05 +000085 Extract ///< Extract files back to file system
Tanya Lattner57bd7962003-12-06 23:01:25 +000086};
Tanya Lattner14baebf2003-08-28 15:22:38 +000087
Reid Spencer3a1582b2004-11-14 22:20:07 +000088// Modifiers to follow operation to vary behavior
89bool AddAfter = false; ///< 'a' modifier
90bool AddBefore = false; ///< 'b' modifier
Misha Brukman3da94ae2005-04-22 00:00:37 +000091bool Create = false; ///< 'c' modifier
Reid Spencer3a1582b2004-11-14 22:20:07 +000092bool TruncateNames = false; ///< 'f' modifier
93bool InsertBefore = false; ///< 'i' modifier
Gabor Greifa99be512007-07-05 17:07:56 +000094bool DontSkipBitcode = false; ///< 'k' modifier
Reid Spencer3a1582b2004-11-14 22:20:07 +000095bool UseCount = false; ///< 'N' modifier
96bool OriginalDates = false; ///< 'o' modifier
97bool FullPath = false; ///< 'P' modifier
98bool RecurseDirectories = false; ///< 'R' modifier
99bool SymTable = true; ///< 's' & 'S' modifiers
100bool OnlyUpdate = false; ///< 'u' modifier
101bool Verbose = false; ///< 'v' modifier
102bool ReallyVerbose = false; ///< 'V' modifier
103bool Compression = false; ///< 'z' modifier
Tanya Lattner14baebf2003-08-28 15:22:38 +0000104
Reid Spencer3a1582b2004-11-14 22:20:07 +0000105// Relative Positional Argument (for insert/move). This variable holds
106// the name of the archive member to which the 'a', 'b' or 'i' modifier
107// refers. Only one of 'a', 'b' or 'i' can be specified so we only need
108// one variable.
109std::string RelPos;
Tanya Lattner57bd7962003-12-06 23:01:25 +0000110
Reid Spencer3a1582b2004-11-14 22:20:07 +0000111// Select which of multiple entries in the archive with the same name should be
112// used (specified with -N) for the delete and extract operations.
113int Count = 1;
Tanya Lattner57bd7962003-12-06 23:01:25 +0000114
Reid Spencer3a1582b2004-11-14 22:20:07 +0000115// This variable holds the name of the archive file as given on the
116// command line.
117std::string ArchiveName;
Tanya Lattner57bd7962003-12-06 23:01:25 +0000118
Reid Spencer3a1582b2004-11-14 22:20:07 +0000119// This variable holds the list of member files to proecess, as given
120// on the command line.
121std::vector<std::string> Members;
Tanya Lattner57bd7962003-12-06 23:01:25 +0000122
Reid Spencer3a1582b2004-11-14 22:20:07 +0000123// This variable holds the (possibly expanded) list of path objects that
124// correspond to files we will
Reid Spencerbede5832004-11-16 06:41:09 +0000125std::set<sys::Path> Paths;
Tanya Lattner57bd7962003-12-06 23:01:25 +0000126
Reid Spencer3a1582b2004-11-14 22:20:07 +0000127// The Archive object to which all the editing operations will be sent.
128Archive* TheArchive = 0;
Tanya Lattner57bd7962003-12-06 23:01:25 +0000129
Reid Spencer3a1582b2004-11-14 22:20:07 +0000130// getRelPos - Extract the member filename from the command line for
131// the [relpos] argument associated with a, b, and i modifiers
Tanya Lattner57bd7962003-12-06 23:01:25 +0000132void getRelPos() {
Reid Spencer3a1582b2004-11-14 22:20:07 +0000133 if(RestOfArgs.size() > 0) {
134 RelPos = RestOfArgs[0];
135 RestOfArgs.erase(RestOfArgs.begin());
Tanya Lattner57bd7962003-12-06 23:01:25 +0000136 }
Tanya Lattner57bd7962003-12-06 23:01:25 +0000137 else
Reid Spencer3a1582b2004-11-14 22:20:07 +0000138 throw "Expected [relpos] for a, b, or i modifier";
Tanya Lattner57bd7962003-12-06 23:01:25 +0000139}
140
Misha Brukman3da94ae2005-04-22 00:00:37 +0000141// getCount - Extract the [count] argument associated with the N modifier
Reid Spencer3a1582b2004-11-14 22:20:07 +0000142// from the command line and check its value.
Tanya Lattner57bd7962003-12-06 23:01:25 +0000143void getCount() {
Reid Spencer3a1582b2004-11-14 22:20:07 +0000144 if(RestOfArgs.size() > 0) {
145 Count = atoi(RestOfArgs[0].c_str());
146 RestOfArgs.erase(RestOfArgs.begin());
Tanya Lattner57bd7962003-12-06 23:01:25 +0000147 }
Tanya Lattner57bd7962003-12-06 23:01:25 +0000148 else
Reid Spencer3a1582b2004-11-14 22:20:07 +0000149 throw "Expected [count] value with N modifier";
150
151 // Non-positive counts are not allowed
152 if (Count < 1)
153 throw "Invalid [count] value (not a positive integer)";
Tanya Lattner57bd7962003-12-06 23:01:25 +0000154}
155
Reid Spencer3a1582b2004-11-14 22:20:07 +0000156// getArchive - Get the archive file name from the command line
Tanya Lattner57bd7962003-12-06 23:01:25 +0000157void getArchive() {
Reid Spencer3a1582b2004-11-14 22:20:07 +0000158 if(RestOfArgs.size() > 0) {
159 ArchiveName = RestOfArgs[0];
160 RestOfArgs.erase(RestOfArgs.begin());
Tanya Lattner57bd7962003-12-06 23:01:25 +0000161 }
Tanya Lattner57bd7962003-12-06 23:01:25 +0000162 else
Reid Spencer3a1582b2004-11-14 22:20:07 +0000163 throw "An archive name must be specified.";
Tanya Lattner57bd7962003-12-06 23:01:25 +0000164}
165
Reid Spencer3a1582b2004-11-14 22:20:07 +0000166// getMembers - Copy over remaining items in RestOfArgs to our Members vector
167// This is just for clarity.
Tanya Lattner57bd7962003-12-06 23:01:25 +0000168void getMembers() {
Reid Spencer3a1582b2004-11-14 22:20:07 +0000169 if(RestOfArgs.size() > 0)
Misha Brukman3da94ae2005-04-22 00:00:37 +0000170 Members = std::vector<std::string>(RestOfArgs);
Tanya Lattner57bd7962003-12-06 23:01:25 +0000171}
172
Reid Spencer3a1582b2004-11-14 22:20:07 +0000173// parseCommandLine - Parse the command line options as presented and return the
Misha Brukman3da94ae2005-04-22 00:00:37 +0000174// operation specified. Process all modifiers and check to make sure that
Reid Spencer3a1582b2004-11-14 22:20:07 +0000175// constraints on modifier/operation pairs have not been violated.
176ArchiveOperation parseCommandLine() {
Tanya Lattner57bd7962003-12-06 23:01:25 +0000177
Reid Spencer3a1582b2004-11-14 22:20:07 +0000178 // Keep track of number of operations. We can only specify one
179 // per execution.
Tanya Lattner57bd7962003-12-06 23:01:25 +0000180 unsigned NumOperations = 0;
181
Reid Spencer3a1582b2004-11-14 22:20:07 +0000182 // Keep track of the number of positional modifiers (a,b,i). Only
183 // one can be specified.
184 unsigned NumPositional = 0;
185
186 // Keep track of which operation was requested
187 ArchiveOperation Operation = NoOperation;
188
Tanya Lattner57bd7962003-12-06 23:01:25 +0000189 for(unsigned i=0; i<Options.size(); ++i) {
190 switch(Options[i]) {
Reid Spencer3a1582b2004-11-14 22:20:07 +0000191 case 'd': ++NumOperations; Operation = Delete; break;
192 case 'm': ++NumOperations; Operation = Move ; break;
193 case 'p': ++NumOperations; Operation = Print; break;
Seo Sanghyeondc32d192007-12-25 13:53:47 +0000194 case 'q': ++NumOperations; Operation = QuickAppend; break;
Misha Brukman3da94ae2005-04-22 00:00:37 +0000195 case 'r': ++NumOperations; Operation = ReplaceOrInsert; break;
Reid Spencer3a1582b2004-11-14 22:20:07 +0000196 case 't': ++NumOperations; Operation = DisplayTable; break;
197 case 'x': ++NumOperations; Operation = Extract; break;
198 case 'c': Create = true; break;
199 case 'f': TruncateNames = true; break;
Gabor Greifa99be512007-07-05 17:07:56 +0000200 case 'k': DontSkipBitcode = true; break;
Reid Spencer3a1582b2004-11-14 22:20:07 +0000201 case 'l': /* accepted but unused */ break;
202 case 'o': OriginalDates = true; break;
203 case 'P': FullPath = true; break;
204 case 'R': RecurseDirectories = true; break;
205 case 's': SymTable = true; break;
206 case 'S': SymTable = false; break;
207 case 'u': OnlyUpdate = true; break;
208 case 'v': Verbose = true; break;
209 case 'V': Verbose = ReallyVerbose = true; break;
210 case 'z': Compression = true; break;
Tanya Lattner57bd7962003-12-06 23:01:25 +0000211 case 'a':
Tanya Lattner57bd7962003-12-06 23:01:25 +0000212 getRelPos();
Reid Spencer3a1582b2004-11-14 22:20:07 +0000213 AddAfter = true;
214 NumPositional++;
Tanya Lattner57bd7962003-12-06 23:01:25 +0000215 break;
216 case 'b':
Tanya Lattner57bd7962003-12-06 23:01:25 +0000217 getRelPos();
Reid Spencer3a1582b2004-11-14 22:20:07 +0000218 AddBefore = true;
219 NumPositional++;
Tanya Lattner57bd7962003-12-06 23:01:25 +0000220 break;
221 case 'i':
Tanya Lattner57bd7962003-12-06 23:01:25 +0000222 getRelPos();
Reid Spencer3a1582b2004-11-14 22:20:07 +0000223 InsertBefore = true;
224 NumPositional++;
Tanya Lattner57bd7962003-12-06 23:01:25 +0000225 break;
226 case 'N':
Misha Brukman3da94ae2005-04-22 00:00:37 +0000227 getCount();
Tanya Lattner57bd7962003-12-06 23:01:25 +0000228 UseCount = true;
Tanya Lattner57bd7962003-12-06 23:01:25 +0000229 break;
230 default:
Reid Spencerbede5832004-11-16 06:41:09 +0000231 cl::PrintHelpMessage();
Tanya Lattner57bd7962003-12-06 23:01:25 +0000232 }
233 }
234
Misha Brukman3da94ae2005-04-22 00:00:37 +0000235 // At this point, the next thing on the command line must be
Reid Spencer3a1582b2004-11-14 22:20:07 +0000236 // the archive name.
Tanya Lattner57bd7962003-12-06 23:01:25 +0000237 getArchive();
Reid Spencer3a1582b2004-11-14 22:20:07 +0000238
239 // Everything on the command line at this point is a member.
Tanya Lattner57bd7962003-12-06 23:01:25 +0000240 getMembers();
241
Reid Spencer3a1582b2004-11-14 22:20:07 +0000242 // Perform various checks on the operation/modifier specification
243 // to make sure we are dealing with a legal request.
244 if (NumOperations == 0)
245 throw "You must specify at least one of the operations";
246 if (NumOperations > 1)
247 throw "Only one operation may be specified";
248 if (NumPositional > 1)
249 throw "You may only specify one of a, b, and i modifiers";
250 if (AddAfter || AddBefore || InsertBefore)
251 if (Operation != Move && Operation != ReplaceOrInsert)
252 throw "The 'a', 'b' and 'i' modifiers can only be specified with "
253 "the 'm' or 'r' operations";
254 if (RecurseDirectories && Operation != ReplaceOrInsert)
255 throw "The 'R' modifiers is only applicabe to the 'r' operation";
256 if (OriginalDates && Operation != Extract)
257 throw "The 'o' modifier is only applicable to the 'x' operation";
258 if (TruncateNames && Operation!=QuickAppend && Operation!=ReplaceOrInsert)
259 throw "The 'f' modifier is only applicable to the 'q' and 'r' operations";
260 if (OnlyUpdate && Operation != ReplaceOrInsert)
261 throw "The 'u' modifier is only applicable to the 'r' operation";
262 if (Compression && Operation!=ReplaceOrInsert && Operation!=Extract)
263 throw "The 'z' modifier is only applicable to the 'r' and 'x' operations";
264 if (Count > 1 && Members.size() > 1)
265 throw "Only one member name may be specified with the 'N' modifier";
266
267 // Return the parsed operation to the caller
268 return Operation;
Tanya Lattner57bd7962003-12-06 23:01:25 +0000269}
Tanya Lattner14baebf2003-08-28 15:22:38 +0000270
Reid Spencer3a1582b2004-11-14 22:20:07 +0000271// recurseDirectories - Implements the "R" modifier. This function scans through
272// the Paths vector (built by buildPaths, below) and replaces any directories it
273// finds with all the files in that directory (recursively). It uses the
274// sys::Path::getDirectoryContent method to perform the actual directory scans.
Reid Spencer142ca8e2006-08-23 06:56:27 +0000275bool
276recurseDirectories(const sys::Path& path,
277 std::set<sys::Path>& result, std::string* ErrMsg) {
278 result.clear();
Reid Spencer3a1582b2004-11-14 22:20:07 +0000279 if (RecurseDirectories) {
Reid Spencerbede5832004-11-16 06:41:09 +0000280 std::set<sys::Path> content;
Reid Spencer142ca8e2006-08-23 06:56:27 +0000281 if (path.getDirectoryContents(content, ErrMsg))
282 return true;
283
Misha Brukman3da94ae2005-04-22 00:00:37 +0000284 for (std::set<sys::Path>::iterator I = content.begin(), E = content.end();
Reid Spencer3a1582b2004-11-14 22:20:07 +0000285 I != E; ++I) {
Reid Spencer142ca8e2006-08-23 06:56:27 +0000286 // Make sure it exists and is a directory
Reid Spencer184e67e2007-04-08 19:59:07 +0000287 sys::PathWithStatus PwS(*I);
288 const sys::FileStatus *Status = PwS.getFileStatus(false, ErrMsg);
Reid Spencer8475ec02007-03-29 19:05:44 +0000289 if (!Status)
290 return true;
291 if (Status->isDir) {
292 std::set<sys::Path> moreResults;
293 if (recurseDirectories(*I, moreResults, ErrMsg))
294 return true;
295 result.insert(moreResults.begin(), moreResults.end());
296 } else {
Reid Spencer142ca8e2006-08-23 06:56:27 +0000297 result.insert(*I);
Reid Spencer142ca8e2006-08-23 06:56:27 +0000298 }
Reid Spencer3a1582b2004-11-14 22:20:07 +0000299 }
300 }
Reid Spencer142ca8e2006-08-23 06:56:27 +0000301 return false;
Reid Spencer3a1582b2004-11-14 22:20:07 +0000302}
303
304// buildPaths - Convert the strings in the Members vector to sys::Path objects
Misha Brukman3da94ae2005-04-22 00:00:37 +0000305// and make sure they are valid and exist exist. This check is only needed for
Reid Spencer3a1582b2004-11-14 22:20:07 +0000306// the operations that add/replace files to the archive ('q' and 'r')
Reid Spencer142ca8e2006-08-23 06:56:27 +0000307bool buildPaths(bool checkExistence, std::string* ErrMsg) {
Reid Spencer3a1582b2004-11-14 22:20:07 +0000308 for (unsigned i = 0; i < Members.size(); i++) {
309 sys::Path aPath;
Reid Spencerdd04df02005-07-07 23:21:43 +0000310 if (!aPath.set(Members[i]))
Reid Spencer3a1582b2004-11-14 22:20:07 +0000311 throw std::string("File member name invalid: ") + Members[i];
312 if (checkExistence) {
313 if (!aPath.exists())
314 throw std::string("File does not exist: ") + Members[i];
Chris Lattner252ad032006-07-28 22:03:44 +0000315 std::string Err;
Reid Spencer184e67e2007-04-08 19:59:07 +0000316 sys::PathWithStatus PwS(aPath);
317 const sys::FileStatus *si = PwS.getFileStatus(false, &Err);
Reid Spencer8475ec02007-03-29 19:05:44 +0000318 if (!si)
Chris Lattner252ad032006-07-28 22:03:44 +0000319 throw Err;
Reid Spencer8475ec02007-03-29 19:05:44 +0000320 if (si->isDir) {
Reid Spencer142ca8e2006-08-23 06:56:27 +0000321 std::set<sys::Path> dirpaths;
322 if (recurseDirectories(aPath, dirpaths, ErrMsg))
323 return true;
Reid Spencerbede5832004-11-16 06:41:09 +0000324 Paths.insert(dirpaths.begin(),dirpaths.end());
Reid Spencer3a1582b2004-11-14 22:20:07 +0000325 } else {
Reid Spencerbede5832004-11-16 06:41:09 +0000326 Paths.insert(aPath);
Reid Spencer3a1582b2004-11-14 22:20:07 +0000327 }
328 } else {
Reid Spencerbede5832004-11-16 06:41:09 +0000329 Paths.insert(aPath);
Reid Spencer3a1582b2004-11-14 22:20:07 +0000330 }
331 }
Reid Spencer142ca8e2006-08-23 06:56:27 +0000332 return false;
Reid Spencer3a1582b2004-11-14 22:20:07 +0000333}
334
Reid Spencerbede5832004-11-16 06:41:09 +0000335// printSymbolTable - print out the archive's symbol table.
336void printSymbolTable() {
337 std::cout << "\nArchive Symbol Table:\n";
338 const Archive::SymTabType& symtab = TheArchive->getSymbolTable();
Misha Brukman3da94ae2005-04-22 00:00:37 +0000339 for (Archive::SymTabType::const_iterator I=symtab.begin(), E=symtab.end();
Reid Spencerbede5832004-11-16 06:41:09 +0000340 I != E; ++I ) {
341 unsigned offset = TheArchive->getFirstFileOffset() + I->second;
342 std::cout << " " << std::setw(9) << offset << "\t" << I->first <<"\n";
343 }
344}
345
Reid Spencer3a1582b2004-11-14 22:20:07 +0000346// doPrint - Implements the 'p' operation. This function traverses the archive
347// looking for members that match the path list. It is careful to uncompress
Gabor Greifa99be512007-07-05 17:07:56 +0000348// things that should be and to skip bitcode files unless the 'k' modifier was
Reid Spencer3a1582b2004-11-14 22:20:07 +0000349// given.
Reid Spencer142ca8e2006-08-23 06:56:27 +0000350bool doPrint(std::string* ErrMsg) {
351 if (buildPaths(false, ErrMsg))
352 return true;
Reid Spencer3a1582b2004-11-14 22:20:07 +0000353 unsigned countDown = Count;
Misha Brukman3da94ae2005-04-22 00:00:37 +0000354 for (Archive::iterator I = TheArchive->begin(), E = TheArchive->end();
Reid Spencer3a1582b2004-11-14 22:20:07 +0000355 I != E; ++I ) {
Misha Brukman3da94ae2005-04-22 00:00:37 +0000356 if (Paths.empty() ||
Reid Spencer3a1582b2004-11-14 22:20:07 +0000357 (std::find(Paths.begin(), Paths.end(), I->getPath()) != Paths.end())) {
358 if (countDown == 1) {
359 const char* data = reinterpret_cast<const char*>(I->getData());
360
361 // Skip things that don't make sense to print
Misha Brukman3da94ae2005-04-22 00:00:37 +0000362 if (I->isLLVMSymbolTable() || I->isSVR4SymbolTable() ||
Gabor Greife75ca3d2007-07-06 13:38:17 +0000363 I->isBSD4SymbolTable() || (!DontSkipBitcode && I->isBitcode()))
Reid Spencer3a1582b2004-11-14 22:20:07 +0000364 continue;
365
366 if (Verbose)
Reid Spencer1fce0912004-12-11 00:14:15 +0000367 std::cout << "Printing " << I->getPath().toString() << "\n";
Reid Spencer3a1582b2004-11-14 22:20:07 +0000368
Chris Lattner44dadff2007-05-06 09:29:57 +0000369 unsigned len = I->getSize();
370 std::cout.write(data, len);
Reid Spencer3a1582b2004-11-14 22:20:07 +0000371 } else {
372 countDown--;
373 }
374 }
375 }
Reid Spencer142ca8e2006-08-23 06:56:27 +0000376 return false;
Reid Spencer3a1582b2004-11-14 22:20:07 +0000377}
378
379// putMode - utility function for printing out the file mode when the 't'
380// operation is in verbose mode.
Reid Spencer142ca8e2006-08-23 06:56:27 +0000381void
382printMode(unsigned mode) {
Misha Brukman3da94ae2005-04-22 00:00:37 +0000383 if (mode & 004)
Reid Spencer3a1582b2004-11-14 22:20:07 +0000384 std::cout << "r";
385 else
386 std::cout << "-";
387 if (mode & 002)
388 std::cout << "w";
389 else
390 std::cout << "-";
391 if (mode & 001)
392 std::cout << "x";
393 else
394 std::cout << "-";
395}
396
397// doDisplayTable - Implement the 't' operation. This function prints out just
398// the file names of each of the members. However, if verbose mode is requested
399// ('v' modifier) then the file type, permission mode, user, group, size, and
400// modification time are also printed.
Reid Spencer142ca8e2006-08-23 06:56:27 +0000401bool
402doDisplayTable(std::string* ErrMsg) {
403 if (buildPaths(false, ErrMsg))
404 return true;
Misha Brukman3da94ae2005-04-22 00:00:37 +0000405 for (Archive::iterator I = TheArchive->begin(), E = TheArchive->end();
Reid Spencer3a1582b2004-11-14 22:20:07 +0000406 I != E; ++I ) {
Misha Brukman3da94ae2005-04-22 00:00:37 +0000407 if (Paths.empty() ||
Reid Spencer3a1582b2004-11-14 22:20:07 +0000408 (std::find(Paths.begin(), Paths.end(), I->getPath()) != Paths.end())) {
409 if (Verbose) {
410 // FIXME: Output should be this format:
411 // Zrw-r--r-- 500/ 500 525 Nov 8 17:42 2004 Makefile
Gabor Greife75ca3d2007-07-06 13:38:17 +0000412 if (I->isBitcode())
Reid Spencer3a1582b2004-11-14 22:20:07 +0000413 std::cout << "b";
Reid Spencer3a1582b2004-11-14 22:20:07 +0000414 else if (I->isCompressed())
415 std::cout << "Z";
416 else
417 std::cout << " ";
418 unsigned mode = I->getMode();
Reid Spencerbede5832004-11-16 06:41:09 +0000419 printMode((mode >> 6) & 007);
420 printMode((mode >> 3) & 007);
421 printMode(mode & 007);
Reid Spencer3a1582b2004-11-14 22:20:07 +0000422 std::cout << " " << std::setw(4) << I->getUser();
423 std::cout << "/" << std::setw(4) << I->getGroup();
424 std::cout << " " << std::setw(8) << I->getSize();
Misha Brukman3da94ae2005-04-22 00:00:37 +0000425 std::cout << " " << std::setw(20) <<
Reid Spencerb55bc062004-11-14 23:17:41 +0000426 I->getModTime().toString().substr(4);
Reid Spencer1fce0912004-12-11 00:14:15 +0000427 std::cout << " " << I->getPath().toString() << "\n";
Reid Spencer3a1582b2004-11-14 22:20:07 +0000428 } else {
Reid Spencer1fce0912004-12-11 00:14:15 +0000429 std::cout << I->getPath().toString() << "\n";
Reid Spencer3a1582b2004-11-14 22:20:07 +0000430 }
431 }
432 }
Reid Spencerbede5832004-11-16 06:41:09 +0000433 if (ReallyVerbose)
434 printSymbolTable();
Reid Spencer142ca8e2006-08-23 06:56:27 +0000435 return false;
Reid Spencer3a1582b2004-11-14 22:20:07 +0000436}
437
438// doExtract - Implement the 'x' operation. This function extracts files back to
Reid Spencere5c9cb52006-08-23 00:39:35 +0000439// the file system, making sure to uncompress any that were compressed
Reid Spencer142ca8e2006-08-23 06:56:27 +0000440bool
441doExtract(std::string* ErrMsg) {
442 if (buildPaths(false, ErrMsg))
443 return true;
Misha Brukman3da94ae2005-04-22 00:00:37 +0000444 for (Archive::iterator I = TheArchive->begin(), E = TheArchive->end();
Reid Spencer3a1582b2004-11-14 22:20:07 +0000445 I != E; ++I ) {
446 if (Paths.empty() ||
447 (std::find(Paths.begin(), Paths.end(), I->getPath()) != Paths.end())) {
448
449 // Make sure the intervening directories are created
450 if (I->hasPath()) {
451 sys::Path dirs(I->getPath());
Reid Spencerdd04df02005-07-07 23:21:43 +0000452 dirs.eraseComponent();
Reid Spencere5c9cb52006-08-23 00:39:35 +0000453 if (dirs.createDirectoryOnDisk(/*create_parents=*/true, ErrMsg))
454 return true;
Reid Spencer3a1582b2004-11-14 22:20:07 +0000455 }
456
457 // Open up a file stream for writing
Jeff Cohen5fb6ed42005-01-22 17:36:17 +0000458 std::ios::openmode io_mode = std::ios::out | std::ios::trunc |
459 std::ios::binary;
460 std::ofstream file(I->getPath().c_str(), io_mode);
Reid Spencer3a1582b2004-11-14 22:20:07 +0000461
462 // Get the data and its length
463 const char* data = reinterpret_cast<const char*>(I->getData());
464 unsigned len = I->getSize();
465
Chris Lattner44dadff2007-05-06 09:29:57 +0000466 // Write the data.
467 file.write(data,len);
Reid Spencer3a1582b2004-11-14 22:20:07 +0000468 file.close();
469
470 // If we're supposed to retain the original modification times, etc. do so
471 // now.
472 if (OriginalDates)
Chris Lattner252ad032006-07-28 22:03:44 +0000473 I->getPath().setStatusInfoOnDisk(I->getFileStatus());
Reid Spencer3a1582b2004-11-14 22:20:07 +0000474 }
475 }
Reid Spencere5c9cb52006-08-23 00:39:35 +0000476 return false;
Reid Spencer3a1582b2004-11-14 22:20:07 +0000477}
478
479// doDelete - Implement the delete operation. This function deletes zero or more
480// members from the archive. Note that if the count is specified, there should
481// be no more than one path in the Paths list or else this algorithm breaks.
482// That check is enforced in parseCommandLine (above).
Reid Spencer142ca8e2006-08-23 06:56:27 +0000483bool
484doDelete(std::string* ErrMsg) {
485 if (buildPaths(false, ErrMsg))
486 return true;
487 if (Paths.empty())
488 return false;
Reid Spencer3a1582b2004-11-14 22:20:07 +0000489 unsigned countDown = Count;
Misha Brukman3da94ae2005-04-22 00:00:37 +0000490 for (Archive::iterator I = TheArchive->begin(), E = TheArchive->end();
Reid Spencer3a1582b2004-11-14 22:20:07 +0000491 I != E; ) {
492 if (std::find(Paths.begin(), Paths.end(), I->getPath()) != Paths.end()) {
493 if (countDown == 1) {
494 Archive::iterator J = I;
495 ++I;
Reid Spencerbede5832004-11-16 06:41:09 +0000496 TheArchive->erase(J);
Reid Spencer3a1582b2004-11-14 22:20:07 +0000497 } else
498 countDown--;
499 } else {
500 ++I;
501 }
502 }
503
504 // We're done editting, reconstruct the archive.
Reid Spencer09069b32006-08-25 05:28:17 +0000505 if (TheArchive->writeToDisk(SymTable,TruncateNames,Compression,ErrMsg))
Reid Spencer142ca8e2006-08-23 06:56:27 +0000506 return true;
Reid Spencerbede5832004-11-16 06:41:09 +0000507 if (ReallyVerbose)
508 printSymbolTable();
Reid Spencer142ca8e2006-08-23 06:56:27 +0000509 return false;
Reid Spencer3a1582b2004-11-14 22:20:07 +0000510}
511
512// doMore - Implement the move operation. This function re-arranges just the
513// order of the archive members so that when the archive is written the move
514// of the members is accomplished. Note the use of the RelPos variable to
515// determine where the items should be moved to.
Reid Spencer142ca8e2006-08-23 06:56:27 +0000516bool
517doMove(std::string* ErrMsg) {
518 if (buildPaths(false, ErrMsg))
519 return true;
Reid Spencer3a1582b2004-11-14 22:20:07 +0000520
521 // By default and convention the place to move members to is the end of the
522 // archive.
523 Archive::iterator moveto_spot = TheArchive->end();
524
525 // However, if the relative positioning modifiers were used, we need to scan
526 // the archive to find the member in question. If we don't find it, its no
527 // crime, we just move to the end.
528 if (AddBefore || InsertBefore || AddAfter) {
Misha Brukman3da94ae2005-04-22 00:00:37 +0000529 for (Archive::iterator I = TheArchive->begin(), E= TheArchive->end();
Reid Spencer3a1582b2004-11-14 22:20:07 +0000530 I != E; ++I ) {
Reid Spencer1fce0912004-12-11 00:14:15 +0000531 if (RelPos == I->getPath().toString()) {
Reid Spencer3a1582b2004-11-14 22:20:07 +0000532 if (AddAfter) {
533 moveto_spot = I;
534 moveto_spot++;
535 } else {
536 moveto_spot = I;
537 }
538 break;
539 }
540 }
541 }
542
543 // Keep a list of the paths remaining to be moved
Reid Spencerbede5832004-11-16 06:41:09 +0000544 std::set<sys::Path> remaining(Paths);
Reid Spencer3a1582b2004-11-14 22:20:07 +0000545
546 // Scan the archive again, this time looking for the members to move to the
547 // moveto_spot.
Misha Brukman3da94ae2005-04-22 00:00:37 +0000548 for (Archive::iterator I = TheArchive->begin(), E= TheArchive->end();
Reid Spencer3a1582b2004-11-14 22:20:07 +0000549 I != E && !remaining.empty(); ++I ) {
Misha Brukman3da94ae2005-04-22 00:00:37 +0000550 std::set<sys::Path>::iterator found =
Reid Spencer3a1582b2004-11-14 22:20:07 +0000551 std::find(remaining.begin(),remaining.end(),I->getPath());
552 if (found != remaining.end()) {
Misha Brukman3da94ae2005-04-22 00:00:37 +0000553 if (I != moveto_spot)
Reid Spencerbede5832004-11-16 06:41:09 +0000554 TheArchive->splice(moveto_spot,*TheArchive,I);
Reid Spencer3a1582b2004-11-14 22:20:07 +0000555 remaining.erase(found);
556 }
557 }
558
559 // We're done editting, reconstruct the archive.
Reid Spencer09069b32006-08-25 05:28:17 +0000560 if (TheArchive->writeToDisk(SymTable,TruncateNames,Compression,ErrMsg))
Reid Spencer142ca8e2006-08-23 06:56:27 +0000561 return true;
Reid Spencerbede5832004-11-16 06:41:09 +0000562 if (ReallyVerbose)
563 printSymbolTable();
Reid Spencer142ca8e2006-08-23 06:56:27 +0000564 return false;
Reid Spencer3a1582b2004-11-14 22:20:07 +0000565}
566
567// doQuickAppend - Implements the 'q' operation. This function just
568// indiscriminantly adds the members to the archive and rebuilds it.
Reid Spencer142ca8e2006-08-23 06:56:27 +0000569bool
570doQuickAppend(std::string* ErrMsg) {
Reid Spencer3a1582b2004-11-14 22:20:07 +0000571 // Get the list of paths to append.
Reid Spencer142ca8e2006-08-23 06:56:27 +0000572 if (buildPaths(true, ErrMsg))
573 return true;
574 if (Paths.empty())
575 return false;
Reid Spencer3a1582b2004-11-14 22:20:07 +0000576
577 // Append them quickly.
Reid Spencerbede5832004-11-16 06:41:09 +0000578 for (std::set<sys::Path>::iterator PI = Paths.begin(), PE = Paths.end();
Reid Spencer3a1582b2004-11-14 22:20:07 +0000579 PI != PE; ++PI) {
Reid Spencer0ff2d312006-08-24 23:45:08 +0000580 if (TheArchive->addFileBefore(*PI,TheArchive->end(),ErrMsg))
581 return true;
Reid Spencer3a1582b2004-11-14 22:20:07 +0000582 }
583
584 // We're done editting, reconstruct the archive.
Reid Spencer09069b32006-08-25 05:28:17 +0000585 if (TheArchive->writeToDisk(SymTable,TruncateNames,Compression,ErrMsg))
Reid Spencer142ca8e2006-08-23 06:56:27 +0000586 return true;
Reid Spencerbede5832004-11-16 06:41:09 +0000587 if (ReallyVerbose)
588 printSymbolTable();
Reid Spencer142ca8e2006-08-23 06:56:27 +0000589 return false;
Reid Spencer3a1582b2004-11-14 22:20:07 +0000590}
591
592// doReplaceOrInsert - Implements the 'r' operation. This function will replace
Misha Brukman3da94ae2005-04-22 00:00:37 +0000593// any existing files or insert new ones into the archive.
Reid Spencer142ca8e2006-08-23 06:56:27 +0000594bool
595doReplaceOrInsert(std::string* ErrMsg) {
Reid Spencer3a1582b2004-11-14 22:20:07 +0000596
597 // Build the list of files to be added/replaced.
Reid Spencer142ca8e2006-08-23 06:56:27 +0000598 if (buildPaths(true, ErrMsg))
599 return true;
600 if (Paths.empty())
601 return false;
Reid Spencer3a1582b2004-11-14 22:20:07 +0000602
603 // Keep track of the paths that remain to be inserted.
Reid Spencerbede5832004-11-16 06:41:09 +0000604 std::set<sys::Path> remaining(Paths);
Reid Spencer3a1582b2004-11-14 22:20:07 +0000605
606 // Default the insertion spot to the end of the archive
607 Archive::iterator insert_spot = TheArchive->end();
608
609 // Iterate over the archive contents
610 for (Archive::iterator I = TheArchive->begin(), E = TheArchive->end();
611 I != E && !remaining.empty(); ++I ) {
612
613 // Determine if this archive member matches one of the paths we're trying
614 // to replace.
Reid Spencer0de66b52004-12-02 09:21:55 +0000615
616 std::set<sys::Path>::iterator found = remaining.end();
Misha Brukman3da94ae2005-04-22 00:00:37 +0000617 for (std::set<sys::Path>::iterator RI = remaining.begin(),
Reid Spencer0de66b52004-12-02 09:21:55 +0000618 RE = remaining.end(); RI != RE; ++RI ) {
Reid Spencer1fce0912004-12-11 00:14:15 +0000619 std::string compare(RI->toString());
Reid Spencer0de66b52004-12-02 09:21:55 +0000620 if (TruncateNames && compare.length() > 15) {
621 const char* nm = compare.c_str();
622 unsigned len = compare.length();
623 size_t slashpos = compare.rfind('/');
624 if (slashpos != std::string::npos) {
625 nm += slashpos + 1;
626 len -= slashpos +1;
627 }
Misha Brukman3da94ae2005-04-22 00:00:37 +0000628 if (len > 15)
Reid Spencer0de66b52004-12-02 09:21:55 +0000629 len = 15;
630 compare.assign(nm,len);
631 }
Reid Spencer1fce0912004-12-11 00:14:15 +0000632 if (compare == I->getPath().toString()) {
Reid Spencer0de66b52004-12-02 09:21:55 +0000633 found = RI;
634 break;
635 }
636 }
637
Reid Spencer3a1582b2004-11-14 22:20:07 +0000638 if (found != remaining.end()) {
Chris Lattner252ad032006-07-28 22:03:44 +0000639 std::string Err;
Reid Spencer184e67e2007-04-08 19:59:07 +0000640 sys::PathWithStatus PwS(*found);
641 const sys::FileStatus *si = PwS.getFileStatus(false, &Err);
Reid Spencer8475ec02007-03-29 19:05:44 +0000642 if (!si)
Reid Spencer0ff2d312006-08-24 23:45:08 +0000643 return true;
Chris Lattner7d8f9b62009-02-05 17:58:39 +0000644 if (!si->isDir) {
Reid Spencerbede5832004-11-16 06:41:09 +0000645 if (OnlyUpdate) {
646 // Replace the item only if it is newer.
Reid Spencer8475ec02007-03-29 19:05:44 +0000647 if (si->modTime > I->getModTime())
Reid Spencer0ff2d312006-08-24 23:45:08 +0000648 if (I->replaceWith(*found, ErrMsg))
649 return true;
Reid Spencerbede5832004-11-16 06:41:09 +0000650 } else {
651 // Replace the item regardless of time stamp
Reid Spencer0ff2d312006-08-24 23:45:08 +0000652 if (I->replaceWith(*found, ErrMsg))
653 return true;
Reid Spencerbede5832004-11-16 06:41:09 +0000654 }
Reid Spencer3a1582b2004-11-14 22:20:07 +0000655 } else {
Reid Spencerbede5832004-11-16 06:41:09 +0000656 // We purposefully ignore directories.
Reid Spencer3a1582b2004-11-14 22:20:07 +0000657 }
658
659 // Remove it from our "to do" list
660 remaining.erase(found);
661 }
662
663 // Determine if this is the place where we should insert
Reid Spencer1fce0912004-12-11 00:14:15 +0000664 if ((AddBefore || InsertBefore) && (RelPos == I->getPath().toString()))
Reid Spencer3a1582b2004-11-14 22:20:07 +0000665 insert_spot = I;
Reid Spencer1fce0912004-12-11 00:14:15 +0000666 else if (AddAfter && (RelPos == I->getPath().toString())) {
Reid Spencer3a1582b2004-11-14 22:20:07 +0000667 insert_spot = I;
668 insert_spot++;
669 }
670 }
671
672 // If we didn't replace all the members, some will remain and need to be
673 // inserted at the previously computed insert-spot.
674 if (!remaining.empty()) {
Misha Brukman3da94ae2005-04-22 00:00:37 +0000675 for (std::set<sys::Path>::iterator PI = remaining.begin(),
Reid Spencer3a1582b2004-11-14 22:20:07 +0000676 PE = remaining.end(); PI != PE; ++PI) {
Reid Spencer0ff2d312006-08-24 23:45:08 +0000677 if (TheArchive->addFileBefore(*PI,insert_spot, ErrMsg))
678 return true;
Reid Spencer3a1582b2004-11-14 22:20:07 +0000679 }
680 }
681
682 // We're done editting, reconstruct the archive.
Reid Spencer09069b32006-08-25 05:28:17 +0000683 if (TheArchive->writeToDisk(SymTable,TruncateNames,Compression,ErrMsg))
Reid Spencer142ca8e2006-08-23 06:56:27 +0000684 return true;
Reid Spencerbede5832004-11-16 06:41:09 +0000685 if (ReallyVerbose)
686 printSymbolTable();
Reid Spencer142ca8e2006-08-23 06:56:27 +0000687 return false;
Reid Spencer3a1582b2004-11-14 22:20:07 +0000688}
689
690// main - main program for llvm-ar .. see comments in the code
Tanya Lattner14baebf2003-08-28 15:22:38 +0000691int main(int argc, char **argv) {
Chris Lattnercc14d252009-03-06 05:34:10 +0000692 // Print a stack trace if we signal out.
693 sys::PrintStackTraceOnErrorSignal();
694 PrettyStackTraceProgram X(argc, argv);
Owen Anderson0d7c6952009-07-15 22:16:10 +0000695 LLVMContext &Context = getGlobalContext();
Chris Lattnercc14d252009-03-06 05:34:10 +0000696 llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
Reid Spencer3a1582b2004-11-14 22:20:07 +0000697
Reid Spencer3a1582b2004-11-14 22:20:07 +0000698 // Have the command line options parsed and handle things
699 // like --help and --version.
700 cl::ParseCommandLineOptions(argc, argv,
Dan Gohman82a13c92007-10-08 15:45:12 +0000701 "LLVM Archiver (llvm-ar)\n\n"
Gabor Greifa99be512007-07-05 17:07:56 +0000702 " This program archives bitcode files into single libraries\n"
Reid Spencer3a1582b2004-11-14 22:20:07 +0000703 );
704
Reid Spencer3a1582b2004-11-14 22:20:07 +0000705 int exitCode = 0;
Tanya Lattner14baebf2003-08-28 15:22:38 +0000706
Reid Spencer3a1582b2004-11-14 22:20:07 +0000707 // Make sure we don't exit with "unhandled exception".
708 try {
709 // Do our own parsing of the command line because the CommandLine utility
710 // can't handle the grouped positional parameters without a dash.
711 ArchiveOperation Operation = parseCommandLine();
Tanya Lattner14baebf2003-08-28 15:22:38 +0000712
Reid Spencer3a1582b2004-11-14 22:20:07 +0000713 // Check the path name of the archive
714 sys::Path ArchivePath;
Reid Spencerdd04df02005-07-07 23:21:43 +0000715 if (!ArchivePath.set(ArchiveName))
Reid Spencer3a1582b2004-11-14 22:20:07 +0000716 throw std::string("Archive name invalid: ") + ArchiveName;
717
718 // Create or open the archive object.
719 if (!ArchivePath.exists()) {
720 // Produce a warning if we should and we're creating the archive
721 if (!Create)
Dan Gohman65f57c22009-07-15 16:35:29 +0000722 errs() << argv[0] << ": creating " << ArchivePath.toString() << "\n";
Owen Anderson31895e72009-07-01 21:22:36 +0000723 TheArchive = Archive::CreateEmpty(ArchivePath, Context);
Andrew Lenharth63b8c1f2008-02-28 22:24:48 +0000724 TheArchive->writeToDisk();
Reid Spencer3a1582b2004-11-14 22:20:07 +0000725 } else {
Chris Lattner67c38212004-12-15 07:44:15 +0000726 std::string Error;
Owen Anderson31895e72009-07-01 21:22:36 +0000727 TheArchive = Archive::OpenAndLoad(ArchivePath, Context, &Error);
Reid Spencerb4ed7b02004-12-15 21:58:03 +0000728 if (TheArchive == 0) {
Dan Gohman65f57c22009-07-15 16:35:29 +0000729 errs() << argv[0] << ": error loading '" << ArchivePath << "': "
730 << Error << "!\n";
Reid Spencerb4ed7b02004-12-15 21:58:03 +0000731 return 1;
732 }
Reid Spencer3a1582b2004-11-14 22:20:07 +0000733 }
734
735 // Make sure we're not fooling ourselves.
736 assert(TheArchive && "Unable to instantiate the archive");
737
Reid Spencerbede5832004-11-16 06:41:09 +0000738 // Make sure we clean up the archive even on failure.
739 std::auto_ptr<Archive> AutoArchive(TheArchive);
740
Reid Spencer3a1582b2004-11-14 22:20:07 +0000741 // Perform the operation
Reid Spencere5c9cb52006-08-23 00:39:35 +0000742 std::string ErrMsg;
Reid Spencer142ca8e2006-08-23 06:56:27 +0000743 bool haveError = false;
Reid Spencer3a1582b2004-11-14 22:20:07 +0000744 switch (Operation) {
Reid Spencer142ca8e2006-08-23 06:56:27 +0000745 case Print: haveError = doPrint(&ErrMsg); break;
746 case Delete: haveError = doDelete(&ErrMsg); break;
747 case Move: haveError = doMove(&ErrMsg); break;
748 case QuickAppend: haveError = doQuickAppend(&ErrMsg); break;
749 case ReplaceOrInsert: haveError = doReplaceOrInsert(&ErrMsg); break;
750 case DisplayTable: haveError = doDisplayTable(&ErrMsg); break;
751 case Extract: haveError = doExtract(&ErrMsg); break;
Reid Spencer3a1582b2004-11-14 22:20:07 +0000752 case NoOperation:
Dan Gohman65f57c22009-07-15 16:35:29 +0000753 errs() << argv[0] << ": No operation was selected.\n";
Reid Spencer3a1582b2004-11-14 22:20:07 +0000754 break;
755 }
Reid Spencer142ca8e2006-08-23 06:56:27 +0000756 if (haveError) {
Dan Gohman65f57c22009-07-15 16:35:29 +0000757 errs() << argv[0] << ": " << ErrMsg << "\n";
Reid Spencer142ca8e2006-08-23 06:56:27 +0000758 return 1;
759 }
Reid Spencer3a1582b2004-11-14 22:20:07 +0000760 } catch (const char*msg) {
761 // These errors are usage errors, thrown only by the various checks in the
762 // code above.
Dan Gohman65f57c22009-07-15 16:35:29 +0000763 errs() << argv[0] << ": " << msg << "\n\n";
Reid Spencerbede5832004-11-16 06:41:09 +0000764 cl::PrintHelpMessage();
Reid Spencer3a1582b2004-11-14 22:20:07 +0000765 exitCode = 1;
766 } catch (const std::string& msg) {
767 // These errors are thrown by LLVM libraries (e.g. lib System) and represent
768 // a more serious error so we bump the exitCode and don't print the usage.
Dan Gohman65f57c22009-07-15 16:35:29 +0000769 errs() << argv[0] << ": " << msg << "\n";
Reid Spencer3a1582b2004-11-14 22:20:07 +0000770 exitCode = 2;
771 } catch (...) {
772 // This really shouldn't happen, but just in case ....
Dan Gohman65f57c22009-07-15 16:35:29 +0000773 errs() << argv[0] << ": An unexpected unknown exception occurred.\n";
Reid Spencer3a1582b2004-11-14 22:20:07 +0000774 exitCode = 3;
775 }
776
777 // Return result code back to operating system.
778 return exitCode;
Tanya Lattner14baebf2003-08-28 15:22:38 +0000779}