LLVM  4.0.0
TarWriter.h
Go to the documentation of this file.
1 //===-- llvm/Support/TarWriter.h - Tar archive file creator -----*- C++ -*-===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 
10 #ifndef LLVM_SUPPORT_TAR_WRITER_H
11 #define LLVM_SUPPORT_TAR_WRITER_H
12 
13 #include "llvm/ADT/StringRef.h"
14 #include "llvm/Support/Error.h"
16 
17 namespace llvm {
18 class TarWriter {
19 public:
21  StringRef BaseDir);
22 
23  void append(StringRef Path, StringRef Data);
24 
25 private:
26  TarWriter(int FD, StringRef BaseDir);
27  raw_fd_ostream OS;
28  std::string BaseDir;
29 };
30 }
31 
32 #endif
Tagged union holding either a T or a Error.
static Expected< std::unique_ptr< TarWriter > > create(StringRef OutputPath, StringRef BaseDir)
Definition: TarWriter.cpp:157
A raw_ostream that writes to a file descriptor.
Definition: raw_ostream.h:357
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:47
void append(StringRef Path, StringRef Data)
Definition: TarWriter.cpp:169