mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-13 04:52:50 +00:00
56 lines
1.8 KiB
C++
56 lines
1.8 KiB
C++
//===- ArchiveWriter.h - ar archive file format writer ----------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Declares the writeArchive function for writing an archive file.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_OBJECT_ARCHIVEWRITER_H
|
|
#define LLVM_OBJECT_ARCHIVEWRITER_H
|
|
|
|
#include "llvm/ADT/StringRef.h"
|
|
#include "llvm/Object/Archive.h"
|
|
#include "llvm/Support/FileSystem.h"
|
|
|
|
namespace llvm {
|
|
|
|
struct NewArchiveMember {
|
|
std::unique_ptr<MemoryBuffer> Buf;
|
|
sys::TimeValue ModTime = sys::TimeValue::PosixZeroTime();
|
|
unsigned UID = 0, GID = 0, Perms = 0644;
|
|
|
|
NewArchiveMember() = default;
|
|
NewArchiveMember(NewArchiveMember &&Other)
|
|
: Buf(std::move(Other.Buf)), ModTime(Other.ModTime), UID(Other.UID),
|
|
GID(Other.GID), Perms(Other.Perms) {}
|
|
NewArchiveMember &operator=(NewArchiveMember &&Other) {
|
|
Buf = std::move(Other.Buf);
|
|
ModTime = Other.ModTime;
|
|
UID = Other.UID;
|
|
GID = Other.GID;
|
|
Perms = Other.Perms;
|
|
return *this;
|
|
}
|
|
NewArchiveMember(MemoryBufferRef BufRef);
|
|
|
|
static Expected<NewArchiveMember>
|
|
getOldMember(const object::Archive::Child &OldMember, bool Deterministic);
|
|
|
|
static Expected<NewArchiveMember> getFile(StringRef FileName,
|
|
bool Deterministic);
|
|
};
|
|
|
|
std::pair<StringRef, std::error_code>
|
|
writeArchive(StringRef ArcName, std::vector<NewArchiveMember> &NewMembers,
|
|
bool WriteSymtab, object::Archive::Kind Kind, bool Deterministic,
|
|
bool Thin, std::unique_ptr<MemoryBuffer> OldArchiveBuf = nullptr);
|
|
}
|
|
|
|
#endif
|