diff options
| author | kaizhangNV <149626564+kaizhangNV@users.noreply.github.com> | 2024-05-17 11:43:08 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-17 09:43:08 -0700 |
| commit | 9f786fdf71e90339e20979ef3ba8f073657f5a98 (patch) | |
| tree | dac01aa41224373527d2ce793a82c34e142a7b05 /source/slang-capture-replay/slang-filesystem.cpp | |
| parent | 000396cdc4b00f7f8bf92a6569367e5cb9d6ba27 (diff) | |
capture/relay: Add capture interface classes (#4177)
* capture/relay: Add capture interface classes
Add `ModuleCapture` class for capturing `IModule`
- The `IModule` can only be created from
-- `ISession::loadModule`
-- `ISession::loadModuleFromIRBlob`
-- `ISession::loadModuleFromSource`
-- `ISession::loadModuleFromSourceString`
so, we create the `ModuleCapture` at those methods in `SessionCapture`
class. We use a hash map to store a map from `IModule` to `ModuleCapture`
to avoid creating new `ModuleCapture` when there is already an old one.
- In `SessionCapture::getLoadedModule`, we will assert on not finding
a `ModuleCapture` instance.
Add `EntryPointCapture` class for capturing `IEntryPoint`.
- The `IEntryPoint` can only be created from:
-- `IModule::findEntryPointByName`
-- `IModule::findAndCheckEntryPoint`
so, we create the `EntryPointCapture` at those methods in `ModuleCapture`.
Similarly, we use a hash map to store a map from `IEntryPoint` to
`EntryPointCapture`.
- In `IModule::getDefinedEntryPoint`, we will assert on not finding
a `EntryPointCapture` instance.
Add `CompositeComponentTypeCapture` class for capturing CompositeComponentType,
but since user is only exposed to `IComponentType`, so `CompositeComponentTypeCapture`
just inherits from `IComponentType`.
- `CompositeComponentType` can only be created from:
-- ISession::createCompositeComponentType
so create it here.
Add `TypeConformanceCapture` class for capturing `ITypeConformance`.
- The `ITypeConformance` can only be created from:
-- `ISession::createTypeConformanceComponentType`
so create it here.
In addition, because `EntryPointCapture` and `ModuleCapture` share a some
base class `IComponentType`, we generate the COM GUID for those two
classes to differentiate them.
* Fix the build issue
* Add nullptr check for output parameter
* define the SLANG_CAPTURE_ASSERT macro used in both debug and release build
Diffstat (limited to 'source/slang-capture-replay/slang-filesystem.cpp')
| -rw-r--r-- | source/slang-capture-replay/slang-filesystem.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/source/slang-capture-replay/slang-filesystem.cpp b/source/slang-capture-replay/slang-filesystem.cpp index 10afbdf10..fac6cf66e 100644 --- a/source/slang-capture-replay/slang-filesystem.cpp +++ b/source/slang-capture-replay/slang-filesystem.cpp @@ -6,8 +6,8 @@ namespace SlangCapture FileSystemCapture::FileSystemCapture(ISlangFileSystemExt* fileSystem) : m_actualFileSystem(fileSystem) { - assert(m_actualFileSystem); - slangCaptureLog(LogLevel::Verbose, "%s: %p\n", __func__, m_actualFileSystem.get()); + SLANG_CAPTURE_ASSERT(m_actualFileSystem); + slangCaptureLog(LogLevel::Verbose, "%s: %p\n", __PRETTY_FUNCTION__, m_actualFileSystem.get()); } FileSystemCapture::~FileSystemCapture() @@ -31,7 +31,7 @@ namespace SlangCapture char const* path, ISlangBlob** outBlob) { - slangCaptureLog(LogLevel::Verbose, "%p: %s, :%s\n", m_actualFileSystem.get(), __func__, path); + slangCaptureLog(LogLevel::Verbose, "%p: %s, :%s\n", m_actualFileSystem.get(), __PRETTY_FUNCTION__, path); SlangResult res = m_actualFileSystem->loadFile(path, outBlob); return res; } @@ -40,7 +40,7 @@ namespace SlangCapture const char* path, ISlangBlob** outUniqueIdentity) { - slangCaptureLog(LogLevel::Verbose, "%p: %s :\"%s\"\n", m_actualFileSystem.get(), __func__, path); + slangCaptureLog(LogLevel::Verbose, "%p: %s :\"%s\"\n", m_actualFileSystem.get(), __PRETTY_FUNCTION__, path); SlangResult res = m_actualFileSystem->getFileUniqueIdentity(path, outUniqueIdentity); return res; } @@ -51,7 +51,7 @@ namespace SlangCapture const char* path, ISlangBlob** pathOut) { - slangCaptureLog(LogLevel::Verbose, "%p: %s, :%s\n", m_actualFileSystem.get(), __func__, path); + slangCaptureLog(LogLevel::Verbose, "%p: %s, :%s\n", m_actualFileSystem.get(), __PRETTY_FUNCTION__, path); SlangResult res = m_actualFileSystem->calcCombinedPath(fromPathType, fromPath, path, pathOut); return res; } @@ -60,7 +60,7 @@ namespace SlangCapture const char* path, SlangPathType* pathTypeOut) { - slangCaptureLog(LogLevel::Verbose, "%p: %s, :%s\n", m_actualFileSystem.get(), __func__, path); + slangCaptureLog(LogLevel::Verbose, "%p: %s, :%s\n", m_actualFileSystem.get(), __PRETTY_FUNCTION__, path); SlangResult res = m_actualFileSystem->getPathType(path, pathTypeOut); return res; } @@ -70,14 +70,14 @@ namespace SlangCapture const char* path, ISlangBlob** outPath) { - slangCaptureLog(LogLevel::Verbose, "%p: %s, :%s\n", m_actualFileSystem.get(), __func__, path); + slangCaptureLog(LogLevel::Verbose, "%p: %s, :%s\n", m_actualFileSystem.get(), __PRETTY_FUNCTION__, path); SlangResult res = m_actualFileSystem->getPath(kind, path, outPath); return res; } SLANG_NO_THROW void FileSystemCapture::clearCache() { - slangCaptureLog(LogLevel::Verbose, "%p: %s\n", m_actualFileSystem.get(), __func__); + slangCaptureLog(LogLevel::Verbose, "%p: %s\n", m_actualFileSystem.get(), __PRETTY_FUNCTION__); m_actualFileSystem->clearCache(); } @@ -86,14 +86,14 @@ namespace SlangCapture FileSystemContentsCallBack callback, void* userData) { - slangCaptureLog(LogLevel::Verbose, "%p: %s, :%s\n", m_actualFileSystem.get(), __func__, path); + slangCaptureLog(LogLevel::Verbose, "%p: %s, :%s\n", m_actualFileSystem.get(), __PRETTY_FUNCTION__, path); SlangResult res = m_actualFileSystem->enumeratePathContents(path, callback, userData); return res; } SLANG_NO_THROW OSPathKind FileSystemCapture::getOSPathKind() { - slangCaptureLog(LogLevel::Verbose, "%p: %s\n", m_actualFileSystem.get(), __func__); + slangCaptureLog(LogLevel::Verbose, "%p: %s\n", m_actualFileSystem.get(), __PRETTY_FUNCTION__); OSPathKind pathKind = m_actualFileSystem->getOSPathKind(); return pathKind; } |
