1 //===- tools/dsymutil/Reproducer.h ------------------------------*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_TOOLS_DSYMUTIL_REPRODUCER_H
10 #define LLVM_TOOLS_DSYMUTIL_REPRODUCER_H
12 #include "llvm/Support/Error.h"
13 #include "llvm/Support/FileCollector.h"
14 #include "llvm/Support/VirtualFileSystem.h"
19 /// The reproducer mode.
20 enum class ReproducerMode
{
26 /// The reproducer class manages the sate related to reproducers in dsymutil.
27 /// Instances should be created with Reproducer::createReproducer. An instance
28 /// of this class is returned when reproducers are off. The VFS returned by
29 /// this instance is the real file system.
33 virtual ~Reproducer();
35 IntrusiveRefCntPtr
<vfs::FileSystem
> getVFS() const { return VFS
; }
37 /// Create a Reproducer instance based on the given mode.
38 static llvm::Expected
<std::unique_ptr
<Reproducer
>>
39 createReproducer(ReproducerMode Mode
, StringRef Root
);
42 IntrusiveRefCntPtr
<vfs::FileSystem
> VFS
;
45 /// Reproducer instance used to generate a new reproducer. The VFS returned by
46 /// this instance is a FileCollectorFileSystem that tracks every file used by
48 class ReproducerGenerate
: public Reproducer
{
50 ReproducerGenerate(std::error_code
&EC
);
51 ~ReproducerGenerate() override
;
54 /// The path to the reproducer.
57 /// The FileCollector used by the FileCollectorFileSystem.
58 std::shared_ptr
<FileCollector
> FC
;
61 /// Reproducer instance used to use an existing reproducer. The VFS returned by
62 /// this instance is a RedirectingFileSystem that remaps paths to their
63 /// counterpart in the reproducer.
64 class ReproducerUse
: public Reproducer
{
66 ReproducerUse(StringRef Root
, std::error_code
&EC
);
67 ~ReproducerUse() override
;
70 /// The path to the reproducer.
74 } // end namespace dsymutil
75 } // end namespace llvm
77 #endif // LLVM_TOOLS_DSYMUTIL_REPRODUCER_H