9 #include "flutter/fml/logging.h"
17 : assets_path_(properties.assets_path),
18 icu_path_(properties.icu_data_path) {
28 dart_entrypoint_arguments_.push_back(
39 if (assets_path_.is_relative() || icu_path_.is_relative() ||
40 (!aot_library_path_.empty() && aot_library_path_.is_relative())) {
42 if (executable_location.empty()) {
44 <<
"Unable to find executable location to resolve resource paths.";
45 assets_path_ = std::filesystem::path();
46 icu_path_ = std::filesystem::path();
48 assets_path_ = std::filesystem::path(executable_location) / assets_path_;
49 icu_path_ = std::filesystem::path(executable_location) / icu_path_;
50 if (!aot_library_path_.empty()) {
52 std::filesystem::path(executable_location) / aot_library_path_;
59 return !assets_path_.empty() && !icu_path_.empty();
65 const FlutterEngineProcTable& engine_procs) {
66 if (aot_library_path_.empty()) {
68 <<
"Attempted to load AOT data, but no aot_library_path was provided.";
71 if (!std::filesystem::exists(aot_library_path_)) {
72 FML_LOG(ERROR) <<
"Can't load AOT data from "
73 << aot_library_path_.u8string() <<
"; no such file.";
76 std::string path_string = aot_library_path_.u8string();
77 FlutterEngineAOTDataSource source = {};
78 source.type = kFlutterEngineAOTDataSourceTypeElfPath;
79 source.elf_path = path_string.c_str();
80 FlutterEngineAOTData data =
nullptr;
81 auto result = engine_procs.CreateAOTData(&source, &data);
82 if (result != kSuccess) {
83 FML_LOG(ERROR) <<
"Failed to load AOT data from: " << path_string;
92 const std::vector<std::string>& switches) {
93 engine_switches_ = switches;
97 if (engine_switches_.size() == 0) {
100 std::vector<std::string> switches;
101 switches.insert(switches.end(), engine_switches_.begin(),
102 engine_switches_.end());
105 switches.insert(switches.end(), env_switches.begin(), env_switches.end());