You've already forked linux-packaging-mono
acceptance-tests
data
debian
docs
external
Newtonsoft.Json
api-doc-tools
api-snapshot
aspnetwebstack
bdwgc
binary-reference-assemblies
bockbuild
boringssl
cecil
cecil-legacy
corefx
corert
helix-binaries
ikdasm
ikvm
illinker-test-assets
linker
llvm-project
clang
clang-tools-extra
change-namespace
clang-apply-replacements
clang-move
clang-query
clang-reorder-fields
clang-tidy
clang-tidy-vs
clangd
docs
include-fixer
modularize
pp-trace
test
tool-template
unittests
change-namespace
clang-apply-replacements
clang-move
clang-query
clang-tidy
clangd
include
common
VirtualFileHelper.h
include-fixer
CMakeLists.txt
.arcconfig
.gitignore
CMakeLists.txt
CODE_OWNERS.TXT
LICENSE.TXT
README.txt
compiler-rt
libcxx
libcxxabi
libunwind
lld
lldb
llvm
openmp
polly
nuget-buildtasks
nunit-lite
roslyn-binaries
rx
xunit-binaries
how-to-bump-roslyn-binaries.md
ikvm-native
llvm
m4
man
mcs
mk
mono
msvc
netcore
po
runtime
samples
scripts
support
tools
COPYING.LIB
LICENSE
Makefile.am
Makefile.in
NEWS
README.md
acinclude.m4
aclocal.m4
autogen.sh
code_of_conduct.md
compile
config.guess
config.h.in
config.rpath
config.sub
configure.REMOVED.git-id
configure.ac.REMOVED.git-id
depcomp
install-sh
ltmain.sh.REMOVED.git-id
missing
mkinstalldirs
mono-uninstalled.pc.in
test-driver
winconfig.h
83 lines
2.7 KiB
C
83 lines
2.7 KiB
C
![]() |
//===--- VirtualFileHelper.h ------------------------------------*- C++ -*-===//
|
||
|
//
|
||
|
// The LLVM Compiler Infrastructure
|
||
|
//
|
||
|
// This file is distributed under the University of Illinois Open Source
|
||
|
// License. See LICENSE.TXT for details.
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
///
|
||
|
/// \brief This file defines an utility class for tests that needs a source
|
||
|
/// manager for a virtual file with customizable content.
|
||
|
///
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
|
||
|
#ifndef CLANG_MODERNIZE_VIRTUAL_FILE_HELPER_H
|
||
|
#define CLANG_MODERNIZE_VIRTUAL_FILE_HELPER_H
|
||
|
|
||
|
#include "clang/Basic/Diagnostic.h"
|
||
|
#include "clang/Basic/DiagnosticOptions.h"
|
||
|
#include "clang/Basic/FileManager.h"
|
||
|
#include "clang/Basic/SourceManager.h"
|
||
|
#include "clang/Frontend/TextDiagnosticPrinter.h"
|
||
|
|
||
|
namespace clang {
|
||
|
|
||
|
/// \brief Class that provides easy access to a SourceManager and that allows to
|
||
|
/// map virtual files conveniently.
|
||
|
class VirtualFileHelper {
|
||
|
struct VirtualFile {
|
||
|
std::string FileName;
|
||
|
std::string Code;
|
||
|
};
|
||
|
|
||
|
public:
|
||
|
VirtualFileHelper()
|
||
|
: DiagOpts(new DiagnosticOptions()),
|
||
|
Diagnostics(IntrusiveRefCntPtr<DiagnosticIDs>(new DiagnosticIDs),
|
||
|
&*DiagOpts),
|
||
|
DiagnosticPrinter(llvm::outs(), &*DiagOpts),
|
||
|
Files((FileSystemOptions())) {}
|
||
|
|
||
|
/// \brief Create a virtual file \p FileName, with content \p Code.
|
||
|
void mapFile(llvm::StringRef FileName, llvm::StringRef Code) {
|
||
|
VirtualFile VF = { FileName, Code };
|
||
|
VirtualFiles.push_back(VF);
|
||
|
}
|
||
|
|
||
|
/// \brief Create a new \c SourceManager with the virtual files and contents
|
||
|
/// mapped to it.
|
||
|
SourceManager &getNewSourceManager() {
|
||
|
Sources.reset(new SourceManager(Diagnostics, Files));
|
||
|
mapVirtualFiles(*Sources);
|
||
|
return *Sources;
|
||
|
}
|
||
|
|
||
|
/// \brief Map the virtual file contents in the given \c SourceManager.
|
||
|
void mapVirtualFiles(SourceManager &SM) const {
|
||
|
for (llvm::SmallVectorImpl<VirtualFile>::const_iterator
|
||
|
I = VirtualFiles.begin(),
|
||
|
E = VirtualFiles.end();
|
||
|
I != E; ++I) {
|
||
|
std::unique_ptr<llvm::MemoryBuffer> Buf =
|
||
|
llvm::MemoryBuffer::getMemBuffer(I->Code);
|
||
|
const FileEntry *Entry = SM.getFileManager().getVirtualFile(
|
||
|
I->FileName, Buf->getBufferSize(), /*ModificationTime=*/0);
|
||
|
SM.overrideFileContents(Entry, std::move(Buf));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
private:
|
||
|
IntrusiveRefCntPtr<DiagnosticOptions> DiagOpts;
|
||
|
DiagnosticsEngine Diagnostics;
|
||
|
TextDiagnosticPrinter DiagnosticPrinter;
|
||
|
FileManager Files;
|
||
|
// most tests don't need more than one file
|
||
|
llvm::SmallVector<VirtualFile, 1> VirtualFiles;
|
||
|
std::unique_ptr<SourceManager> Sources;
|
||
|
};
|
||
|
|
||
|
} // end namespace clang
|
||
|
|
||
|
#endif // CLANG_MODERNIZE_VIRTUAL_FILE_HELPER_H
|