6 #include "flutter/fml/paths.h"
7 #include "flutter/fml/process.h"
17 auto test_name = flutter::testing::GetCurrentTestName();
18 std::replace(test_name.begin(), test_name.end(),
'/',
'_');
19 std::replace(test_name.begin(), test_name.end(),
'.',
'_');
20 std::stringstream dir_name;
21 dir_name << test_name <<
"_" << std::to_string(fml::GetCurrentProcId());
22 return fml::paths::JoinPaths(
23 {flutter::testing::GetFixturesPath(), dir_name.str()});
28 intermediates_directory_ =
29 fml::OpenDirectory(intermediates_path_.c_str(),
31 fml::FilePermission::kReadWrite);
32 FML_CHECK(intermediates_directory_.is_valid());
36 intermediates_directory_.reset();
38 std::filesystem::remove_all(std::filesystem::path(intermediates_path_));
42 std::stringstream stream;
43 stream << fixture_name <<
".h";
48 std::stringstream stream;
49 stream << fixture_name <<
".cc";
54 std::stringstream stream;
55 stream << fixture_name <<
".json";
60 std::stringstream stream;
61 stream << fixture_name <<
".spv";
67 std::stringstream stream;
73 const char* fixture_name)
const {
75 auto fd = fml::OpenFileReadOnly(intermediates_directory_, filename.c_str());
76 return fml::FileMapping::CreateReadOnly(fd);
80 const char* fixture_name,
82 auto filename =
SLFileName(fixture_name, platform);
83 auto fd = fml::OpenFileReadOnly(intermediates_directory_, filename.c_str());
84 return fml::FileMapping::CreateReadOnly(fd);
88 const char* fixture_name,
91 const char* entry_point_name)
const {
92 std::shared_ptr<fml::Mapping> fixture =
93 flutter::testing::OpenFixtureAsMapping(fixture_name);
94 if (!fixture || !fixture->GetMapping()) {
95 VALIDATION_LOG <<
"Could not find shader in fixtures: " << fixture_name;
103 flutter::testing::OpenFixturesDirectory());
112 Compiler compiler(fixture, source_options, reflector_options);
119 if (!spirv_assembly) {
124 if (!fml::WriteAtomically(intermediates_directory_,
137 if (!fml::WriteAtomically(intermediates_directory_,
148 <<
"No reflector was found for target platform SL compiler.";
152 auto reflection_json = reflector->GetReflectionJSON();
153 auto reflection_header = reflector->GetReflectionHeader();
154 auto reflection_source = reflector->GetReflectionCC();
156 if (!reflection_json) {
161 if (!reflection_header) {
166 if (!reflection_source) {
171 if (!fml::WriteAtomically(intermediates_directory_,
173 *reflection_header)) {
174 VALIDATION_LOG <<
"Could not write reflection header intermediates.";
178 if (!fml::WriteAtomically(intermediates_directory_,
180 *reflection_source)) {
185 if (!fml::WriteAtomically(intermediates_directory_,
188 VALIDATION_LOG <<
"Could not write reflection json intermediates.";
std::shared_ptr< fml::Mapping > GetSPIRVAssembly() const
const Reflector * GetReflector() const
std::shared_ptr< fml::Mapping > GetSLShaderSource() const
std::string GetErrorMessages() const
bool CanCompileAndReflect(const char *fixture_name, SourceType source_type=SourceType::kUnknown, SourceLanguage source_language=SourceLanguage::kGLSL, const char *entry_point_name="main") const
std::unique_ptr< fml::FileMapping > GetReflectionJson(const char *fixture_name) const
std::unique_ptr< fml::FileMapping > GetShaderFile(const char *fixture_name, TargetPlatform platform) const
static std::string ReflectionCCName(const char *fixture_name)
static std::string ReflectionJSONName(const char *fixture_name)
static std::string GetIntermediatesPath()
static std::string ReflectionHeaderName(const char *fixture_name)
static std::string SLFileName(const char *fixture_name, TargetPlatform platform)
static std::string SPIRVFileName(const char *fixture_name)
std::string TargetPlatformSLExtension(TargetPlatform platform)
SourceType SourceTypeFromFileName(const std::filesystem::path &file_name)
std::string EntryPointFunctionNameFromSourceName(const std::filesystem::path &file_name, SourceType type, SourceLanguage source_language, const std::string &entry_point_name)
bool TargetPlatformNeedsReflection(TargetPlatform platform)
std::string header_file_name
SourceLanguage source_language
std::string entry_point_name
TargetPlatform target_platform
std::shared_ptr< fml::UniqueFD > working_directory